/* ==========================================================================
   Сторінка «Дистриб'ютори» — орієнтир: макет заказчиці
   ========================================================================== */

:root {
	--dist-navy: #02446f;
	--dist-navy-deep: #013255;
	--dist-blue: #008ac9;
	--dist-green: #3d9b5f;
	--dist-orange: #e07a2f;
	--dist-sky: #e8f3fa;
	--dist-sky-2: #f3f8fc;
	--dist-text: #5a6570;
	--dist-title: #1a2b3c;
	--dist-radius: 20px;
	--dist-radius-lg: 28px;
}

/* ---- Shared buttons ---- */
.dist-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: none;
	border-radius: 999px;
	padding: 16px 28px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.dist-btn--primary {
	background: var(--dist-navy);
	color: #fff;
	box-shadow: 0 10px 24px rgba(2, 68, 111, 0.28);
}

.dist-btn--primary:hover {
	background: var(--dist-navy-deep);
	color: #fff;
	transform: translateY(-1px);
}

.dist-btn--outline {
	background: #fff;
	color: var(--dist-navy);
	border: 1.5px solid var(--dist-navy);
}

.dist-btn--outline:hover {
	background: var(--dist-navy);
	color: #fff;
}

/* ---- Image placeholders ---- */
.dist-ph {
	width: 100%;
	height: 100%;
	min-height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background:
		repeating-linear-gradient(
			-45deg,
			#eef4f9,
			#eef4f9 12px,
			#e4eef6 12px,
			#e4eef6 24px
		);
	border: 2px dashed #b7c9d8;
	border-radius: 16px;
	color: #6a8094;
}

.dist-ph__label {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	padding: 12px;
}

.dist-ph__label small {
	font-weight: 400;
	opacity: 0.8;
}

.dist-ph--hero {
	min-height: 360px;
	border-radius: 24px;
}

.dist-ph--card {
	min-height: 180px;
	border-radius: 14px;
	border-width: 1.5px;
}

.dist-ph--partner {
	min-height: 220px;
	border-radius: 20px;
	border-color: rgba(255, 255, 255, 0.35);
	background:
		repeating-linear-gradient(
			-45deg,
			rgba(255, 255, 255, 0.08),
			rgba(255, 255, 255, 0.08) 12px,
			rgba(255, 255, 255, 0.04) 12px,
			rgba(255, 255, 255, 0.04) 24px
		);
	color: rgba(255, 255, 255, 0.75);
}

/* ---- Section heads ---- */
.dist-section-head {
	text-align: center;
	margin-bottom: 48px;
}

.dist-section-head h2 {
	font-size: 36px;
	font-weight: 700;
	color: var(--dist-title);
	margin: 0 0 14px;
}

.dist-section-head__line {
	display: block;
	width: 48px;
	height: 3px;
	margin: 0 auto;
	background: var(--dist-blue);
	border-radius: 2px;
}

.dist-section-head--left {
	text-align: left;
	max-width: 760px;
	margin-bottom: 36px;
}

.dist-section-head--left .dist-section-head__line {
	margin: 0;
}

.dist-section-head--left p {
	margin: 0 0 10px;
	color: var(--dist-text);
	font-size: 16px;
	line-height: 1.65;
}

.dist-map-section__hint {
	color: var(--dist-navy) !important;
	font-weight: 600;
	font-size: 15px !important;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.dist-hero {
	position: relative;
	padding: 72px 0 64px;
	overflow: hidden;
	background: linear-gradient(180deg, #eaf4fb 0%, #f7fbfe 55%, #ffffff 100%);
}

.dist-hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 55% 50% at 88% 35%, rgba(0, 138, 201, 0.16), transparent 70%),
		radial-gradient(ellipse 40% 45% at 8% 85%, rgba(2, 68, 111, 0.07), transparent 65%);
}

.dist-hero__bg::after {
	content: '';
	position: absolute;
	left: -5%;
	right: -5%;
	bottom: -35%;
	height: 70%;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='%23008ac9' fill-opacity='0.07' d='M0,192L80,170.7C160,149,320,107,480,112C640,117,800,171,960,176C1120,181,1280,139,1360,117.3L1440,96L1440,320L0,320Z'/%3E%3Cpath fill='%2302446f' fill-opacity='0.05' d='M0,256L120,240C240,224,480,192,720,197.3C960,203,1200,245,1320,266.7L1440,288L1440,320L0,320Z'/%3E%3C/svg%3E") no-repeat bottom center / 100% 100%;
}

.dist-hero__row {
	position: relative;
	z-index: 1;
}

.dist-hero__content h1 {
	font-size: clamp(28px, 3.2vw, 42px);
	font-weight: 800;
	line-height: 1.2;
	color: var(--dist-navy);
	margin: 0 0 18px;
	max-width: 560px;
}

.dist-hero__content p {
	font-size: 17px;
	line-height: 1.65;
	color: var(--dist-text);
	margin: 0 0 28px;
	max-width: 460px;
}

.dist-hero__cta {
	min-width: 240px;
}

.dist-hero__media {
	display: flex;
	justify-content: center;
	align-items: center;
}

.dist-hero__media img {
	width: 100%;
	max-width: 520px;
	height: auto;
	max-height: 420px;
	object-fit: contain;
	filter: drop-shadow(0 28px 48px rgba(2, 68, 111, 0.18));
}

/* ==========================================================================
   PRODUCTS (slider)
   ========================================================================== */

.dist-products {
	padding: 72px 0 56px;
	background: #fff;
	overflow: hidden;
}

.dist-products .dist-section-head {
	margin-bottom: 36px;
}

.dist-products-slider-wrap {
	position: relative;
}

/* Desktop ≥1000px — звичайна сітка, без слайдера */
.dist-products-slider-wrap:not(.is-slider) .dist-products-slider {
	overflow: visible;
	padding: 0;
}

.dist-products-slider-wrap:not(.is-slider) .swiper-wrapper {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	transform: none !important;
}

.dist-products-slider-wrap:not(.is-slider) .swiper-slide {
	width: auto !important;
	margin: 0 !important;
	height: auto;
}

.dist-products-slider-wrap:not(.is-slider) .dist-products-controls {
	display: none;
}

/* Mobile/tablet <1000px — слайдер */
.dist-products-slider-wrap.is-slider .dist-products-slider {
	overflow: hidden;
	padding: 6px 4px 12px;
}

.dist-products-slider .swiper-wrapper {
	align-items: stretch;
}

.dist-products-slider .swiper-slide {
	height: auto;
	box-sizing: border-box;
}

.dist-products-slider .dist-card {
	height: 100%;
	margin: 0;
}

.dist-products-controls {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 28px;
}

.dist-products-slider-wrap.is-slider .dist-products-controls {
	display: flex;
}

.dist-products-nav {
	width: 44px;
	height: 44px;
	border: 1.5px solid #d5e2ec;
	border-radius: 50%;
	background: #fff;
	color: var(--dist-navy);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.25s ease;
	flex-shrink: 0;
}

.dist-products-nav:hover {
	background: var(--dist-navy);
	border-color: var(--dist-navy);
	color: #fff;
}

.dist-products-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 12px;
}

.dist-products-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	margin: 0 !important;
	background: #c5d4e0;
	opacity: 1;
	border-radius: 50%;
	transition: all 0.25s ease;
}

.dist-products-pagination .swiper-pagination-bullet-active {
	width: 22px;
	border-radius: 999px;
	background: var(--dist-blue);
}

.dist-card {
	width: 100%;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #e6eef5;
	border-radius: var(--dist-radius-lg);
	padding: 28px 24px 24px;
	box-shadow: 0 12px 40px rgba(15, 45, 80, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dist-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 48px rgba(15, 45, 80, 0.1);
}

.dist-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 22px;
	margin-bottom: 18px;
	flex-shrink: 0;
}

.dist-card--blue .dist-card__icon { background: var(--dist-blue); }
.dist-card--green .dist-card__icon { background: var(--dist-green); }
.dist-card--orange .dist-card__icon { background: var(--dist-orange); }

.dist-card__media {
	margin-bottom: 18px;
	border-radius: 14px;
	overflow: hidden;
	background: var(--dist-sky-2);
	aspect-ratio: 16 / 11;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dist-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 8px;
}

.dist-card h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--dist-title);
	margin: 0 0 12px;
}

.dist-card__desc {
	font-size: 14px;
	line-height: 1.65;
	color: var(--dist-text);
	margin: 0 0 14px;
}

.dist-card__list {
	list-style: none;
	padding: 0;
	margin: 0 0 14px;
}

.dist-card__list li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--dist-title);
	line-height: 1.4;
}

.dist-card__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 7px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.dist-card--blue .dist-card__list li::before { background: var(--dist-blue); }
.dist-card--green .dist-card__list li::before { background: var(--dist-green); }
.dist-card--orange .dist-card__list li::before { background: var(--dist-orange); }

.dist-card__catalog {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 16px;
	color: var(--dist-blue);
	text-decoration: none;
}

.dist-card__catalog:hover {
	text-decoration: underline;
}

.dist-card__btn {
	margin-top: auto;
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 14px;
	min-height: 42px;
	border-radius: 999px;
	background: #fff;
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
	cursor: pointer;
	transition: all 0.25s ease;
}

.dist-card__btn i {
	font-size: 12px;
	flex-shrink: 0;
}

.dist-card--blue .dist-card__btn {
	border: 1.5px solid var(--dist-blue);
	color: var(--dist-blue);
}
.dist-card--green .dist-card__btn {
	border: 1.5px solid var(--dist-green);
	color: var(--dist-green);
}
.dist-card--orange .dist-card__btn {
	border: 1.5px solid var(--dist-orange);
	color: var(--dist-orange);
}

.dist-card--blue .dist-card__btn:hover {
	background: var(--dist-blue);
	color: #fff;
}
.dist-card--green .dist-card__btn:hover {
	background: var(--dist-green);
	color: #fff;
}
.dist-card--orange .dist-card__btn:hover {
	background: var(--dist-orange);
	color: #fff;
}

/* ==========================================================================
   MAP
   ========================================================================== */

.dist-map-section {
	padding: 56px 0 80px;
	background: var(--dist-sky-2);
}

.dist-map-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.85fr);
	gap: 22px;
	align-items: stretch;
}

.dist-map-panel {
	position: relative;
	background: #d9e8f3;
	border-radius: var(--dist-radius-lg);
	overflow: hidden;
	min-height: 520px;
	border: 1px solid #c9dce9;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.dist-map-canvas {
	width: 100%;
	height: 100%;
	min-height: 520px;
	background: #d4e5f1;
}

.dist-map-zoom {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 500;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.dist-map-zoom button {
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(2, 68, 111, 0.15);
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	color: var(--dist-navy);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.dist-map-zoom button:hover {
	background: var(--dist-navy);
	color: #fff;
}

.dist-map-search {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 500;
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border-radius: 16px;
	padding: 14px 18px;
	box-shadow: 0 12px 32px rgba(2, 68, 111, 0.14);
}

.dist-map-search > i {
	color: var(--dist-blue);
	font-size: 16px;
}

.dist-map-search input {
	flex: 1;
	border: 0;
	outline: none;
	font-size: 15px;
	font-family: inherit;
	background: transparent;
	color: var(--dist-title);
}

.dist-map-search input::placeholder {
	color: #8a97a5;
}

.dist-map-side {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.dist-info {
	background: #fff;
	border-radius: var(--dist-radius-lg);
	padding: 28px;
	box-shadow: 0 16px 40px rgba(15, 45, 80, 0.08);
	border: 1px solid #e6eef5;
	min-height: 520px;
	display: flex;
	flex-direction: column;
}

.dist-info--empty {
	align-items: center;
	justify-content: center;
}

.dist-info__empty-inner {
	text-align: center;
	color: var(--dist-text);
	max-width: 240px;
}

.dist-info__empty-inner i {
	font-size: 36px;
	color: var(--dist-blue);
	margin-bottom: 14px;
	opacity: 0.7;
}

.dist-info__empty-inner p {
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
}

.dist-info__region {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	color: var(--dist-blue);
	margin-bottom: 8px;
	text-transform: none;
}

.dist-info__name {
	font-size: 22px;
	font-weight: 800;
	color: var(--dist-title);
	margin: 0 0 10px;
	line-height: 1.25;
}

.dist-info__badge {
	display: inline-block;
	background: #e8f4fb;
	color: var(--dist-navy);
	font-size: 12px;
	font-weight: 700;
	padding: 6px 12px;
	border-radius: 999px;
	margin-bottom: 18px;
	align-self: flex-start;
}

.dist-info__contacts {
	list-style: none;
	padding: 0;
	margin: 0 0 18px;
}

.dist-info__contacts li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	font-size: 15px;
}

.dist-info__contacts i {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: var(--dist-sky);
	color: var(--dist-blue);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	flex-shrink: 0;
}

.dist-info__contacts a {
	color: var(--dist-title);
	font-weight: 500;
	text-decoration: none;
}

.dist-info__contacts a:hover {
	color: var(--dist-blue);
}

.dist-info__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 22px;
}

.dist-tag {
	display: inline-flex;
	align-items: center;
	padding: 7px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
}

.dist-tag--food { background: #e5f4fb; color: var(--dist-blue); }
.dist-tag--tablet { background: #e8f6ed; color: var(--dist-green); }
.dist-tag--industrial { background: #fff0e5; color: var(--dist-orange); }

.dist-info__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 18px;
	margin-top: auto;
}

.dist-info__actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 12px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	transition: all 0.25s ease;
}

.dist-info__actions .btn-call {
	background: var(--dist-navy);
	color: #fff;
}

.dist-info__actions .btn-call:hover {
	background: var(--dist-navy-deep);
	color: #fff;
}

.dist-info__actions .btn-route {
	background: #fff;
	color: var(--dist-navy);
	border: 1.5px solid var(--dist-navy);
}

.dist-info__actions .btn-route:hover {
	background: var(--dist-navy);
	color: #fff;
}

.dist-info__note {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: #eef6fb;
	border-radius: 14px;
	padding: 12px 14px;
	font-size: 12px;
	line-height: 1.45;
	color: var(--dist-navy);
	margin: 0;
}

.dist-info__note i {
	color: var(--dist-green);
	margin-top: 2px;
	flex-shrink: 0;
}

.dist-info__image {
	margin: 0 0 16px;
	border-radius: 14px;
	overflow: hidden;
	background: var(--dist-sky-2);
	aspect-ratio: 16 / 8;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dist-info__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 6px;
}

/* Leaflet */
.dist-marker {
	background: transparent !important;
	border: 0 !important;
}

.dist-marker__pin {
	width: 30px;
	height: 30px;
	border-radius: 50% 50% 50% 0;
	background: var(--dist-navy);
	transform: rotate(-45deg);
	box-shadow: 0 4px 12px rgba(2, 68, 111, 0.4);
	position: relative;
}

.dist-marker__pin::after {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 50%;
	top: 10px;
	left: 10px;
}

.dist-marker.is-active .dist-marker__pin {
	background: var(--dist-blue);
	box-shadow: 0 0 0 10px rgba(0, 138, 201, 0.22);
}

.leaflet-container {
	font-family: inherit;
	background: #d4e5f1;
}

.leaflet-control-attribution {
	font-size: 10px !important;
	background: rgba(255, 255, 255, 0.7) !important;
}

/* Mobile regions */
.dist-regions {
	background: #fff;
	border-radius: 18px;
	padding: 18px;
	border: 1px solid #e6eef5;
	margin-top: 16px;
}

.dist-regions h3 {
	font-size: 17px;
	margin: 0 0 10px;
	color: var(--dist-title);
}

.dist-regions__list details {
	border-bottom: 1px solid #edf2f6;
	padding: 8px 0;
}

.dist-regions__list summary {
	cursor: pointer;
	font-weight: 700;
	color: var(--dist-title);
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.dist-regions__list summary::-webkit-details-marker { display: none; }
.dist-regions__list summary::after {
	content: '+';
	font-size: 18px;
	color: var(--dist-blue);
}
.dist-regions__list details[open] summary::after { content: '−'; }

.dist-regions__item {
	display: block;
	width: 100%;
	text-align: left;
	background: #f7fafc;
	border: 0;
	border-radius: 10px;
	padding: 10px 12px;
	margin-top: 8px;
	font-size: 14px;
	font-family: inherit;
	color: var(--dist-title);
	cursor: pointer;
}

.dist-regions__item:hover,
.dist-regions__item.is-active {
	background: #e8f4fb;
	color: var(--dist-navy);
}

/* ==========================================================================
   PARTNER
   ========================================================================== */

.dist-partner {
	position: relative;
	padding: 80px 0;
	background:
		radial-gradient(ellipse 50% 60% at 15% 80%, rgba(255, 255, 255, 0.08), transparent 55%),
		linear-gradient(135deg, #02446f 0%, #013255 55%, #02446f 100%);
	overflow: hidden;
}

.dist-partner__content h2 {
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 800;
	color: #fff;
	margin: 0 0 16px;
	line-height: 1.25;
}

.dist-partner__text,
.dist-partner__text p {
	color: rgba(255, 255, 255, 0.88);
	font-size: 15px;
	line-height: 1.7;
	margin: 0 0 12px;
}

.dist-partner__media {
	margin-top: 28px;
	max-width: 340px;
}

.dist-partner__media img {
	width: 100%;
	border-radius: 20px;
	display: block;
}

.dist-partner__form-wrap {
	background: #fff;
	border-radius: var(--dist-radius-lg);
	padding: 36px 32px;
	box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}

.dist-partner__form .row {
	--bs-gutter-x: 16px;
	--bs-gutter-y: 16px;
}

.dist-partner__form label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #4b5563;
	margin-bottom: 6px;
}

.dist-partner__form input,
.dist-partner__form textarea {
	width: 100%;
	border: 1px solid #dbe3ea;
	border-radius: 10px;
	background: #f8fafc;
	padding: 10px 14px;
	font-size: 14px;
	line-height: 1.35;
	font-family: inherit;
	color: var(--dist-title);
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	box-shadow: none;
	height: 42px;
}

.dist-partner__form textarea {
	resize: vertical;
	min-height: 88px;
	height: auto;
	padding-top: 10px;
	padding-bottom: 10px;
}

.dist-partner__form input::placeholder,
.dist-partner__form textarea::placeholder {
	color: #9aa6b2;
	opacity: 1;
}

.dist-partner__form input:focus,
.dist-partner__form textarea:focus {
	border-color: var(--dist-blue);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(0, 138, 201, 0.12);
}

.dist-partner__form .is-invalid {
	border-color: #e11d48 !important;
	background: #fff5f7;
	box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12) !important;
}

.dist-form-alert {
	display: none;
	margin-bottom: 16px;
	padding: 12px 14px;
	border-radius: 12px;
	background: #fff1f2;
	border: 1px solid #fecdd3;
	color: #be123c;
	font-size: 14px;
	line-height: 1.45;
	font-weight: 600;
}

.dist-form-alert.is-visible {
	display: block;
}

.dist-partner__submit {
	width: 100%;
	margin-top: 8px;
	padding: 14px 24px;
}

.dist-partner__privacy {
	margin: 14px 0 0;
	font-size: 12px;
	line-height: 1.45;
	color: #8a97a5;
	text-align: center;
}

.dist-partner__submit.is-loading {
	pointer-events: none;
	opacity: 0.75;
}

.dist-partner__submit.is-loading::after {
	content: '';
	width: 14px;
	height: 14px;
	margin-left: 8px;
	display: inline-block;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: distSpin 0.8s linear infinite;
}

@keyframes distSpin {
	to { transform: rotate(360deg); }
}

/* Success modal */
.dist-success-modal {
	border: none;
	border-radius: 24px;
	padding: 36px 28px 28px;
	text-align: center;
	position: relative;
	box-shadow: 0 25px 70px rgba(15, 23, 42, 0.18);
}

.dist-success-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
}

.dist-success-modal__icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(61, 155, 95, 0.14);
	color: #3d9b5f;
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
}

.dist-success-modal__title {
	margin: 0 0 10px;
	font-size: 26px;
	font-weight: 800;
	color: #111827;
}

.dist-success-modal__text {
	margin: 0 0 22px;
	font-size: 16px;
	line-height: 1.5;
	color: #6b7280;
}

.dist-success-modal .dist-btn {
	min-width: 160px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1199px) {
	.dist-hero {
		padding: 56px 0 48px;
	}

	.dist-hero__content h1 {
		font-size: 34px;
	}

	.dist-products {
		padding: 56px 0 48px;
	}

	.dist-map-section {
		padding: 48px 0 64px;
	}

	.dist-partner {
		padding: 64px 0;
	}
}

@media (max-width: 991px) {
	.dist-hero {
		padding: 40px 0 36px;
	}

	.dist-hero__content {
		text-align: center;
	}

	.dist-hero__content h1,
	.dist-hero__content p {
		margin-left: auto;
		margin-right: auto;
	}

	.dist-hero__media {
		margin-top: 28px;
	}

	.dist-ph--hero {
		min-height: 220px;
	}

	.dist-section-head {
		margin-bottom: 28px;
	}

	.dist-section-head h2 {
		font-size: 26px;
	}

	.dist-section-head--left {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}

	.dist-section-head--left .dist-section-head__line {
		margin: 14px auto 0;
	}

	.dist-products {
		padding: 44px 0 40px;
	}

	.dist-products-controls {
		margin-top: 22px;
	}

	.dist-map-section {
		padding: 40px 0 52px;
	}

	.dist-map-layout {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.dist-map-panel,
	.dist-map-canvas,
	.dist-info {
		min-height: 360px;
	}

	.dist-info {
		padding: 22px 18px;
	}

	.dist-partner {
		padding: 48px 0;
	}

	.dist-partner__content {
		text-align: center;
		margin-bottom: 8px;
	}

	.dist-partner__form-wrap {
		margin-top: 24px;
		padding: 24px 18px;
	}

	.dist-partner__media {
		max-width: 280px;
		margin-left: auto;
		margin-right: auto;
	}

	.dist-partner__text,
	.dist-partner__text p {
		text-align: center;
	}
}

@media (max-width: 767px) {
	.dist-hero__content h1 {
		font-size: 28px;
		margin-bottom: 14px;
	}

	.dist-hero__content p {
		font-size: 15px;
		margin-bottom: 22px;
	}

	.dist-btn {
		padding: 14px 22px;
		font-size: 14px;
	}

	.dist-card {
		padding: 20px 16px 18px;
		border-radius: 20px;
	}

	.dist-card h3 {
		font-size: 20px;
	}

	.dist-card__btn {
		padding: 9px 12px;
		min-height: 38px;
		font-size: 12px;
		gap: 6px;
	}

	.dist-card__btn i {
		font-size: 11px;
	}

	.dist-card__media,
	.dist-ph--card {
		min-height: 150px;
	}

	.dist-map-panel,
	.dist-map-canvas {
		min-height: 320px;
		border-radius: 20px;
	}

	.dist-info {
		min-height: auto;
		border-radius: 20px;
	}

	.dist-map-search {
		left: 12px;
		right: 12px;
		bottom: 12px;
		padding: 12px 14px;
		border-radius: 12px;
	}

	.dist-map-zoom button {
		width: 36px;
		height: 36px;
	}

	.dist-partner__content h2 {
		font-size: 24px;
	}

	.dist-partner__form-wrap {
		border-radius: 20px;
		padding: 20px 14px;
	}

	.dist-partner__form .row {
		--bs-gutter-x: 12px;
		--bs-gutter-y: 12px;
	}
}

@media (max-width: 575px) {
	.dist-info__actions {
		grid-template-columns: 1fr;
	}

	.dist-hero {
		padding: 32px 0 28px;
	}

	.dist-hero__content h1 {
		font-size: 24px;
	}

	.dist-ph--hero {
		min-height: 180px;
	}

	.dist-products {
		padding: 36px 0 32px;
	}

	.dist-products-nav {
		width: 40px;
		height: 40px;
	}

	.dist-map-section {
		padding: 32px 0 40px;
	}

	.dist-partner {
		padding: 40px 0;
	}

	.dist-success-modal {
		padding: 28px 18px 22px;
		margin: 12px;
	}

	.dist-success-modal__title {
		font-size: 22px;
	}
}
