/* =========================================================================
   МБЗ — MAIN STYLESHEET
   Промышленный дизайн: красный / графит / чёрный / белый.
   Оглавление:
   1. Утилиты и контейнеры
   2. Кнопки
   3. Топбар и хедер
   4. Мобильное меню
   5. Хлебные крошки
   6. Hero
   7. Категории
   8. Карточки товаров / товарная сетка
   9. Преимущества
   10. Как заказать
   11. Доставка / Производство / География (текст+медиа секции)
   12. Качество
   13. Документы
   14. Заводы
   15. Калькулятор
   16. Таблицы цен
   17. Области применения
   18. Статьи
   19. FAQ
   20. Контакты / реквизиты
   21. CTA phone
   22. Sticky phone (mobile)
   23. Footer
   24. Страницы: layout, page-header, entry-content, комментарии
   25. WooCommerce
   26. 404 / empty state
   27. Адаптив
   ========================================================================= */

/* ============ 1. Утилиты и контейнеры ============ */
.container {
	width: 100%;
	max-width: var(--mbz-container);
	margin-inline: auto;
	padding-inline: var(--mbz-gutter);
}

.section {
	padding-block: clamp(48px, 7vw, 96px);
	background: var(--mbz-surface);
}

.section--alt,
.grades-section--alt,
.grade-by-work-section--alt,
.quality-section--alt,
.documents-section--alt,
.plants-section--alt,
.applications-section--alt,
.articles-section--alt,
.production-section--alt {
	background: var(--mbz-background-alt);
}

.section__head {
	max-width: 720px;
	margin: 0 0 40px;
}

.section__head--light h2,
.section__head--light .section__lead {
	color: var(--mbz-white);
}

.section__lead {
	color: var(--mbz-text-muted);
	font-size: 1.05rem;
	margin: 0;
}

.section__footer-action {
	margin-top: 36px;
	display: flex;
	justify-content: center;
}

.tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	background: var(--mbz-white);
	border: 1px solid var(--mbz-border);
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--mbz-graphite);
}

.tag svg {
	width: 16px;
	height: 16px;
	color: var(--mbz-red);
}

.tag--link {
	background: var(--mbz-gray);
	border: none;
}

.checklist {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 24px 0;
}

.checklist li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 1rem;
}

.checklist svg {
	flex: none;
	width: 24px;
	height: 24px;
	color: var(--mbz-red);
	margin-top: 2px;
}

/* ============ 2. Кнопки ============ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: var(--mbz-radius-btn);
	font-weight: 700;
	font-family: var(--mbz-font-heading);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-size: 0.95rem;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background var(--mbz-transition), color var(--mbz-transition), border-color var(--mbz-transition), transform var(--mbz-transition), box-shadow var(--mbz-transition);
	white-space: nowrap;
}

.btn svg {
	width: 20px;
	height: 20px;
	flex: none;
}

.btn:active {
	transform: translateY(1px);
}

.btn--primary {
	background: linear-gradient(135deg, var(--mbz-red) 0%, var(--mbz-red-dark) 100%);
	color: var(--mbz-white);
	border-color: transparent;
	box-shadow: var(--mbz-shadow-red);
}

.btn--primary:hover {
	background: linear-gradient(135deg, var(--mbz-red-dark) 0%, #7a0102 100%);
	border-color: transparent;
	color: var(--mbz-white);
	transform: translateY(-2px);
	box-shadow: 0 16px 36px rgba(221, 12, 13, 0.28);
}

.btn--outline {
	background: var(--mbz-surface);
	color: var(--mbz-graphite);
	border-color: var(--mbz-border);
	box-shadow: none;
}

.btn--outline:hover {
	background: var(--mbz-background);
	color: var(--mbz-black);
	border-color: var(--mbz-steel);
}

.btn--outline-light {
	background: transparent;
	color: var(--mbz-text-light);
	border-color: rgba(255, 255, 255, 0.45);
	box-shadow: none;
}

.btn--outline-light:hover {
	background: rgba(255, 255, 255, 0.08);
	color: var(--mbz-white);
	border-color: var(--mbz-white);
}

.btn--lg {
	padding: 18px 36px;
	font-size: 1.05rem;
}

.btn--sm {
	padding: 9px 16px;
	font-size: 0.82rem;
}

.btn--block {
	display: flex;
	width: 100%;
}

/* ============ 3. Топбар и хедер ============ */
.topbar {
	background: var(--mbz-black);
	color: var(--mbz-silver);
	font-size: 0.85rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	overflow: hidden;
	max-width: 100%;
}

.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 40px;
	gap: 16px;
	min-width: 0;
	max-width: 100%;
}

.topbar__info {
	display: flex;
	align-items: center;
	gap: 20px;
	color: var(--mbz-silver);
}

.topbar__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.topbar__item svg {
	width: 15px;
	height: 15px;
	color: var(--mbz-red-light);
}

.topbar__contacts {
	display: flex;
	align-items: center;
	gap: 20px;
}

.topbar__email,
.topbar__phone,
.topbar a {
	color: var(--mbz-white);
	transition: color var(--mbz-transition);
}

.topbar__email:hover,
.topbar__phone:hover,
.topbar a:hover {
	color: var(--mbz-red-light);
}

.topbar__phone {
	font-weight: 700;
}

.topbar__pending {
	color: var(--mbz-text-muted-dark);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 500;
	width: 100%;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--mbz-border);
	/* No transform/filter/backdrop-filter — they break sticky + fixed mobile nav. */
	transition: box-shadow var(--mbz-transition), background var(--mbz-transition);
}

.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--mbz-shadow-small);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	height: var(--mbz-header-height);
	min-width: 0;
	width: 100%;
	max-width: 100%;
}

.site-logo {
	display: flex;
	align-items: center;
	flex: 0 1 auto;
	min-width: 0;
	background: transparent;
}

.site-logo__picture {
	display: block;
	line-height: 0;
}

.site-logo__image {
	height: clamp(58px, 4.5vw, 66px);
	width: auto;
	max-width: 260px;
	max-height: 66px;
	object-fit: contain;
	opacity: 1;
	filter: none;
}

.site-logo__text {
	font-family: var(--mbz-font-heading);
	font-weight: 800;
	font-size: 1.5rem;
	text-transform: uppercase;
	color: var(--mbz-black);
}

.site-logo__text::first-letter {
	color: var(--mbz-red);
}

.main-navigation {
	flex: 1;
	min-width: 0;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu > li {
	position: relative;
}

.primary-menu > li > a {
	display: block;
	padding: 8px 0;
	font-weight: 700;
	font-family: var(--mbz-font-heading);
	text-transform: uppercase;
	font-size: 0.95rem;
	letter-spacing: 0.01em;
	color: var(--mbz-graphite);
	border-bottom: 2px solid transparent;
	transition: color var(--mbz-transition), border-color var(--mbz-transition);
}

/* Long game nav label: wrap / slightly smaller — never truncate to «Игра». */
.primary-menu > li > a[href*="/game/"] {
	white-space: normal;
	line-height: 1.15;
	font-size: 0.78rem;
	max-width: 10.5rem;
	text-align: center;
}

.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-menu-ancestor > a {
	color: var(--mbz-red);
	border-color: var(--mbz-red);
}

.primary-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: var(--mbz-surface);
	border: 1px solid var(--mbz-border);
	border-radius: var(--mbz-radius);
	box-shadow: var(--mbz-shadow-medium);
	padding: 8px;
	z-index: 20;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	display: block;
}

.primary-menu .sub-menu a {
	display: block;
	padding: 10px 12px;
	border-radius: 6px;
	font-weight: 600;
	color: var(--mbz-graphite);
}

.primary-menu .sub-menu a:hover {
	background: var(--mbz-red-soft);
	color: var(--mbz-red-dark);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 0 0 auto;
	margin-left: auto;
	min-width: 0;
}

.header-cart {
	position: relative;
	display: inline-flex;
	align-items: center;
	color: var(--mbz-graphite);
}

.header-cart:hover {
	color: var(--mbz-red);
}

.header-cart svg {
	width: 26px;
	height: 26px;
}

.header-cart__count {
	position: absolute;
	top: -6px;
	right: -8px;
	background: var(--mbz-red);
	color: var(--mbz-white);
	font-size: 0.68rem;
	font-weight: 700;
	line-height: 1;
	min-width: 18px;
	height: 18px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
	box-shadow: 0 4px 10px rgba(221, 12, 13, 0.35);
}

.header-phone-btn {
	flex-shrink: 0;
}

.header-phone-btn span {
	display: none;
}

.main-navigation__cta {
	display: none;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	background: none;
	border: none;
	padding: 0;
	color: var(--mbz-black);
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.menu-toggle__bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--mbz-black);
	border-radius: 2px;
	transition: transform var(--mbz-transition), opacity var(--mbz-transition);
}

/* ============ 4. Мобильное меню ============ */
@media (min-width: 961px) {
	.header-phone-btn span {
		display: inline;
	}
}

@media (max-width: 960px) {
	/* Topbar phone + long title overflow the viewport and clip header actions. */
	.topbar {
		display: none;
	}

	.menu-toggle {
		display: inline-flex !important;
		visibility: visible !important;
		opacity: 1 !important;
		position: relative;
		z-index: 520;
	}

	.site-header {
		overflow: visible;
	}

	.site-header__inner {
		gap: 10px;
		overflow: visible;
	}

	.site-header__actions {
		gap: 8px;
		flex-shrink: 0;
	}

	.header-cart {
		flex-shrink: 0;
	}

	.header-phone-btn {
		padding: 10px 12px;
		flex-shrink: 0;
	}

	.header-phone-btn span {
		display: none !important;
	}

	.site-logo__image {
		max-width: min(180px, 42vw);
	}

	.main-navigation {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		max-width: 100%;
		background: var(--mbz-surface);
		transform: translate3d(100%, 0, 0);
		visibility: hidden;
		pointer-events: none;
		transition: transform var(--mbz-transition), visibility 0s linear var(--mbz-transition);
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		padding: calc(var(--mbz-header-height) + 16px) var(--mbz-gutter) 120px;
		z-index: 450;
		box-shadow: var(--mbz-shadow-medium);
	}

	body.nav-open {
		overflow: hidden;
		touch-action: none;
	}

	body.nav-open .main-navigation {
		transform: translate3d(0, 0, 0);
		visibility: visible;
		pointer-events: auto;
		transition: transform var(--mbz-transition), visibility 0s;
	}

	.primary-menu {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
	}

	.primary-menu > li > a {
		padding: 14px 12px;
		border-bottom: 1px solid var(--mbz-border);
		border-radius: 8px;
	}

	.primary-menu > li > a[href*="/game/"] {
		max-width: none;
		font-size: 0.9rem;
		text-align: left;
	}

	.primary-menu > li > a:hover,
	.primary-menu > li.current-menu-item > a,
	.primary-menu > li.current-menu-ancestor > a {
		background: var(--mbz-red-soft);
		color: var(--mbz-red);
		border-color: transparent;
		border-bottom-color: transparent;
	}

	.primary-menu .sub-menu {
		position: static;
		display: none;
		box-shadow: none;
		border: none;
		padding-left: 12px;
	}

	.primary-menu li.menu-item-has-children:hover > .sub-menu,
	.primary-menu li.menu-item-has-children:focus-within > .sub-menu {
		display: block;
	}

	.main-navigation__cta {
		display: block;
		margin-top: 24px;
		padding-top: 20px;
		border-top: 1px solid var(--mbz-border);
	}

	body.nav-open .menu-toggle__bar:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	body.nav-open .menu-toggle__bar:nth-child(2) {
		opacity: 0;
	}

	body.nav-open .menu-toggle__bar:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}
}

/* ============ 5. Хлебные крошки ============ */
.breadcrumbs {
	background: var(--mbz-gray);
	border-bottom: 1px solid var(--mbz-border);
}

.breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	padding-block: 12px;
	font-size: 0.85rem;
	color: var(--mbz-text-muted);
}

.breadcrumbs__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.breadcrumbs__item a {
	color: var(--mbz-text-muted);
	transition: color var(--mbz-transition);
}

.breadcrumbs__item a:hover {
	color: var(--mbz-red);
}

.breadcrumbs__item [aria-current="page"] {
	color: var(--mbz-graphite);
	font-weight: 600;
}

.breadcrumbs__sep {
	opacity: 0.5;
}

/* ============ 6. Hero ============ */
.hero {
	position: relative;
	background:
		radial-gradient(ellipse 80% 60% at 78% 42%, rgba(245, 196, 0, 0.28), transparent 58%),
		radial-gradient(ellipse 50% 40% at 12% 80%, rgba(255, 255, 255, 0.04), transparent 50%),
		linear-gradient(145deg, var(--mbz-black) 0%, var(--mbz-graphite) 42%, #1a1608 72%, var(--mbz-black) 100%);
	color: var(--mbz-text-light);
	overflow: hidden;
	padding-block: clamp(48px, 8vw, 96px);
}

.hero__atmosphere {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(11, 12, 13, 0.55) 0%, transparent 48%),
		repeating-linear-gradient(
			-18deg,
			transparent,
			transparent 40px,
			rgba(255, 255, 255, 0.015) 40px,
			rgba(255, 255, 255, 0.015) 41px
		);
	pointer-events: none;
	animation: hero-atmosphere 18s ease-in-out infinite alternate;
}

.hero__grid-lines {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.35;
	background-image:
		linear-gradient(rgba(174, 180, 186, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(174, 180, 186, 0.06) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: radial-gradient(ellipse 70% 60% at 70% 45%, #000 20%, transparent 75%);
}

@keyframes hero-atmosphere {
	from { opacity: 0.85; transform: translate3d(0, 0, 0); }
	to { opacity: 1; transform: translate3d(-1.5%, 1%, 0); }
}

.hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	align-items: center;
	gap: 40px;
	position: relative;
	z-index: 1;
}

.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--mbz-red-light);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.85rem;
	margin-bottom: 16px;
}

.hero__eyebrow::before {
	content: "";
	width: 28px;
	height: 2px;
	background: var(--mbz-red-light);
}

.hero__title {
	color: var(--mbz-white);
	margin-bottom: 20px;
	animation: hero-fade-up 0.7s ease both;
}

.hero__title-accent {
	color: var(--mbz-yellow);
}

.hero__slogan {
	font-size: 1.15rem;
	color: var(--mbz-silver);
	max-width: 46ch;
	margin-bottom: 28px;
	animation: hero-fade-up 0.7s ease 0.08s both;
}

.hero__points {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 36px;
	animation: hero-fade-up 0.7s ease 0.14s both;
}

.hero__points li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	color: var(--mbz-silver);
}

.hero__points svg {
	width: 22px;
	height: 22px;
	color: var(--mbz-red-light);
	flex: none;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	animation: hero-fade-up 0.7s ease 0.2s both;
}

.hero__media {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 18px;
	animation: hero-fade-up 0.85s ease 0.12s both;
}

.hero__figure {
	margin: 0;
	display: flex;
	justify-content: center;
}

.hero__media img,
.hero__figure img {
	max-width: 100%;
	height: auto;
	background: transparent;
	filter: drop-shadow(0 18px 36px rgba(245, 196, 0, 0.28)) drop-shadow(0 28px 48px rgba(11, 12, 13, 0.45));
	transform-origin: 60% 70%;
	animation: hero-mixer-float 7s ease-in-out infinite;
}

@keyframes hero-fade-up {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-mixer-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

/* Fraud warning near mixer */
.fraud-alert {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 14px;
	align-items: start;
	padding: 16px 18px;
	border-radius: 10px;
	background: var(--mbz-red-soft);
	border: 1px solid rgba(221, 12, 13, 0.18);
	border-left: 5px solid var(--mbz-red);
	box-shadow: var(--mbz-shadow-small);
	color: var(--mbz-text);
}

.fraud-alert__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--mbz-red-transparent);
	color: var(--mbz-red);
	flex: none;
}

.fraud-alert__title {
	display: block;
	font-size: 1rem;
	letter-spacing: 0.02em;
	color: var(--mbz-red-dark);
	margin-bottom: 6px;
}

.fraud-alert__text {
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.45;
	color: var(--mbz-text-secondary);
}

@media (prefers-reduced-motion: reduce) {
	.hero__atmosphere,
	.hero__title,
	.hero__slogan,
	.hero__points,
	.hero__actions,
	.hero__media,
	.hero__media img,
	.hero__figure img {
		animation: none;
	}
}

/* ============ 7. Категории ============ */
.categories-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.category-card {
	background: var(--mbz-surface);
	border: 1px solid var(--mbz-border);
	border-radius: var(--mbz-radius);
	padding: 32px 24px;
	box-shadow: var(--mbz-shadow-small);
	transition: border-color var(--mbz-transition), box-shadow var(--mbz-transition), transform var(--mbz-transition);
}

.category-card:hover {
	border-color: rgba(221, 12, 13, 0.45);
	box-shadow: var(--mbz-shadow-medium);
	transform: translateY(-4px);
}

.category-card__icon {
	display: inline-flex;
	width: 56px;
	height: 56px;
	align-items: center;
	justify-content: center;
	border-radius: var(--mbz-radius-sm);
	background: var(--mbz-red-soft);
	color: var(--mbz-red);
	margin-bottom: 20px;
}

.category-card__icon svg {
	width: 30px;
	height: 30px;
}

.category-card__title {
	font-size: 1.15rem;
	margin-bottom: 10px;
}

.category-card__text {
	color: var(--mbz-text-muted);
	font-size: 0.95rem;
	margin: 0;
}

/* ============ 8. Карточки товаров ============ */
.product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	align-items: stretch;
	width: 100%;
}

.product-card {
	background: var(--mbz-surface);
	border: 1px solid var(--mbz-border);
	border-radius: var(--mbz-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: 100%;
	box-shadow: var(--mbz-shadow-small);
	transition: border-color var(--mbz-transition), box-shadow var(--mbz-transition), transform var(--mbz-transition);
}

.product-card:hover {
	border-color: rgba(221, 12, 13, 0.4);
	box-shadow: var(--mbz-shadow-medium);
	transform: translateY(-4px);
}

.product-card__media {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	background: #F5F6F7;
	overflow: hidden;
	flex: none;
}

.product-card__media img,
.product-card__media .product-card__img {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: contain;
	object-position: center;
	display: block;
	padding: 10px;
	box-sizing: border-box;
}

.product-card__media-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--mbz-gray-dark);
}

.product-card__media-placeholder svg {
	width: 64px;
	height: 64px;
}

.product-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--mbz-graphite);
	color: var(--mbz-white);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: 4px;
}

.product-card__body {
	padding: 18px 18px 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
	min-width: 0;
}

.product-card__brand {
	margin: 0;
	font-family: var(--mbz-font-heading);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--mbz-red);
}

.product-card__title {
	font-size: 1.05rem;
	margin: 0;
	text-transform: none;
	line-height: 1.25;
}

.product-card__title a {
	color: var(--mbz-black);
}

.product-card__title a:hover {
	color: var(--mbz-red);
}

.product-card__excerpt {
	color: var(--mbz-text-muted);
	font-size: 0.86rem;
	line-height: 1.45;
	margin: 0;
	flex: 1;
	white-space: pre-line;
	overflow: hidden;
	max-height: calc(1.45em * 4);
	min-height: 0;
}

.product-card__footer {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid var(--mbz-border);
}

.product-card__price {
	font-weight: 800;
	font-family: var(--mbz-font-heading);
	font-size: 1.1rem;
	color: var(--mbz-red);
	line-height: 1.2;
}

.product-card__actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}

.product-card__cta {
	width: 100%;
	flex-shrink: 0;
	justify-content: center;
	gap: 8px;
	padding: 10px 14px;
	min-width: 0;
	overflow: visible;
	white-space: nowrap;
}

.product-card__cta svg {
	width: 16px;
	height: 16px;
}

.product-card__cta span {
	overflow: visible;
	text-overflow: clip;
}

.price-unit {
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--mbz-text-muted);
	text-transform: none;
}

/* ============ 9. Преимущества ============ */
.advantages-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.advantages-section {
	background: var(--mbz-surface);
}

.advantage-card {
	padding: 28px;
	border-radius: var(--mbz-radius);
	background: var(--mbz-graphite);
	border: 1px solid var(--mbz-border-dark);
	box-shadow: var(--mbz-shadow-small);
}

.advantage-card__icon {
	display: inline-flex;
	width: 52px;
	height: 52px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(245, 72, 64, 0.12);
	color: var(--mbz-red-light);
	margin-bottom: 18px;
}

.advantage-card__icon svg {
	width: 28px;
	height: 28px;
}

.advantage-card__title {
	font-size: 1.1rem;
	margin-bottom: 8px;
	color: var(--mbz-white);
}

.advantage-card__text {
	color: var(--mbz-text-muted-dark);
	margin: 0;
	font-size: 0.95rem;
}

/* ============ 10. Как заказать ============ */
.order-flow-section--dark.section,
.order-flow-section--dark {
	background: linear-gradient(160deg, var(--mbz-graphite) 0%, var(--mbz-black) 100%);
	color: var(--mbz-text-light);
}

.order-flow {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px 24px;
	counter-reset: step;
}

.order-flow__step {
	position: relative;
	padding-top: 16px;
	border-top: 3px solid var(--mbz-red);
}

.order-flow__num {
	display: block;
	font-family: var(--mbz-font-heading);
	font-weight: 800;
	font-size: 2rem;
	color: var(--mbz-red-light);
	margin-bottom: 10px;
}

.order-flow__title {
	color: var(--mbz-white);
	font-size: 1.1rem;
	margin-bottom: 8px;
}

.order-flow__text {
	color: rgba(255, 255, 255, 0.72);
	margin: 0;
	font-size: 0.92rem;
}

/* ============ 11. Текст + медиа секции (доставка, производство, география) ============ */
.delivery-section__grid,
.production-section__grid,
.geography-section__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 48px;
	align-items: center;
}

.production-section__grid {
	grid-template-columns: 0.9fr 1.1fr;
}

.delivery-section__media,
.production-section__media,
.geography-section__media {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1;
	border-radius: var(--mbz-radius-lg);
	background: var(--mbz-graphite);
	color: var(--mbz-red-light);
}

.production-section__media {
	aspect-ratio: 16 / 9;
	background: #F5F6F7;
	color: inherit;
	overflow: hidden;
}

.delivery-section__media {
	background: #F5F6F7;
	color: inherit;
	overflow: hidden;
}

.delivery-section__picture,
.production-section__picture {
	display: block;
	width: 100%;
	height: 100%;
	line-height: 0;
}

.delivery-section__image,
.production-section__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.delivery-section__icon svg,
.production-section__icon svg,
.geography-section__icon svg {
	width: 40%;
	height: 40%;
}

.geography-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.tag--map-region {
	cursor: pointer;
	font: inherit;
	color: inherit;
	transition: border-color var(--mbz-transition), background var(--mbz-transition), color var(--mbz-transition), box-shadow var(--mbz-transition);
}

.tag--map-region:hover,
.tag--map-region:focus-visible {
	border-color: rgba(221, 12, 13, 0.45);
	outline: none;
	box-shadow: 0 0 0 3px var(--mbz-focus);
}

.tag--map-region.is-active {
	background: var(--mbz-red-soft);
	border-color: var(--mbz-red);
	color: var(--mbz-graphite);
	box-shadow: inset 0 0 0 1px rgba(221, 12, 13, 0.12);
}

.geography-section__hint {
	margin: 16px 0 0;
	font-size: 0.92rem;
	color: var(--mbz-text-secondary);
	line-height: 1.5;
}

.geography-section__link {
	margin: 12px 0 0;
}

.geography-section__link a {
	font-weight: 700;
	color: var(--mbz-red);
}

.geography-section__link a:hover {
	color: var(--mbz-red-dark);
}

.geography-section__media--map {
	aspect-ratio: auto;
	min-height: 420px;
	height: 420px;
	padding: 0;
	overflow: hidden;
	align-items: stretch;
	justify-content: stretch;
	background: #eef1f4;
}

.geography-section__media--map .plants-map {
	margin: 0;
	width: 100%;
	height: 100%;
}

.geography-section__media--map .plants-map__layout {
	grid-template-columns: 1fr;
	min-height: 420px;
	height: 100%;
	gap: 0;
}

.geography-section__media--map .plants-map__stage,
.geography-section__media--map .plants-map__canvas {
	min-height: 420px;
	height: 100%;
	border: 0;
	box-shadow: none;
	border-radius: var(--mbz-radius-lg);
}

.geography-section--page {
	margin-top: 56px;
}

/* ============ 12. Качество ============ */
.quality-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.quality-card {
	text-align: center;
	padding: 32px 24px;
	border-radius: var(--mbz-radius);
	background: var(--mbz-white);
	border: 1px solid var(--mbz-border);
}

.quality-card__icon {
	display: inline-flex;
	width: 64px;
	height: 64px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--mbz-black);
	color: var(--mbz-white);
	margin-bottom: 20px;
}

.quality-card__icon svg {
	width: 32px;
	height: 32px;
}

.quality-card h3 {
	font-size: 1.05rem;
	margin-bottom: 8px;
}

.quality-card p {
	color: var(--mbz-text-muted);
	font-size: 0.92rem;
	margin: 0;
}

/* ============ 13. Документы ============ */
.documents-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.document-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	padding: 24px;
	background: var(--mbz-white);
	border: 1px solid var(--mbz-border);
	border-radius: var(--mbz-radius);
}

.document-card__icon {
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: var(--mbz-gray);
	color: var(--mbz-red);
}

.document-card__icon svg {
	width: 24px;
	height: 24px;
}

.document-card__title {
	font-weight: 700;
	font-size: 0.95rem;
	line-height: 1.4;
}

.document-card__link {
	color: var(--mbz-red);
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.document-card__link:hover {
	text-decoration: underline;
}

/* ============ 14. Заводы ============ */
.plants-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.plant-card {
	background: var(--mbz-white);
	border: 1px solid var(--mbz-border);
	border-radius: var(--mbz-radius);
	overflow: hidden;
	transition: border-color var(--mbz-transition), box-shadow var(--mbz-transition), transform var(--mbz-transition);
}

.plant-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
	height: 100%;
}

.plant-card:hover {
	border-color: rgba(221, 12, 13, 0.35);
	box-shadow: var(--mbz-shadow-small);
	transform: translateY(-2px);
}

.plant-card__media {
	aspect-ratio: 1 / 1;
	background: #F5F6F7;
	color: var(--mbz-red-light);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.plant-card__picture {
	display: block;
	width: 100%;
	height: 100%;
	line-height: 0;
}

.plant-card__media img,
.plant-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	background: #F5F6F7;
}

.plant-card__placeholder svg {
	width: 30%;
	height: 30%;
}

.plant-card__body {
	padding: 20px;
}

.plant-card__title {
	font-size: 1.05rem;
	margin-bottom: 8px;
}

.plant-card__excerpt,
.plant-card__volume {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--mbz-text-muted);
	font-size: 0.88rem;
	margin: 0 0 6px;
}

.plant-card__excerpt svg {
	width: 16px;
	height: 16px;
	flex: none;
	color: var(--mbz-red);
}

.plant-card__phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
	font-weight: 700;
	color: var(--mbz-red);
	font-size: 0.9rem;
}

.plant-card__phone svg {
	width: 18px;
	height: 18px;
}

/* Interactive plants map */
.plants-map {
	margin: 32px 0 48px;
}

.plants-map__layout {
	display: grid;
	grid-template-columns: minmax(280px, 360px) 1fr;
	gap: 20px;
	align-items: stretch;
	min-height: 480px;
}

.plants-map__sidebar {
	background: var(--mbz-surface);
	border: 1px solid var(--mbz-border);
	border-radius: var(--mbz-radius-lg);
	padding: 20px;
	box-shadow: var(--mbz-shadow-small);
}

.plants-map__count {
	margin: 0 0 16px;
	font-family: var(--mbz-font-heading);
	font-size: 1.05rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--mbz-graphite);
}

.plants-map__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-height: 520px;
	overflow: auto;
}

.plants-map__item {
	display: grid;
	grid-template-columns: 32px 1fr;
	gap: 12px;
	padding: 14px 12px;
	border: 1px solid var(--mbz-border);
	border-radius: var(--mbz-radius);
	background: var(--mbz-background);
	cursor: pointer;
	transition: border-color var(--mbz-transition), background var(--mbz-transition), box-shadow var(--mbz-transition);
}

.plants-map__item:hover,
.plants-map__item:focus-visible {
	border-color: rgba(221, 12, 13, 0.4);
	outline: none;
	background: var(--mbz-white);
}

.plants-map__item.is-active {
	border-color: var(--mbz-red);
	background: var(--mbz-red-soft);
	box-shadow: inset 3px 0 0 var(--mbz-red);
}

.plants-map__item-index {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--mbz-graphite);
	color: var(--mbz-white);
	font-weight: 700;
	font-size: 0.85rem;
}

.plants-map__item.is-active .plants-map__item-index {
	background: var(--mbz-red);
}

.plants-map__item-title {
	display: block;
	font-size: 1rem;
	margin-bottom: 4px;
	color: var(--mbz-text);
}

.plants-map__item-address,
.plants-map__item-district {
	display: block;
	font-size: 0.88rem;
	color: var(--mbz-text-secondary);
	line-height: 1.4;
}

.plants-map__item-link {
	display: inline-block;
	margin-top: 8px;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--mbz-red);
}

.plants-map__item-link:hover {
	color: var(--mbz-red-dark);
}

.plants-map__stage {
	position: relative;
	border-radius: var(--mbz-radius-lg);
	overflow: hidden;
	border: 1px solid var(--mbz-border);
	box-shadow: var(--mbz-shadow-medium);
	background: #eef1f4;
	min-height: 420px;
	height: 420px;
}

.plants-map__canvas {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 420px;
	background: #e8eef5;
}

.plants-map__host {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	min-height: 420px;
	z-index: 1;
}

.plants-map__host .leaflet-container {
	width: 100%;
	height: 100%;
	min-height: 420px;
	background: #e7ecef;
	font: inherit;
}

.plants-map__host .leaflet-control-attribution {
	background: rgba(255, 255, 255, 0.78);
	color: rgba(28, 30, 33, 0.55);
	font-size: 10px;
	line-height: 1.3;
	padding: 2px 6px;
	border-radius: 4px 0 0 0;
	box-shadow: none;
	max-width: 55%;
}

.plants-map__host .leaflet-control-attribution a {
	color: rgba(28, 30, 33, 0.7);
}

.plants-map__host .leaflet-control-zoom {
	border: 0;
	box-shadow: 0 6px 18px rgba(28, 30, 33, 0.16);
	border-radius: 10px;
	overflow: hidden;
}

.plants-map__host .leaflet-control-zoom a {
	width: 34px;
	height: 34px;
	line-height: 34px;
	color: var(--mbz-graphite);
	border: 0;
	background: rgba(255, 255, 255, 0.96);
	font-size: 16px;
}

.plants-map__host .leaflet-control-zoom a:hover {
	background: var(--mbz-red-soft);
	color: var(--mbz-red);
}

.plants-map__host .leaflet-control-zoom-in {
	border-bottom: 1px solid rgba(28, 30, 33, 0.08) !important;
}

.plants-map__marker {
	background: transparent;
	border: 0;
}

.plants-map__marker-pin {
	position: relative;
	display: block;
	width: 44px;
	height: 56px;
	filter: drop-shadow(0 4px 8px rgba(28, 30, 33, 0.28));
	transform-origin: 50% 90%;
	transition: transform 0.18s ease;
}

.plants-map__marker:hover .plants-map__marker-pin,
.plants-map__marker.is-active .plants-map__marker-pin {
	transform: scale(1.08);
}

.plants-map__marker-img {
	display: block;
	width: 44px;
	height: 56px;
	pointer-events: none;
}

.plants-map__marker-fallback {
	display: block;
	width: 44px;
	height: 56px;
	background: var(--mbz-red);
	border: 3px solid #fff;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	box-shadow: 0 4px 10px rgba(28, 30, 33, 0.28);
}

.plants-map__marker-index {
	position: absolute;
	right: -2px;
	top: -2px;
	z-index: 2;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #1c1e21;
	color: #fff;
	border: 2px solid #fff;
	font-family: Oswald, Manrope, sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 2px 6px rgba(28, 30, 33, 0.25);
}

.plants-map__marker.is-active .plants-map__marker-index {
	background: var(--mbz-red);
}

.plants-map__marker-sr {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.plants-map__tooltip.leaflet-tooltip {
	background: rgba(28, 30, 33, 0.92);
	border: 0;
	border-radius: 8px;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 600;
	padding: 6px 10px;
	box-shadow: 0 8px 20px rgba(28, 30, 33, 0.22);
}

.plants-map__tooltip.leaflet-tooltip::before {
	border-top-color: rgba(28, 30, 33, 0.92);
}

.plants-map__frame {
	display: none;
}

.plants-map__chips {
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 10px;
	z-index: 500;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
	pointer-events: none;
}

.plants-map__chips li {
	pointer-events: auto;
}

.plants-map__chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px 6px 6px;
	border: 1px solid rgba(28, 30, 33, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 4px 14px rgba(28, 30, 33, 0.12);
	color: var(--mbz-graphite);
	font: inherit;
	font-size: 0.8rem;
	font-weight: 600;
	cursor: pointer;
	transition: border-color var(--mbz-transition), background var(--mbz-transition);
}

.plants-map__chip:hover,
.plants-map__chip:focus-visible {
	border-color: rgba(221, 12, 13, 0.45);
	outline: none;
}

.plants-map__chip.is-active {
	border-color: var(--mbz-red);
	background: var(--mbz-red-soft);
}

.plants-map__chip-index {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--mbz-red);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
}

.plants-map--compact .plants-map__layout {
	grid-template-columns: 1fr;
	min-height: 420px;
}

.plants-map--compact .plants-map__stage,
.plants-map--compact .plants-map__canvas,
.plants-map--compact .plants-map__frame {
	min-height: 420px;
}

.plants-map__caption {
	margin: 0;
	padding: 12px 16px;
	background: var(--mbz-surface);
	border-top: 1px solid var(--mbz-border);
	font-size: 0.92rem;
	color: var(--mbz-text-secondary);
}

.plants-map__caption a {
	color: var(--mbz-red);
	font-weight: 600;
}

.plants-map__svg {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 420px;
}

.plants-map__svg.is-panning .plants-map__world {
	transition: opacity 0.35s ease;
	opacity: 0.88;
}

.plants-map__oblast {
	fill: rgba(176, 188, 202, 0.22);
	stroke: rgba(70, 82, 96, 0.48);
	stroke-width: 1.75;
	stroke-dasharray: 6 8;
}

.plants-map__new-moscow {
	fill: rgba(196, 208, 178, 0.38);
	stroke: rgba(110, 124, 96, 0.4);
	stroke-width: 1.4;
}

.plants-map__city {
	stroke: rgba(90, 100, 112, 0.22);
	stroke-width: 1;
}

.plants-map__ring {
	stroke: rgba(70, 80, 92, 0.5);
	stroke-width: 1.75;
	stroke-dasharray: 5 6;
}

.plants-map__ring--mkad {
	stroke: #4a5560;
	stroke-width: 3.25;
	stroke-dasharray: none;
}

.plants-map__ring--ttk {
	stroke: rgba(70, 80, 92, 0.48);
	stroke-dasharray: 3 6;
	stroke-width: 1.65;
}

.plants-map__ring--garden {
	stroke: rgba(221, 12, 13, 0.34);
	stroke-dasharray: none;
	stroke-width: 1.45;
}

.plants-map__road {
	stroke-linecap: round;
	stroke-linejoin: round;
}

.plants-map__road--major-edge {
	stroke: #8a93a0;
	stroke-width: 5.5;
}

.plants-map__road--major {
	stroke: #ffffff;
	stroke-width: 3.25;
}

.plants-map__road--minor-edge {
	stroke: #a4adb8;
	stroke-width: 3.5;
}

.plants-map__road--minor {
	stroke: #f7f8fa;
	stroke-width: 1.85;
}

.plants-map__river {
	stroke: url(#mbzRiver);
	stroke-width: 9;
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: 0.88;
}

.plants-map__city-label {
	fill: rgba(40, 48, 58, 0.78);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-family: var(--mbz-font-heading), sans-serif;
}

.plants-map__area-label {
	fill: rgba(55, 64, 74, 0.62);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-family: var(--mbz-font-heading), sans-serif;
}

.plants-map__area-label--soft {
	fill: rgba(55, 64, 74, 0.48);
	font-size: 10px;
}

.plants-map__brand-label {
	fill: rgba(55, 64, 74, 0.58);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.08em;
	font-family: var(--mbz-font-heading), sans-serif;
}

.plants-map__radius {
	pointer-events: none;
}

.plants-map__radius--extended {
	fill: rgba(221, 12, 13, 0.12);
	stroke: rgba(221, 12, 13, 0.42);
	stroke-width: 1.35;
}

.plants-map__radius--core {
	fill: rgba(221, 12, 13, 0.2);
	stroke: rgba(221, 12, 13, 0.65);
	stroke-width: 1.7;
}

.plants-map__pin {
	cursor: pointer;
	outline: none;
}

.plants-map__pin-halo {
	fill: rgba(221, 12, 13, 0.14);
	opacity: 0;
	transition: opacity 0.25s ease, r 0.25s ease;
}

.plants-map__pin:hover .plants-map__pin-halo,
.plants-map__pin:focus-visible .plants-map__pin-halo,
.plants-map__pin.is-active .plants-map__pin-halo {
	opacity: 1;
}

.plants-map__pin-body {
	fill: #dd0c0d;
	stroke: #ffffff;
	stroke-width: 2;
	filter: drop-shadow(0 3px 8px rgba(28, 30, 33, 0.22));
	transition: transform 0.2s ease;
	transform-box: fill-box;
	transform-origin: center bottom;
}

.plants-map__pin:hover .plants-map__pin-body,
.plants-map__pin.is-active .plants-map__pin-body {
	fill: #b80a0b;
}

.plants-map__pin-core {
	fill: #ffffff;
}

.plants-map__pin-index {
	fill: #dd0c0d;
	font-size: 9px;
	font-weight: 800;
	font-family: var(--mbz-font-heading), sans-serif;
	pointer-events: none;
}

.plants-map__pin-label {
	fill: #1c1e21;
	font-size: 12px;
	font-weight: 700;
	paint-order: stroke fill;
	stroke: rgba(255, 255, 255, 0.95);
	stroke-width: 3.5px;
	font-family: var(--mbz-font-body), sans-serif;
	pointer-events: none;
}

.plants-map__card {
	position: absolute;
	z-index: 450;
	left: 14px;
	right: 14px;
	bottom: 52px;
	max-width: 320px;
	padding: 14px 16px 16px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.97);
	border: 1px solid rgba(28, 30, 33, 0.08);
	box-shadow: 0 12px 36px rgba(11, 12, 13, 0.28);
	color: var(--mbz-graphite);
}

.plants-map__card[hidden] {
	display: none !important;
}

.plants-map__card-close {
	position: absolute;
	top: 6px;
	right: 8px;
	width: 32px;
	height: 32px;
	border: 0;
	background: transparent;
	color: var(--mbz-text-secondary);
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
}

.plants-map__card-title {
	display: block;
	padding-right: 28px;
	margin: 0 0 6px;
	font-family: var(--mbz-font-heading);
	font-size: 1.02rem;
	line-height: 1.25;
	color: var(--mbz-graphite);
}

.plants-map__card-address,
.plants-map__card-district {
	margin: 0 0 4px;
	font-size: 0.9rem;
	color: var(--mbz-text-secondary);
	line-height: 1.4;
}

.plants-map__card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 16px;
	margin-top: 12px;
}

.plants-map__card-link {
	font-weight: 700;
	color: var(--mbz-red);
}

.plants-map__card-navi {
	font-weight: 600;
	color: var(--mbz-text-secondary);
}

.plants-map__card-link:hover,
.plants-map__card-navi:hover {
	color: var(--mbz-red-dark);
}

.plants-map--geography {
	margin: 0;
}

.plants-map--geography .plants-map__stage,
.plants-map--geography .plants-map__canvas,
.plants-map--geography .plants-map__frame {
	height: 100%;
	min-height: 420px;
}

.plants-map--geography .plants-map__card {
	bottom: 56px;
}

.plants-seo-links {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	display: grid;
	gap: 10px;
}

.plants-seo-links a {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 14px 16px;
	border: 1px solid var(--mbz-border);
	border-radius: var(--mbz-radius);
	background: var(--mbz-surface);
	color: var(--mbz-text);
	text-decoration: none;
	transition: border-color var(--mbz-transition), box-shadow var(--mbz-transition);
}

.plants-seo-links a:hover {
	border-color: rgba(221, 12, 13, 0.4);
	box-shadow: var(--mbz-shadow-small);
}

.plants-seo-links span {
	font-size: 0.9rem;
	color: var(--mbz-text-secondary);
}

.plant-page__visual {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 28px;
	align-items: center;
	margin: 28px 0 36px;
}

.plant-page__media {
	aspect-ratio: 1 / 1;
	background: #F5F6F7;
	border-radius: var(--mbz-radius-lg);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.plant-page__picture {
	display: block;
	width: 100%;
	height: 100%;
	line-height: 0;
}

.plant-page__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	background: #F5F6F7;
}

.plant-page__visual-meta {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.plant-page__visual-title {
	margin: 0;
	font-family: var(--mbz-font-heading);
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--mbz-black);
}

.plant-page__address-line {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 1.15rem;
	font-weight: 600;
	margin: 0 0 8px;
}

.plant-page__pin svg {
	width: 28px;
	height: 28px;
	color: var(--mbz-red);
}

.plant-page__meta {
	color: var(--mbz-text-secondary);
	margin: 0 0 8px;
}

.plant-page__section {
	margin: 36px 0;
}

.plant-page__section h2 {
	margin-bottom: 12px;
}

.plant-page__section p {
	color: var(--mbz-text-secondary);
	max-width: 72ch;
}

.plant-page__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}

.plant-page__others-list {
	list-style: none;
	margin: 16px 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.plant-page__others-list a {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 16px;
	border: 1px solid var(--mbz-border);
	border-radius: var(--mbz-radius);
	background: var(--mbz-surface);
	color: inherit;
	text-decoration: none;
	height: 100%;
	transition: border-color var(--mbz-transition), transform var(--mbz-transition);
}

.plant-page__others-list a:hover {
	border-color: rgba(221, 12, 13, 0.4);
	transform: translateY(-2px);
}

.plant-page__others-list span {
	font-size: 0.9rem;
	color: var(--mbz-text-secondary);
}

.plant-page__all-link a {
	font-weight: 700;
	color: var(--mbz-red);
}

/* ============ 15. Калькулятор ============ */
.calculator {
	background: var(--mbz-graphite);
	border: 1px solid var(--mbz-border-dark);
	border-radius: var(--mbz-radius-lg);
	overflow: hidden;
	box-shadow: var(--mbz-shadow-medium);
	color: var(--mbz-text-light);
}

.calculator__tabs {
	display: flex;
	background: var(--mbz-black);
	border-bottom: 1px solid var(--mbz-border-dark);
	overflow-x: auto;
}

.calculator__tab {
	flex: 1;
	min-width: 180px;
	padding: 18px 20px;
	background: none;
	border: none;
	border-bottom: 3px solid transparent;
	font-family: var(--mbz-font-heading);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.9rem;
	color: var(--mbz-text-muted-dark);
	cursor: pointer;
	transition: color var(--mbz-transition), border-color var(--mbz-transition), background var(--mbz-transition);
}

.calculator__tab.is-active {
	color: var(--mbz-white);
	border-color: var(--mbz-red);
	background: var(--mbz-graphite-light);
}

.calculator__body {
	padding: 32px;
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 32px;
	align-items: start;
}

.calculator__form {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.calculator__form.is-hidden {
	display: none;
}

.calculator__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.calculator__field label {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--mbz-silver);
}

.calculator__field input {
	padding: 12px 14px;
	border: 1px solid var(--mbz-border);
	border-radius: var(--mbz-radius-sm);
	font-size: 1rem;
	background: var(--mbz-surface);
	color: var(--mbz-text);
}

.calculator__field input:focus {
	outline: none;
	border-color: var(--mbz-red);
	box-shadow: 0 0 0 3px var(--mbz-focus);
	background: var(--mbz-white);
}

.calculator__result {
	background: var(--mbz-black);
	color: var(--mbz-white);
	border: 1px solid var(--mbz-border-dark);
	border-radius: var(--mbz-radius);
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.calculator__result-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.calculator__result-label {
	color: var(--mbz-text-muted-dark);
	font-size: 0.9rem;
}

.calculator__result-value {
	font-family: var(--mbz-font-heading);
	font-weight: 800;
	font-size: 1.4rem;
	color: var(--mbz-white);
}

.calculator__result-value--accent {
	color: var(--mbz-red-light);
}

.calculator__hint {
	font-size: 0.82rem;
	color: var(--mbz-text-muted-dark);
	margin: 0;
}

.calculator__result .btn {
	margin-top: 6px;
}

/* ============ 16. Таблицы цен ============ */
.price-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid var(--mbz-border);
	border-radius: var(--mbz-radius);
	background: var(--mbz-surface);
	box-shadow: var(--mbz-shadow-small);
}

.price-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 480px;
}

.price-table th,
.price-table td {
	padding: 16px 20px;
	text-align: left;
	border-bottom: 1px solid var(--mbz-border);
	color: var(--mbz-text);
}

.price-table th {
	background: var(--mbz-graphite);
	color: var(--mbz-white);
	font-family: var(--mbz-font-heading);
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.03em;
}

.price-table tbody tr:nth-child(even) {
	background: var(--mbz-background);
}

.price-table tbody tr:last-child td {
	border-bottom: none;
}

.price-table tbody tr:hover {
	background: var(--mbz-red-soft);
}

.price-table td:last-child,
.price-table .price,
.price-table .amount {
	color: var(--mbz-red);
	font-weight: 700;
}

.prices-note {
	color: var(--mbz-text-muted);
	font-size: 0.88rem;
	margin-top: 16px;
}

/* ============ 17. Области применения ============ */
.applications-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.application-card {
	text-align: center;
	padding: 30px 20px;
	border-radius: var(--mbz-radius);
	background: var(--mbz-white);
	border: 1px solid var(--mbz-border);
}

.application-card__icon {
	display: inline-flex;
	width: 56px;
	height: 56px;
	align-items: center;
	justify-content: center;
	border-radius: var(--mbz-radius-sm);
	background: var(--mbz-red);
	color: var(--mbz-white);
	margin-bottom: 16px;
}

.application-card__icon svg {
	width: 28px;
	height: 28px;
}

.application-card h3 {
	font-size: 1rem;
	margin-bottom: 8px;
}

.application-card p {
	color: var(--mbz-text-muted);
	font-size: 0.9rem;
	margin: 0;
}

/* ============ 18. Статьи ============ */
.articles-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.articles-grid--list {
	grid-template-columns: 1fr;
}

.article-card {
	background: var(--mbz-white);
	border: 1px solid var(--mbz-border);
	border-radius: var(--mbz-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.article-card--row {
	flex-direction: row;
	align-items: stretch;
}

.article-card--row .article-card__media {
	width: 280px;
	flex: none;
}

.article-card__media {
	display: block;
	aspect-ratio: 16 / 9;
	background: var(--mbz-gray);
	overflow: hidden;
}

.article-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: transform var(--mbz-transition);
}

.article-card:hover .article-card__media img {
	transform: scale(1.04);
}

.article-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--mbz-gray-dark);
}

.article-card__placeholder svg {
	width: 48px;
	height: 48px;
}

.article-card__body {
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.article-card__date {
	font-size: 0.8rem;
	color: var(--mbz-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.03em;
	font-weight: 700;
}

.article-card__title {
	font-size: 1.1rem;
	text-transform: none;
	margin: 0;
}

.article-card__title a {
	color: var(--mbz-black);
}

.article-card__title a:hover {
	color: var(--mbz-red);
}

.article-card__excerpt {
	color: var(--mbz-text-muted);
	font-size: 0.92rem;
	margin: 0;
	flex: 1;
}

.article-card__link {
	color: var(--mbz-red);
	font-weight: 700;
	font-size: 0.9rem;
	align-self: flex-start;
}

.article-card__link:hover {
	text-decoration: underline;
}

/* ============ 19. FAQ ============ */
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: var(--mbz-container-narrow);
}

.faq-item {
	background: var(--mbz-surface);
	border: 1px solid var(--mbz-border);
	border-radius: var(--mbz-radius);
	padding: 4px 4px;
	box-shadow: var(--mbz-shadow-small);
	transition: border-color var(--mbz-transition), box-shadow var(--mbz-transition);
}

.faq-item[open] {
	border-color: rgba(221, 12, 13, 0.35);
	box-shadow: var(--mbz-shadow-medium);
}

.faq-item__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	cursor: pointer;
	font-weight: 700;
	list-style: none;
	font-size: 1.02rem;
	color: var(--mbz-text);
}

.faq-item__question::-webkit-details-marker {
	display: none;
}

.faq-item__icon {
	flex: none;
	width: 22px;
	height: 22px;
	color: var(--mbz-red);
	transition: transform var(--mbz-transition);
}

.faq-item[open] .faq-item__icon {
	transform: rotate(180deg);
}

.faq-item__answer {
	padding: 0 20px 20px;
	color: var(--mbz-text-muted);
}

.faq-item__answer p:last-child {
	margin-bottom: 0;
}

/* ============ 20. Контакты / реквизиты ============ */
.contacts-section__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 32px;
}

.contacts-card,
.requisites-card {
	background: var(--mbz-white);
	border: 1px solid var(--mbz-border);
	border-radius: var(--mbz-radius);
	padding: 36px;
}

.contacts-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 24px 0 28px;
}

.contacts-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.contacts-list__icon {
	flex: none;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--mbz-gray);
	color: var(--mbz-red);
}

.contacts-list__icon svg {
	width: 22px;
	height: 22px;
}

.contacts-list__label {
	display: block;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--mbz-text-muted);
	margin-bottom: 4px;
}

.contacts-list__value {
	font-weight: 700;
	color: var(--mbz-black);
	font-size: 1.05rem;
}

/* Legal hub (/legal/) */
.legal-toc {
	margin: 0 0 36px;
	padding: 20px 24px;
	background: var(--mbz-surface, #f3f4f5);
	border-left: 3px solid var(--mbz-red);
}

.legal-toc__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.legal-toc__list a {
	font-weight: 600;
	color: var(--mbz-black);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.legal-toc__list a:hover {
	color: var(--mbz-red);
}

.legal-section {
	margin: 0 0 48px;
	scroll-margin-top: 96px;
}

.legal-section h2 {
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--mbz-border);
}

.legal-section h3 {
	margin: 28px 0 12px;
	font-size: 1.1rem;
}

.legal-section p,
.legal-section li {
	max-width: 72ch;
	line-height: 1.65;
}

.legal-section ul {
	margin: 0 0 16px;
	padding-left: 1.25em;
}

.legal-section__meta {
	color: var(--mbz-text-muted);
	font-size: 0.92rem;
	margin-bottom: 20px;
}

.requisites-list {
	margin: 24px 0 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.requisites-list__row {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 12px;
	border-bottom: 1px dashed var(--mbz-border);
	font-size: 0.95rem;
}

.requisites-list__row dt {
	color: var(--mbz-text-muted);
	flex: none;
}

.requisites-list__row dd {
	margin: 0;
	font-weight: 700;
	text-align: right;
}

.contacts-map-placeholder {
	margin-top: 32px;
	background: var(--mbz-graphite);
	color: var(--mbz-white);
	border-radius: var(--mbz-radius);
	padding: 48px 24px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.contacts-map-placeholder__icon svg {
	width: 44px;
	height: 44px;
	color: var(--mbz-red-light);
}

.contacts-map-placeholder p {
	max-width: 46ch;
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
}

/* ============ 21. CTA phone ============ */
.cta-phone {
	position: relative;
	background: linear-gradient(135deg, var(--mbz-black) 0%, var(--mbz-graphite) 55%, #16090a 100%);
	color: var(--mbz-text-light);
	padding-block: 56px;
	overflow: hidden;
}

.cta-phone::before {
	content: "";
	position: absolute;
	inset: auto -8% -55% auto;
	width: min(520px, 70vw);
	height: min(520px, 70vw);
	border-radius: 50%;
	border: 2px solid rgba(221, 12, 13, 0.45);
	box-shadow: 0 0 0 1px rgba(245, 72, 64, 0.12), inset 0 0 60px rgba(221, 12, 13, 0.12);
	pointer-events: none;
}

.cta-phone::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent 0%, var(--mbz-red) 35%, var(--mbz-red-light) 65%, transparent 100%);
	pointer-events: none;
}

.cta-phone__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.cta-phone__text h2 {
	color: var(--mbz-white);
	margin-bottom: 8px;
	font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.cta-phone__text p {
	margin: 0;
	color: var(--mbz-silver);
	max-width: 50ch;
}

.cta-phone__actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

/* ============ 22. Sticky phone (mobile) ============ */
.sticky-phone {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 600;
	display: none;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, var(--mbz-red) 0%, var(--mbz-red-dark) 100%);
	color: var(--mbz-white);
	padding: 14px 20px;
	border-radius: 999px;
	box-shadow: var(--mbz-shadow-red);
	font-weight: 700;
	font-family: var(--mbz-font-heading);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.sticky-phone svg {
	width: 22px;
	height: 22px;
}

@media (max-width: 768px) {
	.sticky-phone {
		display: none;
		bottom: 12px;
		right: 12px;
		left: 12px;
		justify-content: center;
	}

	.sticky-phone.is-visible {
		display: flex;
	}
}

/* ============ 23. Footer ============ */
.site-footer {
	background: var(--mbz-footer-bg);
	color: var(--mbz-text-muted-dark);
}

.footer__top {
	display: grid;
	grid-template-columns: 1.4fr 0.85fr 0.85fr 1fr;
	gap: 32px;
	padding-block: 56px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo-pad {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	background: var(--mbz-background);
	border-radius: 10px;
	box-shadow: inset 0 0 0 1px rgba(11, 12, 13, 0.04);
}

.footer__logo img,
.footer__logo .site-logo__image {
	height: auto;
	width: auto;
	max-width: 180px;
	max-height: 56px;
	object-fit: contain;
	opacity: 1;
	filter: none;
}

.delivery-page__hero {
	margin: 0 0 28px;
	border-radius: var(--mbz-radius);
	overflow: hidden;
	max-width: 720px;
}

.delivery-page__hero img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* Delivery fleet cards (light photo cards) */
.fleet-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 20px;
}

.fleet-card {
	background: var(--mbz-white);
	border: 1px solid var(--mbz-border);
	border-radius: var(--mbz-radius);
	box-shadow: var(--mbz-shadow-small);
	overflow: hidden;
	transition: border-color var(--mbz-transition), box-shadow var(--mbz-transition), transform var(--mbz-transition);
}

.fleet-card:hover {
	border-color: rgba(221, 12, 13, 0.35);
	box-shadow: var(--mbz-shadow-medium);
	transform: translateY(-2px);
}

.fleet-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
	padding: 18px 18px 20px;
}

.fleet-card__title {
	order: 0;
	margin: 0 0 12px;
	font-size: 1.05rem;
	line-height: 1.3;
	color: var(--mbz-text);
}

.fleet-card__media {
	order: 1;
	aspect-ratio: 1 / 1;
	background: #F5F6F7;
	border-radius: var(--mbz-radius-sm);
	overflow: hidden;
	margin-bottom: 12px;
}

.fleet-card__picture {
	display: block;
	width: 100%;
	height: 100%;
	line-height: 0;
}

.fleet-card__media img,
.fleet-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	background: #F5F6F7;
}

.fleet-card__text {
	order: 2;
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.45;
	color: var(--mbz-text-secondary);
}

.delivery-vehicle-page__visual {
	margin: 0 0 24px;
	border-radius: var(--mbz-radius);
	overflow: hidden;
	background: #F5F6F7;
	max-width: 720px;
}

.delivery-vehicle-page__picture {
	display: block;
	line-height: 0;
}

.delivery-vehicle-page__image {
	display: block;
	width: 100%;
	height: auto;
	max-height: min(70vh, 640px);
	object-fit: contain;
	object-position: center;
	background: #F5F6F7;
}

.delivery-vehicle-page__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0 0 32px;
}

.delivery-vehicle-page__actions--bottom {
	margin: 28px 0 0;
}

.delivery-vehicle-page__section {
	margin-bottom: 28px;
}

.delivery-vehicle-page__section h2 {
	margin-bottom: 12px;
}

.delivery-vehicle-page__section h3 {
	margin: 18px 0 10px;
	font-size: 1.15rem;
}

.delivery-vehicle-page__links,
.delivery-vehicle-page__others-list {
	margin: 0;
	padding-left: 1.2em;
}

.delivery-vehicle-page__links li,
.delivery-vehicle-page__others-list li {
	margin-bottom: 8px;
}

.delivery-vehicle-page__faq .faq-list {
	max-width: none;
}

.footer__logo .site-logo__text {
	color: var(--mbz-white);
}

.footer__slogan {
	margin: 18px 0 22px;
	color: var(--mbz-text-muted-dark);
	max-width: 36ch;
}

.footer__pending {
	color: var(--mbz-text-muted-dark);
	font-size: 0.92rem;
}

.site-footer .widget-title {
	color: var(--mbz-white);
	font-size: 0.95rem;
	margin-bottom: 18px;
}

.footer-menu,
.footer-requisites {
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-size: 0.92rem;
}

.footer-menu a,
.site-footer .footer-menu a,
.site-footer .primary-menu a,
.site-footer .primary-menu > li > a,
.site-footer .menu a {
	color: var(--mbz-silver);
	transition: color var(--mbz-transition);
	border-bottom-color: transparent;
	text-decoration: none;
}

.footer-menu a:hover,
.site-footer .footer-menu a:hover,
.site-footer .primary-menu a:hover,
.site-footer .primary-menu > li > a:hover,
.site-footer .menu a:hover {
	color: var(--mbz-red-light);
}

.site-footer .footer-menu .current-menu-item > a,
.site-footer .footer-menu .current_page_item > a,
.site-footer .primary-menu .current-menu-item > a,
.site-footer .primary-menu .current_page_item > a,
.site-footer .menu .current-menu-item > a,
.site-footer .menu .current_page_item > a {
	color: var(--mbz-red-light);
	border-bottom-color: transparent;
}

/* Fallback/header menu classes must not keep horizontal header layout in footer */
.site-footer .primary-menu,
.site-footer .primary-menu--fallback {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	flex-wrap: nowrap;
}

.footer-requisites li {
	color: var(--mbz-text-muted-dark);
	line-height: 1.5;
}

.footer__bottom {
	padding-block: 20px;
}

.footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.footer__copy {
	margin: 0;
	font-size: 0.82rem;
	color: rgba(174, 180, 186, 0.75);
}

.footer-legal-menu,
.footer-legal-menu__list {
	display: flex;
	gap: 20px;
}

.footer-legal-menu a {
	color: rgba(174, 180, 186, 0.75);
	font-size: 0.82rem;
}

.footer-legal-menu a:hover {
	color: var(--mbz-red-light);
}

/* ============ 24. Страницы: layout, page-header, entry-content ============ */
.page-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 48px;
	padding-block: 48px;
	align-items: start;
}

.page-layout--single,
.page-layout--narrow {
	grid-template-columns: 1fr;
	max-width: var(--mbz-container-narrow);
}

.page-layout--wide {
	grid-template-columns: 1fr;
}

.page-header {
	margin-bottom: 32px;
}

.page-header__title {
	margin-bottom: 12px;
}

.page-header__intro {
	color: var(--mbz-text-muted);
	font-size: 1.05rem;
	max-width: 70ch;
}

.page-header--shop {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 3px solid var(--mbz-red);
}

.page-header__brand {
	margin: 0;
	font-family: var(--mbz-font-heading);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mbz-red);
}

.entry-content,
.wp-content {
	font-size: 1.02rem;
	line-height: 1.75;
}

.entry-content h2,
.wp-content h2 {
	margin-top: 1.6em;
}

.entry-content h3,
.wp-content h3 {
	margin-top: 1.4em;
}

.entry-content ul,
.wp-content ul {
	list-style: disc;
	padding-left: 1.4em;
	margin-bottom: 1em;
}

.entry-content ol,
.wp-content ol {
	list-style: decimal;
	padding-left: 1.4em;
	margin-bottom: 1em;
}

.entry-content a,
.wp-content a {
	color: var(--mbz-red);
	text-decoration: underline;
}

.entry-content a.btn,
.wp-content a.btn {
	text-decoration: none;
}

.entry-content a.btn--primary,
.entry-content a.btn--primary:hover,
.entry-content a.btn--primary:focus,
.entry-content a.btn--primary:active,
.wp-content a.btn--primary,
.wp-content a.btn--primary:hover,
.wp-content a.btn--primary:focus,
.wp-content a.btn--primary:active {
	color: #FFFFFF;
	text-decoration: none;
}

.entry-content img,
.wp-content img {
	border-radius: var(--mbz-radius-sm);
}

.page-content__thumbnail,
.single-article__thumbnail {
	margin-bottom: 32px;
	border-radius: var(--mbz-radius);
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--mbz-gray);
}

.page-content__thumbnail img,
.single-article__thumbnail img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center center;
}

.archive-header {
	margin-bottom: 32px;
}

.single-article__cats {
	display: flex;
	gap: 8px;
	margin-bottom: 14px;
}

.single-article__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--mbz-text-muted);
	font-size: 0.9rem;
	text-transform: none;
}

.single-article__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--mbz-border);
}

.sidebar-widget {
	background: var(--mbz-gray);
	border-radius: var(--mbz-radius);
	padding: 24px;
	margin-bottom: 24px;
}

.sidebar-widget--phone p {
	color: var(--mbz-text-muted);
	font-size: 0.92rem;
}

.page-layout__sidebar .widget {
	margin-bottom: 24px;
}

/* Пагинация (WP archives, catalog/articles templates, WooCommerce shop) */
.pagination,
.navigation.pagination,
.woocommerce-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 40px 0 0;
	width: 100%;
}

.pagination .nav-links,
.navigation.pagination .nav-links,
ul.page-numbers {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	list-style: none !important;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	box-shadow: none;
	width: auto;
	max-width: 100%;
}

ul.page-numbers > li {
	list-style: none !important;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}

ul.page-numbers > li::marker {
	content: none;
}

/* Pill targets: a/span only — never ul.page-numbers (list wrapper). */
a.page-numbers,
span.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border-radius: var(--mbz-radius-sm);
	background: var(--mbz-white);
	border: 1px solid var(--mbz-border);
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	color: var(--mbz-graphite);
	box-sizing: border-box;
	vertical-align: middle;
}

a.page-numbers:hover {
	border-color: var(--mbz-red);
	color: var(--mbz-red);
	background: var(--mbz-white);
}

span.page-numbers.current {
	background: var(--mbz-red);
	border-color: var(--mbz-red);
	color: var(--mbz-white);
}

span.page-numbers.current:hover {
	color: var(--mbz-white);
	background: var(--mbz-red);
}

a.page-numbers.prev,
a.page-numbers.next {
	font-size: 1.05rem;
}

/* Комментарии */
.comments-area {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--mbz-border);
}

.comment-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 32px;
}

.comment-body {
	background: var(--mbz-gray);
	padding: 20px;
	border-radius: var(--mbz-radius-sm);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--mbz-border);
	border-radius: var(--mbz-radius-sm);
	margin-bottom: 16px;
	font-family: inherit;
	background: var(--mbz-surface);
	color: var(--mbz-text);
	transition: border-color var(--mbz-transition), box-shadow var(--mbz-transition);
}

.woocommerce-checkout .input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea,
.woocommerce-cart .input-text,
.woocommerce form .woocommerce-Input {
	padding: 12px 14px;
	border: 1px solid var(--mbz-border);
	border-radius: var(--mbz-radius-sm);
	font-family: inherit;
	background: var(--mbz-surface);
	color: var(--mbz-text);
	transition: border-color var(--mbz-transition), box-shadow var(--mbz-transition);
}

.comment-form input:focus,
.comment-form textarea:focus,
.woocommerce-checkout .input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-cart .input-text:focus,
.summary.entry-summary .quantity input:focus {
	outline: none;
	border-color: var(--mbz-red);
	box-shadow: 0 0 0 3px var(--mbz-focus);
}

.woocommerce form .woocommerce-invalid .input-text,
.woocommerce form .woocommerce-invalid input {
	border-color: var(--mbz-red-light);
	background: var(--mbz-red-soft);
}

.comment-form .form-submit input {
	display: inline-flex;
	align-items: center;
	padding: 14px 28px;
	background: linear-gradient(135deg, var(--mbz-red) 0%, var(--mbz-red-dark) 100%);
	color: var(--mbz-white);
	border: none;
	border-radius: var(--mbz-radius-btn);
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: var(--mbz-shadow-red);
}

/* ============ 25. WooCommerce ============ */
.shop-layout {
	display: block;
	width: 100%;
	padding-block: 48px;
}

.shop-layout--full,
.shop-layout__content {
	width: 100%;
	max-width: none;
	min-width: 0;
}

.shop-layout__sidebar {
	display: none;
}

.shop-filters {
	background: var(--mbz-surface);
	border: 1px solid var(--mbz-border);
	border-left: 4px solid var(--mbz-red);
	border-radius: var(--mbz-radius);
	padding: 24px;
	margin-bottom: 24px;
	box-shadow: var(--mbz-shadow-small);
}

.shop-filters__list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.shop-filters__list a {
	display: flex;
	justify-content: space-between;
	padding: 10px 12px;
	border-radius: 6px;
	font-weight: 600;
	color: var(--mbz-graphite);
}

.shop-filters__list a:hover,
.shop-filters__list a.is-active {
	background: var(--mbz-red-soft);
	color: var(--mbz-red);
}

.shop-filters__count {
	color: var(--mbz-text-muted);
	font-weight: 400;
}

.catalog-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 32px;
}

.catalog-filters__item {
	padding: 10px 16px;
	border-radius: var(--mbz-radius-sm);
	background: var(--mbz-white);
	border: 1px solid var(--mbz-border);
	font-weight: 700;
	font-size: 0.88rem;
	color: var(--mbz-graphite);
	transition: background var(--mbz-transition), border-color var(--mbz-transition), color var(--mbz-transition);
}

.catalog-filters__item:hover,
.catalog-filters__item.is-active {
	background: var(--mbz-graphite);
	border-color: var(--mbz-graphite);
	color: var(--mbz-white);
}

.catalog-filters__item.is-active {
	background: var(--mbz-red);
	border-color: var(--mbz-red);
}

.woocommerce-notices-wrapper {
	margin-bottom: 24px;
}

.woocommerce-message,
.woocommerce-info {
	list-style: none;
	background: var(--mbz-background);
	border-left: 4px solid var(--mbz-red);
	padding: 16px 20px;
	border-radius: 6px;
	margin-bottom: 16px;
	color: var(--mbz-text);
}

.woocommerce-error {
	list-style: none;
	background: var(--mbz-red-soft);
	border-left: 4px solid var(--mbz-red);
	padding: 16px 20px;
	border-radius: 6px;
	margin-bottom: 16px;
	color: var(--mbz-red-dark);
}

.woocommerce-message {
	border-left-color: #2f6b3a;
}

.woocommerce-result-count,
.woocommerce-ordering {
	display: inline-block;
	margin-bottom: 24px;
	color: var(--mbz-text-muted);
	font-size: 0.9rem;
}

.woocommerce-ordering select {
	padding: 8px 12px;
	border-radius: 6px;
	border: 1px solid var(--mbz-border);
}

/* Одиночный товар */
.single-product-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	padding-block: 40px;
}

.single-product-grid__gallery .woocommerce-product-gallery {
	border-radius: var(--mbz-radius);
	overflow: hidden;
	background: #F5F6F7;
}

.single-product-grid__gallery .woocommerce-product-gallery__wrapper,
.single-product-grid__gallery .woocommerce-product-gallery__image {
	background: #F5F6F7;
}

.single-product-grid__gallery .woocommerce-product-gallery__image img,
.single-product-grid__gallery .woocommerce-product-gallery__image--placeholder img,
.single-product-grid__gallery .wp-post-image {
	width: 100%;
	height: auto;
	max-height: min(72vh, 640px);
	object-fit: contain;
	object-position: center;
	background: #F5F6F7;
}

.summary.entry-summary .product_title {
	margin-bottom: 12px;
}

.summary.entry-summary .price {
	font-family: var(--mbz-font-heading);
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--mbz-red);
	display: block;
	margin-bottom: 16px;
}

.summary.entry-summary .woocommerce-product-details__short-description {
	color: var(--mbz-text-muted);
	margin-bottom: 20px;
}

.summary.entry-summary form.cart {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
}

.summary.entry-summary .quantity input {
	width: 80px;
	padding: 14px;
	border: 1px solid var(--mbz-border);
	border-radius: var(--mbz-radius-sm);
	text-align: center;
}

.summary.entry-summary button.single_add_to_cart_button {
	background: linear-gradient(135deg, var(--mbz-red) 0%, var(--mbz-red-dark) 100%);
	color: var(--mbz-white);
	border: none;
	padding: 16px 32px;
	border-radius: var(--mbz-radius-btn);
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	font-family: var(--mbz-font-heading);
	box-shadow: var(--mbz-shadow-red);
}

.summary.entry-summary button.single_add_to_cart_button:hover {
	background: linear-gradient(135deg, var(--mbz-red-dark) 0%, #7a0102 100%);
	transform: translateY(-2px);
}

.summary.entry-summary .product_meta {
	font-size: 0.85rem;
	color: var(--mbz-text-muted);
	margin-top: 16px;
}

.single-product-phone {
	margin: 20px 0;
}

.single-product-meta {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--mbz-border);
}

.single-product-meta li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.92rem;
	color: var(--mbz-text-muted);
}

.single-product-meta__icon {
	flex: none;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--mbz-gray);
	color: var(--mbz-red);
}

.single-product-meta__icon svg {
	width: 18px;
	height: 18px;
}

.single-product-tabs {
	padding-block: 40px;
	border-top: 1px solid var(--mbz-border);
}

.woocommerce-tabs ul.tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.woocommerce-tabs ul.tabs li {
	padding: 12px 20px;
	background: var(--mbz-gray);
	border-radius: 999px;
	font-weight: 700;
	cursor: pointer;
	font-size: 0.9rem;
}

.woocommerce-tabs ul.tabs li.active {
	background: var(--mbz-red);
	color: var(--mbz-white);
}

.woocommerce-Tabs-panel table.shop_attributes {
	width: 100%;
	border-collapse: collapse;
}

.woocommerce-Tabs-panel table.shop_attributes th,
.woocommerce-Tabs-panel table.shop_attributes td {
	padding: 12px 16px;
	border-bottom: 1px solid var(--mbz-border);
	text-align: left;
}

.related.products {
	margin-top: 48px;
}

.related.products > h2 {
	margin-bottom: 24px;
}

.related.products ul.products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	list-style: none;
}

/* Корзина / оформление заказа */
.woocommerce-cart .cart-collaterals,
.woocommerce-cart table.shop_table,
.woocommerce-checkout .woocommerce-checkout,
.woocommerce-checkout-review-order {
	background: var(--mbz-surface);
}

.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 24px;
	border: 1px solid var(--mbz-border);
	border-radius: var(--mbz-radius);
	box-shadow: var(--mbz-shadow-small);
	overflow: hidden;
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td,
.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
	padding: 14px;
	border-bottom: 1px solid var(--mbz-border);
	text-align: left;
	background: var(--mbz-surface);
}

.woocommerce-cart .cart_totals .order-total .amount,
.woocommerce-cart .product-subtotal .amount,
.woocommerce-checkout .order-total .amount,
.woocommerce-checkout .product-total .amount {
	color: var(--mbz-red);
	font-weight: 800;
}

.woocommerce-cart .button,
.woocommerce-checkout .button,
.wc-proceed-to-checkout .checkout-button,
.woocommerce #place_order {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	background: linear-gradient(135deg, var(--mbz-red) 0%, var(--mbz-red-dark) 100%);
	color: var(--mbz-white);
	border: none;
	border-radius: var(--mbz-radius-btn);
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	box-shadow: var(--mbz-shadow-red);
	cursor: pointer;
}

.woocommerce-cart .button:hover,
.woocommerce-checkout .button:hover,
.woocommerce #place_order:hover {
	background: linear-gradient(135deg, var(--mbz-red-dark) 0%, #7a0102 100%);
	color: var(--mbz-white);
}

/* ============ 26. 404 / empty state ============ */
.error-404 {
	text-align: center;
	padding-block: 96px;
	max-width: 640px;
	margin: 0 auto;
}

.error-404__code {
	display: block;
	font-family: var(--mbz-font-heading);
	font-weight: 800;
	font-size: clamp(4rem, 12vw, 8rem);
	color: var(--mbz-red);
	line-height: 1;
	margin-bottom: 16px;
}

.error-404__text {
	color: var(--mbz-text-muted);
	margin-bottom: 32px;
}

.error-404__actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.empty-state {
	text-align: center;
	padding: 64px 24px;
	background: var(--mbz-gray);
	border-radius: var(--mbz-radius);
}

.empty-state__title {
	margin-bottom: 12px;
}

.empty-state__text {
	color: var(--mbz-text-muted);
	max-width: 52ch;
	margin: 0 auto 24px;
}

/* ============ 27. Адаптив ============ */
@media (max-width: 1200px) {
	.categories-grid,
	.product-grid,
	.plants-grid,
	.documents-grid,
	.applications-grid,
	.related.products ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.quality-grid,
	.advantages-grid,
	.order-flow {
		grid-template-columns: repeat(3, 1fr);
	}

	.fleet-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 960px) {
	.plants-map__layout {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.plants-map__list {
		max-height: none;
	}

	.plants-map__stage,
	.plants-map__canvas,
	.plants-map__frame {
		min-height: 420px;
		height: 420px;
	}

	.plants-map--geography .plants-map__stage,
	.plants-map--geography .plants-map__canvas,
	.plants-map--geography .plants-map__frame {
		height: 100%;
		min-height: 420px;
	}

	.plants-map__card {
		bottom: 56px;
		max-width: none;
	}

	.plant-page__visual {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.plant-page__others-list {
		grid-template-columns: 1fr;
	}

	.site-logo__image {
		height: clamp(50px, 7vw, 56px);
		max-height: 56px;
		max-width: 210px;
	}

	.hero__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero__content {
		order: 1;
	}

	.hero__media {
		order: 2;
	}

	.hero__points,
	.hero__actions {
		align-items: center;
	}

	.hero__points li {
		justify-content: center;
	}

	.hero__media {
		order: -1;
		max-width: 520px;
		margin: 0 auto;
		width: 100%;
	}

	.fraud-alert {
		text-align: left;
	}

	.categories-grid,
	.product-grid,
	.plants-grid,
	.documents-grid,
	.applications-grid,
	.quality-grid,
	.advantages-grid,
	.order-flow,
	.related.products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fleet-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.delivery-section__grid,
	.production-section__grid,
	.geography-section__grid {
		grid-template-columns: 1fr;
	}

	.delivery-section__media,
	.production-section__media {
		order: -1;
		max-width: 100%;
		margin: 0;
	}

	.geography-section__media:not(.geography-section__media--map) {
		max-width: 260px;
		margin: 0 auto;
	}

	.geography-section__media--map {
		max-width: none;
		min-height: 420px;
		margin: 0;
	}

	.geography-section__media--map .plants-map__layout,
	.geography-section__media--map .plants-map__stage,
	.geography-section__media--map .plants-map__canvas,
	.geography-section__media--map .plants-map__frame {
		min-height: 420px;
	}

	.contacts-section__grid {
		grid-template-columns: 1fr;
	}

	.page-layout {
		grid-template-columns: 1fr;
	}

	.shop-layout {
		padding-block: 32px;
	}

	.single-product-grid {
		grid-template-columns: 1fr;
	}

	.calculator__body {
		grid-template-columns: 1fr;
	}

	.footer__top {
		grid-template-columns: repeat(2, 1fr);
	}

	.topbar__item--address {
		display: none;
	}
}

@media (max-width: 640px) {
	:root {
		--mbz-header-height: 76px;
		--mbz-gutter: 16px;
	}

	.site-header__inner {
		gap: 8px;
	}

	.site-logo__image {
		height: clamp(40px, 10vw, 46px);
		max-height: 46px;
		max-width: min(148px, 38vw);
	}

	.site-header__actions {
		gap: 6px;
	}

	.header-phone-btn {
		padding: 10px;
	}

	.header-phone-btn span {
		display: none;
	}

	.menu-toggle {
		width: 42px;
		height: 42px;
	}

	.topbar__info {
		gap: 12px;
	}

	.topbar__email {
		display: none;
	}

	.categories-grid,
	.plants-grid,
	.documents-grid,
	.applications-grid,
	.quality-grid,
	.advantages-grid,
	.order-flow,
	.articles-grid,
	.fleet-grid,
	.related.products ul.products {
		grid-template-columns: 1fr;
	}

	/* Catalog cards stay 2-up on phones for a denser, balanced grid. */
	.product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.product-card__body {
		padding: 12px;
		gap: 6px;
	}

	.product-card__title {
		font-size: 0.92rem;
	}

	.product-card__excerpt {
		font-size: 0.78rem;
		max-height: calc(1.45em * 3);
	}

	.product-card__price {
		font-size: 0.95rem;
	}

	.product-card__cta {
		padding: 8px 10px;
		font-size: 0.72rem;
		letter-spacing: 0.01em;
		gap: 6px;
	}

	.product-card__cta svg {
		width: 14px;
		height: 14px;
	}

	.article-card--row {
		flex-direction: column;
	}

	.article-card--row .article-card__media {
		width: 100%;
	}

	.calculator__form {
		grid-template-columns: 1fr;
	}

	.footer__top {
		grid-template-columns: 1fr;
	}

	.footer__bottom-inner {
		flex-direction: column;
		text-align: center;
	}

	.cta-phone__inner {
		flex-direction: column;
		text-align: center;
	}

	.requisites-list__row {
		flex-direction: column;
		gap: 4px;
	}

	.requisites-list__row dd {
		text-align: left;
	}
}

/* —— Geography SEO section —— */
.geo-section {
	margin: 2rem 0 2.5rem;
}

.geo-section h2 {
	margin-bottom: 0.75rem;
}

.geo-stats__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 0.75rem 1rem;
}

.geo-stats__list li {
	background: linear-gradient(160deg, #f7f4ef 0%, #ebe4d8 100%);
	border: 1px solid rgba(11, 12, 13, 0.08);
	padding: 0.85rem 1rem;
}

.geo-stats__list strong {
	display: block;
	font-size: 1.45rem;
	font-family: Oswald, Manrope, sans-serif;
	line-height: 1.1;
}

.geo-stats__note {
	margin-top: 0.75rem;
	font-size: 0.9rem;
	opacity: 0.8;
}

.geo-search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin: 1rem 0;
}

.geo-search-form input[type="search"] {
	flex: 1 1 240px;
	min-height: 48px;
	padding: 0.65rem 0.9rem;
	border: 1px solid rgba(11, 12, 13, 0.18);
	background: #fff;
}

.geo-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-bottom: 1rem;
}

.geo-filters input,
.geo-filters select {
	min-height: 44px;
	padding: 0.5rem 0.75rem;
	border: 1px solid rgba(11, 12, 13, 0.18);
}

.geo-alphabet {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin: 0.75rem 0 1rem;
}

.geo-alphabet a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2rem;
	padding: 0.25rem 0.45rem;
	border: 1px solid rgba(11, 12, 13, 0.12);
	text-decoration: none;
	color: inherit;
}

.geo-alphabet a.is-active {
	background: var(--mbz-red, #DD0C0D);
	border-color: var(--mbz-red, #DD0C0D);
	color: #fff;
}

.geo-card-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 0.65rem;
}

.geo-card {
	padding: 0.85rem 1rem;
	border: 1px solid rgba(11, 12, 13, 0.1);
	background: #fff;
}

.geo-card__meta {
	display: block;
	margin-top: 0.25rem;
	font-size: 0.85rem;
	opacity: 0.75;
}

.geo-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin-top: 1.25rem;
}

.geo-pagination a {
	min-width: 2.1rem;
	padding: 0.35rem 0.5rem;
	text-align: center;
	border: 1px solid rgba(11, 12, 13, 0.12);
	text-decoration: none;
	color: inherit;
}

.geo-pagination a.is-active {
	background: #0b0c0d;
	color: #fff;
	border-color: #0b0c0d;
}

.geo-hub-grid--rich {
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
}

.geo-hub-card--rich {
	padding: 0 !important;
	background: linear-gradient(165deg, #ffffff 0%, #f3efe6 100%);
	border: 1px solid rgba(11, 12, 13, 0.1);
	overflow: hidden;
}

.geo-hub-card__body {
	padding: 1.15rem 1.2rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	min-height: 100%;
}

.geo-hub-card__desc {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.45;
	opacity: 0.9;
}

.geo-hub-card__count {
	margin: 0;
	font-size: 0.92rem;
}

.geo-hub-card__popular {
	list-style: none;
	margin: 0.25rem 0 0.5rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.75rem;
	font-size: 0.9rem;
}

.geo-hub-card__cta {
	margin-top: auto;
	align-self: flex-start;
}

.geo-link-list--cols {
	columns: 2;
	column-gap: 2rem;
}

.geo-steps {
	padding-left: 1.2rem;
}

.geo-hub-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 0.75rem;
}

.geo-hub-card {
	display: block;
	padding: 1rem 1.1rem;
	background: var(--mbz-white, #fff);
	border: 1px solid rgba(11, 12, 13, 0.08);
	color: var(--mbz-black, #0B0C0D);
	text-decoration: none;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.geo-hub-card:hover {
	border-color: var(--mbz-red, #DD0C0D);
	transform: translateY(-1px);
}

.geo-hub-card__title {
	font-weight: 600;
}

.geo-link-list {
	margin: 0.5rem 0 0;
	padding-left: 1.2rem;
}

.geo-link-list li {
	margin: 0.35rem 0;
}

.geo-nearest {
	padding: 1.25rem 1.4rem;
	background: linear-gradient(135deg, #f7f8f9 0%, #fff1f1 100%);
	border-left: 3px solid var(--mbz-red, #DD0C0D);
}

.geo-nearest__note {
	font-size: 0.95rem;
	opacity: 0.9;
}

.geo-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1rem;
}

.geo-section--cta {
	padding-top: 0.5rem;
	border-top: 1px solid rgba(11, 12, 13, 0.08);
}

.geo-info-panel {
	padding: 1.1rem 1.25rem;
	background: linear-gradient(160deg, #f7f4ef 0%, #ebe4d8 55%, #f3f6f8 100%);
	border: 1px solid rgba(11, 12, 13, 0.08);
}

.geo-info-panel__list {
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 0.75rem 1.25rem;
}

.geo-info-panel__row dt {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	opacity: 0.7;
	margin: 0 0 0.2rem;
}

.geo-info-panel__row dd {
	margin: 0;
	font-weight: 600;
}

.geo-usecases {
	margin: 0.75rem 0 0;
	padding-left: 1.2rem;
}

.geo-usecases li {
	margin: 0.55rem 0;
}

.geo-section--calculator .calculator-section {
	padding: 0;
}

.geo-section--calculator .calculator-section .container {
	width: 100%;
	max-width: none;
	padding: 0;
}

.geo-calc-lead {
	margin-bottom: 0.75rem;
}

.faq-list .faq-item {
	margin: 0.5rem 0;
	padding: 0.65rem 0.85rem;
	border: 1px solid rgba(11, 12, 13, 0.1);
	background: #fff;
}

.faq-list .faq-item summary {
	cursor: pointer;
	font-weight: 600;
}

@media (max-width: 720px) {
	.geo-hub-grid {
		grid-template-columns: 1fr 1fr;
	}
}
