/* ============================================================
   Зелений Гай — design system v2
   Преміальний, теплий, садовий. Crema-папір · ботанічна зелень.
   Дисплей: Lora (serif) · Текст/UI: Onest
   ============================================================ */

:root {
  --bg: #FAF7F0;          /* теплий папір */
  --bg-2: #F2EEE3;        /* глибший крем */
  --bg-3: #ECE6D7;        /* ще глибший — смуги */
  --surface: #FFFFFF;
  --ink: #262219;         /* теплий майже-чорний */
  --ink-2: #6E665A;
  --ink-3: #9D9484;
  --hair: rgba(45, 38, 24, 0.13);
  --hair-soft: rgba(45, 38, 24, 0.07);

  --accent: #2F6B3C;      /* ботанічна зелень */
  --accent-700: #234E2C;
  --accent-600: #2A6035;
  --accent-soft: #5A9A5F;
  --accent-tint: rgba(47, 107, 60, 0.09);
  --accent-tint-2: rgba(47, 107, 60, 0.16);
  --clay: #B26A45;        /* теплий акцент (тепло/осінь) */
  --gold: #C79A3A;

  --r-sm: 16px;
  --r: 24px;
  --r-lg: 34px;
  --r-pill: 999px;

  --sh-1: 0 2px 6px rgba(50,38,18,.05), 0 14px 40px rgba(50,38,18,.07);
  --sh-2: 0 6px 16px rgba(50,38,18,.07), 0 30px 70px rgba(50,38,18,.13);
  --sh-prod: 0 26px 34px rgba(40,30,12,.20);

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 52px);

  --ease: cubic-bezier(.2,.7,.2,1);
  --font: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: 'Lora', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent-tint-2); }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.1; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
em, .it { font-style: italic; }

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.muted { color: var(--ink-2); }
.eyebrow {
  font-family: var(--font);
  font-size: 13.5px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 54px; padding: 0 28px;
  border-radius: var(--r-pill); border: none;
  font-family: var(--font); font-size: 17px; font-weight: 600;
  background: var(--accent); color: #fff;
  transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--accent-700); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(47,107,60,.26); }
.btn:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--hair); }
.btn-ghost:hover { background: rgba(255,255,255,.6); box-shadow: inset 0 0 0 1.5px var(--accent); color: var(--accent-700); }
.btn-cream { background: var(--surface); color: var(--ink); box-shadow: var(--sh-1); }
.btn-cream:hover { background: #fff; color: var(--accent-700); }
/* bulletproof: filled green buttons always have white text */
a.btn:not(.btn-ghost):not(.btn-cream), button.btn:not(.btn-ghost):not(.btn-cream) { color: #fff; }
.btn-lg { min-height: 60px; padding: 0 36px; font-size: 18px; }
.btn-block { width: 100%; }
.link-arrow { display:inline-flex; align-items:center; gap:.4em; color: var(--accent); font-weight:600; font-size: 16px; }
.link-arrow svg { transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header: three floating islands ---------- */
.site-header { position: sticky; top: 0; z-index: 200; background: transparent; transition: opacity .65s var(--ease), transform .55s var(--ease); }
/* після скролу шапка ховається й м'яко з'являється приглушеною лише за кілька секунд */
.site-header.hdr-hidden { opacity: 0; transform: translateY(-14px); pointer-events: none; }
.site-header.hdr-faint { opacity: .38; }
.site-header.hdr-faint:hover { opacity: 1; }
.hdr-in { display: flex; align-items: center; gap: 16px; height: 92px; }

/* 1 — Logo: standalone, transparent, no backing, attached top */
.brand { display: inline-flex; align-items: flex-start; flex: none; margin-left: 4px; margin-top: -2px; }
.brand-badge { position: relative; display: block; transition: transform .35s var(--ease); }
.brand:hover .brand-badge { transform: translateY(-1px); }
.brand-badge.clicked { animation: brandPop .5s var(--ease); }
@keyframes brandPop { 0%{transform:scale(1)} 30%{transform:scale(.94)} 60%{transform:scale(1.03)} 100%{transform:scale(1)} }
.brand-logo { height: 88px; width: auto; display: block; filter: drop-shadow(0 4px 7px rgba(40,30,12,.20)); }
/* cursor-following glare, clipped to the disc */
.brand-glow { position: absolute; inset: 6%; pointer-events: none; opacity: 0; border-radius: 50%; transition: opacity .3s var(--ease); background: radial-gradient(90px 90px at var(--mx,50%) var(--my,50%), rgba(255,255,255,.9), rgba(255,255,255,.22) 38%, transparent 64%); mix-blend-mode: screen; }
.brand:hover .brand-glow { opacity: 1; }

/* (прибрано розділову лінію під шапкою) */

/* 2 — Nav: bare at top, subtle pill on scroll, brighter on hover */
.hdr-nav { display: flex; gap: 2px; margin-left: auto; padding: 7px 10px; border-radius: var(--r-pill); background: transparent; box-shadow: none; backdrop-filter: none; transition: background .35s var(--ease), box-shadow .35s var(--ease); }
.hdr-nav a { padding: 9px 16px; border-radius: var(--r-pill); font-size: 15.5px; color: var(--ink-2); font-weight: 600; transition: background .2s, color .2s; }
.hdr-nav a:hover { background: rgba(47,107,60,.10); color: var(--accent-700); }

/* 3 — Actions: bare at top, subtle pill on scroll, brighter on hover */
.hdr-right { display: flex; align-items: center; gap: 12px; padding: 7px 8px 7px 18px; border-radius: var(--r-pill); background: transparent; box-shadow: none; backdrop-filter: none; transition: background .35s var(--ease), box-shadow .35s var(--ease); }
.site-header.hdr-faint .hdr-nav, .site-header.hdr-faint .hdr-right { background: rgba(255,255,255,0.42); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); box-shadow: 0 6px 20px rgba(40,30,12,.06); }
.site-header.hdr-faint .hdr-nav:hover, .site-header.hdr-faint .hdr-right:hover { background: rgba(255,255,255,0.92); box-shadow: 0 10px 28px rgba(40,30,12,.14); }
.hdr-phone { font-weight: 700; font-size: 15.5px; color: var(--ink); line-height: 1.05; }
.hdr-phone span { color: var(--ink-3); font-weight: 500; font-size: 12px; display:block; letter-spacing:.02em; margin-top: 1px; }
.cart-btn { position: relative; display:inline-flex; align-items:center; gap:8px; min-height: 44px; padding: 0 18px 0 16px; border-radius: var(--r-pill); background: var(--accent); color: #fff; box-shadow: 0 4px 12px rgba(47,107,60,.28); font-weight: 600; font-size: 15px; transition: transform .2s, background .2s, box-shadow .2s; }
.cart-btn:hover { transform: translateY(-1px); background: var(--accent-700); box-shadow: 0 8px 18px rgba(47,107,60,.34); }
.cart-count { min-width: 22px; height: 22px; padding: 0 6px; border-radius: var(--r-pill); background: #fff; color: var(--accent-700); font-size: 13px; font-weight: 800; display: grid; place-items: center; }
.cart-count.is-empty { background: rgba(255,255,255,.55); color: var(--accent-700); }

/* ---------- Бургер + мобільне меню ---------- */
.hdr-burger { display: none; }
.mobile-menu { display: none; }
@media (max-width: 1000px) {
  .hdr-burger {
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
    width: 46px; height: 46px; border: none; border-radius: 50%;
    background: rgba(255,255,255,.7); box-shadow: var(--sh-1); flex: none;
  }
  .hdr-burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
  .hdr-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hdr-burger.open span:nth-child(2) { opacity: 0; }
  .hdr-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu {
    display: block; position: fixed; inset: 0; z-index: 300;
    background: rgba(20,30,18,.5); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
    opacity: 0; pointer-events: none; transition: opacity .25s var(--ease);
  }
  .mobile-menu.open { opacity: 1; pointer-events: auto; }
  .mm-panel {
    position: absolute; top: 0; right: 0; height: 100%; width: min(82vw, 330px);
    background: var(--surface); box-shadow: -12px 0 44px rgba(0,0,0,.22);
    display: flex; flex-direction: column; gap: 6px; padding: 92px 26px 28px;
    transform: translateX(100%); transition: transform .32s var(--ease);
  }
  .mobile-menu.open .mm-panel { transform: none; }
  .mm-links { display: flex; flex-direction: column; }
  .mm-panel .mm-links a {
    font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink);
    padding: 15px 0; border-bottom: 1px solid var(--hair-soft);
  }
  .mm-panel .mm-links a:hover { color: var(--accent); }
  .mm-phone { margin-top: 18px; font-weight: 700; font-size: 20px; color: var(--accent-700); }
  .mm-cart { margin-top: 16px; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(64px, 9vw, 132px); }
.section-cream { background: var(--bg-2); }
/* soft blurred corner glows to lighten a section */
.soft-corners { position: relative; overflow: hidden; }
.soft-corners > * { position: relative; z-index: 1; }
.soft-corners::before, .soft-corners::after { content:""; position:absolute; width: clamp(220px,30vw,420px); height: clamp(220px,30vw,420px); border-radius:50%; filter: blur(70px); opacity:.55; pointer-events:none; z-index:0; }
.soft-corners::before { top:-12%; left:-8%; background: radial-gradient(circle, rgba(90,154,95,.30), transparent 70%); }
.soft-corners::after { bottom:-14%; right:-8%; background: radial-gradient(circle, rgba(214,166,74,.26), transparent 70%); }
.section-head { max-width: 780px; margin-bottom: clamp(34px, 5vw, 62px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(32px, 5vw, 60px); }
.section-head p { margin-top: 18px; font-size: clamp(17px, 2vw, 21px); color: var(--ink-2); }

/* ---------- Reveal ---------- */
.has-js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.has-js [data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .09s; }
[data-reveal][data-delay="2"] { transition-delay: .18s; }
[data-reveal][data-delay="3"] { transition-delay: .27s; }
[data-reveal].reveal-now { opacity: 1 !important; transform: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) { [data-reveal]{opacity:1;transform:none;} }

/* ============================================================
   HERO (home) — карусель + світлі блюр-фони
   ============================================================ */
.hero { position: relative; overflow: hidden; padding-top: clamp(34px, 5vw, 70px); padding-bottom: clamp(48px, 7vw, 96px); }
.hero-bg { position: absolute; inset: -6% -4% 0; z-index: 0; pointer-events: none; }
.hero-bg img { position: absolute; width: 30vw; max-width: 430px; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 50%; filter: blur(8px) saturate(1.18); opacity: .4; mix-blend-mode: multiply; will-change: transform, opacity; transition: opacity .5s var(--ease);
  -webkit-mask-image: radial-gradient(closest-side, #000 46%, transparent 100%); mask-image: radial-gradient(closest-side, #000 46%, transparent 100%); }
.hero-bg .blur-l { left: -9vw; top: 12%; }
.hero-bg .blur-r { right: -9vw; top: 8%; width: 28vw; }
.hero .container { position: relative; z-index: 2; }
.hero-head { max-width: 880px; margin: 0 auto; text-align: center; }
.hero h1 { font-size: clamp(40px, 6.6vw, 84px); line-height: 1.03; }
.hero h1 em { color: var(--accent); font-style: italic; }
.hero-lead { margin: 24px auto 0; font-size: clamp(18px, 2.1vw, 22px); color: var(--ink-2); max-width: 56ch; }
.hero-cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* coverflow carousel */
.hero-carousel { position: relative; margin-top: clamp(18px, 3vw, 40px); }
.cs-stage { position: relative; height: clamp(310px, 38vw, 450px); display: flex; align-items: center; justify-content: center; overflow: visible; }
.cs-stage::after { content: ""; position: absolute; left: 50%; top: 84%; width: min(42%, 340px); height: 58px; transform: translate(-50%, -50%); background: radial-gradient(ellipse closest-side, rgba(40,30,12,.32), rgba(40,30,12,.16) 50%, transparent 78%); filter: blur(13px); z-index: 1; pointer-events: none; }
.cs-track { position: relative; width: 0; height: 100%; display: flex; align-items: center; justify-content: center; }
.cs-item { position: absolute; top: 50%; left: 50%; border: none; background: none; padding: 0; cursor: pointer; transition: none; will-change: transform, opacity; transform-origin: center center; }
.cs-ready .cs-item { transition: transform .6s var(--ease), opacity .6s var(--ease); }
.cs-item img { width: clamp(150px, 22vw, 285px); max-width: none; height: auto; display: block; object-fit: contain; filter: drop-shadow(0 30px 14px rgba(40,30,12,.20)); }
.cs-item.is-active img { filter: drop-shadow(0 38px 18px rgba(40,30,12,.26)); }
.cs-arrow { position: absolute; top: 44%; transform: translateY(-50%); z-index: 60; width: 56px; height: 56px; border-radius: 50%; background: var(--surface); box-shadow: var(--sh-1); border: none; display: grid; place-items: center; color: var(--ink); cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), color .2s; }
.cs-arrow:hover { transform: translateY(-50%) scale(1.07); box-shadow: var(--sh-2); color: var(--accent); }
.cs-arrow.prev { left: clamp(2px, 3vw, 36px); }
.cs-arrow.next { right: clamp(2px, 3vw, 36px); }
.cs-info { text-align: center; margin-top: -6px; min-height: 150px; }
.cs-name { font-family: var(--serif); font-size: clamp(26px, 3.4vw, 40px); font-weight: 600; display: inline-flex; align-items: center; gap: 12px; }
.cs-badge { font-family: var(--font); font-size: 12.5px; font-weight: 600; padding: 5px 11px; border-radius: var(--r-pill); background: var(--accent); color: #fff; vertical-align: middle; }
.cs-for { color: var(--ink-2); margin-top: 8px; font-size: 17px; max-width: 48ch; margin-inline: auto; }
.cs-meta { display: flex; gap: 18px; justify-content: center; align-items: center; margin-top: 16px; }
.cs-npk { font-family: var(--font); font-weight: 700; font-size: 14px; padding: 6px 12px; border-radius: 10px; background: var(--accent-tint); color: var(--accent-700); }
.cs-npk small { font-weight: 600; font-size: 11px; opacity: .7; }
.cs-price { font-family: var(--serif); font-size: 25px; font-weight: 600; }
.cs-price i { font-style: normal; font-family: var(--font); font-size: 14px; color: var(--ink-3); }
.cs-more { margin-top: 20px; }

/* ============================================================
   CATALOG — картки з рослинною смугою + вирізане відро
   ============================================================ */
.line-strip { display:flex; align-items:baseline; gap: 16px; margin: 6px 0 30px; }
.line-strip .t { font-family: var(--serif); font-size: clamp(24px,3.2vw,34px); font-weight: 600; display:flex; align-items:center; gap:12px; }
.line-strip .ln { flex:1; height:1px; background: var(--hair); }
.line-strip .cnt { font-size: 14px; color: var(--ink-3); font-family: var(--font); }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
.dot.amber { background: var(--clay); }
.dot.blue { background: #4a73b8; }

.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 30px); }
.pcard {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border-radius: var(--r-lg);
  box-shadow: var(--sh-1); overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.pcard:hover { transform: translateY(-8px); box-shadow: var(--sh-2); }
.pcard .ph {
  position: relative; aspect-ratio: 1.42; overflow: hidden;
  background: linear-gradient(180deg, #FDFCF8, var(--bg-2));
  display: grid; place-items: center;
}
.pcard .ph::after { content:""; position:absolute; left:0; right:0; bottom:0; height: 14%; z-index: 1; pointer-events:none; background: linear-gradient(to top, var(--surface), rgba(255,255,255,0)); }
.pcard .ph-plant { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 62%; mix-blend-mode: multiply; opacity: .85; filter: blur(2.5px) saturate(1.05); transform: scale(1.06); }
.pcard .ph-bucket { position: relative; z-index: 2; height: 74%; width: auto; filter: drop-shadow(0 12px 14px rgba(40,30,12,.13)); transition: transform .55s var(--ease); }
.pcard:hover .ph-bucket { transform: translateY(-5px) scale(1.035); }
.pcard .tags { position: absolute; top: 16px; left: 16px; z-index: 3; display: flex; gap: 6px; }
.tag { font-family: var(--font); font-size: 12.5px; font-weight: 600; padding: 6px 12px; border-radius: var(--r-pill); background: rgba(255,255,255,.9); backdrop-filter: blur(6px); box-shadow: 0 2px 8px rgba(0,0,0,.10); color: var(--ink); }
.tag.new { background: var(--accent); color: #fff; }
.pcard .pbody { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.pcard .name { font-family: var(--serif); font-size: 24px; font-weight: 600; }
.pcard .for { color: var(--ink-2); font-size: 15.5px; margin-top: 7px; line-height: 1.45; min-height: 2.8em; }
.npk { display: inline-flex; align-items: baseline; gap: 5px; font-family: var(--font); font-variant-numeric: tabular-nums; font-weight: 700; font-size: 14px; padding: 6px 12px; border-radius: 10px; background: var(--accent-tint); color: var(--accent-700); margin-top: 14px; align-self: flex-start; }
.card-sizes { display: flex; align-items: center; gap: 7px; margin-top: 14px; flex-wrap: wrap; }
.card-sizes .npk { margin-top: 0; }
.card-sizes .sz { font-family: var(--font); font-weight: 600; font-size: 13px; padding: 6px 11px; border-radius: 10px; background: var(--bg-2); color: var(--ink-2); box-shadow: inset 0 0 0 1px var(--hair-soft); }

/* ============================================================
   SCENE CARDS — full-width horizontal product banners (Г-layout)
   ============================================================ */
.scene-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2vw, 26px); }
.scene-card { position: relative; display: block; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1); min-height: clamp(400px, 33vw, 470px); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
/* у 2-колонковій сітці панель вужча — зменшуємо контент, щоб назва не обрізалась */
.scene-list .scene-name { font-size: clamp(26px, 2.5vw, 34px); }
.scene-list .scene-panel { width: min(56%, 320px); gap: 10px; padding: clamp(22px, 2.2vw, 32px); }
.scene-list .scene-for { font-size: 15px; }
@media (max-width: 900px) { .scene-list { grid-template-columns: 1fr; } .scene-list .scene-name { font-size: clamp(28px,3.4vw,40px); } .scene-list .scene-panel { width: min(50%, 460px); } }
@media (max-width: 760px) { .scene-list .scene-panel { width: 100%; } }
.scene-card:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.scene-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 78% center; transition: transform .7s var(--ease); }
.scene-card:hover .scene-img { transform: scale(1.04); }
.scene-scrim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(28,40,26,.74) 0%, rgba(28,40,26,.5) 32%, rgba(28,40,26,.12) 52%, transparent 66%); }
.scene-panel { position: absolute; left: 0; top: 0; bottom: 0; width: min(50%, 460px); display: flex; flex-direction: column; justify-content: center; gap: 14px; padding: clamp(26px, 3.2vw, 50px); color: #fff; }
.scene-new { align-self: flex-start; font-family: var(--font); font-weight: 600; font-size: 12.5px; letter-spacing: .04em; padding: 6px 13px; border-radius: var(--r-pill); background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(0,0,0,.2); }
.scene-name { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 3.6vw, 46px); line-height: 1.04; text-shadow: 0 2px 18px rgba(0,0,0,.32); }
.scene-for { font-family: var(--font); font-size: clamp(15px, 1.6vw, 18px); color: rgba(255,255,255,.9); max-width: 30ch; text-shadow: 0 1px 10px rgba(0,0,0,.32); }
.scene-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 2px; }
.scene-meta .npk { margin-top: 0; background: rgba(255,255,255,.92); color: var(--accent-700); }
.scene-meta .sz { font-family: var(--font); font-weight: 600; font-size: 13px; padding: 6px 12px; border-radius: 10px; background: rgba(255,255,255,.18); color: #fff; backdrop-filter: blur(4px); box-shadow: inset 0 0 0 1px rgba(255,255,255,.3); }
.scene-foot { display: flex; align-items: center; gap: 18px; margin-top: 8px; flex-wrap: wrap; }
.scene-foot .price { font-family: var(--serif); font-size: clamp(24px, 2.6vw, 32px); font-weight: 600; color: #fff; }
.scene-foot .price .from { display: block; font-family: var(--font); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.scene-foot .price .cur { font-family: var(--font); font-size: 14px; color: rgba(255,255,255,.78); font-weight: 600; }
.scene-btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font); font-weight: 600; font-size: 16px; color: var(--ink); background: #fff; padding: 13px 22px; border-radius: var(--r-pill); box-shadow: 0 6px 18px rgba(0,0,0,.18); transition: transform .25s var(--ease), background .25s; }
.scene-btn svg { transition: transform .3s var(--ease); }
.scene-card:hover .scene-btn { background: var(--accent); color: #fff; }
.scene-card:hover .scene-btn svg { transform: translateX(4px); }
@media (max-width: 760px) {
  .scene-card { min-height: 0; }
  .scene-img { position: relative; height: 240px; }
  .scene-scrim { background: linear-gradient(to top, rgba(28,40,26,.6), transparent 55%); }
  .scene-panel { position: relative; width: 100%; color: var(--ink); background: var(--surface); padding: 24px; gap: 12px; }
  .scene-name { color: var(--ink); text-shadow: none; }
  .scene-for { color: var(--ink-2); text-shadow: none; }
  .scene-meta .sz { background: var(--bg-2); color: var(--ink-2); box-shadow: inset 0 0 0 1px var(--hair-soft); }
  .scene-foot .price { color: var(--ink); }
  .scene-foot .price .from, .scene-foot .price .cur { color: var(--ink-3); }
  .scene-btn { box-shadow: inset 0 0 0 1.5px var(--hair); }
}
.npk small { font-weight: 600; font-size: 11px; opacity: .7; }
.pcard .foot { margin-top: auto; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { font-family: var(--serif); font-size: 24px; font-weight: 600; white-space: nowrap; }
.price .cur { font-family: var(--font); font-size: 14px; color: var(--ink-3); font-weight: 600; }
.price .from { display:block; font-family: var(--font); font-size: 12px; color: var(--ink-3); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

/* ============================================================
   MIX — світлий, читабельний (знижка за кількість)
   ============================================================ */
.mix { position: relative; overflow: hidden; border-radius: var(--r-lg); padding: clamp(34px, 4.5vw, 64px);
  background: linear-gradient(155deg, #E9F2E6 0%, #F4F0E5 100%); box-shadow: inset 0 0 0 1px var(--hair-soft); }
.mix::after { content: none; }
.mix .eyebrow { color: var(--accent); position: relative; }
.mix h2 { font-size: clamp(30px, 4.2vw, 52px); color: var(--ink); position: relative; }
.mix p.sub { color: var(--ink-2); margin-top: 18px; font-size: 19px; max-width: 56ch; position: relative; }
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 40px; position: relative; }
.tier { background: var(--surface); border: 1px solid var(--hair-soft); border-radius: var(--r); padding: 24px 22px; box-shadow: var(--sh-1); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.tier:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.tier .qty { font-family: var(--font); font-size: 14px; font-weight: 600; color: var(--ink-3); letter-spacing: .02em; }
.tier .pct { font-family: var(--serif); font-size: 42px; font-weight: 600; color: var(--accent-700); margin-top: 6px; }
.tier.t0 .pct { color: var(--ink-3); font-size: 27px; }
.tier .lab { color: var(--ink-2); margin-top: 6px; font-size: 14.5px; }

/* ---------- Інтерактивний слайдер знижки ---------- */
.disc-slider { margin-top: 38px; }
.ds-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.ds-qty { display: flex; align-items: baseline; gap: 10px; }
.ds-qnum { font-family: var(--serif); font-size: clamp(40px, 6vw, 68px); font-weight: 600; line-height: 1; color: var(--ink); font-variant-numeric: tabular-nums; }
.ds-qlabel { font-family: var(--font); font-size: 18px; color: var(--ink-2); font-weight: 500; }
.ds-rate { font-family: var(--serif); font-size: clamp(40px, 6vw, 68px); font-weight: 600; line-height: 1; color: var(--accent); font-variant-numeric: tabular-nums; transition: color .3s var(--ease); }
.ds-rate.zero { color: var(--ink-3); }
.ds-range { -webkit-appearance: none; appearance: none; width: 100%; height: 12px; margin: 30px 0 14px; border-radius: var(--r-pill); background: var(--bg-3); outline: none; cursor: pointer; }
.ds-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 34px; height: 34px; border-radius: 50%; background: var(--accent); border: 4px solid #fff; box-shadow: var(--sh-1); cursor: grab; transition: transform .15s var(--ease); }
.ds-range::-webkit-slider-thumb:active { transform: scale(1.12); cursor: grabbing; }
.ds-range::-moz-range-thumb { width: 34px; height: 34px; border-radius: 50%; background: var(--accent); border: 4px solid #fff; box-shadow: var(--sh-1); cursor: grab; }
.ds-ticks { position: relative; display: block; height: 20px; font-family: var(--font); font-size: 13px; color: var(--ink-3); font-weight: 600; }
.ds-ticks span { position: absolute; top: 0; transform: translateX(-50%); cursor: pointer; transition: color .2s; white-space: nowrap; }
.ds-ticks span:first-child { transform: translateX(0); }
.ds-ticks span:last-child { transform: translateX(-100%); }
.ds-ticks span.on { color: var(--accent); }
.ds-ticks span:hover { color: var(--accent); }
.ds-example { margin-top: 26px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-family: var(--font); font-size: 18px; }
.ds-example .ds-was { color: var(--ink-3); text-decoration: line-through; text-decoration-thickness: 2px; }

/* ---------- Discount matrix (bar chart) ---------- */
/* Світлий задник як у блоці «Чим більше відер» */
.disc-panel { background: linear-gradient(155deg, #E9F2E6 0%, #F4F0E5 100%); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 56px) clamp(20px, 3vw, 44px); box-shadow: inset 0 0 0 1px var(--hair-soft); }
.disc-panel .disc-matrix { margin-top: 0; }
.disc-matrix { display: flex; align-items: flex-end; gap: clamp(8px, 1.4vw, 18px); margin-top: 8px; }
.dm-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.dm-bar-wrap { width: 100%; height: 210px; display: flex; align-items: flex-end; }
.dm-bar { width: 100%; border-radius: 16px 16px 8px 8px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 16px; gap: 2px; color: #fff; background: linear-gradient(165deg, var(--accent-soft) 0%, var(--accent) 55%, var(--accent-700) 100%); box-shadow: inset 0 -6px 18px rgba(0,0,0,.16); transition: transform .3s var(--ease); position: relative; }
.dm-col:hover .dm-bar { transform: translateY(-4px); }
.dm-bar.future { background: var(--bg-2); color: var(--accent-700); box-shadow: inset 0 0 0 1.5px var(--hair); }
.dm-bar.future .dm-cap { color: var(--ink-3); opacity: 1; }
.dm-bar:not(.future) .dm-pct, .dm-bar:not(.future) .dm-cap { text-shadow: 0 1px 4px rgba(20,40,20,.4); }

/* «Ви тут» — лише для активного тиру */
.dm-here { display: none; position: absolute; top: -34px; left: 50%; transform: translateX(-50%); background: var(--ink); color: #fff; font-family: var(--font); font-weight: 700; font-size: 12px; letter-spacing: .02em; padding: 6px 12px; border-radius: var(--r-pill); white-space: nowrap; box-shadow: var(--sh-1); z-index: 4; }
.dm-col.is-here .dm-here { display: block; animation: dmHere 1.8s var(--ease) infinite; }
.dm-here::after { content: ""; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 10px; height: 10px; background: var(--ink); border-radius: 2px; }
@keyframes dmHere { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-4px); } }
.dm-pct { font-family: var(--serif); font-weight: 600; font-size: clamp(20px, 2.6vw, 30px); line-height: 1; }
.dm-cap { font-family: var(--font); font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; opacity: .95; }
.dm-q { font-family: var(--font); font-size: 13.5px; font-weight: 600; color: var(--ink); text-align: center; }

.dm-pile { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; margin-top: 10px; }
.dm-pile .pile-row { display: flex; justify-content: center; }
.dm-pile .pile-row.up { margin-bottom: -10px; position: relative; z-index: 2; }
.dm-pile img { width: 22px; height: auto; margin-left: -7px; filter: drop-shadow(0 3px 4px rgba(40,30,12,.22)); }
.dm-pile .pile-row img:first-child { margin-left: 0; }
.dm-q small { display: block; font-weight: 500; color: var(--ink-3); font-size: 12px; margin-top: 1px; }
@media (max-width: 620px) {
  .disc-matrix { flex-wrap: wrap; }
  .dm-col { flex: 0 0 calc(33.333% - 12px); }
  .dm-bar-wrap { height: 150px; }
}
.ds-example .ds-now { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--ink); }
.ds-example .ds-save { background: var(--accent); color: #fff; font-weight: 600; font-size: 14px; padding: 6px 13px; border-radius: var(--r-pill); }
.ds-hint { margin-top: 10px; font-size: 14px; color: var(--ink-3); }

/* ============================================================
   FEATURES / WHY
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px,2vw,24px); }
.feat { background: var(--surface); border-radius: var(--r); padding: 30px 28px; box-shadow: var(--sh-1); }
.feat .ic { width: 50px; height: 50px; border-radius: 15px; background: var(--accent-tint); color: var(--accent); display: grid; place-items: center; margin-bottom: 18px; }
.feat .ic svg { width: 25px; height: 25px; }
.feat h3 { font-size: 21px; }
.feat p { margin-top: 9px; color: var(--ink-2); font-size: 16px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px,2vw,26px); }
.review { background: var(--surface); border-radius: var(--r); padding: 34px; box-shadow: var(--sh-1); display:flex; flex-direction:column; }
.review .stars { color: var(--gold); letter-spacing: 3px; font-size: 17px; text-shadow: 0 0 10px rgba(199,154,58,.5), 0 0 2px rgba(199,154,58,.6); }
.review p { font-family: var(--serif); font-style: italic; margin-top: 16px; font-size: 20px; line-height: 1.5; color: var(--ink); }
.review .who { margin-top: auto; padding-top: 22px; display:flex; align-items:center; gap: 13px; }
.review .av { width: 46px; height: 46px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-700); display:grid; place-items:center; font-family: var(--serif); font-weight: 600; font-size: 19px; }
.review .who .nm { font-weight: 600; font-size: 16px; }
.review .who .ct { color: var(--ink-3); font-size: 14px; }

/* ============================================================
   DELIVERY / split
   ============================================================ */
.deliver-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }
.deliver-item { background: var(--surface); border-radius: var(--r); padding: 30px 28px; box-shadow: var(--sh-1); }
.deliver-item h3 { font-size: 23px; }
.deliver-item p { margin-top: 10px; color: var(--ink-2); font-size: 16px; }
.deliver-note { text-align: center; margin-top: 30px; font-size: 16px; }
.deliver-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px){ .deliver-grid-3 { grid-template-columns: 1fr; } }

/* ---- Why-section with blurred group photo + logo ---- */
.why-section { position: relative; overflow: hidden; }
.why-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: blur(22px) saturate(1.05); transform: scale(1.15); opacity: .26; z-index: 0; pointer-events: none; -webkit-mask-image: radial-gradient(120% 90% at 50% 50%, #000 40%, transparent 100%); mask-image: radial-gradient(120% 90% at 50% 50%, #000 40%, transparent 100%); }
.why-section .container { position: relative; z-index: 1; }
.why-logo { position: absolute; top: clamp(20px, 3vw, 40px); right: clamp(20px, 4vw, 56px); z-index: 2; opacity: .92; transition: opacity .2s, transform .2s; }
.why-logo img { width: clamp(96px, 12vw, 150px); height: auto; }
.why-logo:hover { opacity: 1; transform: translateY(-2px); }

/* ---- Delivery section with blurred zoomed video ---- */
.delivery-section { position: relative; overflow: hidden; }
.delivery-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.18); filter: blur(7px) saturate(1.08) brightness(.92); z-index: 0; pointer-events: none; }
.delivery-wash { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(28,52,32,.62), rgba(22,44,28,.68)); }
.delivery-section .container { position: relative; z-index: 2; }
.delivery-section .deliver-item { background: rgba(255,255,255,.1); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); }
.delivery-section .deliver-item h3 { color: #fff; }
.delivery-section .deliver-item p { color: rgba(255,255,255,.82); }
.delivery-section .deliver-note { color: rgba(255,255,255,.8); }
.deliver-ic { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 14px; margin-bottom: 16px; box-shadow: 0 4px 12px rgba(0,0,0,.18); }
.deliver-ic svg { width: 26px; height: 26px; }
.deliver-ic.np { background: #DA291C; }
.deliver-ic.up { background: #FFD200; }
.deliver-ic.pay { background: var(--accent); }
.deliver-ic.ship { background: var(--clay); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,4vw,56px); align-items: center; }
.info-list { display: grid; gap: 16px; margin-top: 28px; }
.info-list .row { display: flex; gap: 15px; align-items: flex-start; font-size: 17px; }
.info-list .row .ck { width: 28px; height: 28px; flex:none; border-radius: 50%; background: var(--accent-tint); color: var(--accent); display: grid; place-items:center; margin-top: 1px; }
.info-list .row b { font-weight:600; }

/* ============================================================
   FOOTER / FORM
   ============================================================ */
.site-footer { position: relative; overflow: hidden; background: var(--bg-2); padding-block: clamp(54px,7vw,88px) 40px; }
.site-footer .container { position: relative; z-index: 1; }
.foot-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: blur(40px) saturate(1.15); opacity: .12; transition: opacity .9s var(--ease); z-index: 0; pointer-events: none; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(26px,4vw,60px); }
.foot-grid h4 { font-family: var(--font); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-3); margin-bottom: 16px; font-weight: 600; }
.foot-grid a, .foot-grid li { color: var(--ink-2); font-size: 16px; line-height: 2; }
.foot-grid a:hover { color: var(--accent); }
.foot-grid a.btn { color: #fff; }
.foot-grid a.btn:hover { color: #fff; }
.foot-social { display: flex; gap: 12px; margin-top: 14px; }
.foot-social a { width: 46px; height: 46px; border-radius: 50%; background: var(--surface); box-shadow: var(--sh-1); display: grid; place-items: center; color: var(--ink); transition: transform .2s var(--ease), color .2s, box-shadow .2s; }
.foot-social a:hover { transform: translateY(-2px); color: var(--accent); box-shadow: var(--sh-2); }
.foot-social svg { width: 22px; height: 22px; }
.foot-maker { display: flex; flex-direction: column; gap: 8px; margin-top: 26px; align-items: flex-start; }
.foot-maker .foot-maker-l { font-family: var(--font); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.foot-maker img { width: 150px; height: auto; opacity: .92; transition: opacity .2s; }
.foot-maker:hover img { opacity: 1; }
.foot-brand { display: inline-block; margin-bottom: 18px; }
.foot-brand img { width: 230px; max-width: 70%; height: auto; display: block; }
.foot-social a.tg:hover { color: #fff; background: #2AABEE; }
.foot-social a.vb:hover { color: #fff; background: #7360F2; }
.foot-social a.wa:hover { color: #fff; background: #25D366; }
.foot-site-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-weight: 600; color: var(--accent); }
.foot-site-link:hover { color: var(--accent-700); }
.foot-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-legal a { font-size: 14px; }

/* ---------- Legal / prose ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(24px, 3vw, 34px); margin-top: 44px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--ink-2); font-size: 17px; line-height: 1.65; margin-top: 14px; }
.prose ul { margin: 8px 0 0; padding-left: 22px; }
.prose li { margin-top: 8px; }
.prose a { color: var(--accent); font-weight: 600; }
.lead-legal { font-size: 19px; color: var(--ink-2); margin-top: 16px; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px,2vw,20px); }
.stat-card { background: var(--surface); border-radius: var(--r); padding: 26px 22px; box-shadow: var(--sh-1); text-align: center; }
.stat-card .n { font-family: var(--serif); font-weight: 600; font-size: clamp(30px,4vw,44px); color: var(--accent); line-height: 1; }
.stat-card .l { font-family: var(--font); font-size: 14px; color: var(--ink-2); margin-top: 8px; }
.about-quote { font-family: var(--serif); font-style: italic; font-size: clamp(20px,2.4vw,26px); line-height: 1.5; color: var(--ink); background: var(--accent-tint); border-radius: var(--r); padding: clamp(24px,3vw,38px); margin: 32px 0; border-left: 4px solid var(--accent); }
.about-quote span { display: block; font-family: var(--font); font-style: normal; font-size: 15px; font-weight: 600; color: var(--accent-700); margin-top: 14px; }
@media (max-width: 620px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }

/* Director feature + team gallery (about page) */
.director-block { display: grid; grid-template-columns: 300px 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; margin-top: clamp(36px, 5vw, 56px); background: var(--surface); border-radius: var(--r-lg); padding: clamp(20px, 2.5vw, 30px); box-shadow: var(--sh-1); }
.director-photo { border-radius: var(--r); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--sh-1); }
.director-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.director-text .eyebrow { margin-bottom: 8px; }
.director-text h2 { font-size: clamp(28px, 3.4vw, 40px); }
.director-text p { margin-top: 14px; color: var(--ink-2); font-size: 17px; line-height: 1.6; }
.team-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 24px); margin: clamp(30px, 4vw, 46px) 0; }
.team-gallery figure { margin: 0; border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-1); }
.team-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 700px) { .director-block { grid-template-columns: 1fr; } .director-photo { max-width: 280px; } .team-gallery { grid-template-columns: 1fr; } }

/* ---------- Delivery page ---------- */
.deliver-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px,2vw,24px); }
.deliver-item { background: var(--surface); border-radius: var(--r); padding: 30px 28px; box-shadow: var(--sh-1); }
.deliver-item h3 { font-size: 20px; }
.deliver-item p { margin-top: 9px; color: var(--ink-2); font-size: 16px; }
.deliver-note { margin-top: 30px; text-align: center; font-size: 16px; }
.ship-cards { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px,2.5vw,28px); }
.ship-card { background: var(--surface); border-radius: var(--r-lg); padding: clamp(26px,3vw,40px); box-shadow: var(--sh-1); display: flex; flex-direction: column; gap: 16px; }
.carrier { display: inline-flex; align-items: center; gap: 13px; }
.carrier-logo { width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center; flex: none; font-family: var(--font); font-weight: 800; color: #fff; box-shadow: 0 4px 12px rgba(0,0,0,.12); }
.carrier-logo.np { background: #DA291C; }
.carrier-logo.up { background: #FFCC00; color: #1a1a1a; }
.carrier-logo svg { width: 32px; height: 32px; }
.carrier-name { font-family: var(--serif); font-size: 23px; font-weight: 600; }
.carrier-name span { display: block; font-family: var(--font); font-size: 13px; font-weight: 500; color: var(--ink-3); margin-top: 2px; }
.ship-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.ship-card li { display: flex; gap: 11px; align-items: flex-start; font-size: 16px; color: var(--ink-2); }
.ship-card li .ck { width: 24px; height: 24px; flex: none; border-radius: 50%; background: var(--accent-tint); color: var(--accent); display: grid; place-items: center; margin-top: 1px; }

.pay-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.pay-chip { display: inline-flex; align-items: center; gap: 12px; background: var(--surface); border-radius: var(--r); padding: 18px 22px; box-shadow: var(--sh-1); min-width: 220px; }
.pay-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-tint); color: var(--accent); display: grid; place-items: center; flex: none; }
.pay-ic svg { width: 24px; height: 24px; }
.pay-chip .t { font-weight: 600; font-size: 16px; }
.pay-chip .d { font-size: 13.5px; color: var(--ink-3); }
.pay-cards { display: inline-flex; gap: 8px; align-items: center; }
.card-badge { height: 30px; padding: 0 10px; border-radius: 7px; display: grid; place-items: center; font-family: var(--font); font-weight: 700; font-size: 13px; color: #fff; letter-spacing: .02em; }
.card-badge.visa { background: #1a1f71; }
.card-badge.mc { background: #222; position: relative; padding-left: 34px; }
.card-badge.mc::before { content:""; position:absolute; left:8px; width:16px; height:16px; border-radius:50%; background:#eb001b; }
.card-badge.mc::after { content:""; position:absolute; left:16px; width:16px; height:16px; border-radius:50%; background:#f79e1b; mix-blend-mode:multiply; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px,2vw,22px); counter-reset: step; }
.step { background: var(--surface); border-radius: var(--r); padding: 28px 24px; box-shadow: var(--sh-1); position: relative; }
.step .num { width: 38px; height: 38px; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--serif); font-weight: 600; display: grid; place-items: center; margin-bottom: 16px; font-size: 18px; }
.step h3 { font-size: 18px; }
.step p { margin-top: 8px; color: var(--ink-2); font-size: 15px; }

/* ---------- Contacts page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(20px,3vw,48px); align-items: start; }
.contact-card { background: var(--surface); border-radius: var(--r-lg); padding: clamp(24px,3vw,40px); box-shadow: var(--sh-1); }
.contact-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--hair-soft); align-items: flex-start; }
.contact-row:last-child { border-bottom: none; }
.contact-row .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-tint); color: var(--accent); display: grid; place-items: center; flex: none; }
.contact-row .ic svg { width: 22px; height: 22px; }
.contact-row .k { font-size: 13px; color: var(--ink-3); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.contact-row .v { font-size: 19px; font-weight: 600; margin-top: 3px; }
.contact-row .v a { color: var(--ink); }
.contact-row .v a:hover { color: var(--accent); }
.contact-row .v small { display: block; font-size: 14px; font-weight: 500; color: var(--ink-3); margin-top: 2px; }
.req-list { display: grid; gap: 12px; }
.req-list .req { display: flex; justify-content: space-between; gap: 16px; font-size: 16px; padding: 10px 0; border-bottom: 1px solid var(--hair-soft); }
.req-list .req b { font-weight: 600; text-align: right; }
.msg-pill { display: inline-flex; align-items: center; padding: 9px 16px; border-radius: var(--r-pill); font-family: var(--font); font-weight: 600; font-size: 14px; color: #fff; transition: transform .2s var(--ease), filter .2s; }
.msg-pill:hover { transform: translateY(-2px); filter: brightness(1.06); }
.msg-pill.tg { background: #2AABEE; }
.msg-pill.vb { background: #7360F2; }
.msg-pill.wa { background: #25D366; }
.foot-grid ul { list-style:none; padding:0; margin:0; }
.foot-phones a { display:block; font-size: 20px; font-weight: 600; color: var(--ink); }
.foot-bottom { position: relative; overflow: hidden; margin-top: 64px; padding: 22px 28px; background: rgba(255,255,255,.7); border-radius: var(--r); box-shadow: var(--sh-1); display:flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; color: var(--ink-2); font-size: 14px; }
.foot-bottom > * { position: relative; z-index: 1; }

.form-card { background: var(--surface); border-radius: var(--r-lg); padding: clamp(26px,3vw,42px); box-shadow: var(--sh-1); }
.field { margin-bottom: 16px; }
.field label { display:block; font-size: 14px; font-weight: 600; color: var(--ink-2); margin-bottom: 8px; }
.field input, .field select {
  width: 100%; min-height: 54px; padding: 0 18px; font-size: 17px; font-family: inherit;
  border-radius: var(--r-sm); border: 1.5px solid var(--hair); background: var(--surface); color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-tint); }
.seg { display: flex; gap: 9px; flex-wrap: wrap; }
.seg label { flex: 1; min-width: 120px; margin: 0; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg .opt { display: flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 14px; border-radius: var(--r-sm); border: 1.5px solid var(--hair); font-weight: 600; font-size: 16px; color: var(--ink-2); transition: all .2s; text-align: center; }
.seg input:checked + .opt { border-color: var(--accent); background: var(--accent-tint); color: var(--accent-700); }
.seg .opt:hover { border-color: var(--accent-soft); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
/* автодоповнення (місто / відділення Нової Пошти) */
.ac-wrap { position: relative; }
.ac-list { position: absolute; top: 100%; left: 0; right: 0; z-index: 30; background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r-sm); margin-top: 6px; max-height: 244px; overflow: auto; box-shadow: var(--sh-2); display: none; }
.ac-item { padding: 11px 15px; font-size: 15px; cursor: pointer; border-bottom: 1px solid var(--hair-soft); font-family: var(--font); }
.ac-item:last-child { border-bottom: none; }
.ac-item:hover { background: var(--accent-tint); color: var(--accent-700); }

/* ============================================================
   PRODUCT PAGE — editorial band
   ============================================================ */
.crumbs { font-size: 15px; color: var(--ink-3); padding-top: 24px; display:flex; gap:9px; align-items:center; font-family: var(--font); }
.crumbs a:hover { color: var(--accent); }
.p-hero { padding-block: clamp(20px,3vw,40px) clamp(44px,6vw,84px); }
.p-band { position: relative; border-radius: var(--r-lg); overflow: hidden; background: linear-gradient(165deg, #FDFCF8, var(--bg-2)); box-shadow: var(--sh-1); display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; align-items: stretch; }
.p-band .p-stage { position: relative; min-height: 400px; display:grid; place-items:center; overflow: hidden; }
.p-band .p-plant { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center center; filter: blur(5px) saturate(.92) brightness(1.04); opacity:.5; transform: scale(1.08); }
.p-band .p-plant-wash { position:absolute; inset:0; background: linear-gradient(180deg, rgba(253,252,248,.55), rgba(244,240,229,.7)); }
.p-band .p-bucket { position: relative; z-index: 2; width: 66%; filter: drop-shadow(0 26px 30px rgba(40,30,12,.32)); }
/* Вертикальна ChatGPT-сцена у лівій частині картки */
.p-stage-card { padding: 0; }
.p-stage-card .p-card { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; }
@media (max-width: 1000px){ .p-band .p-stage.p-stage-card { min-height: 340px; } }
.buy-fields { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.buy-field { flex: 1; min-width: 150px; }
.buy-fields .buy-field:first-child { flex: 1.7 1 240px; }
.buy-fields .buy-field:last-child { flex: 0 1 auto; }
.buy-label { display: block; font-family: var(--font); font-size: 13px; font-weight: 600; letter-spacing: .02em; color: var(--ink-2); margin-bottom: 9px; }
.qty-stepper { display: inline-flex; align-items: center; gap: 4px; background: var(--bg-2); border-radius: var(--r-pill); padding: 6px; }
.qty-stepper button { width: 48px; height: 48px; border-radius: 50%; border: none; background: var(--surface); font-size: 22px; font-weight: 600; color: var(--ink); display: grid; place-items: center; box-shadow: 0 1px 3px rgba(0,0,0,.08); transition: color .2s, transform .15s; }
.qty-stepper button:hover { color: var(--accent); transform: translateY(-1px); }
.qty-stepper .qv { min-width: 44px; text-align: center; font-family: var(--serif); font-weight: 600; font-size: 21px; }
.p-band .p-info { padding: clamp(30px,3.5vw,56px); display:flex; flex-direction:column; justify-content:center; }
.p-line { font-family: var(--font); font-size: 13px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color: var(--accent); }
.p-title { font-size: clamp(36px, 5vw, 64px); margin-top: 12px; line-height: 1.04; }
.p-for { margin-top: 18px; font-size: clamp(17px,1.9vw,20px); color: var(--ink-2); line-height: 1.55; }
.p-npk { display:inline-flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.npk-cell { text-align:center; padding: 13px 17px; border-radius: var(--r-sm); background: rgba(255,255,255,.7); box-shadow: inset 0 0 0 1px var(--hair-soft); }
.npk-cell .v { font-family: var(--serif); font-size: 27px; font-weight: 600; color: var(--accent-700); font-variant-numeric: tabular-nums; }
.npk-cell .k { font-family: var(--font); font-size: 12px; color: var(--ink-2); font-weight: 600; }
.buy { margin-top: 28px; padding: 26px; border-radius: var(--r); box-shadow: var(--sh-1); background: var(--surface); }
.size-seg { display:flex; gap: 9px; margin-bottom: 18px; }
.size-seg button { flex:1; min-height: 62px; border-radius: var(--r-sm); border: 1.5px solid var(--hair); background:var(--surface); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:2px; transition: all .2s; font-family: var(--font); }
.size-seg button .w { font-weight: 700; font-size: 18px; white-space: nowrap; }
.size-seg button .pr { font-size: 14px; color: var(--ink-3); white-space: nowrap; }
.size-seg button.active { border-color: var(--accent); background: var(--accent-tint); }
.size-seg button.active .pr { color: var(--accent-700); }
.buy-row { display:flex; align-items:center; gap: 16px; }
.buy-row .bp { font-family: var(--serif); font-size: 34px; font-weight: 600; white-space: nowrap; }
.bp-wrap { display: flex; flex-direction: column; gap: 4px; }
.bp-disc { display: flex; align-items: center; gap: 10px; }
.bp-was { font-family: var(--font); font-size: 17px; color: var(--ink-3); text-decoration: line-through; text-decoration-thickness: 2px; }
.bp-badge { background: var(--accent); color: #fff; font-family: var(--font); font-weight: 600; font-size: 13px; padding: 4px 11px; border-radius: var(--r-pill); }
.buy-row .bp .cur { font-family: var(--font); font-size: 16px; color: var(--ink-3); font-weight:600; }

.benefit-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,24px); }
.spec-cols { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,3.5vw,52px); }
.spec-table { width:100%; border-collapse: collapse; }
.spec-table th, .spec-table td { text-align:left; padding: 16px 0; border-bottom: 1px solid var(--hair-soft); font-size: 17px; vertical-align: top; font-family: var(--font); }
.spec-table th { color: var(--ink-2); font-weight: 500; width: 52%; }
.spec-table td { font-weight: 600; text-align: right; }
.chip-row { display:flex; flex-wrap:wrap; gap: 9px; margin-top: 16px; }
.chip { padding: 9px 15px; border-radius: var(--r-pill); background: var(--surface); box-shadow: inset 0 0 0 1px var(--hair-soft); font-family: var(--font); font-weight: 600; font-size: 15px; }

/* ============================================================
   CART
   ============================================================ */
.cart-wrap { display:grid; grid-template-columns: 1.5fr 1fr; gap: clamp(24px,3vw,46px); align-items:start; }
.cart-list { display:flex; flex-direction:column; gap: 14px; }
.citem { display:grid; grid-template-columns: 96px 1fr auto; gap: 20px; align-items:center; background:var(--surface); border-radius: var(--r); padding: 18px; box-shadow: var(--sh-1); }
.citem .cimg { width: 96px; height: 96px; border-radius: var(--r-sm); background: linear-gradient(180deg,#FDFCF8,var(--bg-2)); display:grid; place-items:center; overflow:hidden; }
.citem .cimg img { width: 76%; filter: drop-shadow(0 6px 8px rgba(40,30,12,.18)); }
.citem .cn { font-family: var(--serif); font-weight: 600; font-size: 20px; }
.citem .cmeta { color: var(--ink-3); font-size: 14px; margin-top: 4px; font-family: var(--font); }
.citem .cright { display:flex; flex-direction:column; align-items:flex-end; gap: 11px; }
.qty { display:flex; align-items:center; gap: 4px; background: var(--bg-2); border-radius: var(--r-pill); padding: 4px; }
.qty button { width: 36px; height: 36px; border-radius: 50%; border:none; background: var(--surface); font-size: 20px; font-weight: 600; color: var(--ink); display:grid; place-items:center; box-shadow: 0 1px 3px rgba(0,0,0,.08); transition: color .2s; }
.qty button:hover { color: var(--accent); }
.qty .v { min-width: 30px; text-align:center; font-weight: 700; }
.citem .cprice { font-family: var(--serif); font-weight: 600; font-size: 20px; white-space: nowrap; }
.cremove { background:none; border:none; color: var(--ink-3); font-size: 14px; padding:0; font-family: var(--font); margin-top: 4px; }
.cremove:hover { color: var(--clay); }

.summary { background: var(--surface); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--sh-1); position: sticky; top: 92px; }
.summary h3 { font-size: 26px; margin-bottom: 20px; }
.sum-row { display:flex; justify-content:space-between; padding: 11px 0; font-size: 17px; font-family: var(--font); }
.sum-row.disc { color: var(--accent); font-weight: 600; }
.sum-row.total { border-top: 1px solid var(--hair); margin-top: 6px; padding-top: 18px; font-family: var(--serif); font-size: 26px; font-weight: 600; }
.saved-banner { background: var(--accent-tint); color: var(--accent-700); border-radius: var(--r-sm); padding: 15px 17px; font-weight: 600; font-size: 16px; margin: 16px 0; display:flex; gap:10px; align-items:center; font-family: var(--font); }
.mix-progress { margin: 20px 0; }
.mix-progress .track { display:flex; gap: 6px; }
.mix-progress .seg-p { flex:1; height: 9px; border-radius: 5px; background: var(--bg-2); transition: background .4s var(--ease); }
.mix-progress .seg-p.on { background: var(--accent); }
.mix-progress .hint { font-size: 14px; color: var(--ink-2); margin-top: 11px; font-family: var(--font); }
.cart-empty { text-align:center; padding: 90px 20px; }
.cart-empty .ic { width: 88px; height: 88px; border-radius: 50%; background: var(--bg-2); display:grid; place-items:center; margin: 0 auto 26px; }

/* toast */
.toast { position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 30px); background: var(--ink); color:#F5F1E6; padding: 16px 24px; border-radius: var(--r-pill); font-weight: 600; font-size: 16px; box-shadow: var(--sh-2); opacity: 0; transition: all .4s var(--ease); z-index: 100; display:flex; align-items:center; gap:10px; pointer-events:none; font-family: var(--font); max-width: 92vw; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .cat-grid, .feat-grid, .tiers, .deliver-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-grid, .benefit-grid { grid-template-columns: 1fr; }
  .hero-grid, .split, .cart-wrap, .spec-cols { grid-template-columns: 1fr; }
  .p-band { grid-template-columns: 1fr; }
  .p-band .p-stage { min-height: 360px; }
  .hero-stage { max-width: 440px; margin: 0 auto; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hdr-nav, .hdr-phone { display: none; }
  .summary { position: static; }
}
@media (max-width: 620px) {
  body { font-size: 17px; }
  .cat-grid, .feat-grid, .foot-grid, .rev-grid, .benefit-grid, .deliver-grid { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: repeat(2,1fr); }
  .field-row { grid-template-columns: 1fr; }
  .citem { grid-template-columns: 76px 1fr; }
  .citem .cright { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items:center; }
  .hero-cta .btn { flex: 1; }
}

/* ============================================================
   MOBILE POLISH (≤640) — щільні відступи, без порожнеч
   ============================================================ */
@media (max-width: 640px) {
  .section { padding-block: 46px; }
  .section-head { margin-bottom: 26px; }
  .section-head h2 { font-size: 28px; }
  .section-head p { font-size: 16px; margin-top: 12px; }

  /* HERO — прибрати порожнечу між текстом і каруселлю */
  .hero { padding-top: 16px; padding-bottom: 30px; }
  .hero h1 { font-size: 34px; }
  .hero-lead { font-size: 16px; margin-top: 14px; }
  .hero-carousel { margin-top: 4px; }
  .cs-stage { height: 248px; }
  .cs-stage::after { top: 80%; }
  .cs-item img { width: 150px; }
  .cs-info { min-height: 116px; margin-top: 0; }
  .cs-name { font-size: 23px; }
  .cs-for { font-size: 15px; margin-top: 6px; }
  .cs-meta { margin-top: 10px; }
  .cs-arrow { width: 44px; height: 44px; }
  .cs-arrow.prev { left: 0; }
  .cs-arrow.next { right: 0; }
  .hero-cta { margin-top: 20px !important; gap: 10px; }
  .hero-cta .btn { width: 100%; flex: 1 1 100%; }

  /* MIX / калькулятор */
  .mix { padding: 26px 18px; }
  .mix h2 { font-size: 25px; }
  .mix p.sub { font-size: 16px; margin-top: 12px; }
  .disc-slider { margin-top: 22px; }
  .ds-qnum, .ds-rate { font-size: 42px; }
  .ds-example { margin-top: 18px; font-size: 16px; }
  .disc-matrix-embed { margin-top: 22px !important; }
  .disc-matrix { gap: 7px; }
  .dm-bar-wrap { height: 116px; }
  .dm-pct { font-size: 17px; }
  .dm-cap { font-size: 10px; }
  .dm-pile img { width: 15px; margin-left: -5px; }
  .disc-panel { padding: 22px 14px; }

  /* FEAT / REVIEWS */
  .feat { padding: 22px 20px; }
  .feat h3 { font-size: 19px; }
  .review { padding: 26px; }
  .review p { font-size: 18px; }

  /* PRODUCT page */
  .p-title { font-size: 32px; }
  .p-band .p-stage.p-stage-card { min-height: 300px; }

  /* FOOTER — щільніше */
  .site-footer { padding-block: 44px 26px; }
  .foot-grid { gap: 30px; }
  .foot-phones a { font-size: 19px; }
  .foot-bottom { margin-top: 34px; padding: 18px 20px; }
}
@media (max-width: 400px) {
  .hero h1 { font-size: 30px; }
  .section-head h2, .mix h2 { font-size: 23px; }
  .cs-item img { width: 134px; }
}

/* ============================================================
   FIX зрізання справа на телефоні — згортаємо всі багатоколонкові
   сітки, які раніше не згорталися (контакти, доставка, картка товару)
   ============================================================ */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .ship-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .req-list .req { font-size: 15px; }
}
@media (max-width: 640px) {
  .p-info { padding: 26px 20px; }
  .p-npk { gap: 7px; }
  .npk-cell { padding: 10px 12px; }
  .npk-cell .v { font-size: 22px; }
  .buy { padding: 20px; }
  .buy-row { flex-wrap: wrap; gap: 12px; }
  .buy-row .btn, .buy .btn { width: 100%; }
  .bp-wrap { width: 100%; }
  .size-seg button { min-height: 56px; }
  .steps { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .contact-card { padding: 22px 18px; }
  .contact-row .v { font-size: 17px; word-break: break-word; }
}

/* ============================================================
   v3 — рейтинг, тригери довіри, 1-клік, паралакс, липкий кошик,
        калькулятор площі, квіз
   ============================================================ */

/* ---- Зірочки + рейтинг у картці товару ---- */
.stars { color: var(--gold); letter-spacing: 2px; }
.p-rating { display: inline-flex; align-items: center; gap: 9px; margin-top: 14px; font-family: var(--font); font-size: 15px; color: var(--ink-2); }
.p-rating .stars { font-size: 17px; text-shadow: 0 0 8px rgba(199,154,58,.4); }
.p-rating b { color: var(--ink); font-weight: 700; }
.p-rating span { color: var(--ink-3); }
.p-rating:hover b, .p-rating:hover span { color: var(--accent); }
.rev-aggregate { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; font-family: var(--font); font-size: 17px; color: var(--ink-2); }
.rev-aggregate .stars { font-size: 20px; }
.rev-aggregate b { color: var(--ink); font-weight: 700; }

/* ---- Прогрес знижки в картці товару ---- */
.disc-progress { margin: 18px 0 4px; }

/* ---- Тригери довіри біля кнопки замовлення ---- */
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--hair-soft); }
.trust { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font); font-size: 13px; font-weight: 600; color: var(--ink-2); background: var(--bg-2); padding: 8px 13px; border-radius: var(--r-pill); box-shadow: inset 0 0 0 1px var(--hair-soft); }
.trust b { font-family: var(--serif); font-size: 16px; color: var(--accent-700); font-weight: 700; }
.trust span { white-space: nowrap; }
.trust .ti { width: 22px; height: 22px; border-radius: 6px; flex: none; display: grid; place-items: center; }
.trust .ti svg { width: 14px; height: 14px; }
.trust .ti.np { background: #DA291C; }
.trust .ti.pay { background: var(--accent); }

/* ---- Замовлення в 1 клік ---- */
#one-click-btn { transition: background .2s, color .2s; }
.oc-wrap { margin-top: 14px; border-top: 1px dashed var(--hair); padding-top: 18px; animation: ocIn .3s var(--ease); }
@keyframes ocIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.oc-form .oc-title { font-family: var(--serif); font-size: 18px; font-weight: 600; margin-bottom: 14px; }
.oc-form .field { margin-bottom: 12px; }

/* ---- Герой товару: горизонтальний банер сцени + Г-панель поверх ---- */
.p-banner { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1); display: flex; align-items: stretch; min-height: clamp(470px, 50vw, 600px); background: var(--bg-2); }
.p-overlay { position: relative; z-index: 2; flex: 1 1 58%; display: flex; align-items: center; padding: clamp(22px, 3vw, 46px); }
.p-figure { position: relative; flex: 0 0 42%; overflow: hidden; background: linear-gradient(165deg, #FDFCF8, var(--bg-2)); }
.p-figure > picture { position: absolute; inset: 0; display: block; overflow: hidden; }
.p-scene { position: absolute; inset: 0; width: 100%; height: calc(100% + 80px); top: -40px; object-fit: cover; object-position: center; will-change: transform; }
.p-banner .p-info { padding: 0; width: 100%; max-width: 560px; }
.p-banner .p-title { margin-top: 6px; font-size: clamp(28px, 3.2vw, 44px); }
.p-banner .p-rating { margin-top: 10px; }
.p-banner .p-for { margin-top: 12px; font-size: clamp(15px, 1.5vw, 17px); }
.p-banner .p-npk { margin-top: 16px; gap: 7px; }
.p-banner .npk-cell { padding: 8px 12px; }
.p-banner .npk-cell .v { font-size: 21px; }
.p-banner .buy { margin-top: 18px; padding: 20px 22px; }
.p-banner .buy-fields { margin-bottom: 14px; gap: 14px; }
.p-banner .size-seg { margin-bottom: 0; }
.p-banner .size-seg button { min-height: 54px; }
.p-banner #buy-note { margin-top: 10px; }
.p-banner .disc-progress { margin: 12px 0 2px; }
.p-banner .trust-row { margin-top: 12px; padding-top: 12px; gap: 8px; }
@media (max-width: 860px) {
  .p-banner { display: flex; flex-direction: column-reverse; min-height: 0; }
  .p-figure { flex: none; height: clamp(240px, 58vw, 360px); }
  .p-overlay { flex: none; padding: 20px 16px 4px; }
  .p-banner .p-info { max-width: none; }
}

/* ---- Липка панель кошика (мобільний) ---- */
.sticky-cart { display: none; }
@media (max-width: 760px) {
  .sticky-cart {
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 180;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    background: var(--surface); color: var(--ink); border-radius: var(--r-pill);
    padding: 11px 12px 11px 22px; box-shadow: 0 10px 30px rgba(40,30,12,.22), inset 0 0 0 1px var(--hair-soft);
    transform: translateY(140%); opacity: 0; transition: transform .35s var(--ease), opacity .35s var(--ease);
    pointer-events: none;
  }
  .sticky-cart.show { transform: none; opacity: 1; pointer-events: auto; }
  .sc-left { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
  .sc-sum { font-family: var(--serif); font-weight: 600; font-size: 20px; }
  .sc-hint { font-family: var(--font); font-size: 12.5px; color: var(--accent-700); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .sc-btn { flex: none; background: var(--accent); color: #fff; font-family: var(--font); font-weight: 700; font-size: 15px; padding: 13px 20px; border-radius: var(--r-pill); }
  body.sc-on { padding-bottom: 76px; }
}

/* ---- Калькулятор площі ---- */
.ac-calc { background: linear-gradient(155deg, #E9F2E6 0%, #F4F0E5 100%); border-radius: var(--r-lg); padding: clamp(28px,4vw,52px); box-shadow: inset 0 0 0 1px var(--hair-soft); }
.ac-head h3 { font-family: var(--serif); font-size: clamp(26px,3.4vw,40px); font-weight: 600; margin-top: 8px; }
.ac-head .ac-sub { color: var(--ink-2); margin-top: 12px; font-size: 17px; max-width: 52ch; }
.ac-controls { display: flex; gap: 16px; margin-top: 26px; flex-wrap: wrap; }
.ac-fld { flex: 1; min-width: 160px; display: flex; flex-direction: column; gap: 8px; font-family: var(--font); font-size: 13px; font-weight: 600; color: var(--ink-2); }
.ac-fld input, .ac-fld select { min-height: 56px; padding: 0 18px; font-size: 19px; font-family: inherit; font-weight: 600; color: var(--ink); border-radius: var(--r-sm); border: 1.5px solid var(--hair); background: var(--surface); transition: border-color .2s, box-shadow .2s; }
.ac-fld input:focus, .ac-fld select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-tint); }
.ac-result { display: flex; align-items: center; gap: clamp(16px,3vw,34px); flex-wrap: wrap; margin: 26px 0; }
.ac-buckets { display: flex; align-items: baseline; gap: 10px; }
.ac-num { font-family: var(--serif); font-size: clamp(46px,7vw,76px); font-weight: 600; line-height: 1; color: var(--accent); }
.ac-num-l { font-family: var(--font); font-size: 17px; color: var(--ink-2); font-weight: 600; }
.ac-price { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ac-was { font-family: var(--font); font-size: 18px; color: var(--ink-3); text-decoration: line-through; text-decoration-thickness: 2px; }
.ac-now { font-family: var(--serif); font-size: clamp(28px,3.4vw,38px); font-weight: 600; color: var(--ink); }
.ac-badge { background: var(--accent); color: #fff; font-family: var(--font); font-weight: 700; font-size: 14px; padding: 6px 13px; border-radius: var(--r-pill); }
.ac-note { width: 100%; font-family: var(--font); font-size: 14px; color: var(--ink-3); margin: 0; }

/* ---- Квіз ---- */
.quiz { background: var(--surface); border-radius: var(--r-lg); padding: clamp(28px,4vw,52px); box-shadow: var(--sh-1); }
.quiz-head h3 { font-family: var(--serif); font-size: clamp(26px,3.4vw,40px); font-weight: 600; margin-top: 8px; }
.quiz-opts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; }
.quiz-opt { display: flex; align-items: center; gap: 11px; min-height: 64px; padding: 0 18px; text-align: left; border-radius: var(--r-sm); border: 1.5px solid var(--hair); background: var(--bg); font-family: var(--font); font-size: 16px; font-weight: 600; color: var(--ink); transition: border-color .2s, background .2s, transform .15s; }
.quiz-opt:hover { border-color: var(--accent-soft); transform: translateY(-2px); }
.quiz-opt.sel { border-color: var(--accent); background: var(--accent-tint); color: var(--accent-700); }
.qz-emoji { font-size: 24px; line-height: 1; }
.quiz-result { display: none; margin-top: 24px; }
.quiz-result.show { display: block; animation: ocIn .35s var(--ease); }
.qz-card { display: flex; gap: clamp(18px,3vw,30px); align-items: center; background: var(--bg-2); border-radius: var(--r); padding: clamp(18px,2.5vw,28px); box-shadow: inset 0 0 0 1px var(--hair-soft); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.qz-card:hover { transform: translateY(-3px); box-shadow: var(--sh-1); }
.qz-card > img { width: clamp(90px,14vw,140px); height: auto; flex: none; filter: drop-shadow(0 12px 16px rgba(40,30,12,.2)); }
.qz-info { display: flex; flex-direction: column; gap: 6px; }
.qz-rec { font-family: var(--font); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.qz-name { font-family: var(--serif); font-size: clamp(22px,3vw,30px); font-weight: 600; }
.qz-for { color: var(--ink-2); font-size: 15px; margin: 0; }
.qz-meta { display: flex; align-items: center; gap: 10px; margin: 8px 0 4px; flex-wrap: wrap; }
.qz-price { font-family: var(--serif); font-size: 20px; font-weight: 600; }
.qz-info .btn { align-self: flex-start; margin-top: 6px; min-height: 46px; }
@media (max-width: 700px) {
  .quiz-opts { grid-template-columns: 1fr 1fr; }
  .qz-card { flex-direction: column; text-align: center; }
  .qz-card .qz-info { align-items: center; }
}
@media (max-width: 440px) {
  .quiz-opts { grid-template-columns: 1fr; }
  .ac-num { font-size: 52px; }
}
