/*NOTE: This file is intended for programmers. Aspro technical support is not advised to work with him.*/

/* Examples (uncomment to use):*/

/* Expand site width */
/* body .wrapper { max-width: 1400px !important;  } */

/* Set site background image */
/* body {  background: url(image_source) top no-repeat; }

/* Hide compare button */
/* a.compare_item { display: none !important;  }*/

/* Delivery Zones Block */


.delivery-zones {
	width: 100%;
}

.delivery-zones .line-block {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-items: flex-start;
}

.delivery-zones__map {
	flex: 1 1 50%;
	min-width: 300px;
	position: relative;
}

.delivery-zones__map iframe {
	width: 100%;
	height: 400px;
	border: none;
	border-radius: 15px;
}

.delivery-zones__map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 15px;
	background: rgba(0, 0, 0, 0.28);
	cursor: pointer;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-align: center;
	padding: 12px;
	font-size: 14px;
	line-height: 1.4;
	transition: background-color 0.2s ease, opacity 0.2s ease;
	opacity: 1;
	pointer-events: auto;
}

.delivery-zones__map-overlay-text {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
	.delivery-zones__map-overlay {
		background: transparent;
	}

	.delivery-zones__map-overlay-text {
		opacity: 0;
		transform: translateY(4px);
	}

	.delivery-zones__map-overlay:hover {
		background: rgba(0, 0, 0, 0.35);
	}

	.delivery-zones__map-overlay:hover .delivery-zones__map-overlay-text {
		opacity: 1;
		transform: translateY(0);
	}
}

.delivery-zones__map-overlay--hidden {
	opacity: 0;
	pointer-events: none;
}

.delivery-zones__text {
	flex: 1 1 45%;
	min-width: 300px;
}

.delivery-zones__title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--white_text_black);
}

.delivery-zones__description {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--white_text_black);
}

.delivery-zones__description p {
	margin: 0;
}

.delivery-zones__accordion {
	margin-top: 30px;
}

.delivery-zones__cities {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--white_text_black);
}


@media (max-width: 767px) {

	.delivery-zones__map,
	.delivery-zones__text {
		flex: 1 1 100%;

	}

	.delivery-zones__map iframe {
		height: 300px;
	}

	.delivery-zones__accordion {
		margin-top: 20px;
	}
}

/* Header menu - скрытие подразделов 3 уровня */
.header-menu__dropdown-menu.header-menu__dropdown-menu--submenu .dropdown-menu-inner>li.collapsed,
.header-menu__dropdown-menu--submenu .dropdown-menu-inner>li.header-menu__dropdown-item.collapsed {
	display: none !important;
}


/* Footer Logo */
.footer__logo {
	width: 100%;

}

.footer__logo-wrapper {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.footer__logo-link {
	display: inline-block;
	text-decoration: none;
}

.footer__logo-img {
	max-width: 200px;
	height: auto;
}

.footer__logo-wrapper img {
	max-width: 200px;
	height: auto;
}

@media (max-width: 991px) {
	.footer__logo {
		margin-bottom: 20px !important;
		margin-top: 0 !important;
	}

	.footer__logo-img,
	.footer__logo-wrapper img {
		max-width: 150px;
	}
}


.basket_wrap.dropdown .dropdown-product__item a {
	width: 100%;
}