/* Pokrov Style — design system */
:root {
	--ps-bg: #f6f4f0;
	--ps-bg-warm: #faf8f5;
	--ps-surface: #ffffff;
	--ps-primary: #2f4036;
	--ps-primary-light: #3d5244;
	--ps-accent: #c55c31;
	--ps-accent-hover: #a84b28;
	--ps-gold: #e8c547;
	--ps-text: #1c221e;
	--ps-muted: #5c6560;
	--ps-border: rgba(47, 64, 54, 0.12);
	--ps-radius: 1.25rem;
	--ps-shadow: 0 18px 50px rgba(28, 34, 30, 0.08);
	--ps-shadow-sm: 0 8px 24px rgba(28, 34, 30, 0.06);
	--ps-font: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--ps-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.reveal,
	.reveal-delay-1,
	.reveal-delay-2 {
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
	}
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--ps-font);
	color: var(--ps-text);
	background: var(--ps-bg);
	background-image:
		radial-gradient(ellipse 120% 80% at 100% -20%, rgba(197, 92, 49, 0.06), transparent 50%),
		radial-gradient(ellipse 80% 60% at 0% 100%, rgba(47, 64, 54, 0.05), transparent 45%);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
}

.text-accent {
	color: var(--ps-accent) !important;
}

.letter-spacing {
	letter-spacing: 0.08em;
}

/* Header — одна линия: логотип | адрес | телефон */
.site-header {
	background: linear-gradient(135deg, var(--ps-primary) 0%, #243529 100%);
	color: #fff;
	box-shadow: var(--ps-shadow-sm);
}

.site-header .container {
	max-width: 1140px;
}

.header-strip {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: clamp(0.65rem, 2vw, 1.5rem);
	padding: 0.85rem 0;
	min-height: 64px;
}

.header-strip__brand {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	text-decoration: none;
	color: #fff !important;
}

.header-strip__logo {
	max-height: 44px;
	width: auto;
	height: auto;
	object-fit: contain;
	flex-shrink: 0;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

.site-header .header-strip__logo[src$=".svg"] {
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2)) brightness(0) invert(1);
}

.header-strip__logo-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--ps-gold);
	font-size: 1.35rem;
	flex-shrink: 0;
}

.header-strip__address {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 0 0.5rem;
	text-align: center;
}

.header-strip__address-icon-svg {
	flex-shrink: 0;
	width: 13px;
	height: 13px;
	color: var(--ps-gold);
	margin-top: 1px;
}

.header-strip__address-text {
	margin: 0;
	font-size: clamp(0.62rem, 1.5vw, 0.75rem);
	font-weight: 600;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.9);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.header-strip__phone {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	font-size: clamp(0.8rem, 2vw, 0.98rem);
	font-weight: 700;
	color: #fff !important;
	text-decoration: none;
	white-space: nowrap;
	transition: color var(--ps-transition);
}

.header-strip__phone i {
	font-size: 0.95rem;
	color: var(--ps-gold);
}

.header-strip__phone:hover {
	color: var(--ps-gold) !important;
}

.header-strip__phone:hover i {
	color: #fff;
}

/* Nav — светлая полоска, контрастные ссылки */
.site-nav {
	background: linear-gradient(180deg, #ffffff 0%, #faf9f6 100%);
	border-top: 1px solid rgba(47, 64, 54, 0.08);
	border-bottom: 1px solid rgba(47, 64, 54, 0.12);
	box-shadow: 0 4px 16px rgba(28, 34, 30, 0.06);
}

.site-nav.navbar {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.site-nav .container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.site-nav .navbar-collapse {
	flex-grow: 1;
}

@media (min-width: 992px) {
	.site-nav .navbar-collapse {
		order: 0;
		flex-basis: auto;
	}
}

@media (max-width: 991.98px) {
	.site-nav .navbar-collapse {
		flex-basis: 100%;
		order: 3;
		padding: 0;
		margin-top: 0.5rem;
		background: #fff;
		border-radius: 0;
		border: 1px solid rgba(47, 64, 54, 0.18);
		box-shadow: none;
	}

	.site-nav .navbar-nav {
		align-items: stretch;
		width: 100%;
	}

	.site-nav .nav-link-pill {
		text-align: left;
		border-radius: 0 !important;
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}
}

.site-nav .navbar-toggler {
	padding: 0.45rem 0.65rem;
	border: 1px solid rgba(47, 64, 54, 0.35);
	background: rgba(255, 255, 255, 0.9);
}

.site-nav .navbar-toggler:focus {
	box-shadow: 0 0 0 0.2rem rgba(47, 64, 54, 0.18);
}

.site-nav .navbar-nav .nav-link,
.site-nav .nav-link {
	color: var(--ps-primary) !important;
}

/* Меню: строгие прямоугольники, без скруглений */
.nav-link-pill {
	font-weight: 700;
	font-size: 0.8125rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 0.65rem 1rem !important;
	border-radius: 0 !important;
	border: none;
	border-bottom: 2px solid transparent;
	transition: background var(--ps-transition), color var(--ps-transition), border-color var(--ps-transition), box-shadow var(--ps-transition);
}

.nav-link-pill:hover,
.site-nav .navbar-nav .nav-link:hover {
	background: rgba(47, 64, 54, 0.07);
	color: var(--ps-primary) !important;
	border-bottom-color: rgba(47, 64, 54, 0.35);
}

.nav-link-pill.active,
.site-nav .navbar-nav .nav-link.active {
	background: rgba(47, 64, 54, 0.09);
	color: var(--ps-primary) !important;
	font-weight: 800;
	border-bottom-color: var(--ps-accent);
	box-shadow: inset 3px 0 0 var(--ps-accent);
}

.site-nav .navbar-nav .nav-link:focus-visible {
	color: var(--ps-primary) !important;
	outline: 2px solid var(--ps-primary);
	outline-offset: -2px;
}

.btn-accent {
	background: linear-gradient(180deg, var(--ps-accent) 0%, var(--ps-accent-hover) 100%);
	border: none;
	color: #fff !important;
	transition: transform var(--ps-transition), box-shadow var(--ps-transition);
	box-shadow: 0 4px 14px rgba(197, 92, 49, 0.35);
}

.btn-accent:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgba(197, 92, 49, 0.45);
	color: #fff !important;
}

.btn-accent:active {
	transform: translateY(0);
}

/* Layout shell */
.page-shell {
	padding-bottom: 4rem;
}

/* Flex-колонка с широким контентом (каталог, сетки): иначе текст может «обрезаться» внутри row */
.page-shell .row > [class*='col-'] {
	min-width: 0;
}

.sidebar-categories {
	position: sticky;
	top: 1rem;
	background: var(--ps-surface);
	border-radius: var(--ps-radius);
	box-shadow: var(--ps-shadow-sm);
	overflow: hidden;
	border: 1px solid var(--ps-border);
}

/* Мобильный сайдбар: сворачиваемые блоки */
@media (max-width: 991.98px) {
	.sidebar-panel + .sidebar-panel {
		border-top: 1px solid var(--ps-border);
	}
}

.sidebar-mobile-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	background: linear-gradient(135deg, var(--ps-primary-light), var(--ps-primary));
	color: #fff;
	padding: 1rem 1.25rem;
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1.3;
	cursor: pointer;
	transition: filter var(--ps-transition);
}

.sidebar-mobile-toggle:hover {
	color: #fff;
	filter: brightness(1.06);
}

.sidebar-mobile-toggle:focus-visible {
	outline: 2px solid var(--ps-gold);
	outline-offset: 2px;
}

.sidebar-mobile-toggle .sidebar-toggle-chevron {
	transition: transform var(--ps-transition);
	font-size: 1rem;
	opacity: 0.9;
	flex-shrink: 0;
}

.sidebar-mobile-toggle[aria-expanded='true'] .sidebar-toggle-chevron {
	transform: rotate(180deg);
}

@media (min-width: 992px) {
	.sidebar-collapse-lg.collapse {
		display: block !important;
		height: auto !important;
		visibility: visible !important;
	}

	.sidebar-collapse-lg.collapsing {
		height: auto !important;
		transition: none;
		display: block !important;
	}

	/* Сайдбар умещается в высоту окна: компактная сетка + при необходимости прокрутка внутри карточки */
	.sidebar-categories {
		top: 0.5rem;
		max-height: calc(100vh - 1rem);
		overflow-x: hidden;
		overflow-y: auto;
		overscroll-behavior: contain;
		scrollbar-gutter: stable;
	}

	.sidebar-categories::-webkit-scrollbar {
		width: 6px;
	}

	.sidebar-categories::-webkit-scrollbar-thumb {
		background: rgba(47, 64, 54, 0.35);
		border-radius: 4px;
	}

	.sidebar-title {
		padding: 0.5rem 0.75rem;
		font-size: 0.875rem;
		line-height: 1.25;
	}

	.sidebar-title.sidebar-title--info {
		margin-top: 0.5rem;
	}

	.sidebar-links {
		padding: 0.15rem 0;
	}

	.sidebar-link {
		padding: 0.35rem 0.75rem;
		font-size: 0.8125rem;
		line-height: 1.35;
	}

	.sidebar-link:hover {
		padding-left: 0.9rem;
	}

	.sidebar-link-muted {
		font-size: 0.78rem;
		padding-top: 0.4rem !important;
		margin-top: 0.1rem;
	}

	.sidebar-categories .sidebar-cta {
		margin: 0 0.5rem 0.5rem;
	}

	.sidebar-categories .sidebar-cta-heading {
		font-size: 0.75rem;
		margin-bottom: 0.35rem !important;
	}

	.sidebar-categories .sidebar-cta .btn {
		padding-top: 0.3rem;
		padding-bottom: 0.3rem;
		font-size: 0.75rem;
		border-radius: 999px;
	}
}

.sidebar-title {
	background: linear-gradient(135deg, var(--ps-primary-light), var(--ps-primary));
	color: #fff;
	padding: 1rem 1.25rem;
	font-weight: 700;
	font-size: 1.05rem;
	display: flex;
	align-items: center;
}

.sidebar-links {
	padding: 0.5rem 0;
}

.sidebar-link {
	display: block;
	padding: 0.65rem 1.25rem;
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--ps-text);
	text-decoration: none;
	border-bottom: 1px solid var(--ps-border);
	transition: background var(--ps-transition), color var(--ps-transition), padding-left var(--ps-transition);
}

.sidebar-link:last-child {
	border-bottom: none;
}

.sidebar-link:hover {
	background: var(--ps-bg-warm);
	color: var(--ps-accent);
	padding-left: 1.5rem;
}

.sidebar-link.is-active {
	color: var(--ps-accent);
	background: rgba(197, 92, 49, 0.06);
	border-left: 3px solid var(--ps-accent);
}

.sidebar-link-muted {
	font-size: 0.88rem;
	border-bottom: none !important;
	padding-top: 0.75rem !important;
	margin-top: 0.25rem;
	border-top: 1px solid var(--ps-border) !important;
}

.sidebar-geo-label {
	font-size: 0.7rem;
	letter-spacing: 0.06em;
	opacity: 0.88;
}

.sidebar-cta {
	background: linear-gradient(145deg, var(--ps-primary), #1e2b24);
	margin: 0 1rem 1rem;
}

/* Hero home */
.hero-home {
	position: relative;
	border-radius: var(--ps-radius);
	overflow: hidden;
	min-height: min(72vw, 420px);
	max-height: 520px;
	display: flex;
	align-items: flex-end;
	box-shadow: var(--ps-shadow);
}

.hero-home::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: var(--ps-primary);
	background-image: url('../../image/aplication/banner-1.png');
	background-size: cover;
	background-position: center;
}

.hero-home::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(15, 22, 18, 0.92) 0%,
		rgba(15, 22, 18, 0.45) 45%,
		rgba(15, 22, 18, 0.2) 100%
	);
}

.hero-home-inner {
	position: relative;
	z-index: 1;
	padding: 2rem 2rem 2.25rem;
	width: 100%;
}

.hero-kicker {
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	color: var(--ps-gold);
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.hero-title {
	font-weight: 800;
	font-size: clamp(1.35rem, 4vw, 2.25rem);
	line-height: 1.15;
	color: #fff;
	margin-bottom: 0.75rem;
}

.hero-lead {
	color: rgba(255, 255, 255, 0.88);
	max-width: 38rem;
	font-size: 1rem;
	margin-bottom: 1.25rem;
}

.hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.hero-stat {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 0.75rem;
	padding: 0.5rem 1rem;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.92);
}

.hero-stat strong {
	color: var(--ps-gold);
	display: block;
	font-size: 1.1rem;
}

/* Inner hero */
.hero-page {
	position: relative;
	border-radius: var(--ps-radius);
	overflow: hidden;
	min-height: 280px;
	display: flex;
	align-items: flex-end;
	box-shadow: var(--ps-shadow-sm);
	background-size: cover;
	background-position: center;
}

.hero-page::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, rgba(15, 22, 18, 0.92) 20%, rgba(15, 22, 18, 0.55) 100%);
}

.hero-page-inner {
	position: relative;
	z-index: 1;
	padding: 2rem;
	width: 100%;
}

.hero-page-title {
	font-weight: 800;
	color: #fff;
	font-size: clamp(1.35rem, 3vw, 2rem);
	margin: 0;
}

.hero-page-lead {
	color: rgba(255, 255, 255, 0.88);
	margin: 0.75rem 0 0;
	max-width: 42rem;
	font-size: 1rem;
}

/* Sections */
.section-block {
	padding: 3.5rem 0;
}

.section-block.alt {
	background: var(--ps-surface);
	border-block: 1px solid var(--ps-border);
}

.section-head {
	max-width: 42rem;
	margin-bottom: 2rem;
}

.section-kicker {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 700;
	color: var(--ps-accent);
	margin-bottom: 0.35rem;
}

.section-title {
	font-weight: 800;
	font-size: clamp(1.35rem, 2.5vw, 1.85rem);
	line-height: 1.2;
	margin-bottom: 0.75rem;
}

.section-lead {
	color: var(--ps-muted);
	font-size: 1.05rem;
	line-height: 1.65;
	margin: 0;
}

/* Feature icons */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.25rem;
}

.feature-card {
	background: var(--ps-surface);
	border-radius: var(--ps-radius);
	padding: 1.5rem;
	border: 1px solid var(--ps-border);
	box-shadow: var(--ps-shadow-sm);
	height: 100%;
	transition: transform var(--ps-transition), box-shadow var(--ps-transition);
}

.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--ps-shadow);
}

.feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(197, 92, 49, 0.1);
	color: var(--ps-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	margin-bottom: 1rem;
}

.feature-card h3 {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.feature-card p {
	font-size: 0.92rem;
	color: var(--ps-muted);
	margin: 0;
	line-height: 1.55;
}

/* Products — карточки каталога (компактные, читабельные) */
.product-grid {
	margin-top: 0.5rem;
}

.product-card {
	--product-accent: var(--ps-accent);
	display: flex;
	flex-direction: column;
	background: var(--ps-surface);
	border-radius: 14px;
	overflow: hidden;
	min-height: 100%;
	border: 1px solid rgba(47, 64, 54, 0.1);
	box-shadow:
		0 1px 2px rgba(28, 34, 30, 0.04),
		0 8px 24px rgba(28, 34, 30, 0.06);
	transition:
		box-shadow var(--ps-transition),
		transform var(--ps-transition),
		border-color var(--ps-transition);
	position: relative;
}

.product-card::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--ps-primary) 0%, var(--product-accent) 55%, var(--ps-gold) 100%);
	z-index: 2;
	pointer-events: none;
}

.product-card:hover {
	box-shadow:
		0 2px 8px rgba(28, 34, 30, 0.06),
		0 16px 36px rgba(28, 34, 30, 0.09);
	transform: translateY(-3px);
	border-color: rgba(47, 64, 54, 0.16);
}

.product-card__media {
	position: relative;
	aspect-ratio: 5 / 3;
	width: 100%;
	background: linear-gradient(165deg, var(--ps-bg-warm) 0%, #ece8e0 50%, var(--ps-bg-warm) 100%);
	overflow: hidden;
	isolation: isolate;
}

.product-card__media-bg {
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(ellipse 80% 60% at 80% 20%, rgba(197, 92, 49, 0.06), transparent 55%),
		radial-gradient(ellipse 60% 50% at 10% 90%, rgba(47, 64, 54, 0.06), transparent 50%);
	pointer-events: none;
}

.product-card__img {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	width: 86%;
	height: 86%;
	transform: translate(-50%, -50%);
	object-fit: contain;
	object-position: center;
	transition: transform var(--ps-transition);
}

.product-card:hover .product-card__img {
	transform: translate(-50%, -50%) scale(1.03);
}

.product-card__body {
	flex: 1 1 auto;
	padding: 0.85rem 1rem 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.product-card__badge {
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ps-muted);
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0.35rem;
	line-height: 1.2;
}

.product-card__badge-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--ps-accent);
	box-shadow: 0 0 0 2px rgba(197, 92, 49, 0.18);
	flex-shrink: 0;
}

.product-card__title {
	font-weight: 800;
	font-size: 0.95rem;
	line-height: 1.35;
	margin: 0;
	color: var(--ps-primary);
	letter-spacing: -0.02em;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
	min-height: 2.7em;
}

.product-card__facts {
	margin-top: 0.35rem;
	padding-top: 0.65rem;
	border-top: 1px solid rgba(47, 64, 54, 0.08);
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0.35rem 0.75rem;
	align-items: end;
}

.product-card__fact {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	min-width: 0;
}

.product-card__fact--size {
	grid-column: 1;
}

.product-card__fact--price {
	grid-column: 2;
	align-items: flex-end;
	text-align: right;
}

.product-card__fact-label {
	color: var(--ps-muted);
	font-weight: 600;
	font-size: 0.625rem;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	line-height: 1.2;
}

.product-card__fact-value {
	font-weight: 700;
	font-size: 0.8125rem;
	color: var(--ps-text);
	line-height: 1.3;
	word-break: break-word;
}

.product-card__price {
	display: inline-flex;
	align-items: baseline;
	gap: 0.15rem;
	color: var(--ps-accent);
}

.product-card__price-num {
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.product-card__price-cur {
	font-size: 0.8rem;
	font-weight: 700;
	opacity: 0.92;
}

.product-card__cta {
	margin-top: auto;
	border-radius: 0 0 12px 12px !important;
	border: none;
	padding: 0.65rem 0.85rem !important;
	font-weight: 800;
	font-size: 0.6875rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 0.3rem;
	box-shadow: none !important;
	transition: background var(--ps-transition), color var(--ps-transition), letter-spacing var(--ps-transition);
}

.product-card__cta:hover {
	letter-spacing: 0.08em;
}

.product-card__cta-icon {
	font-size: 1.2rem;
	line-height: 0;
	margin-right: -0.2rem;
	transition: transform var(--ps-transition);
}

.product-card__cta:hover .product-card__cta-icon {
	transform: translateX(3px);
}

@media (min-width: 768px) {
	.product-card__title {
		font-size: 1rem;
		min-height: 2.7em;
	}
}

@media (min-width: 1200px) {
	.product-card__body {
		padding: 0.95rem 1.05rem 0.8rem;
	}
}

/* Мобильная сетка: 2 карточки в ряд — плотнее типографика и отступы */
@media (max-width: 767.98px) {
	.product-card {
		border-radius: 11px;
	}

	.product-card::before {
		height: 2px;
	}

	.product-card:hover {
		transform: translateY(-2px);
	}

	.product-card__media {
		aspect-ratio: 1 / 1;
	}

	.product-card__img {
		width: 84%;
		height: 84%;
	}

	.product-card__body {
		padding: 0.5rem 0.55rem 0.45rem;
		gap: 0.3rem;
	}

	.product-card__badge {
		font-size: 0.5rem;
		letter-spacing: 0.06em;
		gap: 0.25rem;
	}

	.product-card__badge-dot {
		width: 4px;
		height: 4px;
	}

	.product-card__title {
		font-size: 0.72rem;
		line-height: 1.28;
		min-height: 0;
		-webkit-line-clamp: 2;
		line-clamp: 2;
	}

	.product-card__facts {
		margin-top: 0.2rem;
		padding-top: 0.45rem;
		gap: 0.2rem 0.35rem;
	}

	.product-card__fact-label {
		font-size: 0.5rem;
		letter-spacing: 0.05em;
	}

	.product-card__fact-value {
		font-size: 0.65rem;
		line-height: 1.25;
	}

	.product-card__price-num {
		font-size: 0.88rem;
	}

	.product-card__price-cur {
		font-size: 0.62rem;
	}

	.product-card__cta {
		padding: 0.45rem 0.35rem !important;
		font-size: 0.56rem;
		letter-spacing: 0.03em;
		gap: 0.15rem;
	}

	.product-card__cta-icon {
		font-size: 0.95rem;
		margin-right: -0.15rem;
	}
}

/* Trust strip */
.stat-strip {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 1rem;
	text-align: center;
}

.stat-item {
	background: var(--ps-surface);
	border-radius: 1rem;
	padding: 1.25rem 1rem;
	border: 1px solid var(--ps-border);
}

.stat-item strong {
	display: block;
	font-size: 1.65rem;
	font-weight: 800;
	color: var(--ps-primary);
	line-height: 1.1;
}

.stat-item span {
	font-size: 0.85rem;
	color: var(--ps-muted);
}

/* Steps */
.steps {
	counter-reset: step;
	display: grid;
	gap: 1rem;
}

.step-row {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	align-items: flex-start;
	background: var(--ps-surface);
	padding: 1.25rem 1.5rem;
	border-radius: 1rem;
	border: 1px solid var(--ps-border);
}

.step-num {
	counter-increment: step;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--ps-accent), var(--ps-accent-hover));
	color: #fff;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.step-num::before {
	content: counter(step);
}

.step-row h3 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.35rem;
}

.step-row p {
	margin: 0;
	font-size: 0.92rem;
	color: var(--ps-muted);
	line-height: 1.55;
}

/* Cases */
.case-card {
	height: 100%;
	background: var(--ps-bg-warm);
	border-radius: var(--ps-radius);
	padding: 1.5rem;
	border: 1px solid var(--ps-border);
}

.case-tag {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--ps-accent);
	background: rgba(197, 92, 49, 0.12);
	padding: 0.25rem 0.65rem;
	border-radius: 999px;
	margin-bottom: 0.75rem;
}

.case-card h3 {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.case-card p {
	font-size: 0.92rem;
	color: var(--ps-muted);
	margin: 0;
	line-height: 1.55;
}

/* Reviews */
.review-card {
	height: 100%;
	background: var(--ps-surface);
	border-radius: var(--ps-radius);
	padding: 1.5rem;
	border: 1px solid var(--ps-border);
	box-shadow: var(--ps-shadow-sm);
	position: relative;
}

.review-card::before {
	content: '“';
	position: absolute;
	top: 0.75rem;
	right: 1.25rem;
	font-size: 3rem;
	line-height: 1;
	color: rgba(197, 92, 49, 0.15);
	font-family: Georgia, serif;
}

.review-text {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--ps-text);
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

.review-meta {
	font-size: 0.78rem;
	color: var(--ps-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* FAQ */
.accordion-button {
	font-size: 0.95rem;
	line-height: 1.45;
	color: var(--ps-text);
	background-color: var(--ps-surface);
}

.accordion-button:not(.collapsed) {
	background: rgba(47, 64, 54, 0.08);
	color: var(--ps-primary);
	font-weight: 600;
	box-shadow: none;
}

.accordion-button:focus {
	box-shadow: none;
	border-color: var(--ps-border);
}

.accordion-button::after {
	filter: brightness(0.35);
}

.accordion-flush .accordion-item {
	background: transparent;
}

/* Calculator */
.calc-card {
	background: var(--ps-surface);
	border-radius: var(--ps-radius);
	padding: 2rem;
	border: 1px solid var(--ps-border);
	box-shadow: var(--ps-shadow-sm);
	max-width: 480px;
}

.calc-result {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--ps-primary);
}

/* Prose */
.prose-block {
	max-width: 48rem;
}

.prose-block h2 {
	font-weight: 800;
	font-size: 1.35rem;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}

.prose-block p {
	color: var(--ps-muted);
	line-height: 1.75;
	margin-bottom: 1rem;
}

.prose-block a {
	color: var(--ps-accent);
	font-weight: 600;
	text-decoration-thickness: 1px;
}

/* Gallery ukladka */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 0.75rem;
}

.gallery-grid a {
	display: block;
	border-radius: 0.75rem;
	overflow: hidden;
	aspect-ratio: 4/3;
	box-shadow: var(--ps-shadow-sm);
	transition: transform var(--ps-transition), box-shadow var(--ps-transition);
}

.gallery-grid a:hover {
	transform: scale(1.02);
	box-shadow: var(--ps-shadow);
}

.gallery-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Footer */
.site-footer {
	background: linear-gradient(180deg, #1a2520 0%, #0f1714 100%);
	color: rgba(255, 255, 255, 0.82);
	margin-top: auto;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
	display: inline-block;
	padding: 0.2rem 0;
	transition: color var(--ps-transition);
}

.footer-links a:hover {
	color: var(--ps-gold);
}

.fab-phone {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--ps-accent), var(--ps-accent-hover));
	color: #fff !important;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	box-shadow: 0 10px 28px rgba(197, 92, 49, 0.45);
	z-index: 1030;
	transition: transform var(--ps-transition);
	text-decoration: none !important;
}

.fab-phone:hover {
	transform: scale(1.06);
	color: #fff !important;
}

@media (min-width: 992px) {
	.fab-phone {
		display: none;
	}
}

/* Utilities */
.reveal {
	opacity: 0;
	transform: translateY(16px);
	animation: reveal-up 0.7s ease forwards;
}

.reveal-delay-1 {
	animation-delay: 0.08s;
}

.reveal-delay-2 {
	animation-delay: 0.16s;
}

@keyframes reveal-up {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Modal заявки */
.modal-content {
	background-color: var(--ps-surface);
}

.modal-header .btn-close {
	padding: 0.75rem;
	margin: -0.25rem -0.25rem -0.25rem auto;
}

.lead-form .form-control:focus {
	border-color: var(--ps-accent);
	box-shadow: 0 0 0 0.2rem rgba(197, 92, 49, 0.2);
}

/* Кнопки outline на тёмном hero */
.hero-home .btn-outline-light {
	border-width: 2px;
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.65);
}

.hero-home .btn-outline-light:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: #fff;
	color: #fff !important;
}

.hero-page .btn-outline-light {
	border-width: 2px;
}

.site-nav .nav-link.nav-link-pill {
	padding-left: 1rem !important;
	padding-right: 1rem !important;
	border-radius: 0 !important;
}

.site-nav .site-nav-cta {
	letter-spacing: 0.06em;
	font-size: 0.75rem;
	border-radius: 0 !important;
}

.site-nav .site-nav-cta.btn-sm {
	font-size: 0.7rem;
	padding-top: 0.55rem;
	padding-bottom: 0.55rem;
}

/* Текстовые страницы (SEO-статьи) */
.content-breadcrumb .breadcrumb {
	--bs-breadcrumb-divider-color: var(--ps-muted);
	background: transparent;
	padding: 0;
}

.content-article {
	max-width: 46rem;
}

.content-article .content-lead {
	color: var(--ps-text);
	line-height: 1.55;
}

.content-article .content-h2 {
	font-size: clamp(1.15rem, 2.5vw, 1.35rem);
	font-weight: 700;
	color: var(--ps-primary);
	margin-top: 2rem;
	margin-bottom: 0.75rem;
	padding-bottom: 0.35rem;
	border-bottom: 1px solid var(--ps-border);
}

.content-article .content-h2:first-of-type {
	margin-top: 1.25rem;
}

.content-article p {
	margin-bottom: 0.85rem;
	line-height: 1.65;
	color: var(--ps-text);
}

.content-article .content-list {
	padding-left: 1.25rem;
	margin-bottom: 1rem;
}

.content-article .content-list li {
	margin-bottom: 0.45rem;
	line-height: 1.55;
}

.content-article a {
	font-weight: 600;
}

/* Городские посадочные: УТП, каталог, отзывы, FAQ */
.content-article.geo-article {
	max-width: none;
	color: var(--ps-text);
}

.content-article.geo-article .section-title {
	color: var(--ps-primary);
}

.content-article.geo-article .section-kicker {
	color: var(--ps-accent);
}

.geo-usp-strip,
.geo-catalog-section,
.geo-reviews-section,
.geo-faq-section {
	color: var(--ps-text);
	opacity: 1;
	visibility: visible;
}

.geo-usp-strip .section-head,
.geo-catalog-section .section-head,
.geo-reviews-section .section-head,
.geo-faq-section .section-head {
	max-width: 46rem;
}

.geo-usp-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	border-radius: var(--ps-radius);
	overflow: hidden;
	border: 1px solid var(--ps-border);
	background: var(--ps-surface);
	box-shadow: var(--ps-shadow-sm);
	transition: box-shadow var(--ps-transition), transform var(--ps-transition);
}

.geo-usp-card:hover {
	box-shadow: var(--ps-shadow);
	transform: translateY(-2px);
}

.geo-usp-card__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--ps-primary);
}

.geo-usp-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.geo-usp-card__body {
	padding: 1rem 1.15rem 1.35rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.geo-usp-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--ps-primary);
	margin-bottom: 0.4rem;
	line-height: 1.3;
}

.geo-usp-card__text {
	font-size: 0.9rem;
	color: var(--ps-muted);
	line-height: 1.55;
}

.geo-review-card {
	margin: 0;
	padding: 1.25rem 1.35rem;
	border-radius: var(--ps-radius);
	border: 1px solid var(--ps-border);
	background: linear-gradient(165deg, #fff 0%, var(--ps-bg-warm) 100%);
	box-shadow: var(--ps-shadow-sm);
}

.geo-stars {
	color: #c9a227;
	letter-spacing: 0.05em;
	font-size: 0.95rem;
	line-height: 1;
}

.geo-stars .bi-star {
	color: rgba(47, 64, 54, 0.22);
}

.geo-review-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.85rem;
	flex-wrap: wrap;
}

.geo-review-card__rating-num {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--ps-muted);
	white-space: nowrap;
}

.geo-review-card__text {
	font-size: 0.92rem;
	line-height: 1.55;
	margin-bottom: 1rem;
	color: var(--ps-text);
}

.geo-review-card__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.25rem 0.75rem;
	font-size: 0.82rem;
}

.geo-review-card__name {
	flex: 1 1 100%;
	font-weight: 700;
	color: var(--ps-primary);
}

.geo-review-card__role {
	color: var(--ps-muted);
	font-size: 0.8rem;
}

.geo-review-card__date {
	margin-left: auto;
	color: var(--ps-muted);
	font-size: 0.78rem;
}

@media (max-width: 575.98px) {
	.geo-review-card__date {
		margin-left: 0;
		width: 100%;
	}
}

.geo-faq-accordion .accordion-button {
	font-size: 0.95rem;
	line-height: 1.35;
	padding-top: 0.85rem;
	padding-bottom: 0.85rem;
}

.geo-faq-accordion .accordion-button:not(.collapsed) {
	background: rgba(47, 64, 54, 0.07);
	color: var(--ps-primary);
	box-shadow: none;
}

.geo-faq-accordion .accordion-body {
	font-size: 0.92rem;
	line-height: 1.6;
	padding-top: 0.5rem;
}

.geo-catalog-section .product-grid {
	margin-bottom: 0;
}
