/*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: stretch;
	justify-content: center;
}

.delivery-zones__map {
	flex: 1 1 calc(50% - 15px);
	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 calc(50% - 15px);
	min-width: 300px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.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);
}

.delivery-zones__prices {
	display: flex;
	gap: 12px;
	margin-top: 16px;
	flex-wrap: wrap;
}

.delivery-zones__price {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	min-width: 100px;
	flex: 1 1 auto;
}

.delivery-zones__price:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.delivery-zones__price-value {
	font-size: 1.25rem;
	line-height: 1.2;
	margin-right: 4px;
}

.delivery-zones__price-currency {
	font-size: 0.875rem;
	line-height: 1.2;
	opacity: 0.9;
}

.delivery-zones__price--green {
	background-color: #28a745;
	color: #fff;
}

.delivery-zones__price--green:hover {
	background-color: #218838;
}

.delivery-zones__price--blue {
	background-color: #007bff;
	color: #fff;
}

.delivery-zones__price--blue:hover {
	background-color: #0056b3;
}

.delivery-zones__price--red {
	background-color: #dc3545;
	color: #fff;
}

.delivery-zones__price--red:hover {
	background-color: #c82333;
}

@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;
	}

	.delivery-zones__prices {
		gap: 8px;
		margin-top: 12px;
	}

	.delivery-zones__price {
		flex: 1 1 calc(33.333% - 6px);
		min-width: 80px;
		padding: 10px 12px;
	}

	.delivery-zones__price-value {
		font-size: 1.125rem;
	}

	.delivery-zones__price-currency {
		font-size: 0.8125rem;
	}
}

/* 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%;
}