/* components.css — layout & component styling for the redesign */

/* The `hidden` attribute must always win over component `display:` rules
   (class selectors have equal specificity and would otherwise override it). */
[hidden]{ display: none !important; }

.surface{ background: var(--surface); }

/* ── topbar ─────────────────────────────────────────────────────────────── */
.topbar{ background: var(--ink); color: var(--bg); font-size: 13px; }
.topbar-in{ display:flex; align-items:center; justify-content:space-between; height: 38px; }
.topbar span{ display:inline-flex; align-items:center; gap:7px; opacity:.88; }
.topbar-r{ display:flex; align-items:center; gap:14px; }
.topbar-r a{ display:inline-flex; align-items:center; gap:6px; font-weight:600; }
.topbar-sep{ width:1px; height:14px; background: currentColor; opacity:.25; }
@media (max-width: 860px){ .topbar{ display:none; } }

/* ── header ─────────────────────────────────────────────────────────────── */
.header{
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in oklch, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s, background .3s;
}
.header.scrolled{ border-color: var(--line); box-shadow: var(--shadow-sm); }
.header-in{ display:flex; align-items:center; gap: 28px; height: 74px; }

.logo{ display:flex; align-items:center; gap:11px; flex-shrink:0; }
.logo-img{ height:42px; width:auto; display:block; }
.footer .logo-img{ height:50px; }
@media (max-width:560px){ .logo-img{ height:34px; } }
.logo-mark{
  width:38px; height:38px; border-radius: calc(var(--radius-sm) * .8);
  background: var(--accent); color: var(--accent-ink);
  display:grid; place-items:center; box-shadow: var(--shadow-sm);
}
.logo-txt{ display:flex; flex-direction:column; line-height:1; }
.logo-txt b{ font-family: var(--font-display); font-weight:800; font-size: 19px; letter-spacing:-.02em; }
.logo-dot{ color: var(--accent); }
.logo-txt i{ font-family: var(--font-mono); font-style:normal; font-size: 9.5px; letter-spacing:.22em; color: var(--ink-faint); margin-top: 3px; }

.nav-desk{ display:flex; align-items:center; gap: 26px; margin-right:auto; }
.nav-desk a{ font-weight: 600; font-size: 15px; color: var(--ink-soft); position:relative; padding: 4px 0; white-space: nowrap; }
.nav-desk a:hover{ color: var(--ink); }
.nav-desk a::after{ content:""; position:absolute; left:0; right:100%; bottom:-2px; height:2px; background: var(--accent); transition: right .25s ease; }
.nav-desk a:hover::after{ right:0; }

.header-cta{ display:flex; align-items:center; gap: 12px; }
.header-phone{ display:flex; align-items:center; gap:8px; font-family: var(--font-display); font-weight:700; font-size:15px; }
.header-phone:hover{ color: var(--accent); }
.icon-btn{
  position:relative; width:44px; height:44px; border-radius: calc(var(--radius-sm) * .8);
  border:1px solid var(--line-2); background: var(--surface); color: var(--ink);
  display:grid; place-items:center; transition: background .2s, border-color .2s;
}
.icon-btn:hover{ background: var(--surface-2); border-color: var(--ink-faint); }
.cart-badge{
  position:absolute; top:-6px; right:-6px; min-width:20px; height:20px; padding:0 5px;
  border-radius:999px; background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-mono); font-size:11px; font-weight:700;
  display:grid; place-items:center;
}
.burger{ display:none; }
@media (max-width: 1080px){ .nav-desk{ display:none; } .header-phone b{ display:none; } }
@media (max-width: 760px){ .header-order{ display:none; } .burger{ display:grid; } }

/* ── mobile menu ────────────────────────────────────────────────────────── */
.scrim{ position:fixed; inset:0; background: rgba(8,9,12,.45); z-index: 90; backdrop-filter: blur(2px); opacity:0; visibility:hidden; pointer-events:none; transition: opacity .32s ease, visibility .32s ease; }
.scrim.show{ opacity:1; visibility:visible; pointer-events:auto; }
.mobile-menu{
  position: fixed; top:0; right:0; bottom:0; width: min(88vw, 380px); z-index: 100;
  background: var(--bg); transform: translateX(102%); transition: transform .32s cubic-bezier(.4,.8,.3,1);
  display:flex; flex-direction:column; box-shadow: var(--shadow-lg);
}
.mobile-menu.open{ transform: none; }
.mobile-menu-head{ display:flex; align-items:center; justify-content:space-between; height:74px; }
.mobile-nav{ display:flex; flex-direction:column; padding: 8px var(--gut); flex:1; }
.mobile-nav a{ display:flex; align-items:center; justify-content:space-between; padding:16px 0; font-family:var(--font-display); font-weight:700; font-size:22px; text-transform:uppercase; border-bottom:1px solid var(--line); color: var(--ink); }
.mobile-nav a svg{ color: var(--ink-faint); }
.mobile-menu-foot{ padding: var(--gut); display:flex; flex-direction:column; gap:10px; }

/* ── hero: split ────────────────────────────────────────────────────────── */
.hero{ overflow:hidden; }
.hero-h{ font-size: clamp(40px, 7vw, 92px); text-transform: uppercase; }
.hero-h .hl{ color: var(--accent); }
.hero-lead{ max-width: 30em; margin: 22px 0 30px; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:12px; }
.hero-points{ list-style:none; display:flex; flex-wrap:wrap; gap:18px; padding:0; margin: 28px 0 0; }
.hero-points li{ display:inline-flex; align-items:center; gap:8px; font-weight:600; color: var(--ink-soft); font-size:15px; }
.hero-points svg{ color: var(--accent); }

.hero-split-in{ display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px,5vw,72px); align-items:center; padding-block: clamp(40px, 6vw, 96px); }
.hero-media{ position:relative; }
.hero-photo{ width:100%; box-shadow: var(--shadow-md); }
.hero-float{
  position:absolute; left:-18px; bottom:34px; background: var(--ink); color: var(--bg);
  border-radius: var(--radius-sm); padding: 16px 20px; display:flex; align-items:center; gap:14px;
  box-shadow: var(--shadow-lg); max-width: 250px;
}
.hero-float-num{ font-family:var(--font-display); font-weight:800; font-size: 42px; line-height:.9; color: var(--accent); }
.hero-float-num small{ font-size:16px; }
.hero-float-lbl{ font-size:12px; line-height:1.35; opacity:.82; }

/* ── hero: image ────────────────────────────────────────────────────────── */
.hero-image{ position:relative; min-height: clamp(520px, 80vh, 760px); display:flex; align-items:center; }
.hero-image .hero-bg{ position:absolute; inset:0; border-radius:0; }
.hero-image-shade{ position:absolute; inset:0; background: linear-gradient(100deg, rgba(8,9,12,.86) 30%, rgba(8,9,12,.35) 75%); }
.hero-image-in{ position:relative; color:#fff; padding-block: 60px; }
.hero-image-in .kicker, .hero-image-in .hero-points li{ color: rgba(255,255,255,.82); }
.hero-image-in .hero-lead{ color: rgba(255,255,255,.82); }
.hero-image-in .hero-h .hl{ color: var(--accent); }
.hero-image-in .btn-ghost{ color:#fff; border-color: rgba(255,255,255,.4); }
.hero-image-in .btn-ghost:hover{ background: rgba(255,255,255,.1); border-color:#fff; }

/* ── hero: centered ─────────────────────────────────────────────────────── */
.hero-centered{ padding-top: clamp(40px,6vw,90px); text-align:center; }
.hero-centered-in{ max-width: 980px; margin:0 auto; display:flex; flex-direction:column; align-items:center; }
.hero-centered .hero-lead{ margin-inline:auto; }
.hero-centered .hero-actions, .hero-centered .hero-points{ justify-content:center; }
.hero-wide{ width:100%; margin-top: clamp(34px,5vw,64px); box-shadow: var(--shadow-md); }

/* ── stats ──────────────────────────────────────────────────────────────── */
.stats{ background: var(--ink); color: var(--bg); }
.stats-in{ display:grid; grid-template-columns: repeat(4,1fr); }
.stat{ padding: 30px 8px; text-align:center; border-left:1px solid rgba(255,255,255,.1); }
.stat:first-child{ border-left:none; }
.stat-v{ display:block; font-size: clamp(30px,4vw,48px); color: var(--accent); }
.stat-l{ font-size:13.5px; opacity:.78; margin-top:6px; display:block; }
@media (max-width: 620px){ .stats-in{ grid-template-columns: repeat(2,1fr); } .stat:nth-child(odd){ border-left:none; } .stat:nth-child(n+3){ border-top:1px solid rgba(255,255,255,.1); } }

/* ── section heads ──────────────────────────────────────────────────────── */
.sec-head{ display:flex; align-items:flex-end; justify-content:space-between; gap: 32px; margin-bottom: clamp(34px, 4vw, 56px); }
.sec-head .kicker{ margin-bottom: 16px; }
.sec-head-aside{ max-width: 30em; flex-shrink:0; width: 38%; }
@media (max-width: 820px){ .sec-head{ flex-direction:column; align-items:flex-start; gap:18px; } .sec-head-aside{ width:auto; } }

/* ── categories ─────────────────────────────────────────────────────────── */
.cat-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(14px,1.6vw,22px); }
.cat-card{ background: var(--surface); border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; transition: transform .2s, box-shadow .2s, border-color .2s; }
.cat-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.cat-img{ border-radius:0; background: var(--surface); }
.cat-img img{ object-fit: contain; }
/* category-page hero photo: show the (square) image in full, and hide it on mobile */
.cathero-media .ph-photo img{ object-fit: contain; }
@media (max-width: 820px){ .cathero-media{ display: none; } }
.cat-body{ padding: 18px 18px 20px; }
.cat-row{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.cat-name{ font-size: 21px; }
.cat-arrow{ width:34px; height:34px; border-radius:999px; background: var(--surface-2); display:grid; place-items:center; color: var(--ink-soft); transition: background .2s, color .2s, transform .2s; flex-shrink:0; }
.cat-card:hover .cat-arrow{ background: var(--accent); color: var(--accent-ink); transform: translateX(2px); }
.cat-meta{ display:flex; align-items:center; gap:10px; margin-top:14px; }
.cat-hint{ font-size:13px; color: var(--ink-faint); }
@media (max-width: 820px){ .cat-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .cat-grid{ grid-template-columns: 1fr; } }

/* ── products ───────────────────────────────────────────────────────────── */
.filters{ display:flex; flex-wrap:wrap; gap:8px; }
.filter{ height:40px; padding:0 16px; border-radius:999px; border:1px solid var(--line-2); background: var(--surface); color: var(--ink-soft); font-weight:600; font-size:14px; transition: all .18s; }
.filter:hover{ border-color: var(--ink-faint); color: var(--ink); }
.filter.active{ background: var(--ink); border-color: var(--ink); color: var(--bg); }

.prod-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(14px,1.6vw,24px); }
.prod{ background: var(--bg); border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; display:flex; flex-direction:column; transition: transform .2s, box-shadow .2s, border-color .2s; }
.prod:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.prod-media{ position:relative; }
.prod-img{ border-radius:0; }
.prod-badge{ position:absolute; top:12px; left:12px; font-family:var(--font-mono); font-size:11px; font-weight:700; letter-spacing:.04em; padding:5px 9px; border-radius:7px; text-transform:uppercase; }
.badge-hit{ background: var(--ink); color: var(--bg); }
.badge-sale{ background: var(--accent); color: var(--accent-ink); }
.prod-quick{ position:absolute; left:12px; right:12px; bottom:12px; height:44px; border:none; border-radius: var(--radius-sm); background: var(--ink); color: var(--bg); font-family:var(--font-display); font-weight:700; text-transform:uppercase; font-size:13px; letter-spacing:.03em; display:flex; align-items:center; justify-content:center; gap:8px; opacity:0; transform: translateY(8px); transition: opacity .2s, transform .2s, background .2s; }
.prod:hover .prod-quick{ opacity:1; transform:none; }
.prod-quick:hover{ background: var(--accent); color: var(--accent-ink); }
.prod-body{ padding: 16px 16px 18px; display:flex; flex-direction:column; flex:1; }
.prod-tag{ font-family:var(--font-mono); font-size:11px; letter-spacing:.05em; color: var(--ink-faint); text-transform:uppercase; }
.prod-name{ font-size:20px; margin:7px 0 12px; }
.prod-spec{ display:flex; align-items:center; justify-content:space-between; font-size:13.5px; color: var(--ink-soft); margin-bottom:16px; }
.prod-spec > span{ display:inline-flex; align-items:center; gap:6px; }
.prod-rate{ color: var(--ink-soft); }
.prod-rate svg{ color: var(--accent); }
.prod-rate i{ color: var(--ink-faint); font-style:normal; }
.prod-foot{ display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-top:auto; }
.prod-price{ display:flex; flex-direction:column; }
.prod-old{ font-size:13px; color: var(--ink-faint); text-decoration: line-through; }
.prod-now{ font-family:var(--font-display); font-weight:800; font-size:26px; }
.prod-now small{ font-size:14px; color: var(--ink-soft); }
.prod-more{ display:flex; justify-content:center; margin-top: clamp(28px,3vw,44px); }
@media (max-width: 880px){ .prod-grid{ grid-template-columns: repeat(2,1fr); } .prod-quick{ opacity:1; transform:none; } }
@media (max-width: 520px){ .prod-grid{ grid-template-columns: 1fr; } }

/* ── benefits ───────────────────────────────────────────────────────────── */
.ben-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: clamp(14px,1.6vw,22px); }
.ben{ background: var(--surface); border:1px solid var(--line); border-radius: var(--radius); padding: 26px 22px 28px; }
.ben-icon{ width:54px; height:54px; border-radius: var(--radius-sm); background: var(--accent-soft); color: var(--accent); display:grid; place-items:center; margin-bottom:18px; }
.ben-title{ font-size:21px; margin-bottom:10px; }
.ben-text{ font-size:14.5px; line-height:1.55; color: var(--ink-soft); margin:0; }
@media (max-width: 920px){ .ben-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){ .ben-grid{ grid-template-columns: 1fr; } }

/* ── process ────────────────────────────────────────────────────────────── */
.process{ background: var(--ink); color: var(--bg); }
.process .kicker{ color: rgba(255,255,255,.6); }
.steps{ display:grid; grid-template-columns: repeat(4,1fr); gap: clamp(16px,2vw,30px); }
.step{ position:relative; padding-top: 24px; border-top: 2px solid rgba(255,255,255,.16); }
.step-n{ font-size: 30px; color: var(--accent); display:block; margin-bottom: 14px; }
.step-title{ font-size: 20px; margin-bottom: 10px; }
.step-text{ font-size: 14px; line-height:1.55; opacity:.74; margin:0; }
@media (max-width: 820px){ .steps{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 460px){ .steps{ grid-template-columns: 1fr; } }

/* ── gallery ────────────────────────────────────────────────────────────── */
.gallery{ display:grid; grid-template-columns: repeat(4,1fr); gap: clamp(12px,1.4vw,18px); align-items:start; }
.gal-0{ grid-row: span 2; }
.gal-3{ grid-row: span 2; }
@media (max-width: 720px){ .gallery{ grid-template-columns: repeat(2,1fr); } .gal-0,.gal-3{ grid-row: auto; } }

/* ── reviews ────────────────────────────────────────────────────────────── */
.stars{ display:inline-flex; gap:3px; color: var(--accent); }
.rev-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(14px,1.6vw,22px); }
.rev{ position:relative; background: var(--surface); border:1px solid var(--line); border-radius: var(--radius); padding: 28px 24px 24px; margin:0; }
.rev-quote{ position:absolute; top:20px; right:22px; color: var(--accent-soft); }
.rev .stars{ margin-bottom:14px; }
.rev-text{ font-size:15.5px; line-height:1.6; margin:0 0 22px; }
.rev-by{ display:flex; align-items:center; gap:12px; }
.rev-ava{ width:42px; height:42px; border-radius:999px; background: var(--accent); color: var(--accent-ink); display:grid; place-items:center; font-family:var(--font-display); font-weight:800; font-size:18px; }
.rev-by b{ display:block; font-size:15px; }
.rev-by b a{ color: var(--ink); }
.rev-by b a:hover{ color: var(--accent); }
.rev-by i{ font-style:normal; font-size:13px; color: var(--ink-faint); }
.rev-badge{ display:inline-flex; align-items:center; gap:7px; margin-top:16px; font-family: var(--font-mono); font-size:12px; letter-spacing:.02em; color: var(--ink-soft); border:1px solid var(--line-2); border-radius:999px; padding:6px 13px; }
.rev-badge svg{ color: var(--accent); }
.rev-google-card .rev-ava{ overflow:hidden; padding:0; background: var(--surface-2); color: var(--ink-soft); }
.rev-google-card .rev-ava img{ width:100%; height:100%; object-fit:cover; }
@media (max-width: 880px){ .rev-grid{ grid-template-columns: 1fr; max-width:560px; } }

/* ── faq ────────────────────────────────────────────────────────────────── */
.faq-wrap{ display:grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px,5vw,72px); align-items:start; }
.faq-aside .section-h{ margin: 16px 0 18px; }
.faq-aside .lead{ margin-bottom: 26px; }
.faq-aside .btn{ position: sticky; top: 96px; }
.faq-list{ display:flex; flex-direction:column; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-item:first-child{ border-top:1px solid var(--line); }
.faq-q{ width:100%; background:none; border:none; display:flex; align-items:center; justify-content:space-between; gap:16px; padding: 22px 0; text-align:left; font-family:var(--font-display); font-weight:700; font-size: clamp(17px,2vw,21px); color: var(--ink); }
.faq-ic{ flex-shrink:0; width:34px; height:34px; border-radius:999px; border:1px solid var(--line-2); display:grid; place-items:center; color: var(--ink-soft); transition: transform .3s, background .2s, color .2s, border-color .2s; }
.faq-item.open .faq-ic{ transform: rotate(45deg); background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.faq-a{ display:grid; grid-template-rows: 0fr; transition: grid-template-rows .32s ease; }
.faq-item.open .faq-a{ grid-template-rows: 1fr; }
.faq-a > p{ overflow:hidden; margin:0; color: var(--ink-soft); font-size:15.5px; line-height:1.6; padding-right: 44px; }
.faq-item.open .faq-a > p{ padding-bottom: 24px; }
@media (max-width: 820px){ .faq-wrap{ grid-template-columns: 1fr; } .faq-aside .btn{ position:static; } }

/* ── cta ────────────────────────────────────────────────────────────────── */
.cta{ background: var(--ink); color: var(--bg); border-radius: calc(var(--radius) * 1.4); padding: clamp(28px,4vw,60px); display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,4vw,60px); align-items:center; overflow:hidden; }
.cta .kicker{ color: rgba(255,255,255,.6); }
.cta-h{ font-size: clamp(30px,4vw,52px); text-transform:uppercase; margin: 16px 0 18px; }
.cta-copy .lead{ color: rgba(255,255,255,.74); }
.cta-points{ list-style:none; padding:0; margin: 24px 0 0; display:flex; flex-direction:column; gap:12px; }
.cta-points li{ display:flex; align-items:center; gap:12px; font-weight:600; }
.cta-points svg{ color: var(--accent); flex-shrink:0; }
.cta-form{ background: var(--surface); color: var(--ink); border-radius: var(--radius); padding: clamp(22px,2.6vw,34px); box-shadow: var(--shadow-lg); }
.cta-form-h{ font-size: 24px; text-transform:uppercase; margin-bottom: 20px; }
.field{ display:flex; flex-direction:column; gap:7px; margin-bottom:16px; }
.field span{ font-size:13px; font-weight:600; color: var(--ink-soft); }
.field input{ height:52px; border-radius: var(--radius-sm); border:1.5px solid var(--line-2); background: var(--bg); padding: 0 16px; font-family:inherit; font-size:16px; color: var(--ink); transition: border-color .18s; }
.field input:focus{ outline:none; border-color: var(--accent); }
.field input.err{ border-color: #e5484d; }
.field em{ font-style:normal; font-size:12.5px; color:#e5484d; }
.cta-fine{ font-size:12px; color: var(--ink-faint); text-align:center; margin: 14px 0 0; }
.cta-done{ text-align:center; display:flex; flex-direction:column; align-items:center; }
.cta-done-ic{ width:72px; height:72px; border-radius:999px; background: var(--accent-soft); color: var(--accent); display:grid; place-items:center; margin-bottom:18px; }
.cta-done h3{ font-size:26px; text-transform:uppercase; margin-bottom:10px; }
.cta-done p{ color: var(--ink-soft); line-height:1.55; margin:0 0 22px; }
@media (max-width: 820px){ .cta{ grid-template-columns: 1fr; } }

/* ── app promo ──────────────────────────────────────────────────────────── */
.app-promo{ display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,4vw,64px); align-items:center; background: var(--ink); color: var(--bg); border-radius: calc(var(--radius) * 1.4); padding: clamp(30px,4vw,64px); overflow:hidden; }
.app-promo .kicker{ color: rgba(255,255,255,.6); }
.app-h{ font-size: clamp(30px,4vw,52px); text-transform:uppercase; margin: 16px 0 18px; }
.app-copy .lead{ color: rgba(255,255,255,.74); max-width: 46ch; }
.app-feats{ list-style:none; padding:0; margin: 28px 0; display:flex; flex-direction:column; gap:18px; }
.app-feats li{ display:flex; gap:14px; align-items:flex-start; }
.app-feat-ic{ flex-shrink:0; width:40px; height:40px; border-radius:12px; background: var(--accent-soft); color: var(--accent); display:grid; place-items:center; }
.app-feats b{ display:block; font-family:var(--font-display); font-size:16px; text-transform:uppercase; letter-spacing:.01em; margin-bottom:3px; }
.app-feats span span, .app-feats li>span:last-child{ color: rgba(255,255,255,.66); font-size:14px; line-height:1.45; }
.app-stores{ display:flex; flex-wrap:wrap; gap:12px; margin-top:4px; }
.store-btn{ display:inline-flex; align-items:center; gap:11px; padding:11px 20px; border-radius:14px; background:#fff; color:#111; border:1px solid transparent; transition: transform .15s, box-shadow .15s; }
.store-btn:hover{ transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,.28); }
.store-btn span{ display:flex; flex-direction:column; line-height:1.1; }
.store-btn i{ font-style:normal; font-size:11px; letter-spacing:.02em; opacity:.7; }
.store-btn b{ font-family:var(--font-display); font-size:17px; text-transform:none; letter-spacing:-.01em; }
.app-note{ display:flex; align-items:center; gap:7px; margin:20px 0 0; font-family:var(--font-mono); font-size:12px; color: rgba(255,255,255,.55); }
.app-note svg{ color: var(--accent); }

/* phone mockup */
.app-phone{ position:relative; display:grid; place-items:center; }
.phone{ position:relative; z-index:2; width: 268px; max-width: 76vw; aspect-ratio: 268 / 552; background:#0b0d10; border-radius:40px; padding:11px; box-shadow: 0 30px 70px rgba(0,0,0,.45), inset 0 0 0 2px rgba(255,255,255,.06); }
.phone-notch{ position:absolute; top:18px; left:50%; transform:translateX(-50%); width:92px; height:22px; background:#0b0d10; border-radius:999px; z-index:3; }
.phone-screen{ width:100%; height:100%; border-radius:30px; background: linear-gradient(180deg, color-mix(in oklch, var(--accent) 24%, #14161a), #14161a 42%); padding:34px 18px 18px; display:flex; flex-direction:column; gap:16px; overflow:hidden; }
.ph-app-top{ display:flex; flex-direction:column; gap:3px; color:#fff; }
.ph-app-kick{ font-family:var(--font-mono); font-size:10px; letter-spacing:.1em; text-transform:uppercase; color: rgba(255,255,255,.6); }
.ph-app-name{ font-family:var(--font-display); font-weight:800; font-size:20px; text-transform:uppercase; letter-spacing:-.01em; }
.ph-ring{ position:relative; width:150px; align-self:center; }
.ph-ring svg{ width:100%; transform: rotate(-90deg); }
.ph-ring-bg{ fill:none; stroke: rgba(255,255,255,.12); stroke-width:9; }
.ph-ring-fg{ fill:none; stroke: var(--accent); stroke-width:9; stroke-linecap:round; stroke-dasharray:327; stroke-dashoffset:66; }
.ph-ring-c{ position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; color:#fff; }
.ph-ring-c b{ font-family:var(--font-display); font-weight:800; font-size:40px; line-height:1; }
.ph-ring-c i{ font-style:normal; font-size:10.5px; color: rgba(255,255,255,.6); margin-top:4px; }
.ph-sets{ display:flex; flex-direction:column; gap:8px; }
.ph-set{ display:flex; align-items:center; gap:10px; background: rgba(255,255,255,.06); border-radius:11px; padding:9px 12px; color: rgba(255,255,255,.85); font-size:12.5px; }
.ph-set b{ margin-left:auto; font-family:var(--font-display); font-size:14px; color:#fff; }
.ph-set-ic{ width:19px; height:19px; border-radius:999px; border:1.5px solid rgba(255,255,255,.3); display:grid; place-items:center; color:transparent; }
.ph-set.done .ph-set-ic{ background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.ph-cta{ margin-top:auto; text-align:center; background: var(--accent); color: var(--accent-ink); border-radius:12px; padding:12px; font-size:12px; font-weight:700; }
.app-blob{ position:absolute; border-radius:999px; filter: blur(46px); z-index:1; }
.app-blob-1{ width:220px; height:220px; background: var(--accent-soft); top:-30px; right:-20px; }
.app-blob-2{ width:180px; height:180px; background: color-mix(in oklch, var(--accent) 30%, transparent); bottom:-20px; left:-20px; }
@media (max-width: 900px){ .app-promo{ grid-template-columns: 1fr; } .app-phone{ order:-1; } }

/* ── footer ─────────────────────────────────────────────────────────────── */
.footer{ background: var(--surface); border-top:1px solid var(--line); padding-top: clamp(48px,6vw,80px); margin-top: clamp(40px,5vw,80px); }
.footer-top{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap: 32px; padding-bottom: 48px; }
.footer-brand p{ color: var(--ink-soft); font-size:14px; line-height:1.55; margin: 18px 0; max-width: 28ch; }
.footer-pay{ display:flex; flex-wrap:wrap; gap:8px; }
.footer-col h4{ font-family:var(--font-display); font-size:13px; text-transform:uppercase; letter-spacing:.04em; margin-bottom:16px; color: var(--ink); }
.footer-col a{ display:block; color: var(--ink-soft); font-size:14px; padding:6px 0; transition: color .15s; }
.footer-col a:hover{ color: var(--accent); }
.footer-phone{ font-family:var(--font-display); font-weight:700; display:flex; align-items:center; gap:8px; }
.footer-bot{ border-top:1px solid var(--line); padding: 22px 0 30px; display:flex; align-items:center; justify-content:space-between; gap:16px; font-size:13px; color: var(--ink-faint); }
.footer-bot-r{ display:flex; gap:20px; }
.footer-bot-r a:hover{ color: var(--ink); }
@media (max-width: 920px){ .footer-top{ grid-template-columns: 1fr 1fr; } .footer-brand{ grid-column: 1 / -1; } }
@media (max-width: 540px){ .footer-top{ grid-template-columns: 1fr; gap:24px; } .footer-bot{ flex-direction:column; align-items:flex-start; } }

/* ── toast ──────────────────────────────────────────────────────────────── */
.toast{
  position: fixed; left:50%; bottom: 28px; transform: translate(-50%, 18px);
  background: var(--ink); color: var(--bg); padding: 14px 20px; border-radius: var(--radius-sm);
  display:flex; align-items:center; gap:10px; font-weight:600; font-size:14.5px;
  box-shadow: var(--shadow-lg); z-index: 200; opacity:0; pointer-events:none;
  transition: opacity .25s, transform .25s; max-width: calc(100vw - 32px);
}
.toast svg{ color: var(--accent); }
.toast.show{ opacity:1; transform: translate(-50%, 0); }

/* ── inner pages: breadcrumbs, catalog / category head ──────────────────── */
/* .crumbs base styles live in shop.css; keep only spacing below it here */
.crumbs{ margin-bottom: clamp(16px,2.2vw,26px); }

.wrap-narrow{ max-width: 880px; }
.prose{ color: var(--ink-soft); font-size:16.5px; line-height:1.7; }
.prose p{ margin:0 0 16px; }
.prose h2{ color: var(--ink); font-family: var(--font-display); font-weight:800; font-size: clamp(20px,2.6vw,28px); text-transform:uppercase; letter-spacing:-.01em; margin: 32px 0 14px; }
.prose ul, .prose ol{ padding-left:22px; margin:0 0 16px; }
.prose li{ margin-bottom:10px; }
.prose a{ color: var(--accent); text-decoration: underline; }
.prose strong{ color: var(--ink); }
.info-cta{ display:flex; flex-wrap:wrap; gap:12px; margin-top: clamp(32px,4vw,48px); padding-top: clamp(28px,3vw,40px); border-top:1px solid var(--line); }

.page-head{ margin-bottom: clamp(26px,3.4vw,46px); }
.page-head .kicker{ margin-bottom:16px; }
.page-head .section-h{ margin-bottom:16px; }
.page-head .lead{ max-width: 52ch; }
.catalog-filters{ margin-bottom: clamp(24px,3vw,40px); }
.empty-note{ color: var(--ink-soft); font-size:16px; padding: 40px 0; }
.empty-note a{ color: var(--accent); }

/* ── product detail ─────────────────────────────────────────────────────── */
.pdp{ display:grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,56px); align-items:start; }
.pdp-main{ border-radius: var(--radius); }
.pdp-thumbs{ display:flex; flex-wrap:wrap; gap:10px; margin-top:12px; }
.pdp-thumb{ width:72px; height:72px; border-radius: var(--radius-sm); overflow:hidden; border:1.5px solid var(--line-2); background: var(--surface); padding:0; transition: border-color .18s; }
.pdp-thumb:hover{ border-color: var(--ink-faint); }
.pdp-thumb.active{ border-color: var(--accent); }
.pdp-thumb img{ width:100%; height:100%; object-fit:cover; }

.pdp-info{ position: sticky; top: 96px; }
.pdp-cat{ display:inline-block; margin-bottom:12px; }
a.pdp-cat:hover{ color: var(--accent); }
.pdp-title{ font-size: clamp(26px,3.4vw,42px); text-transform:uppercase; line-height:1.02; margin-bottom:16px; }
.pdp-meta{ display:flex; align-items:center; flex-wrap:wrap; gap:18px; margin-bottom:20px; font-size:14px; }
.pdp-stock{ display:inline-flex; align-items:center; gap:6px; color: #2e9e4f; font-weight:600; }
.pdp-stock.out{ color: var(--ink-faint); }
.pdp-short{ color: var(--ink-soft); font-size:16px; line-height:1.6; margin-bottom:22px; }
.pdp-short p{ margin:0 0 10px; }
.pdp-price{ display:flex; align-items:baseline; gap:12px; margin-bottom:22px; }
.pdp-price .prod-now{ font-family:var(--font-display); font-weight:800; font-size:38px; }
.pdp-price .prod-now small{ font-size:16px; color: var(--ink-soft); }
.pdp-price .prod-old{ font-size:18px; color: var(--ink-faint); text-decoration: line-through; }
.pdp-actions{ display:flex; flex-direction:column; gap:12px; margin-bottom:26px; }
.pdp-actions .btn[disabled]{ opacity:.5; pointer-events:none; }
.pdp-trust{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:12px; }
.pdp-trust li{ display:flex; align-items:center; gap:12px; font-size:14.5px; color: var(--ink-soft); }
.pdp-trust svg{ color: var(--accent); flex-shrink:0; }

.pdp-desc{ margin-top: clamp(48px,6vw,88px); max-width: 820px; }
.pdp-desc-h{ font-family:var(--font-display); font-weight:800; text-transform:uppercase; font-size: clamp(24px,3vw,36px); margin-bottom:20px; }
.pdp-desc-body{ color: var(--ink-soft); font-size:16px; line-height:1.7; }
.pdp-desc-body p{ margin:0 0 14px; }
.pdp-desc-body img{ border-radius: var(--radius); margin:16px 0; }
.pdp-desc-body h2, .pdp-desc-body h3{ color: var(--ink); font-family:var(--font-display); margin:26px 0 12px; }
.pdp-desc-body ul, .pdp-desc-body ol{ padding-left:20px; margin:0 0 14px; }
.pdp-desc-body li{ margin-bottom:8px; }
.pdp-desc-body a{ color: var(--accent); text-decoration: underline; }
.pdp-related{ margin-top: clamp(48px,6vw,88px); }

/* product reviews */
.pdp-reviews{ margin-top: clamp(48px,6vw,88px); }
.pdp-rev-score{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.pdp-rev-score b{ font-family: var(--font-display); font-weight:800; font-size:40px; line-height:1; }
.pdp-rev-score i{ font-style:normal; color: var(--ink-faint); font-size:14px; }
.pdp-rev-list{ display:grid; grid-template-columns: repeat(2,1fr); gap: clamp(16px,2vw,24px); }
.pdp-rev{ display:flex; gap:14px; background: var(--surface); border:1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; margin:0; }
.pdp-rev .rev-ava{ flex-shrink:0; }
.pdp-rev-body{ flex:1; min-width:0; }
.pdp-rev-top{ display:flex; align-items:center; flex-wrap:wrap; gap:10px; margin-bottom:8px; }
.pdp-rev-top b{ font-size:15px; }
.pdp-rev-verified{ display:inline-flex; align-items:center; gap:4px; font-family: var(--font-mono); font-size:11px; color:#2e9e4f; }
.pdp-rev-date{ font-style:normal; font-size:12.5px; color: var(--ink-faint); margin-left:auto; }
.pdp-rev-body .stars{ margin-bottom:10px; }
.pdp-rev-text{ color: var(--ink-soft); font-size:14.5px; line-height:1.6; }
.pdp-rev-text p{ margin:0 0 8px; }
.pdp-rev-text p:last-child{ margin-bottom:0; }
.pdp-rev-more{ margin-top: clamp(24px,3vw,36px); display:flex; justify-content:center; }
.pdp-rev.rev-hidden{ display:none; }
@media (max-width: 720px){ .pdp-rev-list{ grid-template-columns: 1fr; } }
@media (max-width: 820px){ .pdp{ grid-template-columns: 1fr; } .pdp-info{ position:static; } }
.btn[data-loading], [data-add][data-loading]{ opacity:.6; pointer-events:none; }

/* product variant (colour) selector */
.pd-variants{ margin-bottom: 22px; }
.pd-var-label{ display:block; font-size:13px; font-weight:600; color: var(--ink-soft); margin-bottom:10px; }
.pd-var-opts{ display:flex; flex-wrap:wrap; gap:10px; }
.pd-var{ min-width:64px; height:44px; padding:0 18px; border:1.5px solid var(--line-2); border-radius: var(--radius-sm); background: var(--surface); color: var(--ink); font-weight:600; font-size:14px; transition: border-color .15s, background .15s; }
.pd-var:hover{ border-color: var(--ink-faint); }
.pd-var.active{ border-color: var(--accent); background: var(--accent-soft); }
.pd-var.oos{ color: var(--ink-faint); border-style: dashed; }
.pd-var-note{ margin-left:7px; font-family: var(--font-mono); font-size:10.5px; color: var(--ink-faint); text-transform:uppercase; letter-spacing:.03em; }

/* video & AR / 360 embeds inside the product description (Опис tab) */
.pd-tabs iframe{ max-width:100%; }
.pd-tabs .content_video{ position:relative; width:100%; aspect-ratio:16 / 9; margin:18px 0; border-radius:var(--radius); overflow:hidden; background:#000; }
.pd-tabs .content_video iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.pd-tabs .ar-block{ margin:22px 0; }
.pd-tabs .ar-block iframe{ display:block; width:100%; min-height:460px; border:0; border-radius:var(--radius); margin-top:14px; background:var(--surface-2); }
.pd-tabs .product-video-section p:first-child strong,
.pd-tabs .ar-block p:first-child strong{ font-family:var(--font-display); font-size:18px; }
.pd-tabs-sec{ padding-bottom: clamp(48px,6vw,88px); }

/* ── PDP "МОДЕЛЬ У ДІЇ" showcase band: video + AR ────────────────────────── */
.pd-review-band{ background: var(--surface-2); padding-block: clamp(48px,6vw,88px); margin-top: clamp(24px,3.5vw,44px); }
.rvb-head{ margin-bottom: clamp(24px,3vw,40px); }
.rvb-head .kicker{ margin-bottom:14px; }
.rvb-h{ font-size: clamp(28px,4vw,46px); text-transform:uppercase; }
.rvb-sub{ margin:14px 0 0; color: var(--ink-soft); font-size:16px; max-width:46ch; }
.rvb-grid{ display:grid; grid-template-columns:1.55fr 1fr; gap: clamp(18px,2.2vw,30px); align-items:stretch; }
.rvb-grid.rvb-solo{ grid-template-columns:1fr; max-width:900px; }

.rvb-video{ background: var(--surface); border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-sm); }
.rvb-video-stage{ position:relative; aspect-ratio:16 / 9; background:#000; cursor:pointer; }
.rvb-poster{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.rvb-video-stage::after{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(8,9,12,.55)); pointer-events:none; }
.rvb-video-stage iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; z-index:3; }
.rvb-play{ position:absolute; left:50%; top:50%; transform: translate(-50%,-50%); width:72px; height:72px; border-radius:999px; border:none; background: var(--accent); color:#fff; display:grid; place-items:center; box-shadow: var(--shadow-md); z-index:2; transition: transform .18s ease; }
.rvb-video-stage:hover .rvb-play{ transform: translate(-50%,-50%) scale(1.08); }
.rvb-chip{ position:absolute; left:14px; bottom:12px; z-index:2; font-family:var(--font-mono); font-size:11px; letter-spacing:.04em; text-transform:uppercase; color:#fff; background: rgba(0,0,0,.42); padding:5px 10px; border-radius:7px; backdrop-filter: blur(4px); }

.rvb-ar{ position:relative; border-radius: var(--radius); padding: clamp(20px,2.4vw,30px); display:flex; flex-direction:column; color:#fff; overflow:hidden; background: radial-gradient(120% 120% at 85% 0%, color-mix(in oklch, var(--accent) 22%, var(--ink)) 0%, var(--ink) 58%); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), var(--shadow-md); }
.rvb-ar-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.rvb-ar-kick{ font-family:var(--font-mono); font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color: rgba(255,255,255,.6); }
.rvb-ar-pill{ font-family:var(--font-mono); font-size:10px; text-transform:uppercase; letter-spacing:.03em; color:#fff; border:1px solid rgba(255,255,255,.25); border-radius:999px; padding:4px 10px; white-space:nowrap; }
.rvb-ar-illus{ position:relative; flex:1; display:grid; place-items:center; min-height:150px; margin:16px 0; }
.rvb-phone{ position:relative; z-index:1; width:118px; aspect-ratio:118 / 236; background:#0b0d10; border-radius:20px; padding:7px; box-shadow: 0 22px 50px rgba(0,0,0,.5), inset 0 0 0 2px rgba(255,255,255,.08); transform: rotate(-6deg); }
.rvb-phone img{ width:100%; height:100%; object-fit:cover; border-radius:14px; background:#fff; }
.rvb-floor{ position:absolute; bottom:12%; left:50%; transform: translateX(-50%); width:170px; height:30px; border:1.5px dashed rgba(255,255,255,.32); border-radius:50%; }
.rvb-ar-h{ font-family:var(--font-display); font-weight:800; text-transform:uppercase; font-size: clamp(21px,2.5vw,28px); line-height:1.02; margin-bottom:8px; }
.rvb-ar-p{ color: rgba(255,255,255,.7); font-size:14px; line-height:1.5; margin:0 0 18px; }
.rvb-ar-btn{ margin-top:auto; }
@media (max-width: 900px){ .rvb-grid{ grid-template-columns:1fr; } .rvb-ar{ order:-1; } }

/* AR modal */
.rvb-modal{ position:fixed; inset:0; z-index:300; display:grid; place-items:center; padding: clamp(0px,3vw,32px); }
.rvb-modal[hidden]{ display:none; }
.rvb-modal-scrim{ position:absolute; inset:0; background: rgba(8,9,12,.72); backdrop-filter: blur(3px); }
.rvb-modal-box{ position:relative; z-index:1; width:min(940px,100%); display:flex; flex-direction:column; background: var(--surface); border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-lg); }
.rvb-modal-head{ display:flex; align-items:center; gap:14px; padding:13px 16px; border-bottom:1px solid var(--line); }
.rvb-modal-head b{ font-family:var(--font-display); font-size:14.5px; text-transform:uppercase; }
.rvb-modal-open{ margin-left:auto; font-size:13px; color: var(--accent); white-space:nowrap; }
.rvb-modal-body{ background: var(--surface-2); }
.rvb-modal-body iframe{ display:block; width:100%; height:70vh; border:0; }
@media (max-width: 640px){ .rvb-modal{ padding:0; } .rvb-modal-box{ width:100%; height:100dvh; border-radius:0; } .rvb-modal-body{ flex:1; } .rvb-modal-body iframe{ height: calc(100dvh - 52px); } }

/* ── cart drawer ────────────────────────────────────────────────────────── */
.cart-drawer{
  position: fixed; top:0; right:0; bottom:0; width: min(92vw, 420px); z-index: 100;
  background: var(--bg); transform: translateX(102%); transition: transform .32s cubic-bezier(.4,.8,.3,1);
  display:flex; flex-direction:column; box-shadow: var(--shadow-lg);
}
.cart-drawer.open{ transform: none; }
.cart-head{ display:flex; align-items:center; justify-content:space-between; padding: 18px var(--gut); border-bottom:1px solid var(--line); }
.cart-title{ font-size: 24px; text-transform:uppercase; }
.cart-body{ flex:1; overflow-y:auto; padding: 4px var(--gut); }
.cart-empty{ text-align:center; color: var(--ink-soft); padding: 56px 0; display:flex; flex-direction:column; align-items:center; gap:16px; }
.cart-empty p{ margin:0; font-size:16px; }

.cart-item{ display:flex; gap:14px; padding: 16px 0; border-bottom:1px solid var(--line); }
.cart-item-img{ width:72px; height:72px; flex-shrink:0; border-radius: var(--radius-sm); overflow:hidden; background: var(--surface-2); }
.cart-item-img img{ width:100%; height:100%; object-fit:cover; }
.cart-item-main{ flex:1; min-width:0; display:flex; flex-direction:column; gap:10px; }
.cart-item-top{ display:flex; align-items:flex-start; justify-content:space-between; gap:10px; }
.cart-item-name{ font-weight:600; font-size:14.5px; line-height:1.35; }
.cart-item-del{ flex-shrink:0; border:none; background:none; color: var(--ink-faint); font-size:22px; line-height:1; padding:0 2px; }
.cart-item-del:hover{ color: var(--accent); }
.cart-item-bottom{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:auto; }
.cart-qty{ display:flex; align-items:center; gap:10px; }
.cart-qty button{ width:30px; height:30px; border-radius:8px; border:1px solid var(--line-2); background: var(--surface); color: var(--ink); font-size:16px; display:grid; place-items:center; line-height:1; transition: border-color .15s; }
.cart-qty button:hover{ border-color: var(--ink-faint); }
.cart-qty > span{ min-width:22px; text-align:center; font-weight:600; }
.cart-item-price{ font-family:var(--font-display); font-weight:800; font-size:17px; white-space:nowrap; }

.cart-foot{ border-top:1px solid var(--line); padding: 18px var(--gut) 24px; display:flex; flex-direction:column; gap:14px; }
.cart-total-row{ display:flex; align-items:baseline; justify-content:space-between; }
.cart-total-row > span:first-child{ font-family:var(--font-display); text-transform:uppercase; font-size:15px; color: var(--ink-soft); }
.cart-total{ font-family:var(--font-display); font-weight:800; font-size:28px; }
.cart-foot-note{ font-size:12px; color: var(--ink-faint); text-align:center; margin:0; }

/* ── checkout ───────────────────────────────────────────────────────────── */
.checkout{ display:grid; grid-template-columns: 1.3fr .7fr; gap: clamp(24px,4vw,48px); align-items:start; }
.checkout-form{ display:flex; flex-direction:column; gap:16px; }
.co-banner{ display:flex; align-items:center; gap:10px; background: var(--accent-soft); color: var(--ink); border-radius: var(--radius-sm); padding:12px 16px; font-size:14px; }
.co-banner svg{ color: var(--accent); flex-shrink:0; }
.co-grid2{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
.checkout-form .field{ margin-bottom:0; }
.field select, .field textarea{ border-radius: var(--radius-sm); border:1.5px solid var(--line-2); background: var(--bg); padding: 14px 16px; font-family:inherit; font-size:16px; color: var(--ink); transition: border-color .18s; width:100%; }
.field select{ height:52px; padding-block:0; }
.field textarea{ resize: vertical; min-height:80px; }
.field select:focus, .field textarea:focus{ outline:none; border-color: var(--accent); }
.field select.err, .field textarea.err{ border-color:#e5484d; }
.co-pay{ border:none; padding:0; margin:0; }
.co-pay legend{ font-size:13px; font-weight:600; color: var(--ink-soft); padding:0; margin-bottom:8px; }
.co-pay-list{ display:flex; flex-direction:column; gap:10px; }
.co-pay-opt{ display:flex; align-items:flex-start; gap:12px; border:1.5px solid var(--line-2); border-radius: var(--radius-sm); padding:14px 16px; cursor:pointer; transition: border-color .15s, background .15s; }
.co-pay-opt:hover{ border-color: var(--ink-faint); }
.co-pay-opt:has(input:checked){ border-color: var(--accent); background: var(--accent-soft); }
.co-pay-opt input{ margin-top:3px; accent-color: var(--accent); width:18px; height:18px; flex-shrink:0; }
.co-pay-info{ display:flex; flex-direction:column; gap:3px; }
.co-pay-info b{ font-weight:600; font-size:15px; }
.co-pay-info i{ font-style:normal; font-size:13px; color: var(--ink-faint); line-height:1.45; }
.co-combo-in{ position: relative; }
.co-combo-in input{ width:100%; }
.field input:disabled{ background: var(--surface-2); color: var(--ink-faint); cursor: not-allowed; }
.co-suggest{ position:absolute; z-index:40; top:calc(100% + 4px); left:0; right:0; margin:0; padding:6px; list-style:none; background: var(--surface); border:1px solid var(--line-2); border-radius: var(--radius-sm); box-shadow: var(--shadow-md); max-height:280px; overflow-y:auto; }
.co-suggest li{ padding:10px 12px; border-radius:8px; font-size:14.5px; color: var(--ink); cursor:pointer; }
.co-suggest li:hover{ background: var(--surface-2); }
.co-error{ background:#fdecec; color:#c0292e; border-radius: var(--radius-sm); padding:12px 16px; font-size:14px; margin:0; }
.co-fine{ font-size:12px; color: var(--ink-faint); text-align:center; margin:0; }

.checkout-summary{ background: var(--surface); border:1px solid var(--line); border-radius: var(--radius); padding: clamp(20px,2.4vw,28px); position: sticky; top: 96px; }
.co-sum-h{ font-size:20px; text-transform:uppercase; margin-bottom:16px; }
.co-items{ display:flex; flex-direction:column; gap:12px; margin-bottom:16px; }
.co-item{ display:flex; align-items:baseline; justify-content:space-between; gap:12px; font-size:14px; }
.co-item-name{ color: var(--ink-soft); }
.co-item-name i{ font-style:normal; color: var(--ink-faint); }
.co-item-sum{ font-weight:600; white-space:nowrap; }
.co-empty{ color: var(--ink-soft); font-size:14px; margin:0; }
.co-empty a{ color: var(--accent); }
.co-total-row{ display:flex; align-items:baseline; justify-content:space-between; padding-top:16px; border-top:1px solid var(--line); }
.co-total-row > span:first-child{ font-family:var(--font-display); font-weight:800; text-transform:uppercase; font-size:15px; color: var(--ink-soft); }
.co-total{ font-family:var(--font-display); font-weight:800; font-size:26px; }
.co-ship{ display:flex; align-items:center; gap:8px; margin:16px 0 0; font-size:12.5px; color: var(--ink-faint); }
.co-ship svg{ color: var(--accent); flex-shrink:0; }

.checkout-done{ text-align:center; max-width:520px; margin: clamp(20px,4vw,48px) auto; display:flex; flex-direction:column; align-items:center; }
.co-done-ic{ width:80px; height:80px; border-radius:999px; background: var(--accent-soft); color: var(--accent); display:grid; place-items:center; margin-bottom:22px; }
.co-done-h{ font-size: clamp(26px,4vw,40px); text-transform:uppercase; margin-bottom:14px; }
.co-done-msg{ color: var(--ink-soft); font-size:16px; line-height:1.6; margin:0 0 26px; }
@media (max-width: 820px){ .checkout{ grid-template-columns: 1fr; } .co-grid2{ grid-template-columns: 1fr; } .checkout-summary{ position:static; order:-1; } }

/* ── Language switcher (UK/RU) ───────────────────────────────── */
.lang-switch{ display:inline-flex; align-items:center; gap:8px; font-family:var(--font-display,inherit); }
.lang-switch .lang-opt{
  font-size:13px; font-weight:700; letter-spacing:.02em; text-transform:uppercase;
  color:var(--ink-soft,#6b7280); text-decoration:none; padding:2px 2px; line-height:1;
  transition:color .15s ease;
}
.lang-switch .lang-opt:hover{ color:var(--ink,#111); }
.lang-switch .lang-opt.active{ color:var(--accent,#D62F24); }
.lang-switch .lang-sep{ width:1px; height:13px; background:currentColor; opacity:.25; }
.lang-mobile{ margin-bottom:14px; justify-content:center; font-size:15px; }
.lang-mobile .lang-opt{ font-size:15px; padding:6px 8px; }
@media (max-width:900px){ .lang-desk{ display:none; } }

/* ── Product gallery prev/next arrows ────────────────────────── */
.pd-gallery .pd-main{ position:relative; }
.pd-nav{
  position:absolute; top:50%; transform:translateY(-50%);
  width:28px; height:28px; border-radius:999px;
  display:flex; align-items:center; justify-content:center;
  background:transparent; color:var(--ink-soft,#6b7280);
  border:0; box-shadow:none;
  cursor:pointer; z-index:3; opacity:.35;
  transition:opacity .15s ease, background .15s ease, color .15s ease;
}
/* Subtle by default; clearer when the shopper hovers the photo or the arrow itself. */
.pd-main:hover .pd-nav{ opacity:.6; }
.pd-nav:hover{ opacity:1; background:rgba(255,255,255,.85); color:var(--ink,#111); }
.pd-nav:active{ transform:translateY(-50%) scale(.92); }
.pd-nav-prev{ left:4px; }
.pd-nav-next{ right:4px; }
.pd-nav-prev svg{ transform:rotate(180deg); }
@media (hover:none){ .pd-nav{ opacity:.5; } } /* touch: keep them findable */
@media (max-width:560px){
  .pd-nav{ width:26px; height:26px; }
  .pd-nav-prev{ left:2px; }
  .pd-nav-next{ right:2px; }
}

/* ── Full-bleed hero (reference: photo background, dark text on the light left) ── */
.hero-bleed{ position:relative; }
.hero-bleed-photo{ position:absolute; inset:0; z-index:0; }
.hero-bleed-photo img{ width:100%; height:100%; object-fit:cover; object-position:80% center; }
.hero-bleed-veil{
  position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(90deg,
    rgba(247,246,242,.97) 0%,
    rgba(247,246,242,.82) 24%,
    rgba(247,246,242,.35) 46%,
    rgba(247,246,242,0) 62%);
}
.hero-bleed-in{
  position:relative; z-index:2;
  display:flex; align-items:center; justify-content:space-between; gap:32px;
  min-height:clamp(560px, 82vh, 820px);
  padding-block:clamp(40px,6vw,72px);
}
.hero-bleed .hero-copy{ max-width:640px; }
.hero-badges{ display:flex; flex-direction:column; gap:14px; width:min(280px,30vw); flex-shrink:0; }
.hero-badge{
  display:flex; align-items:center; gap:12px;
  background:rgba(18,20,24,.72); -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.08); border-radius:14px; padding:13px 15px;
}
.hero-badge-ic{
  flex-shrink:0; width:38px; height:38px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(214,47,36,.16); color:var(--accent,#D62F24);
}
.hero-badge-tx{ display:flex; flex-direction:column; line-height:1.25; }
.hero-badge-tx b{ font-family:var(--font-display,inherit); text-transform:uppercase; font-size:13px; letter-spacing:.02em; color:#fff; }
.hero-badge-tx span{ font-size:12px; color:rgba(255,255,255,.72); }

@media (max-width:1024px){ .hero-badges{ width:230px; } }
@media (max-width:900px){
  .hero-badges{ display:none; }
  .hero-bleed-photo img{ object-position:82% center; }
  .hero-bleed-veil{ background:linear-gradient(90deg, rgba(247,246,242,.97) 0%, rgba(247,246,242,.82) 46%, rgba(247,246,242,.4) 78%, rgba(247,246,242,.12) 100%); }
}
@media (max-width:560px){
  .hero-bleed-in{ min-height:auto; padding-block:34px 44px; }
  .hero-bleed-photo img{ object-position:74% center; }
  .hero-bleed-veil{ background:linear-gradient(180deg, rgba(247,246,242,.93) 0%, rgba(247,246,242,.62) 55%, rgba(247,246,242,.32) 100%); }
}
