/* FOOTER */
footer
{
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;

	max-width: 100%;
	min-height: 150px;
	color: white;
	background-color: #363636;
	padding: 150px 25px 50px 25px;
	font-weight: 500;
}

.footer-title {
	font-family: "SF Pro", serif;
	font-size: 2rem;
	font-weight: 700;
}
.footer-org-info {
	color: rgba(255, 255, 255, 0.6);

	display: flex;
	flex-direction: column;
	grid-row-gap: 7px;
}

.footer-contacts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}
.footer-contacts-phone {
	display: flex;
	flex-direction: column;
	height: 52px;
	border-radius: 28px;
    text-align: center;
	padding: 6px 26px;
	justify-content: center;

	background-color: #FFC7D2;
	color: white;
}
.footer-contacts-phone-number {
	font-weight: 600;
}
.footer-contacts-phone-time {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.8);
}
.footer-contacts-whatsapp, .footer-contacts-telegram {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-contacts-whatsapp img, .footer-contacts-telegram img{
	height: 20px;
}
.footer-contacts-whatsapp {
	background: #7be57b;
}
.footer-contacts-telegram {
	background:#7fbfff;
}

@media screen and (max-width: 980px){

}
/* FOOTER END */


/* Product card */
.catalog-product-container {
	display: grid;
	width: 310px;
	margin: auto;
	grid-template-columns: 150px 150px;
	/*justify-content: center;*/
	grid-gap: 10px
}
.catalog-product-card {
	cursor: pointer;
	display: block;
}
.catalog-product-card-image {
	position: relative;
	/*width: 160px;*/
	height: 220px;
	border-radius: 20px;
	overflow: hidden;
}
.catalog-product-card-image img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.catalog-product-card-image-tag {
	position: absolute;
	z-index: 10;
	top: 10px;
	left: 10px;
	padding: 5px 10px;
	border-radius: 15px;
	font-size: 1.2rem;
	color: #64464C;
	background-color: #FFC7D2;
}
.catalog-product-card-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: 10px;
	padding: 0 10px;
}
.catalog-product-card-info-name {
	font-size: 1.4rem;
	color: gray;
}

.wide-promo-card {
	/*display: flex;*/
	/*grid-template-columns: auto;*/
	grid-column: 1/3;

	margin-top: 20px;
}
.catalog-product-card-image-promo {
	position: absolute;
	z-index: 10;
	bottom: 10px;
	left: 10px;
	padding: 5px 10px;
	border-radius: 15px;
	font-size: 1.2rem;
	color: black;
	background-color: white;
}
