/**
 * АС-КЛЕМАТИС · дизайн v2 (главная + внутренние страницы).
 * База: сборка final-v1 (блоки вариантов A/B/C/D/E).
 * Требует assets/home/shared.css (переменные, кнопки, курсор, marquee).
 */

	/* ============================================================
	   FINAL v1 · сборка из блоков вариантов A / B / C / D / E
	   A1 hero · D3 строка сортов · B4 категории · C4 cursor-glow
	   B6 витрина · E5 история · A5 преимущества · A7 CTA · A8 футер
	   ============================================================ */

	body {
		background: var(--pine-deep);
		color: var(--cream);
	}

	::selection { background: var(--gold); color: var(--pine-deep); }

	.section { padding: 120px 0; }

	/* Светлые блоки на тёмной странице */
	.light { background: var(--cream); color: var(--ink); }

	/* ============================================================
	   Header + A1 · Hero (из a-cinematic.html)
	   ============================================================ */

	.topbar {
		position: absolute;
		top: 0; left: 0; right: 0;
		z-index: 10;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 26px 40px;
	}
	.topbar__logo {
		font-family: var(--font-display);
		font-size: 24px;
		font-weight: 600;
		letter-spacing: .02em;
		text-decoration: none;
	}
	.topbar__logo em { color: var(--gold); font-style: normal; }
	.topbar__nav { display: flex; gap: 34px; }
	.topbar__nav a {
		font-size: 13px;
		font-weight: 600;
		letter-spacing: .12em;
		text-transform: uppercase;
		text-decoration: none;
		white-space: nowrap;
		opacity: .75;
		transition: opacity .25s;
	}
	.topbar__nav a:hover { opacity: 1; }

	/* Буквы шапки лежат прямо на видео — на светлых кадрах сливаются с фоном.
	   Верхнее затемнение (независимо от того, что в кадре) + тень текста/иконок —
	   не завязано на .topbar--page (у той уже свой блюр-фон, тут не нужно). */
	.topbar:not(.topbar--page)::before {
		content: '';
		position: absolute;
		top: 0; left: 0; right: 0;
		height: 130px;
		background: linear-gradient(to bottom, rgba(10, 20, 15, .55) 0%, rgba(10, 20, 15, .18) 60%, transparent 100%);
		pointer-events: none;
		z-index: -1;
	}
	.topbar:not(.topbar--page) .topbar__logo,
	.topbar:not(.topbar--page) .topbar__nav a {
		text-shadow: 0 1px 10px rgba(0, 0, 0, .55), 0 1px 3px rgba(0, 0, 0, .4);
	}
	.topbar:not(.topbar--page) .topbar__nav { margin-left: auto; margin-right: 28px; }
	.topbar:not(.topbar--page) .topbar__icon svg { filter: drop-shadow(0 1px 4px rgba(0, 0, 0, .5)); }

	.hero {
		position: relative;
		min-height: 100vh;
		min-height: 100svh;
		display: flex;
		align-items: flex-end;
		overflow: hidden;
	}
	.hero__video {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.hero__shade {
		position: absolute;
		inset: 0;
		background:
			linear-gradient(90deg, rgba(18, 36, 27, .82) 0%, rgba(18, 36, 27, .38) 46%, rgba(18, 36, 27, 0) 75%),
			linear-gradient(0deg, rgba(18, 36, 27, .92) 0%, rgba(18, 36, 27, .25) 42%, rgba(18, 36, 27, 0) 68%);
	}
	.hero__inner {
		position: relative;
		z-index: 2;
		width: 100%;
		padding-bottom: 108px;
	}
	.hero .eyebrow {
		color: var(--gold);
		margin-bottom: 26px;
		animation: heroFade 1s var(--ease-out) .2s backwards;
	}
	.hero__title {
		font-family: var(--font-display);
		font-weight: 500;
		font-size: clamp(52px, 8.6vw, 124px);
		line-height: .96;
		letter-spacing: -.02em;
		max-width: 12ch;
	}
	.hero__line { display: block; overflow: hidden; }
	.hero__line > span {
		display: block;
		transform: translateY(112%);
		animation: heroLine 1.15s var(--ease-out) forwards;
	}
	.hero__line:nth-child(1) > span { animation-delay: .35s; }
	.hero__line:nth-child(2) > span { animation-delay: .5s; }
	.hero__line:nth-child(3) > span { animation-delay: .65s; }
	.hero__title em {
		font-style: italic;
		color: var(--sage);
	}
	@keyframes heroLine {
		to { transform: translateY(0); }
	}
	@keyframes heroFade {
		from { opacity: 0; transform: translateY(14px); }
		to { opacity: 1; transform: none; }
	}
	.hero__foot {
		display: flex;
		align-items: center;
		gap: 40px;
		flex-wrap: wrap;
		margin-top: 44px;
		animation: heroFade 1s var(--ease-out) .95s backwards;
	}
	.hero__note {
		max-width: 340px;
		font-size: 15px;
		line-height: 1.6;
		color: rgba(248, 245, 238, .72);
	}
	.hero__scroll {
		position: absolute;
		right: 44px;
		bottom: 40px;
		z-index: 2;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 12px;
		font-size: 10px;
		font-weight: 700;
		letter-spacing: .22em;
		text-transform: uppercase;
		color: rgba(248, 245, 238, .6);
		animation: heroFade 1s var(--ease-out) 1.2s backwards;
	}
	.hero__scroll-line {
		width: 1px;
		height: 64px;
		background: rgba(248, 245, 238, .25);
		position: relative;
		overflow: hidden;
	}
	.hero__scroll-line::after {
		content: '';
		position: absolute;
		left: 0; top: -50%;
		width: 100%;
		height: 50%;
		background: var(--gold);
		animation: scrollDrop 2.2s var(--ease-soft) infinite;
	}
	@keyframes scrollDrop {
		0% { top: -50%; }
		60%, 100% { top: 110%; }
	}

	/* ============================================================
	   D3 · Бегущая строка сортов (из d-morning.html)
	   ============================================================ */

	.strip {
		border-top: 1px solid var(--line);
		border-bottom: 1px solid var(--line);
		padding: 18px 0;
		background: var(--cream-2);
	}
	.strip .marquee__track {
		font-family: var(--font-display);
		font-size: 21px;
		font-style: italic;
		font-weight: 500;
		letter-spacing: .04em;
		color: var(--pine);
	}
	.strip .marquee__track b { color: var(--gold-deep); font-weight: 500; font-style: normal; }
	.strip .marquee__track { animation-duration: 150s; } /* ещё медленнее: строка длинная из-за рандома */

	/* ============================================================
	   B4 · Категории, асимметричная сетка (из b-editorial.html)
	   ============================================================ */

	.blk-cats .section__head {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		gap: 32px;
		margin-bottom: clamp(40px, 5vw, 72px);
	}
	.blk-cats .section__head h2 {
		margin-top: 18px;
		font-family: var(--font-display);
		font-weight: 600;
		font-size: clamp(36px, 4.6vw, 68px);
		line-height: 1;
		letter-spacing: -.02em;
	}
	.blk-cats .section__head h2 em { font-style: italic; font-weight: 500; color: var(--sage); }
	.blk-cats .section__head .eyebrow { color: var(--gold-deep); }
	.blk-cats .section__note {
		max-width: 32ch;
		font-size: 14px;
		line-height: 1.65;
		color: rgba(28, 42, 34, .6);
	}
	.blk-cats .cats {
		display: grid;
		grid-template-columns: repeat(12, 1fr);
		grid-auto-rows: 90px;
		gap: 24px;
	}
	.blk-cats .cat {
		position: relative;
		display: block;
		overflow: hidden;
		text-decoration: none;
		background: var(--paper);
		box-shadow: inset 0 0 0 0 rgba(198, 166, 117, 0), 0 0 0 rgba(18, 36, 27, 0);
		transition: box-shadow .45s var(--ease-out);
	}
	/* Без scale/transform на видео: рамка + внешняя тень вместо zoom -
	   на 24fps-роликах и мониторах некратной высокой герцовки (120/144/165Hz)
	   любой transform поверх играющего видео давал заметный тремор картинки. */
	.blk-cats .cat:hover {
		box-shadow: inset 0 0 0 2px rgba(198, 166, 117, .55), 0 20px 46px rgba(18, 36, 27, .28);
	}
	.blk-cats .cat:nth-child(1) { grid-column: 1 / 6;  grid-row: span 7; }
	.blk-cats .cat:nth-child(2) { grid-column: 6 / 10; grid-row: span 5; margin-top: 70px; }
	.blk-cats .cat:nth-child(3) { grid-column: 10 / 13; grid-row: span 6; margin-top: -40px; }
	.blk-cats .cat:nth-child(4) { grid-column: 6 / 10;  grid-row: span 5; margin-top: 30px; }
	.blk-cats .cat__media {
		position: absolute;
		inset: 0;
	}
	.blk-cats .cat__media img,
	.blk-cats .cat__media video {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}
	.blk-cats .cat__label {
		position: absolute;
		left: 0; right: 0; bottom: 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		padding: 20px 24px;
		background: linear-gradient(to top, rgba(18, 36, 27, .72), transparent);
		transition: background .45s var(--ease-out);
		color: var(--cream);
	}
	.blk-cats .cat:hover .cat__label {
		background: linear-gradient(to top, rgba(18, 36, 27, .86), rgba(18, 36, 27, .06) 65%, transparent);
	}
	.blk-cats .cat__label h3 {
		font-family: var(--font-display);
		font-size: 30px;
		font-weight: 600;
		line-height: 1.1;
	}
	.blk-cats .cat__label small {
		display: block;
		font-family: var(--font-ui);
		font-size: 11px;
		font-weight: 600;
		letter-spacing: .14em;
		text-transform: uppercase;
		opacity: .75;
		margin-top: 4px;
	}

	.blk-cats .cats__hint {
		display: none;
		padding: 0 0 14px;
		font-size: 12px;
		letter-spacing: .12em;
		text-transform: uppercase;
		color: rgba(28, 42, 34, .45);
	}
	.blk-cats .cat__arrow {
		flex: 0 0 auto;
		display: grid;
		place-items: center;
		width: 52px;
		height: 52px;
		border: 1px solid rgba(248, 245, 238, .5);
		border-radius: 50%;
		font-size: 20px;
		opacity: 0;
		transform: translateX(-14px);
		transition: opacity .4s var(--ease-out), transform .4s var(--ease-out), background .3s;
	}
	.blk-cats .cat:hover .cat__arrow {
		opacity: 1;
		transform: none;
		background: rgba(198, 166, 117, .25);
	}

	/* ============================================================
	   C4 · Тёмная секция с cursor-glow (из c-immersive.html)
	   Замена: фоновое видео → фото беседки, glow сохранён.
	   ============================================================ */

	.glow {
		position: relative;
		overflow: hidden;
		background: var(--pine-deep);
		color: var(--cream);
		padding: 150px 0;
		--gx: 50%;
		--gy: 40%;
	}
	.glow__media { position: absolute; inset: 0; opacity: .25; }
	.glow__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 75%; }
	.glow::before {
		content: '';
		position: absolute;
		inset: 0;
		z-index: 1;
		pointer-events: none;
		background: radial-gradient(560px circle at var(--gx) var(--gy), rgba(198, 166, 117, .26), rgba(198, 166, 117, .07) 45%, transparent 70%);
	}
	.glow .container { position: relative; z-index: 2; }
	.glow__grid {
		display: grid;
		grid-template-columns: 1.15fr .85fr;
		gap: 80px;
		align-items: center;
	}
	.glow .eyebrow { color: var(--gold); margin-bottom: 24px; }
	.glow h2 {
		font-family: var(--font-display);
		font-weight: 500;
		font-size: clamp(38px, 4.8vw, 66px);
		line-height: 1.02;
		letter-spacing: -.015em;
		max-width: 16ch;
	}
	.glow h2 em { font-style: italic; color: var(--gold); }
	.glow__text { margin-top: 24px; max-width: 46ch; color: rgba(248, 245, 238, .78); font-size: 17px; line-height: 1.65; }
	.perks { list-style: none; display: grid; gap: 0; border-top: 1px solid var(--line-light); }
	.perks li {
		display: flex;
		gap: 18px;
		align-items: baseline;
		padding: 20px 0;
		border-bottom: 1px solid var(--line-light);
	}
	.perks b {
		font-family: var(--font-display);
		font-size: 22px;
		font-weight: 600;
		color: var(--gold);
		min-width: 44px;
	}
	.perks span { font-size: 15.5px; color: rgba(248, 245, 238, .85); }

	@media (hover: none), (pointer: coarse) {
		.glow::before { display: none; }
	}

	/* ============================================================
	   B6 · Витрина сезона (из b-editorial.html)
	   Заголовок + подсказка свои, карточки — общий .pgrid/_product_card.php
	   (бейджи хит/скидка, избранное, мгновенное «В корзину», срок отправки —
	   то, что уже есть в каталоге/похожих товарах, раньше здесь отсутствовало).
	   ============================================================ */

	.blk-shop {
		overflow: hidden;
		/* Лента карточек — не внутри .container (справа сознательно обрезается
		   краем экрана, это и есть подсказка «листайте»), поэтому левый отступ
		   считаем отдельно — вровень с реальным левым краем .container
		   (max-width 1320px, margin auto, padding 32px). */
		--shop-inset: max(32px, calc((100vw - 1320px) / 2 + 32px));
	}
	.blk-shop .section__head {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		gap: 32px;
		margin-bottom: clamp(40px, 5vw, 72px);
	}
	.blk-shop .section__head h2 {
		margin-top: 18px;
		font-family: var(--font-display);
		font-weight: 600;
		font-size: clamp(36px, 4.6vw, 68px);
		line-height: 1;
		letter-spacing: -.02em;
	}
	.blk-shop .section__head h2 em { font-style: italic; font-weight: 500; color: var(--sage); }
	.blk-shop .section__head .eyebrow { color: var(--gold-deep); }
	.blk-shop .section__note {
		max-width: 32ch;
		font-size: 14px;
		line-height: 1.65;
		color: rgba(28, 42, 34, .6);
	}
	.blk-shop .shop__hint-row {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 32px 14px var(--shop-inset);
	}
	.blk-shop .shop__hint {
		font-size: 12px;
		letter-spacing: .12em;
		text-transform: uppercase;
		color: rgba(28, 42, 34, .45);
	}
	.blk-shop .pgrid--scroll {
		padding: 12px 32px 32px var(--shop-inset);
		/* Без этого scroll-snap считает точкой покоя начало первой карточки
		   и молча прокручивает мимо padding-left при загрузке страницы. */
		scroll-padding-left: var(--shop-inset);
		gap: 24px;
		grid-auto-columns: clamp(250px, 26vw, 320px);
	}

	/* ============================================================
	   E5 · История / Светлана (из e-evening.html)
	   Замена: оба фото → svetlana-wheelbarrow-1/2.jpg,
	   добавлена кнопка «О питомнике».
	   ============================================================ */

	.blk-story {
		background: var(--cream);
		color: var(--ink);
		padding: 60px 0;
	}
	.blk-story .story__grid {
		display: grid;
		grid-template-columns: 1fr 1.1fr;
		gap: 28px;
		align-items: start;
	}
	.blk-story .story__sticky { position: sticky; top: 90px; }
	.blk-story .eyebrow { color: var(--sage); margin-bottom: 20px; }
	.blk-story .story__title {
		font-family: var(--font-display);
		font-weight: 500;
		font-size: clamp(30px, 3.4vw, 44px);
		line-height: 1.05;
		margin-bottom: 18px;
	}
	.blk-story .story__title em { font-style: italic; color: var(--gold-deep); }
	.blk-story .story__text p {
		font-size: 15px;
		line-height: 1.5;
		color: #45564b;
		margin-bottom: 10px;
	}
	.blk-story .story__sign {
		margin-top: 16px;
		font-family: var(--font-display);
		font-style: italic;
		font-size: 22px;
		color: var(--pine);
	}
	.blk-story .story__sign small {
		display: block;
		font-family: var(--font-ui);
		font-style: normal;
		font-size: 12px;
		font-weight: 600;
		letter-spacing: .14em;
		text-transform: uppercase;
		color: var(--sage);
		margin-top: 6px;
	}
	.blk-story .story__more { margin-top: 18px; }
	.blk-story .story__photos { display: grid; gap: 28px; }
	.blk-story .story__photo {
		border-radius: 22px;
		overflow: hidden;
		box-shadow: 0 24px 70px rgba(30, 58, 44, .2);
	}
	.blk-story .story__photo img { width: 100%; height: auto; }
	.blk-story .story__photo--tilt { transform: rotate(1.6deg); }
	.blk-story .story__photo { position: relative; }
	.blk-story .story__photo::after {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(160deg, rgba(198, 166, 117, .22), rgba(18, 36, 27, .16));
		pointer-events: none;
		transition: opacity .6s var(--ease-out);
	}
	.blk-story .story__photo img {
		transition: transform .8s var(--ease-out), filter .8s var(--ease-out);
		filter: saturate(.92) contrast(1.02);
	}
	.blk-story .story__photo:hover img { transform: scale(1.03); filter: saturate(1) contrast(1.04); }
	.blk-story .story__photo:hover::after { opacity: .35; }
	.blk-story .story__cap {
		display: block;
		padding: 4px 8px 0;
		font-size: 12.5px;
		font-weight: 600;
		letter-spacing: .08em;
		text-transform: uppercase;
		color: var(--sage);
	}

	/* ============================================================
	   A5 · Преимущества (из a-cinematic.html)
	   Замена: цифры 01–04 → SVG-иконки в стиле D6.
	   ============================================================ */

	.blk-feats .section__head {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		gap: 24px;
		margin-bottom: 28px;
	}
	.blk-feats { padding: 70px 0; }
	.blk-feats .section__head .eyebrow { color: var(--gold); margin-bottom: 18px; }
	.blk-feats .section__title {
		font-family: var(--font-display);
		font-weight: 500;
		font-size: clamp(30px, 3.6vw, 48px);
		line-height: 1.05;
		letter-spacing: -.015em;
	}
	.blk-feats .section__title em { font-style: italic; color: var(--gold); }
	.blk-feats .feats {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 28px;
	}
	.blk-feats .feat {
		border-top: 1px solid var(--line-light);
		padding-top: 14px;
	}
	.blk-feats .feat__icon {
		width: 40px;
		height: 40px;
		display: grid;
		place-items: center;
		border-radius: 50%;
		background: var(--pine);
		color: var(--gold);
		margin-bottom: 12px;
	}
	.blk-feats .feat__icon svg { width: 24px; height: 24px; }
	.blk-feats .feat b {
		display: block;
		font-family: var(--font-display);
		font-size: 20px;
		font-weight: 600;
		margin-bottom: 4px;
	}
	.blk-feats .feat p {
		font-size: 13px;
		line-height: 1.5;
		color: rgba(248, 245, 238, .66);
	}

	/* ============================================================
	   A7 · Финальный CTA (из a-cinematic.html)
	   Замена: фоновое видео → фото арки hero-arch-wide-v1.png.
	   ============================================================ */

	.final {
		position: relative;
		min-height: 82vh;
		display: grid;
		place-items: center;
		text-align: center;
		overflow: hidden;
	}
	.final__photo {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		opacity: .38;
	}
	.final__shade {
		position: absolute;
		inset: 0;
		background: radial-gradient(ellipse at center, rgba(18, 36, 27, .25) 0%, rgba(18, 36, 27, .88) 100%);
	}
	.final__inner { position: relative; z-index: 2; padding: 120px 24px; }
	.final .eyebrow { color: var(--gold); margin-bottom: 24px; }
	.final__title {
		font-family: var(--font-display);
		font-weight: 500;
		font-size: clamp(44px, 6.4vw, 92px);
		line-height: 1.02;
		letter-spacing: -.015em;
		max-width: 16ch;
		margin: 0 auto 42px;
	}
	.final__title em { font-style: italic; color: var(--gold); }

	/* ============================================================
	   A8 · Футер (каркас из a-cinematic.html)
	   Структура — по боевому as-clematis.ru: контакт-полоса,
	   бренд + 3 колонки меню, нижняя строка © + документы.
	   ============================================================ */

	.footer {
		border-top: 1px solid var(--line-light);
		padding: 0 0 24px;
		background: var(--pine-deep); /* обязателен на светлых страницах: иначе кремовый текст на кремовом фоне */
		color: var(--cream);
		margin-top: auto; /* прижимает подвал к низу body{display:flex} на коротких страницах (shared.css) */
	}
	.footer__contacts {
		display: flex;
		flex-wrap: wrap;
		gap: 16px 32px;
		align-items: center;
		padding: 24px 0;
		border-bottom: 1px solid var(--line-light);
		font-size: 12px;
	}
	.footer__contacts a {
		display: inline-flex;
		align-items: center;
		gap: 9px;
		text-decoration: none;
		font-weight: 600;
		color: rgba(248, 245, 238, .85);
		transition: color .25s;
	}
	.footer__contacts a:hover { color: var(--gold); }
	.footer__contacts svg { width: 17px; height: 17px; color: var(--gold); flex: 0 0 auto; }
	.footer__contacts .footer__addr {
		display: inline-flex;
		align-items: center;
		gap: 9px;
		color: rgba(248, 245, 238, .55);
	}
	.footer__grid {
		display: grid;
		grid-template-columns: 1.4fr 1fr 1fr 1fr;
		gap: 65px;
		padding: 20px 0 10px;
	}
	.footer__brand .topbar__logo { pointer-events: none; }
	.footer__brand p {
		margin-top: 8px;
		max-width: 260px;
		font-size: 12px;
		line-height: 1.5;
		color: rgba(248, 245, 238, .55);
	}
	.footer__col b {
		display: block;
		margin-bottom: 8px;
		font-size: 10px;
		font-weight: 700;
		letter-spacing: .16em;
		text-transform: uppercase;
		color: var(--gold);
	}
	.footer__col a {
		display: block;
		padding: 2px 0;
		font-size: 13px;
		text-decoration: none;
		color: rgba(248, 245, 238, .72);
		transition: color .25s, transform .25s var(--ease-out);
	}
	.footer__col a:hover { color: var(--gold); transform: translateX(4px); }
	.footer__bottom {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		gap: 10px 20px;
		padding-top: 12px;
		border-top: 1px solid var(--line-light);
		font-size: 11px;
		color: rgba(248, 245, 238, .5);
	}
	.footer__bottom nav { display: flex; gap: 24px; flex-wrap: wrap; }
	.footer__bottom a { text-decoration: none; }
	.footer__bottom a:hover { color: var(--gold); }
	.footer__admin {
		opacity: .45;
		font-size: 10px;
		letter-spacing: .08em;
		text-transform: uppercase;
	}

	/* ============================================================
	   Адаптив
	   ============================================================ */

	@media (max-width: 1080px) {
	}

	@media (max-width: 1020px) {
		.glow__grid { grid-template-columns: 1fr; gap: 44px; }
		.blk-story .story__grid { grid-template-columns: 1fr; gap: 48px; }
		.blk-story .story__sticky { position: static; }
		.blk-feats .feats { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
		.footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
	}

	@media (max-width: 860px) {
		.blk-cats .section__head,
		.blk-shop .section__head,
		.blk-feats .section__head { flex-direction: column; align-items: flex-start; }
	}

	@media (max-width: 720px) {
		.topbar { padding: 8px 20px; }
		.topbar__nav { display: none; }
		.section { padding: 80px 0; }
		.hero__inner { padding-bottom: 120px; }
		.hero__foot { gap: 24px; }
		.hero__scroll { right: 20px; bottom: 24px; }
		.hero__scroll-line { height: 44px; }
		.glow { padding: 90px 0; }
		
	}

	@media (max-width: 640px) {
		.blk-cats .cats {
			display: flex;
			gap: 16px;
			overflow-x: auto;
			padding: 12px 0 24px;
			scroll-snap-type: x mandatory;
			scrollbar-width: thin;
			scrollbar-color: var(--gold) transparent;
		}
		.blk-cats .cats__hint { display: block; }
		.blk-cats .cats::-webkit-scrollbar { height: 4px; }
		.blk-cats .cats::-webkit-scrollbar-thumb { background: var(--gold); }
		.blk-cats .cat {
			flex: 0 0 240px;
			scroll-snap-align: start;
			aspect-ratio: 3 / 4;
			border-radius: 20px;
			margin: 0;
		}
		.blk-shop { --shop-inset: 20px; }
		.blk-shop .pgrid--scroll { padding: 8px 20px 28px 20px; scroll-padding-left: 20px; }
		.blk-shop .shop__hint-row { padding: 0 20px 12px 20px; }
	}

/* ============================================================
   Мобильная адаптация — дополнение к существующим media-запросам
   ============================================================ */

/* Бургер виден только на мобильных */
.topbar__burger { display: none; }

@media (max-width: 720px) {
	.topbar__burger {
		display: grid;
		place-items: center;
		width: 44px;
		height: 44px;
		margin-right: -8px;
		padding: 0;
		border: none;
		background: transparent;
		color: inherit;
		cursor: pointer;
	}
	.topbar__burger span {
		display: block;
		width: 22px;
		height: 2px;
		background: currentColor;
		border-radius: 1px;
		position: relative;
		transition: background .2s;
	}
	.topbar__burger span::before,
	.topbar__burger span::after {
		content: '';
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background: currentColor;
		border-radius: 1px;
		transition: transform .25s;
	}
	.topbar__burger span::before { top: -7px; }
	.topbar__burger span::after { top: 7px; }
	.topbar__burger[aria-expanded="true"] span { background: transparent; }
	.topbar__burger[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
	.topbar__burger[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

	.section { padding: 72px 0; }
	.hero__inner { padding-bottom: 100px; }
	.hero__title { font-size: clamp(40px, 11.5vw, 56px); }
	.hero__foot { gap: 20px; margin-top: 32px; }
	.hero__foot .btn { width: auto; max-width: 100%; padding: 12px 24px; font-size: 13px; justify-content: center; }
	.hero__note { max-width: none; font-size: 14px; }
	.hero__scroll { right: 16px; bottom: 20px; }
	.hero__scroll-line { height: 40px; }

	.strip { padding: 14px 0; }
	.strip .marquee__track { font-size: 16px; gap: 28px; padding-right: 28px; }

	.glow { padding: 80px 0; }
	.glow__grid { gap: 34px; }
	.glow h2 { font-size: clamp(32px, 8vw, 46px); }
	.glow__text { font-size: 15px; }
	.perks li { padding: 16px 0; gap: 14px; }
	.perks b { font-size: 18px; min-width: 40px; }
	.perks span { font-size: 14px; }

	.blk-story { padding: 50px 0; }
	.blk-story .story__title { font-size: clamp(32px, 8vw, 46px); }
	.blk-story .story__text p { font-size: 15px; }
	.blk-story .story__sign { font-size: 22px; }
	.blk-story .story__photo--tilt { transform: none; }
	.blk-story .story__photos {
		display: flex;
		gap: 16px;
		overflow-x: auto;
		padding: 0 0 20px;
		scroll-snap-type: x mandatory;
		scrollbar-width: thin;
		scrollbar-color: var(--gold) transparent;
	}
	.blk-story .story__photos::-webkit-scrollbar { height: 4px; }
	.blk-story .story__photos::-webkit-scrollbar-thumb { background: var(--gold); }
	.blk-story .story__photos > figure {
		flex: 0 0 75vw;
		scroll-snap-align: start;
		margin: 0;
	}
	.blk-story .story__photo { height: auto; }

	.blk-feats .feats {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, auto);
		grid-auto-flow: column;
		gap: 36px 24px;
	}
	.blk-feats .feat__icon { width: 44px; height: 44px; }
	.blk-feats .feat__icon svg { width: 20px; height: 20px; }
	.blk-feats .feat b { font-size: 20px; }

	.final { min-height: 70vh; place-items: end center; }
	.final__inner { padding: 0 20px 56px; }
	.final__title { font-size: clamp(34px, 9vw, 56px); }
	.final .btn { width: auto; max-width: 100%; padding: 12px 24px; font-size: 13px; justify-content: center; }

	.footer__contacts {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px 24px;
		padding: 24px 0;
		font-size: 13px;
	}
	.footer__contacts > :nth-child(1) { grid-row: 1; grid-column: 1; }
	.footer__contacts > :nth-child(4) { grid-row: 2; grid-column: 1; }
	.footer__contacts > :nth-child(2) { grid-row: 1; grid-column: 2; }
	.footer__contacts > :nth-child(3) { grid-row: 2; grid-column: 2; }
	.footer__contacts .footer__addr { grid-column: 1 / -1; }
	.footer__grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 28px;
		padding: 32px 0;
	}
	.footer__grid > :nth-child(1) { grid-column: 1 / -1; }
	.footer__grid > :nth-child(2) { grid-column: 1; }
	.footer__grid > :nth-child(3) { grid-column: 2; }
	.footer__grid > :nth-child(4) { grid-column: 3; }
	.footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
	.footer__bottom nav { gap: 10px 20px; }

	.block-label { font-size: 9px; padding: 4px 6px; top: 6px; left: 6px; }
	.img-num { font-size: 9px; padding: 3px 5px; top: 6px; right: 6px; }
}

@media (max-width: 640px) {
	.blk-cats .cat__label { padding: 16px 18px; }
	.blk-cats .cat__label h3 { font-size: 22px; }
	.blk-cats .cat__arrow { width: 44px; height: 44px; font-size: 18px; }
	.blk-shop .pgrid--scroll { padding: 8px 20px 24px 20px; scroll-padding-left: 20px; gap: 16px; }
	.blk-shop .shop__hint-row { padding: 0 20px 10px 20px; }
}

@media (max-width: 480px) {
	.topbar { padding: 18px 16px; }
	.topbar__logo { font-size: 20px; }
	.hero__title { font-size: clamp(36px, 12vw, 48px); }
	.blk-story .story__more .btn { width: 100%; justify-content: center; }
}


/* ============================================================
   Внутренние страницы (v2)
   ============================================================ */

.topbar--page {
	position: sticky;
	top: 0;
	padding-top: 8px;
	padding-bottom: 8px;
	background: transparent;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 2px solid rgb(4 11 7 / 20%);
	z-index: 100;
	color: var(--cream);
}

/* Та же страховка на читаемость, что и на хедере главной — тень под буквами
   и лёгкое верхнее затемнение, на случай если под blur-подложкой (страницы
   с картинкой/hero прямо под шапкой, напр. лукбук) недостаточно контраста. */
.topbar--page::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 110px;
	background: linear-gradient(to bottom, rgba(10, 20, 15, .22) 0%, transparent 100%);
	pointer-events: none;
	z-index: -1;
}
.topbar--page .topbar__logo,
.topbar--page .topbar__nav a {
	text-shadow: 0 1px 8px rgba(0, 0, 0, .3), 0 1px 2px rgba(0, 0, 0, .2);
}
.topbar--page .topbar__icon svg {
	filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .25));
}

.topbar__nav a.is-active { opacity: 1; color: var(--gold); }

/* ===== Выпадающие подкатегории в десктоп-навигации (Клематисы/Многолетники/
   Информация) — тот же набор ссылок, что в гармошке мобильного меню. ===== */
.topbar__navitem { position: relative; display: flex; align-items: center; }
.topbar__navitem.has-dropdown > a { display: flex; align-items: center; gap: 5px; }
.topbar__navitem.has-dropdown > a::after {
	content: '';
	width: 5px;
	height: 5px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	opacity: .7;
}
.topbar__dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	padding-top: 16px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s;
	z-index: 120;
}
.topbar__navitem.has-dropdown:hover .topbar__dropdown,
.topbar__navitem.has-dropdown:focus-within .topbar__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.topbar__dropdown-inner {
	min-width: 230px;
	padding: 8px;
	background: var(--cream, #f6f2e9);
	border: 1px solid rgba(38, 57, 46, .18);
	border-radius: 16px;
	box-shadow: 0 24px 60px rgba(22, 48, 35, .25);
}
.topbar__dropdown a {
	display: block;
	padding: 9px 12px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: normal;
	text-transform: none;
	opacity: 1;
	color: var(--ink, #26392e);
	text-decoration: none;
	transition: background .15s ease, color .15s ease;
}
.topbar__dropdown a:hover { background: rgba(38, 57, 46, .08); color: var(--gold-deep); opacity: 1; }

.topbar__cart { position: relative; display: inline-flex; align-items: center; }
.topbar__cart svg { width: 20px; height: 20px; }
.topbar__cart-count {
	position: absolute;
	top: -8px;
	right: -12px;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 100px;
	background: var(--gold);
	color: var(--pine-deep);
	font-size: 10px;
	font-weight: 700;
	display: grid;
	place-items: center;
}

.theme-switch {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid currentColor;
	background: transparent;
	color: inherit;
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: all .25s var(--ease-out);
	flex: 0 0 auto;
	opacity: .8;
}
.theme-switch:hover {
	border-color: var(--gold);
	color: var(--gold);
	opacity: 1;
}
.theme-switch svg { width: 18px; height: 18px; }
.theme-switch .i-moon { display: none; }
html[data-theme="dark"] .theme-switch .i-sun { display: none; }
html[data-theme="dark"] .theme-switch .i-moon { display: block; }

/* ---------- Внутренние страницы: общие ---------- */

.pagehead { padding: 64px 0 8px; }
.pagehead .eyebrow { color: var(--gold); margin-bottom: 16px; }
.pagehead h1 {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(36px, 4.6vw, 60px);
	line-height: 1.02;
	letter-spacing: -.015em;
}
.pagehead h1 em { font-style: italic; color: var(--gold); }
.pagehead__count {
	margin-top: 14px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(248, 245, 238, .55);
}
.pagehead__intro { margin-top: 18px; max-width: 62ch; font-size: 15.5px; line-height: 1.65; color: rgba(248, 245, 238, .72); }

/* ---------- Чипы категорий ---------- */

.chips { display: flex; flex-wrap: wrap; gap: 10px; padding: 26px 0 6px; }
.chips a {
	padding: 9px 18px;
	border: 1px solid var(--line-light);
	border-radius: 100px;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: .06em;
	text-decoration: none;
	color: rgba(248, 245, 238, .8);
	transition: border-color .25s, color .25s, background .25s;
}
.chips a:hover { border-color: var(--gold); color: var(--gold); }
.chips a.is-active { background: var(--gold); border-color: var(--gold); color: var(--pine-deep); }

/* ---------- Панель фильтров (как на бое: чипы + дропдаун) ---------- */

.filterbar {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 26px;
	padding: 14px 0;
	margin: 18px 0 6px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.filterbar__label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(28, 42, 34, .5);
}
.filterbar__options { display: flex; flex-wrap: wrap; gap: 8px; }
.filterbar__options a,
.filterbar__badges a {
	display: inline-block;
	padding: 8px 16px;
	border: 1px solid var(--line);
	border-radius: 100px;
	font-size: 12.5px;
	font-weight: 600;
	text-decoration: none;
	color: rgba(28, 42, 34, .75);
	transition: border-color .25s, color .25s, background .25s;
}
.filterbar__options a:hover,
.filterbar__badges a:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.filterbar__options a.is-active {
	background: var(--pine);
	border-color: var(--pine);
	color: var(--cream);
}
.filterbar__badges a.is-active {
	background: rgba(154, 123, 79, .14);
	border-color: var(--gold-deep);
	color: var(--gold-deep);
}
.filterbar__right { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.filterbar__badges { display: flex; gap: 8px; }
.filterbar__sort { position: relative; }
.filterbar__sort-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border: 1px solid var(--line);
	border-radius: 100px;
	background: transparent;
	font-size: 12.5px;
	font-weight: 600;
	font-family: var(--font-ui);
	color: rgba(28, 42, 34, .75);
	cursor: pointer;
	transition: border-color .25s, color .25s;
}
.filterbar__sort-toggle:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.filterbar__sort-toggle svg { width: 13px; height: 13px; transition: transform .25s; }
.filterbar__sort-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.filterbar__sort-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 30;
	min-width: 190px;
	padding: 8px;
	border: 1px solid rgba(28, 42, 34, .12);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 18px 44px rgba(18, 36, 27, .14);
}
.filterbar__sort-menu a {
	display: block;
	padding: 9px 12px;
	border-radius: 9px;
	font-size: 13px;
	text-decoration: none;
	color: rgba(28, 42, 34, .75);
	transition: background .2s, color .2s;
}
.filterbar__sort-menu a:hover { background: rgba(198, 166, 117, .12); color: var(--ink); }
.filterbar__sort-menu a.is-active { font-weight: 700; color: var(--gold-deep); }

/* ---------- Сетка товаров/* ---------- Сетка товаров ---------- */

.pgrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	padding: 28px 0 40px;
}
.pgrid .card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	border: 1px solid rgba(248, 245, 238, .1);
	border-radius: 20px;
	overflow: hidden;
	background: var(--pine);
	transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .3s;
}
.pgrid .card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0,0,0,.35); border-color: rgba(198,166,117,.4); }
.pgrid .card__ph { position: relative; overflow: hidden; }
.pgrid .card__ph img {
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 5.2;
	object-fit: cover;
	transition: transform .5s var(--ease-out);
	will-change: transform;
}
.pgrid .card__badges {
	position: absolute;
	top: 12px;
	left: 12px;
	right: 12px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
}
.pgrid .card__badge {
	display: inline-flex;
	align-items: center;
	line-height: 1;
	padding: 5px 11px;
	border-radius: 100px;
	background: rgba(18, 36, 27, .75);
	backdrop-filter: blur(4px);
	color: var(--gold);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}
.pgrid .card__badge--sale { color: #e8a2a2; }
.pgrid .card__badge--south { background: rgba(72, 109, 87, .75); color: var(--sage-soft); }
.pgrid .card__badge--new { color: #8bb8dd; }
.pgrid .card__body { display: flex; flex-direction: column; flex: 1; padding: 16px 18px 18px; }
.pgrid .card__body i {
	display: block;
	font-style: normal;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 8px;
}
.pgrid .card__body h3 {
	font-family: var(--font-display);
	font-size: 21px;
	font-weight: 600;
	line-height: 1.15;
	color: var(--cream);
}
.pgrid .card__body h3 a { color: inherit; text-decoration: none; }
.pgrid .card__body h3 a:hover { color: var(--gold); }
.pgrid .card__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding-top: 14px;
}
.pgrid .card__price { font-weight: 700; font-size: 17px; color: var(--cream); white-space: nowrap; }
.pgrid .card__price s { font-weight: 400; font-size: 13px; opacity: .55; margin-right: 7px; }
.pgrid .card__cta {
	padding: 9px 15px;
	border: none;
	border-radius: 100px;
	background: var(--gold);
	color: var(--pine-deep);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
	transition: transform .25s var(--ease-out), background .25s;
}
.pgrid .card__cta:hover { transform: scale(1.05); background: var(--cream); }
.pgrid .card__cta--ghost { background: transparent; border: 1px solid var(--line-light); color: var(--cream); }
.pgrid .card__wish {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border: none;
	border-radius: 50%;
	background: rgba(18, 36, 27, .75);
	backdrop-filter: blur(4px);
	color: rgba(248, 245, 238, .8);
	cursor: pointer;
	transition: color .25s, transform .25s;
}
.pgrid .card__wish:hover { color: var(--gold); transform: scale(1.08); }
.pgrid .card__wish.is-active { color: var(--gold); }
.pgrid .card__wish svg { width: 18px; height: 18px; }
.pgrid__empty { padding: 60px 0; color: rgba(248, 245, 238, .6); font-size: 16px; }

/* ---------- Пагинация ---------- */

.pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 0 60px;
}
.pagination a,
.pagination span {
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	display: inline-grid;
	place-items: center;
	border: 1px solid var(--line-light);
	border-radius: 12px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	color: rgba(248, 245, 238, .75);
	transition: border-color .25s, color .25s, background .25s;
}
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .is-current { background: var(--gold); border-color: var(--gold); color: var(--pine-deep); }
.pagination .is-dots { border: none; }

/* ---------- Текстовый блок категории ---------- */

.catnote { padding: 20px 0 70px; max-width: 75ch; }
.catnote h2 {
	font-family: var(--font-display);
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 500;
	margin-bottom: 16px;
}
.catnote p { font-size: 15px; line-height: 1.7; color: rgba(248, 245, 238, .72); margin-bottom: 12px; }
.catnote__cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 26px; }
.catnote__card {
	padding: 20px 22px;
	border: 1px solid var(--line-light);
	border-radius: 16px;
	text-decoration: none;
	color: var(--cream);
	transition: border-color .25s, transform .3s var(--ease-out);
}
.catnote__card:hover { border-color: var(--gold); transform: translateY(-3px); }
.catnote__card b { display: block; font-family: var(--font-display); font-size: 19px; margin-bottom: 6px; }
.catnote__card span { font-size: 13px; color: rgba(248, 245, 238, .6); }

@media (max-width: 1020px) {
	.pgrid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1080px) {
	.catnote__cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
	.catnote__cards { grid-template-columns: 1fr 1fr; }
	.pgrid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.pgrid .card__body h3 { font-size: 17px; }
	.pgrid .card__cta { padding: 8px 11px; font-size: 10px; }
	.pagehead { padding: 44px 0 4px; }
}
@media (max-width: 460px) {
	.pgrid { grid-template-columns: 1fr 1fr; gap: 10px; }
	.pgrid .card__body { padding: 12px 13px 14px; }
	.pgrid .card__body h3 { font-size: 15px; }
	.pgrid .card__price { font-size: 14px; }
	.pgrid .card__row { flex-direction: column; align-items: stretch; }
	.pgrid .card__cta { text-align: center; }
}

/* ---------- Карточка товара ---------- */

.crumbs { padding: 22px 0 0; font-size: 12.5px; color: rgba(248, 245, 238, .5); }
.crumbs a { color: rgba(248, 245, 238, .65); text-decoration: none; }
.crumbs a:hover { color: var(--gold); }

.product-v2 {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 56px;
	padding: 34px 0 60px;
	align-items: start;
}

.pgallery__main {
	border-radius: 22px;
	overflow: hidden;
	background: var(--pine);
}
.pgallery__main img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }

/* Заглушка галереи для сортов, у которых фото ещё нет (сорт уже в ассортименте). */
.pgallery__empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	aspect-ratio: 4 / 5;
	padding: 28px;
	border-radius: 22px;
	border: 1px dashed var(--line);
	background: repeating-linear-gradient(135deg, rgba(72, 109, 87, .04), rgba(72, 109, 87, .04) 10px, transparent 10px, transparent 20px);
	text-align: center;
}
.pgallery__empty-icon { font-size: 30px; opacity: .5; }
.pgallery__empty-title { font-family: var(--font-display); font-size: 20px; color: var(--ink); }
.pgallery__empty-text { font-size: 13.5px; line-height: 1.55; color: rgba(28, 42, 34, .6); max-width: 260px; }

/* Каталожная плитка без фото — короткая подпись вместо пустого места. */
.card__ph-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 5.2;
	padding: 16px;
	font-size: 13px;
	text-align: center;
	color: rgba(28, 42, 34, .45);
	background: repeating-linear-gradient(135deg, rgba(72, 109, 87, .04), rgba(72, 109, 87, .04) 10px, transparent 10px, transparent 20px);
}
.pgallery__thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.pgallery__thumbs button {
	width: 76px;
	height: 76px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 14px;
	overflow: hidden;
	background: var(--pine);
	cursor: pointer;
	transition: border-color .25s;
}
.pgallery__thumbs button.is-active { border-color: var(--gold); }
.pgallery__thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }

.psummary { position: sticky; top: 110px; }
.psummary__badges { display: flex; gap: 8px; margin-bottom: 16px; }
.psummary__badge {
	display: inline-flex;
	align-items: center;
	line-height: 1;
	padding: 6px 13px;
	border-radius: 100px;
	background: rgba(198, 166, 117, .16);
	color: var(--gold);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.psummary__badge--sale { color: #e8a2a2; }
.psummary__badge--south { background: rgba(72, 109, 87, .16); color: var(--sage); }
.psummary__badge--new { background: rgba(90, 134, 171, .18); color: #8bb8dd; }
.psummary h1 {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(30px, 3.6vw, 46px);
	line-height: 1.06;
	letter-spacing: -.01em;
	margin-bottom: 18px;
}
.psummary__price { font-size: 30px; font-weight: 700; margin-bottom: 10px; }
.psummary__price del { font-size: 18px; font-weight: 400; opacity: .5; margin-right: 10px; }
.psummary__ship {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 15px;
	border: 1px solid var(--line-light);
	border-radius: 100px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .06em;
	color: rgba(248, 245, 238, .8);
	margin-bottom: 22px;
}
.psummary__desc { font-size: 15.5px; line-height: 1.7; color: rgba(248, 245, 238, .78); margin-bottom: 26px; }
.psummary__desc p { margin-bottom: 10px; }
.psummary__buy { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.psummary__qty {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--line-light);
	border-radius: 100px;
	overflow: hidden;
}
.psummary__qty input {
	width: 40px;
	padding: 13px 0;
	border: none;
	background: transparent;
	color: var(--cream);
	font-size: 15px;
	text-align: center;
	-moz-appearance: textfield;
}
.psummary__qty input::-webkit-outer-spin-button,
.psummary__qty input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.psummary__qty-btn {
	width: 38px;
	height: 48px;
	display: grid;
	place-items: center;
	border: none;
	background: transparent;
	color: rgba(248, 245, 238, .8);
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	transition: background .2s, color .2s;
}
.psummary__qty-btn:hover { background: var(--gold); color: var(--pine-deep); }
.psummary__buy .btn { padding: 15px 34px; }
.psummary__wish {
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	border: 1px solid var(--line-light);
	border-radius: 50%;
	background: transparent;
	color: rgba(248, 245, 238, .8);
	cursor: pointer;
	transition: color .25s, border-color .25s, transform .25s;
}
.psummary__wish:hover { color: var(--gold); border-color: var(--gold); transform: scale(1.06); }
.psummary__wish.is-active { color: var(--gold); border-color: var(--gold); }
.psummary__wish svg { width: 22px; height: 22px; }
.psummary__stock { font-size: 15px; color: #e8a2a2; margin-bottom: 20px; }
.psummary__meta { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line-light); font-size: 13px; color: rgba(248, 245, 238, .6); }
.psummary__meta a { color: rgba(248, 245, 238, .8); text-decoration: none; }
.psummary__meta a:hover { color: var(--gold); }

/* ---------- Вариант саженца (C2/C5) — карточки-радио, как на бою ---------- */
.asc-seedling-variant-form { display: flex; flex-wrap: wrap; align-items: stretch; gap: 14px; }
.asc-seedling-variants {
	flex: 1 0 100%;
	display: grid;
	gap: 8px;
	padding: 10px 12px;
	border: 1px solid var(--line-light);
	border-radius: 14px;
	background: rgba(248, 245, 238, .06);
}
.asc-seedling-variants__head { display: flex; align-items: baseline; gap: 8px; }
.asc-seedling-variants__eyebrow {
	color: var(--gold);
	font-size: .74rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.asc-seedling-variants__head strong { color: var(--cream); font-size: .86rem; font-weight: 600; }
.asc-seedling-variants__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.asc-seedling-variant-card { position: relative; display: block; min-width: 0; cursor: pointer; }
.asc-seedling-variant-card input { position: absolute; inset: 0; opacity: 0; pointer-events: none; }
.asc-seedling-variant-card__body {
	display: grid;
	min-height: 0;
	padding: 10px 12px;
	border: 1px solid var(--line-light);
	border-radius: 16px;
	background: rgba(248, 245, 238, .04);
	transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.asc-seedling-variant-card.is-selected .asc-seedling-variant-card__body {
	border-color: var(--gold);
	background: rgba(198, 166, 117, .14);
	box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
}
.asc-seedling-variant-card.is-disabled { cursor: not-allowed; opacity: .5; }
.asc-seedling-variant-card__title { color: var(--cream); font-size: .9rem; font-weight: 800; line-height: 1.2; }
.asc-seedling-variant-card__title { display: grid; gap: 2px; font-weight: 400; }
.asc-seedling-variant-card__price { color: var(--cream); font-size: .9rem; line-height: 1.35; }
.asc-seedling-variant-card__price strong { font-weight: 800; }
.asc-seedling-variant-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-width: 0; }
.asc-seedling-variant-card__photos { margin-left: auto; padding: 0; border: 0; background: transparent; color: var(--gold); font: 600 .78rem/1.2 var(--font-body); text-decoration: none; cursor: pointer; }
.asc-seedling-photo-modal[hidden] { display: none; }
.asc-seedling-photo-modal { position: fixed; z-index: 10020; inset: 0; display: grid; place-items: center; padding: 20px; overflow: hidden; }
.asc-seedling-photo-modal__backdrop { position: absolute; inset: 0; background: rgba(12, 23, 17, .72); }
.asc-seedling-photo-modal__content { position: relative; width: min(1080px, 100%); max-width: calc(100vw - 40px); padding: 28px; border-radius: 20px; background: var(--paper); color: var(--ink); box-shadow: 0 24px 60px rgba(0,0,0,.3); overflow: hidden; }
.asc-seedling-photo-modal__content h2 { margin: 0 32px 18px 0; font-size: clamp(24px, 3vw, 34px); }
.asc-seedling-photo-modal__close { position: absolute; top: 14px; right: 16px; border: 0; background: transparent; color: var(--ink); font-size: 30px; line-height: 1; cursor: pointer; }
/* Ряд карточек — на десктопе статичная сетка 4 в ряд (как было), на узких
   экранах (media ниже) становится лентой, которая листается вбок пальцем:
   последняя видимая карточка нарочно обрезана краем контейнера — это и
   есть «предпоказ» следующей. Клик по карточке — отдельный лайтбокс с
   этим фото крупно (десктоп и мобильный одинаково). */
.asc-seedling-photo-modal__row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.asc-seedling-photo-modal__card { padding: 0; border: 0; border-radius: 12px; overflow: hidden; cursor: pointer; background: none; }
.asc-seedling-photo-modal__card img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; display: block; }
.v2-light .asc-seedling-variant-card__price { color: var(--ink); }
@media (max-width: 600px) {
	.asc-seedling-photo-modal__content { padding: 20px; }
	.asc-seedling-photo-modal__row { display: flex; overflow-x: auto; scroll-snap-type: x proximity; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
	.asc-seedling-photo-modal__card { flex: 0 0 auto; width: 34vw; scroll-snap-align: start; }
}

.asc-seedling-lightbox[hidden] { display: none; }
.asc-seedling-lightbox { position: fixed; z-index: 10030; inset: 0; display: grid; place-items: center; padding: 20px; }
.asc-seedling-lightbox__backdrop { position: absolute; inset: 0; background: rgba(12, 23, 17, .88); }
.asc-seedling-lightbox img { position: relative; max-width: min(720px, calc(100vw - 40px)); max-height: calc(100vh - 40px); width: auto; height: auto; object-fit: contain; border-radius: 14px; box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.asc-seedling-lightbox__close { position: fixed; top: 20px; right: 20px; z-index: 10031; width: 42px; height: 42px; border-radius: 50%; border: 0; background: rgba(12, 23, 17, .72); color: var(--cream); font-size: 26px; line-height: 1; cursor: pointer; }
.asc-seedling-variant-card__note,
.asc-seedling-variant-card__stock { color: rgba(248, 245, 238, .6); font-size: .78rem; line-height: 1.35; }
.asc-seedling-variant-card__price { color: var(--cream); font-size: .98rem; font-weight: 800; }
.asc-seedling-variants__summary { display: none; }
.asc-seedling-variants__note { margin: 0; color: rgba(248, 245, 238, .58); font-size: .72rem; line-height: 1.35; }
.v2-light .asc-seedling-variants__note { color: rgba(28, 42, 34, .58); }
.asc-seedling-variant-form .psummary__specs { flex: 1 0 100%; }
.asc-seedling-variant-form .btn--light { padding: 15px 34px; border: 1px solid rgba(38, 57, 46, .45) !important; }
.asc-seedling-variants__summary strong,
.asc-seedling-variants__summary [data-seedling-selected-price] { color: var(--cream); font-weight: 800; }
.v2-light .asc-seedling-variants { border-color: var(--line); background: rgba(28, 42, 34, .03); }
.v2-light .asc-seedling-variants__eyebrow { color: var(--sage); }
.v2-light .asc-seedling-variants__head strong { color: var(--ink); }
.v2-light .asc-seedling-variant-card__body { border-color: var(--line); background: rgba(255, 255, 255, .6); }
.v2-light .asc-seedling-variant-card.is-selected .asc-seedling-variant-card__body {
	border-color: rgba(72, 109, 87, .46);
	background: rgba(239, 247, 236, .92);
	box-shadow: 0 10px 22px rgba(31, 46, 35, .07);
}
.v2-light .asc-seedling-variant-card__title,
.v2-light .asc-seedling-variant-card__price,
.v2-light .asc-seedling-variants__head strong { color: var(--ink); }
.v2-light .asc-seedling-variant-card__note,
.v2-light .asc-seedling-variant-card__stock,
.v2-light .asc-seedling-variants__summary { color: rgba(28, 42, 34, .6); }
.v2-light .asc-seedling-variants__summary { background: rgba(72, 109, 87, .08); }
.v2-light .asc-seedling-variants__summary strong,
.v2-light .asc-seedling-variants__summary [data-seedling-selected-price] { color: var(--ink); }
@media (max-width: 480px) {
	.asc-seedling-variants__grid { grid-template-columns: 1fr; }
}

.pdetail { padding: 10px 0 70px; }
.pdetail__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: start; }
.pdetail__profile { display: grid; gap: 42px; }
.pdetail h2 {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(24px, 2.8vw, 32px);
	margin-bottom: 18px;
}
.pdetail__text { font-size: 15px; line-height: 1.75; color: rgba(248, 245, 238, .78); }
.pdetail__text p { margin-bottom: 12px; }
.pdetail__attrs { border-top: 1px solid var(--line-light); }
.pdetail__attrs-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	padding: 13px 0;
	border-bottom: 1px solid var(--line-light);
	font-size: 14px;
}
.pdetail__attrs-row dt { color: rgba(248, 245, 238, .55); }
.pdetail__attrs-row dd { color: var(--cream); }

@media (max-width: 960px) {
	.product-v2 { grid-template-columns: 1fr; gap: 34px; }
	.psummary { position: static; }
	.pdetail__grid { grid-template-columns: 1fr; gap: 34px; }
}

/* ---------- Контентные страницы ---------- */

.pagehead__note {
	margin-top: 18px;
	padding: 14px 18px;
	border-left: 3px solid var(--gold);
	background: rgba(198, 166, 117, .08);
	border-radius: 0 12px 12px 0;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(248, 245, 238, .8);
	max-width: 62ch;
}
.pagehead__note b { color: var(--gold); font-weight: 700; }

.vgroup { padding: 26px 0 10px; }
.vgroup .eyebrow { color: var(--gold); margin-bottom: 12px; }
.vgroup h2 {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(26px, 3vw, 38px);
	margin-bottom: 22px;
}

.vcards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
	padding: 6px 0 30px;
}
.vcard {
	padding: 22px 24px;
	border: 1px solid var(--line-light);
	border-radius: 18px;
	background: rgba(255, 255, 255, .02);
	transition: border-color .25s, transform .3s var(--ease-out);
}
.vcard:hover { border-color: rgba(198, 166, 117, .5); transform: translateY(-3px); }
.vcard__eyebrow {
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 10px;
}
.vcard__title {
	font-family: var(--font-display);
	font-size: 21px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 8px;
}
.vcard__text { font-size: 14px; line-height: 1.65; color: rgba(248, 245, 238, .7); }
.vcard__link {
	display: inline-block;
	margin-top: 12px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .06em;
	color: var(--gold);
	text-decoration: none;
}
.vcard__link:hover { text-decoration: underline; }

.prose { padding: 20px 0 50px; max-width: 78ch; font-size: 15px; line-height: 1.75; color: rgba(248, 245, 238, .78); }
.prose h2, .prose h3 {
	font-family: var(--font-display);
	font-weight: 500;
	color: var(--cream);
	margin: 28px 0 14px;
}
.prose h2 { font-size: 27px; }
.prose h3 { font-size: 22px; }
.prose p { margin-bottom: 14px; }
.prose ul, .prose ol { margin: 0 0 14px 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--gold); }

/* ---------- Корзина ---------- */

.cart-v2 { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; padding: 20px 0 70px; align-items: start; }

.citem {
	display: grid;
	grid-template-columns: 110px 1fr auto;
	gap: 18px;
	padding: 18px 0;
	border-bottom: 1px solid var(--line-light);
	align-items: center;
}
.citem__img { width: 110px; height: 110px; border-radius: 14px; overflow: hidden; background: var(--pine); }
.citem__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.citem__name { font-family: var(--font-display); font-size: 19px; font-weight: 600; }
.citem__name a { color: var(--cream); text-decoration: none; }
.citem__name a:hover { color: var(--gold); }
.citem__qty { display: flex; gap: 8px; margin-top: 10px; align-items: center; }
.citem__qty input {
	width: 62px;
	padding: 8px 8px;
	border: 1px solid var(--line-light);
	border-radius: 10px;
	background: transparent;
	color: var(--cream);
	text-align: center;
}
.citem__qty button {
	padding: 8px 14px;
	border: 1px solid var(--line-light);
	border-radius: 100px;
	background: transparent;
	color: rgba(248, 245, 238, .75);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: border-color .25s, color .25s;
}
.citem__qty button:hover { border-color: var(--gold); color: var(--gold); }
.citem__right { text-align: right; }
.citem__price { font-size: 17px; font-weight: 700; }
.citem__line { font-size: 12px; color: rgba(248, 245, 238, .55); margin-top: 4px; }
.citem__remove {
	margin-top: 10px;
	padding: 4px 10px;
	border: none;
	background: transparent;
	color: rgba(248, 245, 238, .45);
	font-size: 18px;
	cursor: pointer;
	transition: color .25s;
}
.citem__remove:hover { color: #e8a2a2; }

.ctotals {
	padding: 26px 28px;
	border: 1px solid var(--line-light);
	border-radius: 20px;
	background: rgba(255, 255, 255, .02);
	position: sticky;
	top: 110px;
}
.ctotals h2 { font-family: var(--font-display); font-size: 24px; font-weight: 500; margin-bottom: 18px; }
.ctotals__row {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	font-size: 14.5px;
	color: rgba(248, 245, 238, .75);
}
.ctotals__row--total {
	border-top: 1px solid var(--line-light);
	margin-top: 8px;
	padding-top: 16px;
	font-size: 19px;
	font-weight: 700;
	color: var(--cream);
}
.ctotals .btn { width: 100%; justify-content: center; margin-top: 18px; }

/* ---------- Формы (чекаут, ЛК) ---------- */

.vform { max-width: 560px; padding: 10px 0 60px; }
.vform--wide { max-width: 760px; }
.vfield { margin-bottom: 16px; }
.vfield label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(248, 245, 238, .6);
	margin-bottom: 7px;
}
.vfield input,
.vfield select,
.vfield textarea {
	width: 100%;
	padding: 13px 16px;
	border: 1px solid var(--line-light);
	border-radius: 12px;
	background: rgba(255, 255, 255, .03);
	color: var(--cream);
	font-size: 15px;
	font-family: var(--font-ui);
	transition: border-color .25s;
}
.vfield input:focus,
.vfield select:focus,
.vfield textarea:focus { outline: none; border-color: var(--gold); }
.vfield textarea { min-height: 90px; resize: vertical; }
.vfield--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vform .btn { padding: 15px 36px; }
.vform__error {
	padding: 12px 16px;
	border: 1px solid rgba(232, 162, 162, .5);
	border-radius: 12px;
	background: rgba(232, 162, 162, .08);
	color: #e8a2a2;
	font-size: 14px;
	margin-bottom: 18px;
}
.vform__note { font-size: 13px; color: rgba(248, 245, 238, .55); margin-top: 14px; }

/* ---------- Заказ / ЛК ---------- */

.vcard--order { margin-bottom: 14px; }
.vorder-num { font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.vorder-status {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 100px;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	background: rgba(198, 166, 117, .14);
	color: var(--gold);
}
.vorder-status--completed { background: rgba(120, 180, 120, .15); color: #9ed09e; }
.vorder-status--cancelled { background: rgba(232, 162, 162, .12); color: #e8a2a2; }

@media (max-width: 860px) {
	.cart-v2 { grid-template-columns: 1fr; gap: 30px; }
	.ctotals { position: static; }
	.citem { grid-template-columns: 84px 1fr; }
	.citem__img { width: 84px; height: 84px; }
	.citem__right { grid-column: 2; text-align: left; }
	.vfield--row { grid-template-columns: 1fr; }
}

/* радио-чипы (чекаут, доставка) */
.chips__opt {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 18px;
	border: 1px solid var(--line-light);
	border-radius: 100px;
	font-size: 13px;
	color: rgba(248, 245, 238, .8);
	cursor: pointer;
	transition: border-color .25s, color .25s;
}
.chips__opt:hover { border-color: var(--gold); }
.chips__opt input { accent-color: var(--gold); }
.chips__opt:has(input:checked) { border-color: var(--gold); color: var(--gold); background: rgba(198,166,117,.08); }
.chips__opt-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 12px; }
.chips__opt--icon { gap: 10px; }
.chips__opt-icon { width: 18px; height: 18px; display: inline-flex; color: currentColor; }
.chips__opt-icon svg { width: 100%; height: 100%; fill: currentColor; }
.vfield__label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(248, 245, 238, .6);
	margin-bottom: 7px;
}

/* ---------- Корзина: баннер минимума, группировка по сроку, выбор доставки, промокод ---------- */

.cart-notice {
	padding: 14px 20px;
	margin: 22px 0 0;
	border: 1px solid rgba(232, 162, 162, .4);
	border-radius: 14px;
	background: rgba(232, 162, 162, .08);
	color: #e8a2a2;
	font-size: 14px;
}
.pagehead__row { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.pagehead__row .pagehead__count { margin-top: 0; }

.cart-group { margin-bottom: 8px; }
.cart-group__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 18px 0 10px;
	margin-top: 8px;
	border-bottom: 1px solid var(--line-light);
}
.cart-group__head h2 { font-family: var(--font-display); font-size: 18px; font-weight: 600; }
.cart-group__head span { font-size: 12px; color: rgba(248, 245, 238, .5); }

.delivery-scope { padding: 18px 0; border-top: 1px solid var(--line-light); margin-top: 8px; }
.delivery-scope__label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(248, 245, 238, .6);
	margin-bottom: 10px;
}
.delivery-scope form { display: flex; gap: 10px; flex-wrap: wrap; }
.delivery-scope__hint { font-size: 12.5px; color: rgba(248, 245, 238, .5); margin-top: 10px; line-height: 1.5; }

.promo { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-light); }
.promo h3 { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.promo p { font-size: 12.5px; color: rgba(248, 245, 238, .55); line-height: 1.5; margin-bottom: 12px; }
.promo form { display: flex; gap: 8px; }
.promo input {
	flex: 1;
	min-width: 0;
	padding: 10px 14px;
	border: 1px solid var(--line-light);
	border-radius: 10px;
	background: transparent;
	color: var(--cream);
	font-size: 13px;
}
.promo button {
	padding: 10px 16px;
	border: none;
	border-radius: 10px;
	background: var(--pine);
	color: var(--cream);
	font-size: 12.5px;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
}
.promo__msg { margin-top: 10px; font-size: 12.5px; color: var(--gold); }

/* ---------- Чекаут: доставка/самовывоз, приоритетная отправка, легал, вход ---------- */

.returning-customer {
	margin: 22px 0 0;
	padding: 14px 20px;
	border: 1px solid var(--line-light);
	border-radius: 14px;
}
.returning-customer summary { cursor: pointer; font-size: 14px; font-weight: 600; color: var(--cream); }
.returning-customer div { margin-top: 10px; font-size: 13.5px; color: rgba(248, 245, 238, .7); }
.returning-customer a { color: var(--gold); }

.checkout-details { max-width: none; }
.vgroup__h { font-family: var(--font-display); font-size: 24px; font-weight: 500; margin: 10px 0 18px; }

.checkout-pickup-card {
	margin-bottom: 18px;
	padding: 18px 20px;
	border: 1px solid rgba(198, 166, 117, .3);
	border-radius: 14px;
	background: rgba(198, 166, 117, .06);
}
.checkout-pickup-card strong { color: var(--gold); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.checkout-pickup-card p { margin-top: 8px; font-size: 14px; line-height: 1.6; color: rgba(248, 245, 238, .75); }

.checkout-delivery { margin-bottom: 18px; }
.checkout-delivery__hint { font-size: 12.5px; color: rgba(248, 245, 238, .5); line-height: 1.55; margin-bottom: 14px; }
.checkout-delivery__panel { padding-top: 6px; }
.checkout-delivery__mode { margin-top: 4px; }

.priority-shipping {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 16px 18px;
	margin-bottom: 18px;
	border: 1px solid rgba(198, 166, 117, .3);
	border-radius: 14px;
	background: rgba(198, 166, 117, .05);
}
.priority-shipping--compact { margin-bottom: 14px; padding: 14px 16px; }
.priority-shipping__checkbox { position: relative; flex: 0 0 auto; cursor: pointer; display: inline-flex; }
.priority-shipping__checkbox input { position: absolute; opacity: 0; width: 22px; height: 22px; margin: 0; cursor: pointer; }
.priority-shipping__mark {
	width: 22px;
	height: 22px;
	border: 1px solid var(--line-light);
	border-radius: 6px;
	display: grid;
	place-items: center;
	font-size: 13px;
	color: transparent;
	transition: all .2s;
}
.priority-shipping__checkbox.is-checked .priority-shipping__mark,
.priority-shipping__checkbox:has(input:checked) .priority-shipping__mark {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--pine-deep);
}
.priority-shipping__body { flex: 1; min-width: 0; }
.priority-shipping__meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.priority-shipping__meta span { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(248, 245, 238, .5); }
.priority-shipping__meta b { color: var(--gold); font-size: 13px; }
.priority-shipping__trigger {
	background: none;
	border: none;
	padding: 0;
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: 600;
	color: var(--cream);
	cursor: pointer;
	text-align: left;
	text-decoration: underline dotted;
	text-underline-offset: 3px;
}
.priority-shipping__tooltip {
	margin-top: 8px;
	padding: 10px 12px;
	border-radius: 10px;
	background: rgba(0, 0, 0, .3);
	font-size: 12.5px;
	line-height: 1.5;
	color: rgba(248, 245, 238, .8);
}
.priority-shipping__hint { margin-top: 6px; font-size: 12px; color: rgba(248, 245, 238, .5); }

.checkout-legal { margin: 18px 0; display: grid; gap: 12px; }
.checkout-legal__opt { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; line-height: 1.55; color: rgba(248, 245, 238, .7); cursor: pointer; }
.checkout-legal__opt input { margin-top: 3px; accent-color: var(--gold); flex: 0 0 auto; }
.checkout-legal__opt a { color: var(--gold); }
.checkout-legal__note { font-size: 12.5px; line-height: 1.6; color: rgba(248, 245, 238, .55); margin: 14px 0; }

.checkout-side .btn { margin-top: 6px; }

@media (max-width: 860px) {
	.checkout-details { max-width: none; }
}

/* фото-группы и списки на контентных страницах */
.vgroup__copy { max-width: 62ch; font-size: 15px; line-height: 1.65; color: rgba(248, 245, 238, .7); margin: -8px 0 20px; }
.vcard__list { margin: 10px 0 0 18px; font-size: 14px; line-height: 1.65; color: rgba(248, 245, 238, .7); }
.vcard__list li { margin-bottom: 7px; }
.vcard__list li::marker { color: var(--gold); }

.vphotos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	padding: 4px 0 26px;
}
.vphotos__item { margin: 0; }
.vphotos__item img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: 16px;
	display: block;
}
.vphotos__item figcaption {
	padding: 8px 4px 0;
	font-size: 12px;
	color: rgba(248, 245, 238, .55);
	line-height: 1.4;
}
.vvideo { padding: 4px 0 26px; }
.vvideo iframe { width: 100%; height: auto; aspect-ratio: 16 / 9; border: none; border-radius: 16px; display: block; }

@media (max-width: 720px) {
	.vphotos { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ============================================================
   СВЕТЛАЯ ТЕМА внутренних страниц (body.v2-light)
   Кремовый фон + зелёные/золотые акценты. Шапка и футер — тёмные.
   ============================================================ */

body.v2-light { background: var(--cream); color: var(--ink); }

/* ---------- типографика страниц ---------- */

.v2-light .pagehead h1 { color: var(--ink); }
.v2-light .pagehead h1 em { color: var(--gold-deep); }
.v2-light .pagehead .eyebrow { color: var(--gold-deep); }
.v2-light .pagehead__count { color: rgba(28, 42, 34, .55); }
.v2-light .pagehead__intro { color: rgba(28, 42, 34, .72); }
.v2-light .pagehead__note {
	border-left-color: var(--gold-deep);
	background: rgba(154, 123, 79, .08);
	color: rgba(28, 42, 34, .8);
}
.v2-light .pagehead__note b { color: var(--gold-deep); }

.v2-light .crumbs { color: rgba(28, 42, 34, .5); }
.v2-light .crumbs a { color: rgba(28, 42, 34, .65); }
.v2-light .crumbs a:hover { color: var(--gold-deep); }

/* ---------- чипы / фильтры ---------- */

.v2-light .chips a { border-color: var(--line); color: rgba(28, 42, 34, .8); }
.v2-light .chips a:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.v2-light .chips a.is-active { background: var(--pine); border-color: var(--pine); color: var(--cream); }
.v2-light .chips__opt { border-color: var(--line); color: rgba(28, 42, 34, .8); }
.v2-light .chips__opt:hover { border-color: var(--gold-deep); }
.v2-light .chips__opt:has(input:checked) { border-color: var(--pine); color: var(--pine); background: rgba(30, 58, 44, .06); }

.v2-light .filterbar { border-color: var(--line); }
.v2-light .filterbar label { color: rgba(28, 42, 34, .75); }
.v2-light .filterbar select { border-color: var(--line); background: #fff; color: var(--ink); }


/* ---------- сетка товаров ---------- */

.v2-light .pgrid .card {
	border-color: rgba(28, 42, 34, .08);
	background: #fff;
	box-shadow: 0 8px 24px rgba(18, 36, 27, .06);
}
.v2-light .pgrid .card:hover { box-shadow: 0 22px 50px rgba(18, 36, 27, .14); border-color: rgba(154, 123, 79, .45); }
.v2-light .pgrid .card__body i { color: var(--gold-deep); }
.v2-light .pgrid .card__body h3 { color: var(--ink); }
.v2-light .pgrid .card__body h3 a:hover { color: var(--gold-deep); }
.v2-light .pgrid .card__price { color: var(--pine); }
.v2-light .pgrid .card__cta { background: var(--pine); color: var(--cream); }
.v2-light .pgrid .card__cta:hover { background: var(--sage); }
.v2-light .pgrid .card__cta--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.v2-light .pgrid .card__wish:hover { color: var(--gold); }
.v2-light .pgrid__empty { color: rgba(28, 42, 34, .6); }

/* ---------- пагинация ---------- */

.v2-light .pagination a,
.v2-light .pagination span { border-color: var(--line); color: rgba(28, 42, 34, .75); }
.v2-light .pagination a:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.v2-light .pagination .is-current { background: var(--pine); border-color: var(--pine); color: var(--cream); }

/* ---------- карточка товара ---------- */

.v2-light .pgallery__main { background: var(--paper); }
.v2-light .pgallery__thumbs button { background: var(--paper); }
.v2-light .pgallery__thumbs button.is-active { border-color: var(--gold-deep); }
.v2-light .psummary__badge { background: rgba(154, 123, 79, .14); color: var(--gold-deep); }
.v2-light .psummary__badge--south { background: rgba(72, 109, 87, .14); color: var(--sage); }
.v2-light .psummary__badge--new { background: rgba(74, 106, 145, .12); color: #4a6a91; }
.v2-light .psummary__ship { border-color: var(--line); color: rgba(28, 42, 34, .8); }
.v2-light .psummary__desc { color: rgba(28, 42, 34, .78); }
.v2-light .psummary__qty { border-color: var(--line); }
.v2-light .psummary__qty input { color: var(--ink); }
.v2-light .psummary__qty-btn { color: rgba(28, 42, 34, .7); }
.v2-light .psummary__qty-btn:hover { background: var(--gold); color: var(--pine-deep); }
.v2-light .psummary__wish { border-color: var(--line); color: rgba(28, 42, 34, .7); }
.v2-light .psummary__wish:hover { color: var(--gold-deep); border-color: var(--gold-deep); }
.v2-light .psummary__wish.is-active { color: var(--gold-deep); border-color: var(--gold-deep); }
.v2-light .psummary__stock { color: #b56a5a; }
.v2-light .psummary__meta { border-color: var(--line); color: rgba(28, 42, 34, .6); }
.v2-light .psummary__meta a { color: rgba(28, 42, 34, .8); }
.v2-light .psummary__meta a:hover { color: var(--gold-deep); }
.v2-light .pdetail__text { color: rgba(28, 42, 34, .78); }
.v2-light .pdetail__attrs { border-color: var(--line); }
.v2-light .pdetail__attrs-row { border-color: var(--line); }
.v2-light .pdetail__attrs-row dt { color: rgba(28, 42, 34, .55); }
.v2-light .pdetail__attrs-row dd { color: var(--ink); }
.v2-light .pdetail h2 { color: var(--ink); }

/* ---------- корзина / итоги ---------- */

.v2-light .citem { border-color: var(--line); }
.v2-light .citem__img { background: var(--paper); }
.v2-light .citem__name a { color: var(--ink); }
.v2-light .citem__name a:hover { color: var(--gold-deep); }
.v2-light .citem__qty input { border-color: var(--line); color: var(--ink); }
.v2-light .citem__qty button { border-color: var(--line); color: rgba(28, 42, 34, .75); }
.v2-light .citem__qty button:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.v2-light .citem__line { color: rgba(28, 42, 34, .55); }
.v2-light .citem__remove { color: rgba(28, 42, 34, .4); }
.v2-light .citem__remove:hover { color: #b56a5a; }
.v2-light .ctotals { border-color: var(--line); background: #fff; box-shadow: 0 12px 34px rgba(18, 36, 27, .07); }
.v2-light .ctotals h2 { color: var(--ink); }
.v2-light .ctotals__row { color: rgba(28, 42, 34, .75); }
.v2-light .ctotals__row--total { border-color: var(--line); color: var(--ink); }

/* ---------- формы ---------- */

.v2-light .vfield label { color: rgba(28, 42, 34, .6); }
.v2-light .vfield input,
.v2-light .vfield select,
.v2-light .vfield textarea {
	border-color: var(--line);
	background: #fff;
	color: var(--ink);
}
.v2-light .vfield input:focus,
.v2-light .vfield select:focus,
.v2-light .vfield textarea:focus { border-color: var(--gold-deep); }
.v2-light .vform__note { color: rgba(28, 42, 34, .55); }
.v2-light .vform__error {
	border-color: rgba(181, 106, 90, .5);
	background: rgba(181, 106, 90, .08);
	color: #b56a5a;
}

/* ---------- корзина/чекаут: доп. блоки (v2-light) ---------- */

.v2-light .cart-notice { border-color: rgba(181, 106, 90, .4); background: rgba(181, 106, 90, .07); color: #b56a5a; }
.v2-light .pagehead__row .pagehead__count { color: rgba(28, 42, 34, .55); }
.v2-light .cart-group__head { border-color: var(--line); }
.v2-light .cart-group__head span { color: rgba(28, 42, 34, .5); }
.v2-light .delivery-scope { border-color: var(--line); }
.v2-light .delivery-scope__label { color: rgba(28, 42, 34, .6); }
.v2-light .delivery-scope__hint { color: rgba(28, 42, 34, .5); }
.v2-light .promo { border-color: var(--line); }
.v2-light .promo p { color: rgba(28, 42, 34, .55); }
.v2-light .promo input { border-color: var(--line); color: var(--ink); }
.v2-light .promo button { background: var(--pine); color: var(--cream); }
.v2-light .promo__msg { color: var(--gold-deep); }

.v2-light .returning-customer { border-color: var(--line); }
.v2-light .returning-customer summary { color: var(--ink); }
.v2-light .returning-customer div { color: rgba(28, 42, 34, .65); }
.v2-light .returning-customer a { color: var(--gold-deep); }

.v2-light .vgroup__h { color: var(--ink); }
.v2-light .checkout-pickup-card { border-color: rgba(154, 123, 79, .3); background: rgba(154, 123, 79, .06); }
.v2-light .checkout-pickup-card strong { color: var(--gold-deep); }
.v2-light .checkout-pickup-card p { color: rgba(28, 42, 34, .7); }
.v2-light .checkout-delivery__hint { color: rgba(28, 42, 34, .5); }
.v2-light .vfield__label { color: rgba(28, 42, 34, .6); }
.v2-light .chips__opt-icon { color: rgba(28, 42, 34, .7); }

.v2-light .priority-shipping { border-color: rgba(154, 123, 79, .3); background: rgba(154, 123, 79, .05); }
.v2-light .priority-shipping__mark { border-color: var(--line); }
.v2-light .priority-shipping__checkbox.is-checked .priority-shipping__mark,
.v2-light .priority-shipping__checkbox:has(input:checked) .priority-shipping__mark { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }
.v2-light .priority-shipping__meta span { color: rgba(28, 42, 34, .5); }
.v2-light .priority-shipping__meta b { color: var(--gold-deep); }
.v2-light .priority-shipping__trigger { color: var(--ink); }
.v2-light .priority-shipping__tooltip { background: rgba(28, 42, 34, .06); color: rgba(28, 42, 34, .75); }
.v2-light .priority-shipping__hint { color: rgba(28, 42, 34, .5); }

.v2-light .checkout-legal__opt { color: rgba(28, 42, 34, .7); }
.v2-light .checkout-legal__opt a { color: var(--gold-deep); }
.v2-light .checkout-legal__note { color: rgba(28, 42, 34, .55); }

/* ---------- контентные страницы ---------- */

.v2-light .vgroup h2 { color: var(--ink); }
.v2-light .vgroup .eyebrow { color: var(--gold-deep); }
.v2-light .vgroup__copy { color: rgba(28, 42, 34, .7); }
.v2-light .vcard {
	border-color: rgba(28, 42, 34, .1);
	background: #fff;
	box-shadow: 0 6px 20px rgba(18, 36, 27, .05);
}
.v2-light .vcard:hover { border-color: rgba(154, 123, 79, .5); }
.v2-light .vcard__eyebrow { color: var(--gold-deep); }
.v2-light .vcard__title { color: var(--ink); }
.v2-light .vcard__text { color: rgba(28, 42, 34, .7); }
.v2-light .vcard__text b { color: var(--ink) !important; }
.v2-light .vcard__list { color: rgba(28, 42, 34, .7); }
.v2-light .vcard__list li::marker { color: var(--gold-deep); }
.v2-light .vcard__link { color: var(--gold-deep); }
.v2-light .vorder-num { color: var(--ink); }
.v2-light .vorder-status { background: rgba(154, 123, 79, .12); color: var(--gold-deep); }
.v2-light .vorder-status--completed { background: rgba(72, 109, 87, .14); color: var(--sage); }
.v2-light .vorder-status--cancelled { background: rgba(181, 106, 90, .12); color: #b56a5a; }
.v2-light .prose { color: rgba(28, 42, 34, .78); }
.v2-light .prose h2, .v2-light .prose h3 { color: var(--ink); }
.v2-light .prose a { color: var(--gold-deep); }
.v2-light .vphotos__item figcaption { color: rgba(28, 42, 34, .55); }
.v2-light .catnote h2 { color: var(--ink); }
.v2-light .catnote p { color: rgba(28, 42, 34, .72); }
.v2-light .catnote__card { border-color: rgba(28, 42, 34, .1); background: #fff; color: var(--ink); }
.v2-light .catnote__card:hover { border-color: var(--gold-deep); }
.v2-light .catnote__card span { color: rgba(28, 42, 34, .6); }

/* ============================================================
   ТЁМНАЯ ТЕМА внутренних страниц (html[data-theme="dark"] body.v2-light)
   Компаньон к блоку выше — та же структура/порядок разделов, только
   тёмные значения вместо светлых. Формула замены: var(--ink) → var(--cream),
   rgba(28,42,34,N) → rgba(248,245,238,N), var(--line) → var(--line-light),
   var(--gold-deep) → var(--gold), фон #fff/var(--paper) → rgba(248,245,238,.05-.08),
   var(--pine)-кнопки → var(--gold)+var(--pine-deep) текст.
   ============================================================ */

html[data-theme="dark"] body.v2-light { background: var(--pine-deep); color: var(--cream); }

/* ---------- типографика страниц ---------- */

html[data-theme="dark"] .v2-light .pagehead h1 { color: var(--cream); }
html[data-theme="dark"] .v2-light .pagehead h1 em { color: var(--gold); }
html[data-theme="dark"] .v2-light .pagehead .eyebrow { color: var(--gold); }
html[data-theme="dark"] .v2-light .pagehead__count { color: rgba(248, 245, 238, .55); }
html[data-theme="dark"] .v2-light .pagehead__intro { color: rgba(248, 245, 238, .72); }
html[data-theme="dark"] .v2-light .pagehead__note {
	border-left-color: var(--gold);
	background: rgba(198, 166, 117, .1);
	color: rgba(248, 245, 238, .8);
}
html[data-theme="dark"] .v2-light .pagehead__note b { color: var(--gold); }

html[data-theme="dark"] .v2-light .crumbs { color: rgba(248, 245, 238, .5); }
html[data-theme="dark"] .v2-light .crumbs a { color: rgba(248, 245, 238, .65); }
html[data-theme="dark"] .v2-light .crumbs a:hover { color: var(--gold); }

/* ---------- чипы / фильтры (a.is-active и .chips__opt — уже в блоке шапки/чипов выше) ---------- */

html[data-theme="dark"] .v2-light .chips__opt-icon { color: rgba(248, 245, 238, .7); }

html[data-theme="dark"] .v2-light .filterbar { border-color: var(--line-light); }
html[data-theme="dark"] .v2-light .filterbar label { color: rgba(248, 245, 238, .75); }
html[data-theme="dark"] .v2-light .filterbar select { border-color: var(--line-light); background: rgba(248, 245, 238, .06); color: var(--cream); }

/* ---------- сетка товаров ---------- */

html[data-theme="dark"] .v2-light .pgrid .card {
	border-color: var(--line-light);
	background: rgba(248, 245, 238, .04);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}
html[data-theme="dark"] .v2-light .pgrid .card:hover { box-shadow: 0 22px 50px rgba(0, 0, 0, .4); border-color: rgba(198, 166, 117, .45); }
html[data-theme="dark"] .v2-light .pgrid .card__body i { color: var(--gold); }
html[data-theme="dark"] .v2-light .pgrid .card__body h3 { color: var(--cream); }
html[data-theme="dark"] .v2-light .pgrid .card__body h3 a:hover { color: var(--gold); }
html[data-theme="dark"] .v2-light .pgrid .card__price { color: var(--gold); }
html[data-theme="dark"] .v2-light .pgrid .card__cta { background: var(--gold); color: var(--pine-deep); }
html[data-theme="dark"] .v2-light .pgrid .card__cta:hover { background: var(--cream); }
html[data-theme="dark"] .v2-light .pgrid .card__cta--ghost { background: transparent; border-color: var(--line-light); color: var(--cream); }
html[data-theme="dark"] .v2-light .pgrid .card__wish:hover { color: var(--gold); }
html[data-theme="dark"] .v2-light .pgrid__empty { color: rgba(248, 245, 238, .6); }

/* ---------- пагинация ---------- */

html[data-theme="dark"] .v2-light .pagination a,
html[data-theme="dark"] .v2-light .pagination span { border-color: var(--line-light); color: rgba(248, 245, 238, .75); }
html[data-theme="dark"] .v2-light .pagination a:hover { border-color: var(--gold); color: var(--gold); }
html[data-theme="dark"] .v2-light .pagination .is-current { background: var(--gold); border-color: var(--gold); color: var(--pine-deep); }

/* ---------- карточка товара ---------- */

html[data-theme="dark"] .v2-light .pgallery__main { background: rgba(248, 245, 238, .05); }
html[data-theme="dark"] .pgallery__empty { border-color: var(--line-light); background: repeating-linear-gradient(135deg, rgba(248, 245, 238, .05), rgba(248, 245, 238, .05) 10px, transparent 10px, transparent 20px); }
html[data-theme="dark"] .pgallery__empty-title { color: var(--cream); }
html[data-theme="dark"] .pgallery__empty-text { color: rgba(248, 245, 238, .6); }
html[data-theme="dark"] .card__ph-empty { color: rgba(248, 245, 238, .45); background: repeating-linear-gradient(135deg, rgba(248, 245, 238, .05), rgba(248, 245, 238, .05) 10px, transparent 10px, transparent 20px); }
html[data-theme="dark"] .v2-light .pgallery__thumbs button { background: rgba(248, 245, 238, .05); }
html[data-theme="dark"] .v2-light .pgallery__thumbs button.is-active { border-color: var(--gold); }
html[data-theme="dark"] .v2-light .psummary__badge { background: rgba(198, 166, 117, .16); color: var(--gold); }
html[data-theme="dark"] .v2-light .psummary__badge--south { background: rgba(72, 109, 87, .22); color: var(--sage-soft); }
html[data-theme="dark"] .v2-light .psummary__badge--new { background: rgba(90, 134, 171, .22); color: #8bb8dd; }
html[data-theme="dark"] .v2-light .psummary__ship { border-color: var(--line-light); color: rgba(248, 245, 238, .8); }
html[data-theme="dark"] .v2-light .psummary__desc { color: rgba(248, 245, 238, .78); }
html[data-theme="dark"] .v2-light .psummary__qty { border-color: var(--line-light); }
html[data-theme="dark"] .v2-light .psummary__qty input { color: var(--cream); }
html[data-theme="dark"] .v2-light .psummary__qty-btn { color: rgba(248, 245, 238, .8); }
html[data-theme="dark"] .v2-light .psummary__wish { border-color: var(--line-light); color: rgba(248, 245, 238, .7); }
html[data-theme="dark"] .v2-light .psummary__wish:hover { color: var(--gold); border-color: var(--gold); }
html[data-theme="dark"] .v2-light .psummary__wish.is-active { color: var(--gold); border-color: var(--gold); }
html[data-theme="dark"] .v2-light .psummary__stock { color: #d99686; }
html[data-theme="dark"] .v2-light .psummary__meta { border-color: var(--line-light); color: rgba(248, 245, 238, .6); }
html[data-theme="dark"] .v2-light .psummary__meta a { color: rgba(248, 245, 238, .8); }
html[data-theme="dark"] .v2-light .psummary__meta a:hover { color: var(--gold); }
html[data-theme="dark"] .v2-light .pdetail__text { color: rgba(248, 245, 238, .78); }
html[data-theme="dark"] .v2-light .pdetail__attrs { border-color: var(--line-light); }
html[data-theme="dark"] .v2-light .pdetail__attrs-row { border-color: var(--line-light); }
html[data-theme="dark"] .v2-light .pdetail__attrs-row dt { color: rgba(248, 245, 238, .55); }
html[data-theme="dark"] .v2-light .pdetail__attrs-row dd { color: var(--cream); }
html[data-theme="dark"] .v2-light .pdetail h2 { color: var(--cream); }

/* ---------- корзина / итоги ---------- */

html[data-theme="dark"] .v2-light .citem { border-color: var(--line-light); }
html[data-theme="dark"] .v2-light .citem__img { background: rgba(248, 245, 238, .05); }
html[data-theme="dark"] .v2-light .citem__name a { color: var(--cream); }
html[data-theme="dark"] .v2-light .citem__name a:hover { color: var(--gold); }
html[data-theme="dark"] .v2-light .citem__qty input { border-color: var(--line-light); color: var(--cream); }
html[data-theme="dark"] .v2-light .citem__qty button { border-color: var(--line-light); color: rgba(248, 245, 238, .75); }
html[data-theme="dark"] .v2-light .citem__qty button:hover { border-color: var(--gold); color: var(--gold); }
html[data-theme="dark"] .v2-light .citem__line { color: rgba(248, 245, 238, .55); }
html[data-theme="dark"] .v2-light .citem__remove { color: rgba(248, 245, 238, .4); }
html[data-theme="dark"] .v2-light .citem__remove:hover { color: #d99686; }
html[data-theme="dark"] .v2-light .ctotals { border-color: var(--line-light); background: rgba(248, 245, 238, .04); box-shadow: 0 12px 34px rgba(0, 0, 0, .25); }
html[data-theme="dark"] .v2-light .ctotals h2 { color: var(--cream); }
html[data-theme="dark"] .v2-light .ctotals__row { color: rgba(248, 245, 238, .75); }
html[data-theme="dark"] .v2-light .ctotals__row--total { border-color: var(--line-light); color: var(--cream); }

/* ---------- формы (доп. к общему блоку .vfield выше) ---------- */

html[data-theme="dark"] .v2-light .vform__note { color: rgba(248, 245, 238, .55); }
html[data-theme="dark"] .v2-light .vform__error {
	border-color: rgba(217, 150, 134, .5);
	background: rgba(217, 150, 134, .12);
	color: #d99686;
}

/* ---------- корзина/чекаут: доп. блоки ---------- */

html[data-theme="dark"] .v2-light .cart-notice { border-color: rgba(217, 150, 134, .4); background: rgba(217, 150, 134, .1); color: #d99686; }
html[data-theme="dark"] .v2-light .pagehead__row .pagehead__count { color: rgba(248, 245, 238, .55); }
html[data-theme="dark"] .v2-light .cart-group__head { border-color: var(--line-light); }
html[data-theme="dark"] .v2-light .cart-group__head span { color: rgba(248, 245, 238, .5); }
html[data-theme="dark"] .v2-light .delivery-scope { border-color: var(--line-light); }
html[data-theme="dark"] .v2-light .delivery-scope__label { color: rgba(248, 245, 238, .6); }
html[data-theme="dark"] .v2-light .delivery-scope__hint { color: rgba(248, 245, 238, .5); }
html[data-theme="dark"] .v2-light .promo { border-color: var(--line-light); }
html[data-theme="dark"] .v2-light .promo p { color: rgba(248, 245, 238, .55); }
html[data-theme="dark"] .v2-light .promo input { border-color: var(--line-light); color: var(--cream); }
html[data-theme="dark"] .v2-light .promo button { background: var(--gold); color: var(--pine-deep); }
html[data-theme="dark"] .v2-light .promo__msg { color: var(--gold); }

html[data-theme="dark"] .v2-light .returning-customer { border-color: var(--line-light); }
html[data-theme="dark"] .v2-light .returning-customer summary { color: var(--cream); }
html[data-theme="dark"] .v2-light .returning-customer div { color: rgba(248, 245, 238, .65); }
html[data-theme="dark"] .v2-light .returning-customer a { color: var(--gold); }

html[data-theme="dark"] .v2-light .vgroup__h { color: var(--cream); }
html[data-theme="dark"] .v2-light .checkout-pickup-card { border-color: rgba(198, 166, 117, .3); background: rgba(198, 166, 117, .08); }
html[data-theme="dark"] .v2-light .checkout-pickup-card strong { color: var(--gold); }
html[data-theme="dark"] .v2-light .checkout-pickup-card p { color: rgba(248, 245, 238, .7); }
html[data-theme="dark"] .v2-light .checkout-delivery__hint { color: rgba(248, 245, 238, .5); }
html[data-theme="dark"] .v2-light .vfield__label { color: rgba(248, 245, 238, .6); }

html[data-theme="dark"] .v2-light .priority-shipping { border-color: rgba(198, 166, 117, .3); background: rgba(198, 166, 117, .07); }
html[data-theme="dark"] .v2-light .priority-shipping__mark { border-color: var(--line-light); }
html[data-theme="dark"] .v2-light .priority-shipping__checkbox.is-checked .priority-shipping__mark,
html[data-theme="dark"] .v2-light .priority-shipping__checkbox:has(input:checked) .priority-shipping__mark { background: var(--gold); border-color: var(--gold); color: var(--pine-deep); }
html[data-theme="dark"] .v2-light .priority-shipping__meta span { color: rgba(248, 245, 238, .5); }
html[data-theme="dark"] .v2-light .priority-shipping__meta b { color: var(--gold); }
html[data-theme="dark"] .v2-light .priority-shipping__trigger { color: var(--cream); }
html[data-theme="dark"] .v2-light .priority-shipping__tooltip { background: rgba(248, 245, 238, .08); color: rgba(248, 245, 238, .75); }
html[data-theme="dark"] .v2-light .priority-shipping__hint { color: rgba(248, 245, 238, .5); }

html[data-theme="dark"] .v2-light .checkout-legal__opt { color: rgba(248, 245, 238, .7); }
html[data-theme="dark"] .v2-light .checkout-legal__opt a { color: var(--gold); }
html[data-theme="dark"] .v2-light .checkout-legal__note { color: rgba(248, 245, 238, .55); }

/* ---------- контентные страницы ---------- */

html[data-theme="dark"] .v2-light .vgroup h2 { color: var(--cream); }
html[data-theme="dark"] .v2-light .vgroup .eyebrow { color: var(--gold); }
html[data-theme="dark"] .v2-light .vgroup__copy { color: rgba(248, 245, 238, .7); }
html[data-theme="dark"] .v2-light .vcard {
	border-color: var(--line-light);
	background: rgba(248, 245, 238, .04);
	box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
}
html[data-theme="dark"] .v2-light .vcard:hover { border-color: rgba(198, 166, 117, .5); }
html[data-theme="dark"] .v2-light .vcard__eyebrow { color: var(--gold); }
html[data-theme="dark"] .v2-light .vcard__title { color: var(--cream); }
html[data-theme="dark"] .v2-light .vcard__text { color: rgba(248, 245, 238, .7); }
html[data-theme="dark"] .v2-light .vcard__text b { color: var(--cream) !important; }
html[data-theme="dark"] .v2-light .vcard__list { color: rgba(248, 245, 238, .7); }
html[data-theme="dark"] .v2-light .vcard__list li::marker { color: var(--gold); }
html[data-theme="dark"] .v2-light .vcard__link { color: var(--gold); }
html[data-theme="dark"] .v2-light .vorder-num { color: var(--cream); }
html[data-theme="dark"] .v2-light .vorder-status { background: rgba(198, 166, 117, .16); color: var(--gold); }
html[data-theme="dark"] .v2-light .vorder-status--completed { background: rgba(72, 109, 87, .25); color: var(--sage-soft); }
html[data-theme="dark"] .v2-light .vorder-status--cancelled { background: rgba(217, 150, 134, .16); color: #d99686; }
html[data-theme="dark"] .v2-light .prose { color: rgba(248, 245, 238, .78); }
html[data-theme="dark"] .v2-light .prose h2, html[data-theme="dark"] .v2-light .prose h3 { color: var(--cream); }
html[data-theme="dark"] .v2-light .prose a { color: var(--gold); }
html[data-theme="dark"] .v2-light .vphotos__item figcaption { color: rgba(248, 245, 238, .55); }
html[data-theme="dark"] .v2-light .catnote h2 { color: var(--cream); }
html[data-theme="dark"] .v2-light .catnote p { color: rgba(248, 245, 238, .72); }
html[data-theme="dark"] .v2-light .catnote__card { border-color: var(--line-light); background: rgba(248, 245, 238, .04); color: var(--cream); }
html[data-theme="dark"] .v2-light .catnote__card:hover { border-color: var(--gold); }
html[data-theme="dark"] .v2-light .catnote__card span { color: rgba(248, 245, 238, .6); }

/* ============================================================
   Богатая шапка: верхняя полоса + действия + поиск
   ============================================================ */

.topstrip {
	background: transparent;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgb(4 11 7 / 10%);
	font-size: 12px;
	position: relative;
	z-index: 101;
}
.topstrip__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 4px;
	padding-bottom: 4px;
}
.topstrip__left,
.topstrip__right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topstrip a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: rgba(248, 245, 238, .65);
	text-decoration: none;
	font-weight: 600;
	letter-spacing: .04em;
	transition: color .25s;
}
.topstrip a:hover { color: var(--gold); }
.topstrip svg { width: 14px; height: 14px; color: var(--gold); }

.topbar--page {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.topbar__logo small {
	display: block;
	font-family: var(--font-ui);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(248, 245, 238, .5);
	margin-top: 3px;
}
.topbar__actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.topbar__icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: none;
	border-radius: 50%;
	background: transparent;
	color: rgba(248, 245, 238, .8);
	cursor: pointer;
	text-decoration: none;
	transition: color .25s, background .25s;
}
.topbar__icon:hover { color: var(--gold); background: rgba(198, 166, 117, .1); }
.topbar__icon svg { width: 20px; height: 20px; }
.topbar__icon.is-active { color: var(--gold); }

/* Поиск/избранное/ЛК/корзина на мобильных — только в едином мобильном меню
   (.mmenu), не отдельным тесным рядом иконок в шапке. Остаётся один бургер. */
@media (max-width: 720px) {
	.topbar__icon { display: none; }
}

.topbar__search {
	background: transparent;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(28, 42, 34, .08);
	position: sticky;
	top: 0;
	z-index: 99;
}
.topbar__search-form {
	display: flex;
	gap: 12px;
	padding: 14px 0;
}
.topbar__search-form input {
	flex: 1;
	padding: 13px 18px;
	border: 1px solid var(--line-light);
	border-radius: 100px;
	background: rgba(255, 255, 255, .05);
	color: var(--cream);
	font-size: 15px;
	font-family: var(--font-ui);
}
.topbar__search-form input:focus { outline: none; border-color: var(--gold); }

@media (max-width: 960px) {
	.topstrip__right { display: none; }
	.topbar__logo small { display: none; }
}

/* ---------- Широкий контейнер для каталога ---------- */

.container--wide { max-width: 1560px; }

/* ---------- Каталог: 3 в ряд, выразительные карточки ---------- */

.container--wide .pgrid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
.container--wide .pgrid .card__ph img { aspect-ratio: 4 / 5.6; }
.container--wide .pgrid .card__body { padding: 20px 22px 22px; }
.container--wide .pgrid .card__body h3 { font-size: 25px; line-height: 1.12; }
.container--wide .pgrid .card__body i { font-size: 11px; }
.container--wide .pgrid .card__price { font-size: 19px; }
.container--wide .pgrid .card__cta { padding: 11px 19px; font-size: 11.5px; }

@media (max-width: 1020px) {
	.container--wide .pgrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.container--wide .pgrid { grid-template-columns: 1fr 1fr; gap: 12px; }
	.container--wide .pgrid .card__body { padding: 13px 14px 15px; }
	.container--wide .pgrid .card__body h3 { font-size: 16px; }
	.container--wide .pgrid .card__price { font-size: 15px; }
}

/* ---------- Tilt-эффект карточек ---------- */

.pgrid { perspective: 1200px; }
.card[data-tilt] {
	transform-style: preserve-3d;
	will-change: transform;
	transition: transform .18s ease-out, box-shadow .45s var(--ease-out), border-color .3s;
}
.card[data-tilt] .card__ph img { will-change: transform; }

/* ---------- прозрачный хедер на светлых страницах: тёмный текст ---------- */

.v2-light .topbar--page { color: var(--ink); }
.v2-light .topbar .topbar__logo { color: var(--ink); }
.v2-light .footer .topbar__logo { color: var(--cream); }
.v2-light .topbar__logo small { color: rgba(28, 42, 34, .55); }
.v2-light .topbar__nav a { color: rgba(28, 42, 34, .8); opacity: 1; }
.v2-light .topbar__nav a:hover { color: var(--gold-deep); }
.v2-light .topbar__nav a.is-active { color: var(--gold-deep); }
.v2-light .topbar__icon { color: rgba(28, 42, 34, .8); }
.v2-light .topbar__icon:hover { color: var(--gold-deep); background: rgba(154, 123, 79, .12); }
.v2-light .topbar__cart-count { background: var(--pine); color: var(--cream); }
.v2-light .topbar__search-form input {
	border-color: var(--line);
	background: rgba(255, 255, 255, .7);
	color: var(--ink);
}
.v2-light .topbar__search-form input:focus { border-color: var(--gold-deep); }
.v2-light .topstrip a { color: rgba(28, 42, 34, .7); }
.v2-light .topstrip a:hover { color: var(--gold-deep); }
.v2-light .topstrip svg { color: var(--gold-deep); }
.v2-light .topbar__burger { color: var(--ink); }

/* ---------- .v2-light держит тёмный текст намертво (см. выше) — на страницах
   с включённой тёмной темой (тумблер сайта, html[data-theme=dark]) текст
   шапки/чипов/форм сливается с тёмным фоном. Возвращаем светлые цвета. ---------- */
:root[data-theme="dark"] .v2-light .topbar--page,
:root[data-theme="dark"] .v2-light .topbar .topbar__logo { color: var(--cream); }
:root[data-theme="dark"] .v2-light .topbar__logo small { color: rgba(248, 245, 238, .5); }
:root[data-theme="dark"] .v2-light .topbar__nav a { color: rgba(248, 245, 238, .8); opacity: 1; }
:root[data-theme="dark"] .v2-light .topbar__nav a:hover,
:root[data-theme="dark"] .v2-light .topbar__nav a.is-active { color: var(--gold); }
:root[data-theme="dark"] .v2-light .topbar__dropdown-inner { background: var(--pine-deep); border-color: var(--line-light); box-shadow: 0 24px 60px rgba(0, 0, 0, .4); }
:root[data-theme="dark"] .v2-light .topbar__dropdown a { color: var(--cream); }
:root[data-theme="dark"] .v2-light .topbar__dropdown a:hover { background: rgba(248, 245, 238, .08); color: var(--gold); }
:root[data-theme="dark"] .v2-light .topbar__icon { color: rgba(248, 245, 238, .8); }
:root[data-theme="dark"] .v2-light .topbar__icon:hover { color: var(--gold); background: rgba(198, 166, 117, .1); }
:root[data-theme="dark"] .v2-light .topbar__cart-count { background: var(--gold); color: var(--pine-deep); }
:root[data-theme="dark"] .v2-light .topbar__search-form input {
	border-color: var(--line-light);
	background: rgba(248, 245, 238, .06);
	color: var(--cream);
}
:root[data-theme="dark"] .v2-light .topbar__search-form input:focus { border-color: var(--gold); }
:root[data-theme="dark"] .v2-light .topstrip a { color: rgba(248, 245, 238, .65); }
:root[data-theme="dark"] .v2-light .topstrip a:hover,
:root[data-theme="dark"] .v2-light .topstrip svg { color: var(--gold); }
:root[data-theme="dark"] .v2-light .topbar__burger { color: var(--cream); }
:root[data-theme="dark"] .v2-light .theme-switch { color: var(--cream); }

:root[data-theme="dark"] .v2-light .chips a { border-color: var(--line-light); color: rgba(248, 245, 238, .8); }
:root[data-theme="dark"] .v2-light .chips a:hover { border-color: var(--gold); color: var(--gold); }
:root[data-theme="dark"] .v2-light .chips a.is-active { background: var(--gold); border-color: var(--gold); color: var(--pine-deep); }
:root[data-theme="dark"] .v2-light .chips__opt { border-color: var(--line-light); color: rgba(248, 245, 238, .8); }
:root[data-theme="dark"] .v2-light .chips__opt:hover { border-color: var(--gold); }
:root[data-theme="dark"] .v2-light .chips__opt:has(input:checked) { border-color: var(--gold); color: var(--gold); background: rgba(198, 166, 117, .1); }

:root[data-theme="dark"] .v2-light .vfield label { color: rgba(248, 245, 238, .6); }
:root[data-theme="dark"] .v2-light .vfield input,
:root[data-theme="dark"] .v2-light .vfield select,
:root[data-theme="dark"] .v2-light .vfield textarea {
	border-color: var(--line-light);
	background: rgba(248, 245, 238, .06);
	color: var(--cream);
}
:root[data-theme="dark"] .v2-light .vfield input:focus,
:root[data-theme="dark"] .v2-light .vfield select:focus,
:root[data-theme="dark"] .v2-light .vfield textarea:focus { border-color: var(--gold); }


.footer__dev { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(248, 245, 238, .35); transition: color .25s, border-color .25s; }
.footer__dev:hover { color: var(--gold); border-color: var(--gold); }

/* зоны прокрутки галереи товара: левый/правый край во всю высоту */
.pgallery__main { position: relative; }
.pgallery__arrow {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 22%;
	border: none;
	background: transparent;
	font-size: 40px;
	font-family: Georgia, serif;
	line-height: 1;
	color: rgba(248, 245, 238, .95);
	text-shadow: 0 1px 8px rgba(18, 36, 27, .45);
	display: flex;
	align-items: center;
	cursor: pointer;
	opacity: 0;
	transition: opacity .3s, background .3s;
}
.pgallery__arrow--prev { left: 0; justify-content: flex-start; padding-left: 16px; }
.pgallery__arrow--next { right: 0; justify-content: flex-end; padding-right: 16px; }
.pgallery__main:hover .pgallery__arrow,
.pgallery__arrow:focus-visible { opacity: 1; }
.pgallery__arrow:hover { background: linear-gradient(to right, rgba(18,36,27,.22), transparent); }
.pgallery__arrow--next:hover { background: linear-gradient(to left, rgba(18,36,27,.22), transparent); }
@media (hover: none), (pointer: coarse) {
	.pgallery__arrow { opacity: .55; font-size: 30px; }
}

/* ---------- Гайд-блок «Быстрый маршрут» ---------- */

.guideblock { padding: 26px 0 6px; }
.guideblock__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 20px; }
.guideblock__head h2 {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(24px, 2.8vw, 34px);
	line-height: 1.08;
	color: var(--ink);
	max-width: 16ch;
}
.guideblock__head p { max-width: 34ch; font-size: 13.5px; line-height: 1.6; color: rgba(28, 42, 34, .6); }
.guideblock__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.guideblock__card {
	padding: 20px 22px;
	border: 1px solid rgba(28, 42, 34, .1);
	border-radius: 16px;
	background: #fff;
	text-decoration: none;
	transition: border-color .25s, transform .3s var(--ease-out), box-shadow .3s;
}
.guideblock__card:hover { border-color: rgba(154, 123, 79, .5); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(18, 36, 27, .1); }
.guideblock__num {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	color: var(--gold-deep);
	vertical-align: baseline;
}
.guideblock__card b {
	display: inline;
	font-family: var(--font-display);
	font-size: 19px;
	font-weight: 600;
	color: var(--ink);
	margin: 0 0 0 10px;
}
.guideblock__card p { font-size: 13px; line-height: 1.55; color: rgba(28, 42, 34, .62); }

/* ---------- Карточки категорий с фото ---------- */

.catcards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	padding: 22px 0 8px;
}
.catcard {
	display: grid;
	grid-template-columns: 128px 1fr;
	border: 1px solid rgba(28, 42, 34, .1);
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
	text-decoration: none;
	transition: border-color .25s, transform .3s var(--ease-out), box-shadow .3s;
}
.catcard:hover { border-color: rgba(154, 123, 79, .5); transform: translateY(-3px); box-shadow: 0 16px 38px rgba(18, 36, 27, .1); }
.catcard__ph { overflow: hidden; background: var(--paper); }
.catcard__ph img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease-out); }
.catcard:hover .catcard__ph img { transform: scale(1.05); }
.catcard__body { padding: 16px 18px; }
.catcard__body h3 {
	font-family: var(--font-display);
	font-size: 19px;
	font-weight: 600;
	line-height: 1.15;
	color: var(--ink);
	margin-bottom: 7px;
}
.catcard__body p {
	font-size: 12.5px;
	line-height: 1.55;
	color: rgba(28, 42, 34, .6);
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (max-width: 1080px) {
	.guideblock__grid { grid-template-columns: 1fr 1fr; }
	.catcards { grid-template-columns: 1fr; }
	.guideblock__head { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 640px) {
	.guideblock__grid { grid-template-columns: 1fr; }
	.catcard { grid-template-columns: 96px 1fr; }
	.catcard__body p { -webkit-line-clamp: 3; }
}

/* мобильные кнопки главной — полупрозрачный хвойный фон вместо белого */
@media (max-width: 720px) {
	.hero .btn--light,
	.final .btn--light {
		background: #26392e75;
		color: var(--cream);
	}
}

/* Карточка товара: кнопка «В корзину» в статусе «В корзине» — золотая подсветка
   (как is-in-cart в каталоге/лентах). Единообразный фидбек. */
.psummary__buy .btn--light.is-in-cart,
.asc-seedling-variant-form .btn--light.is-in-cart {
	background: var(--gold);
	color: var(--pine-deep);
}

/* .pgrid .card__cta в статусе «В корзине» — тот же золотой фидбек, что в
   каталоге/лентах (is-in-cart). */
.pgrid .card__cta.is-in-cart { background: var(--gold); color: var(--pine-deep); }
.v2-light .pgrid .card__cta.is-in-cart:hover { background: var(--gold); }
html[data-theme="dark"] .v2-light .pgrid .card__cta.is-in-cart { background: var(--gold); color: var(--pine-deep); }

/* ===== Похожие товары: горизонтальный скролл каталожных карточек ===== */
.prelated { padding: 30px 0 50px; }
.prelated .section__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
	margin-bottom: 6px;
}
.prelated__nav { display: flex; gap: 10px; flex-shrink: 0; }
.prelated__arrow {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid var(--line-light);
	background: transparent;
	color: var(--cream);
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: all .25s var(--ease-out);
}
.prelated__arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--pine-deep); }
.prelated__arrow svg { width: 17px; height: 17px; }
.v2-light .prelated__arrow { border-color: var(--line); color: var(--ink); }
.pgrid--scroll {
	grid-template-columns: none;
	grid-auto-flow: column;
	grid-auto-columns: minmax(260px, 300px);
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 20px;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	cursor: grab;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
}
.pgrid--scroll .card { scroll-snap-align: start; }
/* Ползунок не нужен — есть стрелки + drag-to-scroll. */
.pgrid--scroll::-webkit-scrollbar { display: none; }
.pgrid--scroll.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.pgrid--scroll.is-dragging .card { pointer-events: none; }

/* ===== Сворачивание длинного описания товара ===== */
.pdetail__text--collapsed {
	max-height: 320px;
	overflow: hidden;
	position: relative;
	-webkit-mask-image: linear-gradient(#000 72%, transparent);
	mask-image: linear-gradient(#000 72%, transparent);
}
.pdetail__more {
	margin-top: 14px;
	padding: 10px 20px;
	border: 1px solid rgba(38, 57, 46, .35);
	border-radius: 999px;
	background: transparent;
	color: var(--ink, #26392e);
	font: 600 13px/1 'DM Sans', sans-serif;
	letter-spacing: .04em;
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
}
.pdetail__more:hover { background: rgba(38, 57, 46, .08); }

/* ===== Живой поиск: выпадающие подсказки ===== */
.suggest {
	z-index: 99990;
	max-height: 70vh;
	overflow-y: auto;
	background: var(--cream, #f6f2e9);
	border: 1px solid rgba(38, 57, 46, .18);
	border-radius: 16px;
	box-shadow: 0 24px 60px rgba(22, 48, 35, .25);
	padding: 8px;
}
.suggest__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 10px;
	border-radius: 12px;
	text-decoration: none;
	color: var(--ink, #26392e);
	transition: background .15s ease;
}
.suggest__item:hover { background: rgba(38, 57, 46, .08); }
.suggest__item img,
.suggest__noimg {
	width: 46px;
	height: 56px;
	object-fit: cover;
	border-radius: 8px;
	background: rgba(38, 57, 46, .12);
	flex: none;
}
.suggest__name { flex: 1; font-size: 14px; line-height: 1.3; }
.suggest__name small { color: #a05944; font-size: 11px; display: block; }
.suggest__price { font-weight: 700; font-size: 13px; white-space: nowrap; }
.suggest__all {
	display: block;
	padding: 12px 10px 8px;
	text-align: center;
	font: 700 13px/1 'DM Sans', sans-serif;
	color: var(--ink, #26392e);
	border-top: 1px solid rgba(38, 57, 46, .12);
	text-decoration: none;
}
.suggest__empty { padding: 14px 12px; font-size: 13px; opacity: .75; }

/* ===== «Сообщить о поступлении» (waitlist) на карточке товара ===== */
.waitlist {
	margin: 18px 0;
	padding: 20px 22px;
	border: 1px solid rgba(38, 57, 46, .22);
	border-radius: 18px;
	background: rgba(198, 166, 117, .1);
}
.waitlist b { display: block; margin-bottom: 6px; font-size: 16px; }
.waitlist p { margin: 0 0 12px; font-size: 13.5px; opacity: .8; }
.waitlist__error { color: #a05944; font-weight: 600; }
.waitlist__form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.waitlist__form .input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(38, 57, 46, .3);
	border-radius: 12px;
	background: rgba(255, 255, 255, .65);
	font: 400 14px/1.2 'DM Sans', sans-serif;
}
.waitlist__form .btn { width: 100%; }
.waitlist__email { grid-column: 1 / -1; }
@media (max-width: 560px) {
	.waitlist__form { grid-template-columns: 1fr; }
}
.waitlist--done { background: rgba(84, 140, 90, .12); border-color: rgba(84, 140, 90, .4); }

/* ===== Селект способа связи — в стиле кнопки .btn--light ===== */
select.btn--light {
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	padding-right: 46px;
	border: 1px solid rgba(38, 57, 46, .45);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2326392e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-size: 16px;
	justify-content: center;
}
select.btn--light:focus { outline: none; box-shadow: 0 0 0 2px rgba(38, 57, 46, .35); }

/* ===== Телефон: невалидный формат ===== */
input.is-invalid { border-color: #a05944 !important; box-shadow: 0 0 0 2px rgba(160, 89, 68, .25); }

/* Кнопка «В корзину» на карточке товара — та же рамка, что у селекта соцсети */
.psummary__buy .btn--light { border: 1px solid rgba(38, 57, 46, .45); }


/* ============================================================
   INFO-PAGE · хаб-страницы (info, доставка, оплата и т.д.)
   Порт с боевой темы: hero-panel + info-page__card + nav-grid.
   ============================================================ */

.info-page { padding-bottom: 60px; }

.info-page__shell {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0;
}

.hero-panel.info-page__hero {
	padding: 34px 0 32px;
}

.info-page__hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	gap: 20px;
	align-items: start;
}

.info-page .eyebrow::before { display: none; }

.info-page__copy,
.info-page__card,
.info-page__nav-card {
	position: relative;
	min-width: 0;
	padding: 28px;
	border: 1px solid rgba(39, 72, 55, 0.08);
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 8px 30px rgba(18, 36, 27, .06);
	overflow: hidden;
}

.info-page__copy {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 242, 0.86)),
		radial-gradient(circle at top right, rgba(92, 132, 98, 0.14), transparent 36%);
}

.info-page__note {
	margin-top: 20px;
	padding: 18px 20px;
	border: 1px solid rgba(72, 109, 87, 0.16);
	border-radius: 22px;
	background: linear-gradient(135deg, rgba(233, 244, 232, 0.9), rgba(249, 245, 238, 0.95));
}

.info-page__note p { margin: 10px 0 0; }

.info-page__note-label,
.info-page__card-eyebrow {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(72, 109, 87, 0.08);
	color: var(--sage);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.info-page__stack {
	display: grid;
	gap: 16px;
	align-content: start;
}

.info-page__card--compact { padding: 22px; }
.info-page__card--wide { grid-column: 1 / -1; }

.section-shell { padding: 20px 0; }
.section-shell--soft {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.38));
	border-top: 1px solid rgba(39, 72, 55, 0.06);
	border-bottom: 1px solid rgba(39, 72, 55, 0.06);
}

/* В A2 фон страницы уже светлый — убираем дополнительный контур/градиент у soft-секций. */
.info-page--a2 .section-shell--soft {
	background: transparent;
	border-top: none;
	border-bottom: none;
}

.section-title,
.hero-copy__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(38px, 4.7vw, 68px);
	line-height: 0.92;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--ink);
}

.hero-copy__text,
.section-copy {
	max-width: 660px;
	margin: 14px 0 0;
	color: rgba(28, 42, 34, .65);
}

.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 34px;
}

.info-page__section-head { margin-bottom: 20px; }

.info-page__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	padding: 0 0 10px;
}

.info-page__grid--nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.info-page__card--accent,
.info-page__nav-card.is-current {
	background:
		linear-gradient(180deg, rgba(244, 248, 242, 0.92), rgba(255, 255, 255, 0.88)),
		linear-gradient(135deg, rgba(198, 166, 117, 0.08), transparent 40%);
}

.info-page__card-title,
.info-page__nav-title {
	display: block;
	margin: 12px 0 8px;
	font-family: var(--font-display);
	font-size: clamp(28px, 3vw, 40px);
	line-height: 0.96;
	color: var(--ink);
	overflow-wrap: anywhere;
}

.info-page__nav-card {
	display: block;
	text-decoration: none;
	transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.info-page__nav-card:hover {
	transform: translateY(-2px);
	border-color: rgba(72, 109, 87, 0.18);
	background: rgba(255, 255, 255, 0.9);
}

.info-page__card-text,
.info-page__nav-text {
	margin: 0;
	color: rgba(28, 42, 34, .65);
	overflow-wrap: anywhere;
}

.info-page__list {
	display: grid;
	gap: 10px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}

.info-page__list li {
	position: relative;
	padding-left: 24px;
	color: rgba(28, 42, 34, .65);
}

.info-page__list li::before {
	content: "";
	position: absolute;
	top: 0.55em;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--sage), var(--gold));
	box-shadow: 0 0 0 5px rgba(72, 109, 87, 0.08);
}

.info-page__card-link {
	display: inline-flex;
	margin-top: 14px;
	color: var(--sage);
	font-weight: 700;
	overflow-wrap: anywhere;
}

/* Карточка без отдельной ссылки внутри (renderCard() рендерит её как <a>) —
   кликабельна целиком. */
a.info-page__card {
	display: block;
	text-decoration: none;
	color: inherit;
	transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}
a.info-page__card:hover {
	transform: translateY(-2px);
	border-color: rgba(72, 109, 87, .18);
	background: rgba(255, 255, 255, .9);
}

@media (max-width: 980px) {
	.info-page__hero-grid { grid-template-columns: minmax(0, 1fr); }
	.info-page__grid--nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
	.hero-panel.info-page__hero { padding: 18px 0 20px; }

	.info-page__shell { padding: 0; }

	.info-page__section-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
		margin-bottom: 16px;
	}

	.info-page__hero-grid,
	.info-page__grid,
	.info-page__grid--nav {
		grid-template-columns: minmax(0, 1fr);
		gap: 14px;
	}

	.info-page__copy,
	.info-page__card,
	.info-page__nav-card {
		padding: 18px;
		border-radius: 22px;
	}

	.hero-copy__title,
	.section-title {
		font-size: clamp(32px, 10vw, 44px);
		line-height: 0.94;
	}

	.hero-copy__text,
	.section-copy,
	.info-page__card-text,
	.info-page__nav-text,
	.info-page__list li {
		font-size: 15px;
		line-height: 1.62;
	}

	.info-page__note {
		margin-top: 16px;
		padding: 16px;
		border-radius: 20px;
	}

	.info-page__note-label,
	.info-page__card-eyebrow {
		padding: 5px 9px;
		font-size: 11px;
		letter-spacing: 0.06em;
	}

	.info-page__stack,
	.info-page__list { gap: 12px; }

	.info-page__card-title,
	.info-page__nav-title {
		margin: 10px 0 6px;
		font-size: clamp(24px, 8vw, 32px);
	}

	.info-page__list { margin-top: 12px; }

	.info-page__list li {
		padding-left: 20px;
	}

	.info-page__list li::before {
		top: 0.55em;
		width: 9px;
		height: 9px;
		box-shadow: 0 0 0 4px rgba(72, 109, 87, 0.08);
	}
}


/* ============================================================
   INFO-PAGE A2 · вариант с hero-visual, sidebar и цветами категорий
   ============================================================ */

.info-page--a2 {
	--cat-order: #b56a5a;
	--cat-delivery: #9a7b4f;
	--cat-care: #486d57;
	--cat-sorts: #5b7c8c;
	--cat-info: #7a6b99;
}

.info-page--a2 .info-page__shell { max-width: 1320px; padding: 0; }

/* --- Hero A2 --- */

.info-page--a2 .hero-panel.info-page__hero { padding: 36px 0 clamp(56px, 8vw, 100px); }

.info-page--a2 .info-page__hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
	gap: 28px;
	align-items: start;
}

.info-page--a2 .info-page__hero-grid--visual-left {
	position: relative;
	/* Строка фото — minmax(660px, auto): фото позиционируется absolute внутри
	   своей grid-area и не влияет на автовысоту строки. Высоту строки задаёт
	   колонка `copy` (align-self:stretch, но её track-size считается по её
	   контенту) — сколько карточек, столько и высоты у фото и у track'а.
	   660px подобран по факту: реально замерили высоту .info-page__copy на
	   всех страницах с максимумом в 4 карточки (instrukciya ~664, dostavka/
	   kak-oformit-zakaz ~687, oplata ~709) — 660 ниже самой короткой из них,
	   так что floor там не включается и фото ровно вровень с последней
	   карточкой. На страницах с 2-3 карточками (короче 660) floor держит
	   фото большим, как раньше, а карточки не дотягивают до низа — это
	   ожидаемо. Если появится 4-карточная страница короче ~660px суммарно —
	   снизить minimum, иначе там тоже поедет несовпадение низа.
	   `copy` — в одной строке с `visual` (не растянута через `text` тоже),
	   иначе колонка карточек стартует у текста вступления, а не у фото —
	   верх карточек и верх фото расходятся.
	   Правая ячейка строки `text` — `note` (когда он есть, см. InfoPage::
	   renderHero() — $hasSplitNote): note стоит вровень с текстом вступления,
	   одна строка грида — общий верх и низ. */
	grid-template-rows: auto auto auto minmax(660px, auto);
	grid-template-areas:
		"eyebrow ."
		"title ."
		"text note"
		"visual copy";
	gap: 0 28px;
}

.info-page--a2 .info-page__hero-grid--visual-left .eyebrow { grid-area: eyebrow; }
.info-page--a2 .info-page__hero-grid--visual-left .hero-copy__title { grid-area: title; }
.info-page--a2 .info-page__hero-grid--visual-left .hero-copy__text { grid-area: text; }
.info-page--a2 .info-page__hero-grid--visual-left .info-page__hero-visual { grid-area: visual; }
.info-page--a2 .info-page__hero-grid--visual-left .info-page__copy { grid-area: copy; }
.info-page--a2 .info-page__hero-grid--visual-left > .info-page__note {
	grid-area: note;
	align-self: stretch;
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* Базовый .info-page__note даёт margin-top:24px (нужен, когда note лежит
	   внутри .info-page__copy) — здесь note сам по себе grid-item в одной
	   строке с hero-copy__text, лишний отступ сдвинул бы верх note ниже
	   верха текста. */
	margin-top: 0;
}

/* На части служебных страниц нет вводного абзаца. Без отдельной сетки
   правые карточки растягивали пустую строку `text` и сдвигали фото вниз. */
.info-page--a2 .info-page__hero-grid--visual-left.info-page__hero-grid--no-intro {
	grid-template-rows: auto auto minmax(660px, auto);
	grid-template-areas:
		"eyebrow ."
		"title ."
		"visual copy";
}

.info-page--a2 .info-page__hero-grid--visual-right {
	position: relative;
	/* auto без искусственного пола: единственная страница на этом варианте —
	   /info/ — сейчас держит 5 hero_cards, их контент всегда выше любого
	   разумного минимума, так что floor только рисковал разъехаться с
	   контентом (см. историю правки visual-left). Если карточек станет
	   меньше 3-4 и фото начнёт казаться маленьким — вернуть minmax(). */
	grid-template-rows: auto auto auto auto;
	grid-template-areas:
		"eyebrow ."
		"title visual"
		"text visual"
		"copy visual";
	gap: 0 28px;
}

.info-page--a2 .info-page__hero-grid--visual-right .eyebrow { grid-area: eyebrow; }
.info-page--a2 .info-page__hero-grid--visual-right .hero-copy__title { grid-area: title; }
.info-page--a2 .info-page__hero-grid--visual-right .hero-copy__text { grid-area: text; }
.info-page--a2 .info-page__hero-grid--visual-right .info-page__copy { grid-area: copy; }
.info-page--a2 .info-page__hero-grid--visual-right .info-page__hero-visual { grid-area: visual; }

/* Фото — position:absolute на всю высоту строки (см. комментарий у
   .info-page__hero-visual ниже), а колонка `copy` по умолчанию не тянется
   на эту же высоту (align-items:start у .info-page__hero-grid) и пакует
   карточки по верху. Карточки ровняются по верхней границе (вровень с
   фото/note), а не центрируются — центрирование при небольшом числе
   карточек сдвигало весь блок вниз от верха на visual-left (см. историю
   правки) и на visual-right (/info/) с тем же эффектом. Пробовали
   растянуть карточки на всю высоту (space-between) — при малом числе
   карточек почти весь дефицит высоты уходит в один гигантский разрыв
   между двумя карточками, выглядит хуже исходного. Вместо этого запас
   по высоте (если есть) уходит вниз, под последнюю карточку. */
.info-page--a2 .info-page__hero-grid--visual-left .info-page__copy,
.info-page--a2 .info-page__hero-grid--visual-right .info-page__copy {
	align-self: stretch;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

/* visual-left: строки грида не имеют вертикального зазора (`gap: 0 28px`)
   — margin-top:20px здесь держит отступ от верха строки (=верх фото) до
   первой карточки, когда note вынесен в свою grid-area рядом с текстом
   (см. правило note выше) и не даёт этот отступ сам. */
.info-page--a2 .info-page__hero-grid--visual-left .info-page__copy {
	margin-top: 20px;
}

.info-page--a2 .info-page__copy {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	padding: 0 !important;
	box-shadow: none !important;
	outline: none !important;
	overflow: visible;
}

.info-page--a2 .info-page__hero-top { margin-bottom: 28px; }

.info-page--a2 .info-page__copy .hero-copy__title,
.info-page--a2 .info-page__hero-top .hero-copy__title,
.info-page--a2 .info-page__hero-grid .hero-copy__title {
	margin: 20px 0 18px;
	max-width: 605px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(44px, 6.4vw, 88px);
	line-height: .96;
	letter-spacing: -.02em;
}

.info-page--a2 .info-page__copy .hero-copy__text,
.info-page--a2 .info-page__hero-top .hero-copy__text,
.info-page--a2 .info-page__hero-grid .hero-copy__text {
	max-width: 605px;
	font-size: 17px;
	line-height: 1.7;
	color: rgba(28, 42, 34, .72);
}

.info-page--a2 .info-page__note {
	margin-top: 24px;
	padding: 18px 20px;
	border: 1px solid rgba(72, 109, 87, .16);
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(233, 244, 232, .92), rgba(249, 245, 238, .95));
}

.info-page--a2 .info-page__note-label {
	display: inline-flex;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(72, 109, 87, .1);
	color: var(--sage);
}

.info-page--a2 .info-page__note p { margin: 10px 0 0; font-size: 14.5px; line-height: 1.6; color: rgba(28, 42, 34, .72); }

.info-page--a2 .info-page__hero-visual {
	/* position: absolute внутри своей grid-area (родитель .info-page__hero-grid
	   позиционирован) — фото не участвует в автовысоте строки грида и не тянет
	   её на полную высоту независимо от контента; высоту строки задаёт колонка
	   `copy` (сколько карточек — столько и высоты). inset:0 растягивает фото
	   ровно на вычисленный размер строки. */
	position: absolute;
	inset: 0;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(18, 36, 27, .12);
	background: linear-gradient(160deg, rgba(72, 109, 87, .25), rgba(199, 154, 140, .2));
}

.info-page--a2 .info-page__hero-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .6s var(--ease-out);
}

.info-page--a2 .info-page__hero-visual:hover img { transform: scale(1.04); }

.info-page--a2 .info-page__hero-visual::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(18, 36, 27, .25) 0%, transparent 50%);
	pointer-events: none;
}

.info-page--a2 .info-page__hero-badge {
	position: absolute;
	left: 18px;
	bottom: 18px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(248, 245, 238, .92);
	backdrop-filter: blur(8px);
	font-size: 12px;
	font-weight: 700;
	color: var(--pine-deep);
	z-index: 2;
}

.info-page--a2 .info-page__stack {
	display: grid;
	gap: 14px;
	align-content: start;
}

/* Отступ от note нужен, только когда note лежит прямо перед stack внутри
   одного .info-page__copy (страницы без вынесенного note — no-intro,
   visual-right). При вынесенном note (visual-left + intro) сосед у stack
   другой, отступ даёт margin-top у .info-page__copy (см. ниже). */
.info-page--a2 .info-page__note + .info-page__stack {
	margin-top: 20px;
}

.info-page--a2 .info-page__card {
	position: relative;
	padding: 20px 20px 20px 24px;
	border: 1px solid rgba(39, 72, 55, .08);
	border-radius: 24px;
	background: rgba(255, 255, 255, .86);
	box-shadow: 0 8px 24px rgba(18, 36, 27, .06);
	overflow: hidden;
}

.info-page--a2 .info-page__card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--gold), var(--sage));
}

.info-page--a2 a.info-page__card {
	transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
}
.info-page--a2 a.info-page__card:hover {
	transform: translateY(-3px);
	border-color: rgba(72, 109, 87, .25);
	box-shadow: 0 14px 30px rgba(18, 36, 27, .1);
}

.info-page--a2 .info-page__card--compact { padding: 20px 20px 20px 24px; }

/* --- Layout wrap + sidebar --- */

.info-page--a2 .info-page__wrap {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 40px;
	align-items: start;
}

.info-page--a2 .info-page__content { min-width: 0; }

.info-page--a2 .section-shell { padding: 24px 0; }

.info-page--a2 .section-head { margin-bottom: 24px; }

.info-page--a2 .section-head .eyebrow { color: var(--sage); }

.info-page--a2 .section-title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 700;
	line-height: .96;
}

.info-page--a2 .section-copy {
	max-width: 620px;
	margin-top: 10px;
	font-size: 15px;
	line-height: 1.65;
	color: rgba(28, 42, 34, .65);
}

/* --- Navigation cards with categories --- */

.info-page--a2 .info-page__grid--nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.info-page--a2 .info-page__nav-card {
	position: relative;
	display: block;
	padding: 18px 20px 18px 24px;
	border: 1px solid rgba(39, 72, 55, .08);
	border-radius: 20px;
	background: rgba(255, 255, 255, .86);
	text-decoration: none;
	transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
	overflow: hidden;
}

.info-page--a2 .info-page__nav-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--cat-color, var(--sage));
	transition: width .3s var(--ease-out);
}

.info-page--a2 .info-page__nav-card:hover {
	transform: translateY(-3px);
	border-color: rgba(72, 109, 87, .25);
	box-shadow: 0 14px 30px rgba(18, 36, 27, .1);
}

.info-page--a2 .info-page__nav-card:hover::before { width: 6px; }

.info-page--a2 .info-page__nav-card[data-cat="order"] { --cat-color: var(--cat-order); }
.info-page--a2 .info-page__nav-card[data-cat="delivery"] { --cat-color: var(--cat-delivery); }
.info-page--a2 .info-page__nav-card[data-cat="care"] { --cat-color: var(--cat-care); }
.info-page--a2 .info-page__nav-card[data-cat="sorts"] { --cat-color: var(--cat-sorts); }
.info-page--a2 .info-page__nav-card[data-cat="info"] { --cat-color: var(--cat-info); }

.info-page--a2 .info-page__nav-title {
	display: block;
	font-family: var(--font-display);
	font-size: 21px;
	font-weight: 600;
	line-height: 1.15;
	color: var(--ink);
}

.info-page--a2 .info-page__nav-text {
	display: block;
	margin-top: 6px;
	font-size: 13.5px;
	line-height: 1.55;
	color: rgba(28, 42, 34, .62);
}

.info-page--a2 .info-page__nav-cat {
	display: inline-flex;
	margin-top: 10px;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--cat-color, var(--sage));
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #fff;
}

.info-page--a2 .info-page__nav-card[data-cat="order"] .info-page__nav-cat { background: var(--cat-order); }
.info-page--a2 .info-page__nav-card[data-cat="delivery"] .info-page__nav-cat { background: var(--cat-delivery); }
.info-page--a2 .info-page__nav-card[data-cat="care"] .info-page__nav-cat { background: var(--cat-care); }
.info-page--a2 .info-page__nav-card[data-cat="sorts"] .info-page__nav-cat { background: var(--cat-sorts); }
.info-page--a2 .info-page__nav-card[data-cat="info"] .info-page__nav-cat { background: var(--cat-info); }

/* --- Sidebar --- */

.info-page--a2 .info-page__sidebar {
	position: sticky;
	top: 115px;
	display: grid;
	gap: 16px;
	align-content: start;
}

.info-page--a2 .info-page__side-card {
	padding: 22px;
	border: 1px solid rgba(39, 72, 55, .08);
	border-radius: 24px;
	background: rgba(255, 255, 255, .88);
	box-shadow: 0 8px 24px rgba(18, 36, 27, .05);
	overflow: hidden;
}

.info-page--a2 .info-page__side-photo {
	margin: -22px -22px 16px;
	height: 120px;
	overflow: hidden;
	background: linear-gradient(160deg, rgba(72, 109, 87, .3), rgba(199, 154, 140, .25));
}

.info-page--a2 .info-page__side-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.info-page--a2 .info-page__side-eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--sage);
}

.info-page--a2 .info-page__side-title {
	margin: 8px 0 10px;
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
}

.info-page--a2 .info-page__side-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
}

.info-page--a2 .info-page__side-list li {
	position: relative;
	padding-left: 18px;
	font-size: 14px;
	line-height: 1.55;
	color: rgba(28, 42, 34, .7);
}

.info-page--a2 .info-page__side-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: .6em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold);
}

.info-page--a2 .info-page__side-links {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--line);
	display: grid;
	gap: 8px;
}

.info-page--a2 .info-page__side-links a {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--sage);
	text-decoration: none;
	transition: color .25s, transform .25s;
}

.info-page--a2 .info-page__side-links a:hover { color: var(--gold-deep); transform: translateX(4px); }

/* --- Доводка типографики под мокап A2 --- */

.info-page--a2 .section-title {
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 700;
	line-height: .96;
}

.info-page--a2 .section-copy {
	max-width: 620px;
	margin-top: 10px;
	font-size: 15px;
	line-height: 1.65;
	color: rgba(28, 42, 34, .65);
}

.info-page--a2 .info-page__card-title {
	margin: 8px 0 6px;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
}

.info-page--a2 .info-page__card-text {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(28, 42, 34, .65);
}

.info-page--a2 .info-page__card-eyebrow,
.info-page--a2 .info-page__note-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
}

.info-page--a2 .info-page__nav-title {
	font-size: 21px;
	font-weight: 600;
	line-height: 1.15;
}

.info-page--a2 .info-page__nav-text {
	font-size: 13.5px;
	line-height: 1.55;
	color: rgba(28, 42, 34, .62);
}

.info-page--a2 .info-page__copy .eyebrow,
.info-page--a2 .info-page__hero-grid .eyebrow,
.info-page--a2 .section-head .eyebrow { color: var(--sage); }

.info-page--a2 .eyebrow::before {
	display: block;
	width: 30px;
	height: 1px;
	background: currentColor;
	opacity: .7;
}

/* --- Cursor flower canvas --- */

#flower-canvas {
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	z-index: 9999;
}

@media (max-width: 1100px) {
	.info-page--a2 .info-page__wrap { grid-template-columns: 1fr; }
	.info-page--a2 .info-page__sidebar { position: static; }
}

@media (max-width: 860px) {
	.info-page--a2 .info-page__hero-grid { grid-template-columns: 1fr; }
	.info-page--a2 .info-page__hero-grid--visual-left {
		grid-template-areas: none;
		grid-template-rows: auto;
		gap: 28px;
	}
	.info-page--a2 .info-page__hero-grid--visual-left .eyebrow,
	.info-page--a2 .info-page__hero-grid--visual-left .hero-copy__title,
	.info-page--a2 .info-page__hero-grid--visual-left .hero-copy__text,
	.info-page--a2 .info-page__hero-grid--visual-left .info-page__hero-visual,
	.info-page--a2 .info-page__hero-grid--visual-left .info-page__copy { grid-area: auto; }
	.info-page--a2 .info-page__hero-grid--visual-right {
		grid-template-areas: none;
		grid-template-rows: auto;
		gap: 28px;
	}
	.info-page--a2 .info-page__hero-grid--visual-right .eyebrow,
	.info-page--a2 .info-page__hero-grid--visual-right .hero-copy__title,
	.info-page--a2 .info-page__hero-grid--visual-right .hero-copy__text,
	.info-page--a2 .info-page__hero-grid--visual-right .info-page__hero-visual,
	.info-page--a2 .info-page__hero-grid--visual-right .info-page__copy { grid-area: auto; }

	/* На мобильных блоки идут одной колонкой в обычном потоке — abs-pos/inset:0
	   тут не нужен (это только приём для подгонки высоты под соседнюю колонку
	   в двухколоночной десктопной сетке), возвращаем обычное фото с aspect-ratio. */
	.info-page--a2 .info-page__hero-visual {
		position: relative;
		inset: auto;
		aspect-ratio: 3/4;
		max-height: 420px;
	}
	.info-page--a2 .info-page__grid--nav { grid-template-columns: 1fr; }
	.info-page--a2 .hero-copy__title { font-size: clamp(36px, 10vw, 56px); }
}

/* ============================================================
   ТЁМНАЯ ТЕМА — продолжение (гайд-блок/карточки категорий каталога,
   живой поиск, waitlist, инфостраницы обоих вариантов A1/A2).
   ============================================================ */

html[data-theme="dark"] .guideblock__head h2 { color: var(--cream); }
html[data-theme="dark"] .guideblock__head p { color: rgba(248, 245, 238, .6); }
html[data-theme="dark"] .guideblock__card { border-color: var(--line-light); background: rgba(248, 245, 238, .04); }
html[data-theme="dark"] .guideblock__card:hover { border-color: rgba(198, 166, 117, .5); box-shadow: 0 14px 34px rgba(0, 0, 0, .3); }
html[data-theme="dark"] .guideblock__card b { color: var(--cream); }
html[data-theme="dark"] .guideblock__card p { color: rgba(248, 245, 238, .62); }

html[data-theme="dark"] .catcard { border-color: var(--line-light); background: rgba(248, 245, 238, .04); }
html[data-theme="dark"] .catcard:hover { border-color: rgba(198, 166, 117, .5); box-shadow: 0 16px 38px rgba(0, 0, 0, .3); }
html[data-theme="dark"] .catcard__body h3 { color: var(--cream); }
html[data-theme="dark"] .catcard__body p { color: rgba(248, 245, 238, .6); }

html[data-theme="dark"] .suggest { background: var(--pine-deep); border-color: var(--line-light); box-shadow: 0 24px 60px rgba(0, 0, 0, .4); }
html[data-theme="dark"] .suggest__item { color: var(--cream); }
html[data-theme="dark"] .suggest__item:hover { background: rgba(198, 166, 117, .1); }
html[data-theme="dark"] .suggest__noimg { background: rgba(248, 245, 238, .08); }
html[data-theme="dark"] .suggest__all { color: var(--cream); border-top-color: var(--line-light); }

html[data-theme="dark"] .waitlist { border-color: rgba(198, 166, 117, .3); }
html[data-theme="dark"] .waitlist__form .input { border-color: var(--line-light); background: rgba(248, 245, 238, .06); color: var(--cream); }

/* ---------- инфостраницы (A1 + A2) ---------- */

html[data-theme="dark"] .info-page__copy,
html[data-theme="dark"] .info-page__card,
html[data-theme="dark"] .info-page__nav-card,
html[data-theme="dark"] .info-page--a2 .info-page__card,
html[data-theme="dark"] .info-page--a2 .info-page__nav-card {
	border-color: var(--line-light);
	background: rgba(248, 245, 238, .04);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}
html[data-theme="dark"] .section-title,
html[data-theme="dark"] .hero-copy__title,
html[data-theme="dark"] .info-page__card-title,
html[data-theme="dark"] .info-page__nav-title,
html[data-theme="dark"] .info-page--a2 .info-page__nav-title { color: var(--cream); }
html[data-theme="dark"] .hero-copy__text,
html[data-theme="dark"] .section-copy,
html[data-theme="dark"] .info-page__card-text,
html[data-theme="dark"] .info-page__nav-text,
html[data-theme="dark"] .info-page__list li,
html[data-theme="dark"] .info-page--a2 .section-copy,
html[data-theme="dark"] .info-page--a2 .info-page__nav-text { color: rgba(248, 245, 238, .68); }
html[data-theme="dark"] .info-page__note,
html[data-theme="dark"] .info-page--a2 .info-page__note {
	border-color: rgba(198, 166, 117, .25);
	background: linear-gradient(135deg, rgba(72, 109, 87, .16), rgba(198, 166, 117, .08));
}
html[data-theme="dark"] .info-page--a2 .info-page__note p { color: rgba(248, 245, 238, .72); }
html[data-theme="dark"] .info-page__note-label,
html[data-theme="dark"] .info-page__card-eyebrow,
html[data-theme="dark"] .info-page--a2 .info-page__note-label { background: rgba(72, 109, 87, .22); color: var(--sage-soft); }
html[data-theme="dark"] .info-page__card--accent,
html[data-theme="dark"] .info-page__nav-card.is-current {
	background:
		linear-gradient(180deg, rgba(198, 166, 117, .12), rgba(248, 245, 238, .04)),
		linear-gradient(135deg, rgba(198, 166, 117, .1), transparent 40%);
}
html[data-theme="dark"] .info-page__nav-card:hover,
html[data-theme="dark"] .info-page--a2 .info-page__nav-card:hover,
html[data-theme="dark"] a.info-page__card:hover,
html[data-theme="dark"] .info-page--a2 a.info-page__card:hover {
	border-color: rgba(198, 166, 117, .3);
	background: rgba(248, 245, 238, .07);
}
html[data-theme="dark"] .section-shell--soft {
	background: linear-gradient(180deg, rgba(248, 245, 238, .03), rgba(248, 245, 238, .05));
	border-top-color: var(--line-light);
	border-bottom-color: var(--line-light);
}
html[data-theme="dark"] .info-page--a2 .section-head .eyebrow,
html[data-theme="dark"] .info-page--a2 .info-page__copy .eyebrow,
html[data-theme="dark"] .info-page--a2 .info-page__hero-grid .eyebrow { color: var(--sage-soft); }
html[data-theme="dark"] .info-page__card-link { color: var(--sage-soft); }

/* A2 — более специфичные селекторы (перебивали упрощённые правила выше по специфичности CSS) */
html[data-theme="dark"] .info-page--a2 .info-page__copy .hero-copy__text,
html[data-theme="dark"] .info-page--a2 .info-page__hero-top .hero-copy__text,
html[data-theme="dark"] .info-page--a2 .info-page__hero-grid .hero-copy__text,
html[data-theme="dark"] .info-page--a2 .info-page__card-text { color: rgba(248, 245, 238, .68); }

/* A2 — сайдбар */
html[data-theme="dark"] .info-page--a2 .info-page__side-card {
	border-color: var(--line-light);
	background: rgba(248, 245, 238, .04);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}
html[data-theme="dark"] .info-page--a2 .info-page__side-eyebrow { color: var(--sage-soft); }
html[data-theme="dark"] .info-page--a2 .info-page__side-list li { color: rgba(248, 245, 238, .7); }
html[data-theme="dark"] .info-page--a2 .info-page__side-links { border-top-color: var(--line-light); }
html[data-theme="dark"] .info-page--a2 .info-page__side-links a { color: var(--sage-soft); }
html[data-theme="dark"] .info-page--a2 .info-page__side-links a:hover { color: var(--gold); }

/* ============================================================
   Единое мобильное меню (.mmenu) — выезжающая панель, одинаковая на всех
   страницах сайта (подключается партиалом _mobile_menu.php в шапках).
   Всегда тёмная (var(--pine-deep)), независимо от v2-light/темы страницы —
   как футер, это часть "рамки" сайта, а не контента.
   ============================================================ */
.mmenu { position: fixed; inset: 0; z-index: 300; }
.mmenu[hidden] { display: none; }

.mmenu__backdrop {
	position: absolute; inset: 0; width: 100%; border: 0; padding: 0; cursor: pointer;
	background: rgba(8, 16, 12, .55);
	opacity: 0;
	transition: opacity .3s var(--ease-out);
}
.mmenu.is-open .mmenu__backdrop { opacity: 1; }

.mmenu__panel {
	position: absolute; top: 0; right: 0; bottom: 0;
	width: min(360px, 86vw);
	background: var(--pine-deep);
	color: var(--cream);
	display: flex;
	flex-direction: column;
	padding: 20px 22px 24px;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform .35s var(--ease-out);
	box-shadow: -20px 0 60px rgba(0, 0, 0, .35);
}
.mmenu.is-open .mmenu__panel { transform: translateX(0); }

.mmenu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.mmenu__head .topbar__logo { font-size: 20px; pointer-events: none; }
.mmenu__close {
	width: 38px; height: 38px; flex: 0 0 auto;
	display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid var(--line-light); border-radius: 50%;
	background: transparent; color: var(--cream); cursor: pointer; transition: all .2s;
}
.mmenu__close svg { width: 16px; height: 16px; }
.mmenu__close:hover { border-color: var(--gold); color: var(--gold); }

.mmenu__search {
	display: flex; align-items: center; gap: 10px;
	padding: 13px 16px; margin-bottom: 22px;
	border: 1px solid var(--line-light); border-radius: 100px;
	color: rgba(248, 245, 238, .75); transition: border-color .2s;
}
.mmenu__search svg { width: 17px; height: 17px; flex: 0 0 auto; }
.mmenu__search:focus-within { border-color: var(--gold); }
.mmenu__search input {
	flex: 1 1 auto; min-width: 0; border: 0; background: transparent; padding: 0;
	color: var(--cream); font: inherit; font-size: 14px; font-weight: 600;
}
.mmenu__search input::placeholder { color: rgba(248, 245, 238, .5); }
.mmenu__search input:focus { outline: none; }

.mmenu__nav { display: flex; flex-direction: column; }

.mmenu__group-toggle {
	width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
	padding: 15px 4px; border: 0; border-bottom: 1px solid var(--line-light);
	background: transparent; color: var(--cream); cursor: pointer; text-align: left;
	font-family: var(--font-display); font-size: 19px; font-weight: 600;
}
.mmenu__chevron { width: 16px; height: 16px; flex: 0 0 auto; color: var(--gold); transition: transform .25s var(--ease-out); }
.mmenu__group-toggle[aria-expanded="true"] .mmenu__chevron { transform: rotate(180deg); }

.mmenu__sub { padding: 6px 0 10px 2px; display: flex; flex-direction: column; }
.mmenu__sub[hidden] { display: none; }

.mmenu__row { display: flex; align-items: center; }
.mmenu__row .mmenu__link { flex: 1 1 auto; }
.mmenu__row-toggle {
	width: 40px; height: 44px; flex: 0 0 auto;
	display: inline-flex; align-items: center; justify-content: center;
	border: 0; background: transparent; color: rgba(248, 245, 238, .45); cursor: pointer;
}
.mmenu__row-toggle .mmenu__chevron { width: 14px; height: 14px; }
.mmenu__row-toggle[aria-expanded="true"] .mmenu__chevron { transform: rotate(180deg); }

.mmenu__link {
	display: block; padding: 12px 8px; font-size: 15px; font-weight: 600;
	color: rgba(248, 245, 238, .85); text-decoration: none; transition: color .2s;
}
.mmenu__link:hover { color: var(--gold); }
.mmenu__link--top {
	border-bottom: 1px solid var(--line-light);
	font-family: var(--font-display); font-size: 19px; padding: 15px 4px;
}

.mmenu__sub2 {
	display: flex; flex-direction: column;
	padding: 2px 0 10px 16px; margin: 0 0 4px 8px;
	border-left: 1px solid rgba(198, 166, 117, .3);
}
.mmenu__sub2[hidden] { display: none; }
.mmenu__sub2 a {
	padding: 9px 8px; font-size: 13.5px; font-weight: 500;
	color: rgba(248, 245, 238, .6); text-decoration: none; transition: color .2s;
}
.mmenu__sub2 a:hover { color: var(--gold); }

.mmenu__utils { margin-top: auto; padding-top: 10px; display: flex; flex-direction: column; }
.mmenu__util {
	display: flex; align-items: center; gap: 12px; padding: 13px 8px;
	border-top: 1px solid var(--line-light);
	color: rgba(248, 245, 238, .85); text-decoration: none; font-size: 14.5px; font-weight: 600;
	transition: color .2s;
}
.mmenu__util svg { width: 19px; height: 19px; flex: 0 0 auto; color: var(--gold); transition: color .2s; }
.mmenu__util span { flex: 1 1 auto; }
.mmenu__util b {
	min-width: 20px; height: 20px; padding: 0 5px; border-radius: 100px;
	background: var(--gold); color: var(--pine-deep); font-size: 11px; font-weight: 700;
	display: inline-grid; place-items: center; flex: 0 0 auto;
}
.mmenu__util:hover { color: var(--gold); }
button.mmenu__util { background: none; border: 0; width: 100%; font: inherit; text-align: left; cursor: pointer; }

html.mmenu-locked, html.mmenu-locked body { overflow: hidden; }

@media (min-width: 721px) {
	.mmenu { display: none !important; }
}

/* ===== Промо-попап (админка → /admin/popups) =====
   Разметка — src/views/_popup.php, поведение — shared.js (задержка, cookie
   на повтор показа). Изначально скрыт атрибутом hidden — снимается JS. */
html.popup-locked, html.popup-locked body { overflow: hidden; }

.popup-promo {
	position: fixed; inset: 0; z-index: 99995;
	display: grid; place-items: center; padding: 20px;
	background: rgba(18, 36, 27, .55);
	backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
	opacity: 0; transition: opacity .3s var(--ease-out);
}
.popup-promo[hidden] { display: none; }
.popup-promo.is-visible { opacity: 1; }

.popup-promo__card {
	position: relative; width: 100%; max-width: 420px;
	background: var(--cream); color: var(--ink); border-radius: 22px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
	overflow: hidden;
	transform: translateY(16px) scale(.97); transition: transform .35s var(--ease-out);
}
.popup-promo--small .popup-promo__card { max-width: 340px; }
.popup-promo--large .popup-promo__card { max-width: 560px; }
.popup-promo.is-visible .popup-promo__card { transform: none; }

.popup-promo__close {
	position: absolute; top: 12px; right: 12px; z-index: 2;
	width: 34px; height: 34px; border-radius: 50%; border: none;
	background: rgba(28, 42, 34, .5); color: var(--cream);
	display: grid; place-items: center; font-size: 18px; line-height: 1;
	backdrop-filter: blur(4px);
}
.popup-promo__close:hover { background: rgba(28, 42, 34, .75); }

.popup-promo__image { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }

.popup-promo__body { padding: 28px 28px 32px; text-align: center; }
.popup-promo__heading {
	font-family: var(--font-display); font-size: 26px; font-weight: 600;
	line-height: 1.15; margin-bottom: 10px;
}
.popup-promo__text { font-size: 14.5px; line-height: 1.6; color: rgba(28, 42, 34, .72); margin-bottom: 20px; }
.popup-promo__body .btn { width: 100%; justify-content: center; }

html[data-theme="dark"] .popup-promo__card { background: var(--pine-deep); color: var(--cream); }
html[data-theme="dark"] .popup-promo__text { color: rgba(248, 245, 238, .68); }

@media (max-width: 480px) {
	.popup-promo__body { padding: 22px 20px 26px; }
	.popup-promo__heading { font-size: 22px; }
}

/* Инфо-страницы и верхняя полоса: согласованный визуал. */
.info-page--a2 .info-page__hero-badge { display: none !important; }

.topstrip {
	background: transparent;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 2px solid rgb(4 11 7 / 20%);
	position: relative;
	z-index: 101;
	color: var(--cream);
}
.topstrip::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 110px;
	background: linear-gradient(to top, rgba(10, 20, 15, .22) 0%, transparent 100%);
	pointer-events: none;
	z-index: -1;
}
.topstrip a {
	color: rgba(248, 245, 238, .65);
	text-shadow: 0 1px 8px rgba(0, 0, 0, .3), 0 1px 2px rgba(0, 0, 0, .2);
}
.topstrip a:hover { color: var(--gold); }

/* Галерея примеров опор: две переключаемые подборки. */
.vphotos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 4px 0 26px; }
.vphotos__item { margin: 0; }
.vphotos__item img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 16px; display: block; }
.vphotos__item figcaption { padding: 8px 4px 0; font-size: 12px; color: rgba(248, 245, 238, .55); line-height: 1.4; }
.vphoto-tabs { padding: 4px 0 26px; }
.vphoto-tabs__tab { position: absolute; inline-size: 1px; block-size: 1px; opacity: 0; pointer-events: none; }
.vphoto-tabs__switcher { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
.vphoto-tabs__label { display: inline-flex; align-items: center; min-height: 42px; padding: 9px 16px; border: 1px solid rgba(28, 42, 34, .18); border-radius: 999px; color: rgba(28, 42, 34, .72); font-size: 14px; font-weight: 700; cursor: pointer; transition: background-color .2s ease, border-color .2s ease, color .2s ease; }
.vphoto-tabs__panel { display: none; }
.vphoto-tabs__copy { max-width: 62ch; margin: 0 0 16px; color: rgba(28, 42, 34, .65); }
.vphoto-tabs__tab:nth-of-type(1):checked ~ .vphoto-tabs__switcher .vphoto-tabs__label:nth-child(1),
.vphoto-tabs__tab:nth-of-type(2):checked ~ .vphoto-tabs__switcher .vphoto-tabs__label:nth-child(2) { border-color: var(--sage); background: var(--sage); color: #fff; }
.vphoto-tabs__tab:nth-of-type(1):checked ~ .vphoto-tabs__panels .vphoto-tabs__panel:nth-child(1),
.vphoto-tabs__tab:nth-of-type(2):checked ~ .vphoto-tabs__panels .vphoto-tabs__panel:nth-child(2) { display: block; }
@media (max-width: 720px) { .vphotos { grid-template-columns: 1fr 1fr; gap: 10px; } .vphoto-tabs__label { min-height: 40px; padding: 8px 13px; } }
html[data-theme="dark"] .v2-light .vphotos__item figcaption { color: rgba(248, 245, 238, .55); }
html[data-theme="dark"] .v2-light .vphoto-tabs__label { border-color: rgba(248, 245, 238, .24); color: rgba(248, 245, 238, .82); }
html[data-theme="dark"] .v2-light .vphoto-tabs__copy { color: rgba(248, 245, 238, .72); }
html[data-theme="dark"] .v2-light .vphoto-tabs__tab:nth-of-type(1):checked ~ .vphoto-tabs__switcher .vphoto-tabs__label:nth-child(1),
html[data-theme="dark"] .v2-light .vphoto-tabs__tab:nth-of-type(2):checked ~ .vphoto-tabs__switcher .vphoto-tabs__label:nth-child(2) { border-color: var(--sage-soft); background: var(--sage-soft); color: var(--ink); }


/* Product cards 2027: top specifications */
.psummary__specs { margin: 0 0 26px; border-top: 1px solid var(--line-light); }
.psummary__specs-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 9px 0; border-bottom: 1px solid var(--line-light); font-size: 14px; line-height: 1.45; }
.psummary__specs-row dt { color: rgba(248, 245, 238, .55); }
.psummary__specs-row dd { color: var(--cream); }
.pdetail__grid--single { grid-template-columns: minmax(0, 1fr); }
.v2-light .psummary__specs { border-color: var(--line); }
.v2-light .psummary__specs-row { border-color: var(--line); }
.v2-light .psummary__specs-row dt { color: rgba(28, 42, 34, .55); }
.v2-light .psummary__specs-row dd { color: var(--ink); }
html[data-theme="dark"] .v2-light .psummary__specs { border-color: var(--line-light); }
html[data-theme="dark"] .v2-light .psummary__specs-row { border-color: var(--line-light); }
html[data-theme="dark"] .v2-light .psummary__specs-row dt { color: rgba(248, 245, 238, .55); }
html[data-theme="dark"] .v2-light .psummary__specs-row dd { color: var(--cream); }


/* Product cards 2027: subgroup links */
.psummary__specs-row a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.psummary__specs-row a:hover { color: var(--gold); }
.v2-light .psummary__specs-row a:hover { color: var(--gold-deep); }
