/* ==========================================================================
   ESSPIANO — cinematic dark commerce
   Persian RTL · full dark system · no light surfaces anywhere
   ========================================================================== */

/* ---------- fonts ----------
   Dana        → display / headings (9 weights, geometric, high personality)
   IRANYekan   → body / UI (FaNum cut: Latin digit codepoints draw Persian
                 numerals, so prose numbers are Persian automatically)
   Grotesk     → data numerals. Because it is listed FIRST on .num, digits
                 resolve in Grotesk and render Latin — the deliberate contrast.
   ------------------------------------------------------------------------ */
@font-face { font-family: 'Dana'; src: url('../fonts/Dana/Dana-Light.woff2') format('woff2');     font-weight: 300; font-display: swap; }
@font-face { font-family: 'Dana'; src: url('../fonts/Dana/Dana-Regular.woff2') format('woff2');   font-weight: 400; font-display: swap; }
@font-face { font-family: 'Dana'; src: url('../fonts/Dana/Dana-Medium.woff2') format('woff2');    font-weight: 500; font-display: swap; }
@font-face { font-family: 'Dana'; src: url('../fonts/Dana/Dana-DemiBold.woff2') format('woff2');  font-weight: 600; font-display: swap; }
@font-face { font-family: 'Dana'; src: url('../fonts/Dana/Dana-Bold.woff2') format('woff2');      font-weight: 700; font-display: swap; }
@font-face { font-family: 'Dana'; src: url('../fonts/Dana/Dana-ExtraBold.woff2') format('woff2'); font-weight: 800; font-display: swap; }
@font-face { font-family: 'Dana'; src: url('../fonts/Dana/Dana-Black.woff2') format('woff2');     font-weight: 900; font-display: swap; }

@font-face {
  font-family: 'IRANYekan';
  src: url('../fonts/IRANYekan/woff2/iranyekanweblight(fanum).woff2') format('woff2');
  font-weight: 300; font-display: swap;
}
@font-face {
  font-family: 'IRANYekan';
  src: url('../fonts/IRANYekan/woff2/iranyekanwebregular(fanum).woff2') format('woff2');
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: 'IRANYekan';
  src: url('../fonts/IRANYekan/woff2/iranyekanwebbold(fanum).woff2') format('woff2');
  font-weight: 700; font-display: swap;
}

@font-face {
  font-family: 'Grotesk';
  src: url('../fonts/space-grotesk-latin-wght-normal.woff2') format('woff2-variations');
  font-weight: 300 700; font-display: swap;
}

/* ---------- tokens ---------- */
:root {
  --bg-main: #070707;
  --bg-secondary: #0d0d0d;
  --bg-elevated: #131313;
  --bg-card: #101010;
  --bg-soft: #1c1c1c;

  --text-primary: #f3f1ec;
  --text-secondary: #a8a8a3;
  --text-muted: #6f6f6b;

  --border-dark: rgba(255, 255, 255, .075);
  --border-hover: rgba(255, 255, 255, .18);

  --brand-red: #ed1b24;
  --brand-red-hover: #ff2b34;
  --brand-red-deep: #b9131b;
  --warm-accent: #c89b63;

  --f-body: 'IRANYekan', 'Dana', system-ui, sans-serif;
  --f-display: 'Dana', 'IRANYekan', system-ui, sans-serif;
  --f-num: 'Grotesk', 'Dana', system-ui, sans-serif;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-io: cubic-bezier(.65, .05, .36, 1);

  --shell: clamp(18px, 4.4vw, 76px);
  --maxw: 1600px;

  --h-header: 84px;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.85;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body.is-locked { overflow: hidden; }

img { max-width: 100%; display: block; }
svg { display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
/* kill every light-themed native control the browser would otherwise inject */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button { -webkit-appearance: none; appearance: none; display: none; }
input::-ms-clear, input::-ms-reveal { display: none; }
input[type="search"] { -webkit-appearance: none; appearance: none; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 {
  margin: 0; font-family: var(--f-display);
  font-weight: 800; line-height: 1.16; letter-spacing: -.01em;
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* Data numerals: Latin digits in Grotesk against the Persian body. Used for
   prices, counts, ratings, timers — anything read as a figure rather than
   as prose. Prose digits stay Persian via IRANYekan's FaNum cut. */
.num {
  font-family: var(--f-num);
  direction: ltr; unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  font-weight: 500; letter-spacing: -.01em;
}

::selection { background: var(--brand-red); color: #fff; }

::-webkit-scrollbar { width: 7px; height: 7px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #292929; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-red); }
html { scrollbar-color: #292929 #050505; scrollbar-width: thin; }

:focus-visible { outline: 2px solid var(--brand-red); outline-offset: 3px; border-radius: 2px; }

/* latin fragments inside RTL copy */
.ltr { direction: ltr; unicode-bidi: isolate; display: inline-block; }
.lat {
  font-family: var(--f-num);
  direction: ltr; unicode-bidi: isolate;
  font-feature-settings: 'ss01';
}

/* ---------- layout helpers ---------- */
.shell { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--shell); }
.sec { position: relative; }
.sec-pad { padding-block: clamp(78px, 10vw, 160px); }

/* eyebrow: latin, tracked, with a red tick */
.eyebrow {
  font-family: var(--f-num);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--text-muted);
  direction: ltr; unicode-bidi: isolate;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ''; width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--brand-red), rgba(237, 27, 36, 0));
}
.eyebrow.no-line::before { display: none; }

.h-display {
  font-size: clamp(2.3rem, 5.6vw, 5.4rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -.025em;
}
.h-sec {
  font-size: clamp(1.9rem, 3.6vw, 3.5rem);
  font-weight: 800; line-height: 1.14; letter-spacing: -.02em;
}
.lede { color: var(--text-secondary); font-size: clamp(.94rem, 1.05vw, 1.06rem); line-height: 2; max-width: 56ch; }
.muted { color: var(--text-muted); }

.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.sec-head .right { max-width: 62ch; }

/* hairline rules used to divide dark-on-dark bands */
.rule { height: 1px; background: var(--border-dark); border: 0; margin: 0; }
.rule-fade {
  height: 1px; border: 0; margin: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1) 22%, rgba(255, 255, 255, .1) 78%, transparent);
}

/* ---------- global texture ---------- */
.grain {
  position: fixed; inset: -120%; z-index: 9000;
  pointer-events: none; opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 7s steps(6) infinite;
  will-change: transform;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-6%, 3%); }
  40% { transform: translate(4%, -5%); }
  60% { transform: translate(-3%, 6%); }
  80% { transform: translate(5%, 2%); }
}

/* soft vignette so the page edges never read as flat black */
.vignette {
  position: fixed; inset: 0; z-index: 8990; pointer-events: none;
  background: radial-gradient(120% 80% at 50% 40%, transparent 52%, rgba(0, 0, 0, .55) 100%);
}

/* ---------- custom cursor ---------- */
.cursor, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 9500; pointer-events: none; border-radius: 50%; }
.cursor {
  width: 6px; height: 6px; margin: -3px 0 0 -3px;
  background: var(--text-primary);
  transition: opacity .3s, transform .25s var(--ease), background .25s;
}
.cursor-ring {
  width: 40px; height: 40px; margin: -20px 0 0 -20px;
  border: 1px solid rgba(255, 255, 255, .28);
  display: grid; place-items: center;
  transition: width .4s var(--ease), height .4s var(--ease), margin .4s var(--ease),
              border-color .3s, background .3s, opacity .3s;
}
.cursor-ring span {
  font-family: var(--f-num); font-size: 9.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  opacity: 0; transform: scale(.7); transition: opacity .3s, transform .35s var(--ease);
  color: var(--text-primary); direction: ltr;
}
body.cur-lg .cursor-ring { width: 78px; height: 78px; margin: -39px 0 0 -39px; border-color: rgba(255, 255, 255, .4); }
body.cur-lg .cursor-ring span { opacity: 1; transform: scale(1); }
body.cur-lg .cursor { transform: scale(0); }
body.cur-red .cursor-ring { border-color: var(--brand-red); background: rgba(237, 27, 36, .1); }
body.cur-red .cursor { background: var(--brand-red); }
body.cur-hide .cursor, body.cur-hide .cursor-ring { opacity: 0; }
@media (hover: none), (pointer: coarse) { .cursor, .cursor-ring { display: none !important; } }

/* ---------- loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 9800;
  background: var(--bg-main);
  display: grid; place-items: center;
}
.loader::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 46%, rgba(237, 27, 36, .10), transparent 46%);
  pointer-events: none;
}
.loader-in { position: relative; z-index: 2; text-align: center; width: min(88vw, 460px); }
.loader-mark { width: 78px; margin-inline: auto; opacity: 0; }
.loader-word {
  margin-top: 26px;
  font-family: var(--f-num); font-size: 11px; letter-spacing: .5em;
  text-transform: uppercase; color: var(--text-muted); direction: ltr;
}
.loader-bar { margin-top: 30px; height: 1px; background: rgba(255, 255, 255, .1); position: relative; overflow: hidden; }
.loader-bar i { position: absolute; inset-block: 0; inset-inline-start: 0; width: 0; background: var(--brand-red); display: block; }
.loader-pct {
  margin-top: 14px; display: flex; justify-content: space-between;
  font-family: var(--f-num); font-size: 10px; letter-spacing: .22em; color: var(--text-muted); direction: ltr;
}
.loader.done { pointer-events: none; }

/* ---------- header ---------- */
.header {
  position: fixed; inset-inline: 0; top: 0; z-index: 800;
  height: var(--h-header);
  display: flex; align-items: center;
  background: rgba(5, 5, 5, .12);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background .5s var(--ease), backdrop-filter .5s var(--ease),
              border-color .5s var(--ease), height .5s var(--ease);
}
.header.solid {
  background: rgba(8, 8, 8, .74);
  backdrop-filter: blur(18px) saturate(1.15);
  border-bottom-color: var(--border-dark);
  height: 70px;
}
.header.hide { transform: translateY(-102%); transition: transform .5s var(--ease), background .5s, height .5s; }
.header-in { display: flex; align-items: center; gap: clamp(16px, 3vw, 46px); width: 100%; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 34px; width: auto; transition: height .5s var(--ease); }
.header.solid .brand img { height: 30px; }

.nav { display: flex; align-items: center; gap: clamp(10px, 1.6vw, 26px); }
.nav-item { position: relative; }
.nav-link {
  position: relative; display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 2px; font-size: 14.5px; font-weight: 500;
  color: var(--text-secondary);
  transition: color .35s var(--ease);
  white-space: nowrap;
}
.nav-link::after {
  content: ''; position: absolute; inset-inline: 0; bottom: 4px; height: 1px;
  background: var(--brand-red);
  transform: scaleX(0); transform-origin: inline-end;
  transition: transform .5s var(--ease);
}
.nav-link:hover, .nav-item.open .nav-link { color: var(--text-primary); }
.nav-link:hover::after, .nav-item.open .nav-link::after { transform: scaleX(1); transform-origin: inline-start; }
.nav-link .chev { width: 11px; height: 11px; opacity: .6; transition: transform .4s var(--ease); }
.nav-item.open .chev { transform: rotate(180deg); }

.hd-actions { display: flex; align-items: center; gap: 4px; margin-inline-start: auto; }
.icon-btn {
  position: relative; width: 42px; height: 42px; border-radius: 3px;
  display: grid; place-items: center; color: var(--text-secondary);
  transition: color .3s, background .3s;
}
.icon-btn:hover { color: var(--text-primary); background: rgba(255, 255, 255, .05); }
.icon-btn svg { width: 19px; height: 19px; }
.cart-count {
  position: absolute; top: 6px; inset-inline-end: 5px;
  min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--brand-red); color: #fff;
  font-family: var(--f-num); font-size: 9.5px; font-weight: 700;
  border-radius: 9px; display: grid; place-items: center;
  transform: scale(0); transition: transform .4s var(--ease);
}
.cart-count.on { transform: scale(1); }
.burger { display: none; }

/* ---------- mega menu ---------- */
.mega {
  position: fixed; inset-inline: 0; top: 0; z-index: 790;
  background: #0b0b0b;
  border-bottom: 1px solid var(--border-dark);
  padding-top: calc(var(--h-header) + 22px);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .72s var(--ease);
  pointer-events: none;
}
.mega.open { clip-path: inset(0 0 0 0); pointer-events: auto; }
.mega::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(70% 90% at 78% 0%, rgba(237, 27, 36, .07), transparent 60%);
  pointer-events: none;
}
.mega-grid {
  position: relative; display: grid;
  grid-template-columns: 1.15fr 1.15fr 1.5fr; gap: clamp(24px, 4vw, 68px);
  padding-bottom: 54px;
}
.mega-col h4 {
  font-family: var(--f-num); font-size: 10px; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 22px; direction: ltr;
}
.mega-list li { margin-bottom: 2px; }
.mega-list a {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 9px 12px; margin-inline: -12px; border-radius: 3px;
  color: var(--text-secondary); font-size: 15px;
  transition: color .3s, background .3s, padding .4s var(--ease);
}
.mega-list a:hover { color: var(--text-primary); background: rgba(255, 255, 255, .04); padding-inline-start: 20px; }
.mega-list .n {
  font-family: var(--f-num); font-size: 11px; color: var(--text-muted); direction: ltr;
  flex-shrink: 0; transition: color .3s;
}
/* an <svg> carrying .n has no intrinsic box — pin it or it renders 300×150 */
.mega-list svg.n { width: 14px; height: 14px; }
.mega-list a:hover .n { color: var(--brand-red); }

.mega-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mega-card {
  position: relative; overflow: hidden; border-radius: 4px;
  background: var(--bg-elevated); border: 1px solid var(--border-dark);
  min-height: 230px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; transition: border-color .4s, transform .6s var(--ease);
}
.mega-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.mega-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .5; transition: opacity .6s var(--ease), transform 1.1s var(--ease);
}
.mega-card:hover img { opacity: .62; transform: scale(1.06); }
.mega-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, .95) 6%, rgba(5, 5, 5, .3) 55%, rgba(5, 5, 5, .55));
}
.mega-card > * { position: relative; z-index: 2; }
.mega-card .t { font-size: 20px; font-weight: 800; margin-top: 6px; }
.mega-card .s { font-size: 12.5px; color: var(--text-secondary); }

/* ---------- buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 30px; border-radius: 2px;
  font-size: 14.5px; font-weight: 600; letter-spacing: -.005em;
  overflow: hidden; isolation: isolate; white-space: nowrap;
  transition: color .4s var(--ease), border-color .4s, transform .5s var(--ease);
}
.btn span { position: relative; z-index: 2; }
.btn .ar { width: 16px; height: 16px; position: relative; z-index: 2; transition: transform .5s var(--ease); }
.btn:hover .ar { transform: translateX(-5px); }
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .55s var(--ease);
}
.btn:hover::before { transform: scaleY(1); }

.btn-primary { background: var(--brand-red); color: #fff; }
.btn-primary::before { background: var(--brand-red-hover); }
.btn-primary:hover { color: #fff; }

.btn-ghost { border: 1px solid rgba(255, 255, 255, .2); color: var(--text-primary); }
.btn-ghost::before { background: var(--text-primary); }
.btn-ghost:hover { color: #0a0a0a; border-color: var(--text-primary); }

.btn-sm { padding: 11px 20px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* text link with sliding rule */
.link-u {
  position: relative; display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 600; padding-bottom: 4px;
  color: var(--text-primary);
}
.link-u::after {
  content: ''; position: absolute; inset-inline: 0; bottom: 0; height: 1px;
  background: currentColor; opacity: .35;
  transform-origin: inline-end; transition: transform .5s var(--ease), opacity .3s;
}
.link-u:hover { color: var(--brand-red); }
.link-u:hover::after { opacity: 1; transform: scaleX(0); transform-origin: inline-start; }

/* ---------- HERO ---------- */
.hero { position: relative; background: var(--bg-main); }
.hero-pin { position: relative; height: 100svh; overflow: hidden; }
.hero-canvas-wrap { position: absolute; inset: 0; }
#heroCanvas { width: 100%; height: 100%; display: block; }

/* Portrait: the 2.33:1 sequence is drawn as a cinematic band parked at 38% of
   the canvas (see drawFrame). Mask matches that band, and the copy drops into
   the clean dark space beneath it instead of fighting the image. */
body.hero-band #heroCanvas {
  -webkit-mask-image: linear-gradient(180deg, transparent 7%, #000 19%, #000 53%, transparent 66%);
  mask-image: linear-gradient(180deg, transparent 7%, #000 19%, #000 53%, transparent 66%);
}
body.hero-band .scene { align-items: flex-end; }
body.hero-band .scene .inner { padding-bottom: clamp(70px, 15vh, 150px); }
body.hero-band .scene .hold { max-width: 100%; }
body.hero-band .scene p { max-width: 100%; }
body.hero-band .hero-tint {
  background:
    radial-gradient(120% 46% at 50% 34%, transparent 40%, rgba(4, 4, 4, .5) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, .8) 0%, transparent 18%, transparent 44%, rgba(5, 5, 5, .92) 72%);
}
body.hero-band .hero-tint.rtl-side { background: none; }

.hero-tint {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(115% 78% at 50% 42%, transparent 44%, rgba(4, 4, 4, .72) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, .72) 0%, transparent 26%, transparent 52%, rgba(5, 5, 5, .88) 96%);
}
.hero-tint.rtl-side {
  background: linear-gradient(270deg, rgba(5, 5, 5, .82) 0%, rgba(5, 5, 5, .34) 34%, transparent 62%);
}

/* ---------- hero opening title card ----------
   The sequence opens on a single still frame, which reads as a dead page: the
   visitor has no reason to believe scrolling does anything. This card states
   the brand, then physically tears itself apart across the first ~8% of the
   pin — the motion itself is the instruction to keep scrolling.
   Entrance is CSS (driven by .in); exit is scrubbed from JS, and the two never
   touch the same element: CSS animates .ch b / .intro-kick / .intro-sub span /
   .intro-cue, JS writes #heroIntro, .intro-in and .ch. */
.hero-intro {
  position: absolute; inset: 0; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  /* the opening frame carries the storefront sign in its upper third — the card
     is parked below it rather than fighting it. svh, not vh: the pin is 100svh,
     so a vh-based offset would over-push while a mobile URL bar is showing. */
  padding-top: clamp(40px, 16svh, 170px);
  text-align: center; pointer-events: none;
}
.hero-intro::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(76% 64% at 50% 48%, rgba(6, 6, 6, .76) 0%, rgba(6, 6, 6, .46) 46%, rgba(6, 6, 6, 0) 80%);
}
.intro-in {
  position: relative; width: 100%;
  padding-inline: var(--shell);
  will-change: transform, filter;
}

/* origin line, set under the wordmark between two hairlines */
.intro-kick {
  display: inline-flex; align-items: center; gap: 11px;
  margin-top: clamp(14px, 2.2svh, 26px);
  font-family: var(--f-num); font-size: 10.5px; font-weight: 500;
  letter-spacing: .42em; text-transform: uppercase; color: var(--text-secondary);
  direction: ltr; unicode-bidi: isolate;
  /* the card floats over 271 different frames — every text layer carries its
     own shadow so legibility never depends on which frame is showing */
  text-shadow: 0 4px 18px rgba(0, 0, 0, .85);
  opacity: 0; transform: translateY(14px);
  transition: opacity .8s var(--ease) .6s, transform .8s var(--ease) .6s;
}
.intro-kick::before, .intro-kick::after {
  content: ''; height: 1px; width: clamp(26px, 6vw, 92px); flex: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .26));
}
.intro-kick::after { transform: scaleX(-1); }
.hero-intro.in .intro-kick { opacity: 1; transform: none; }
.intro-kick .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand-red);
  box-shadow: 0 0 0 0 rgba(237, 27, 36, .55);
  animation: introPulse 2.6s var(--ease) infinite;
}
@keyframes introPulse {
  0%   { box-shadow: 0 0 0 0 rgba(237, 27, 36, .55); }
  70%, 100% { box-shadow: 0 0 0 11px rgba(237, 27, 36, 0); }
}

/* One gradient owns the whole word and travels across it, rather than each
   letter carrying its own copy at an offset phase — that read as a per-letter
   flicker. The base colour is the background-color; the image is a single
   white highlight that fades to the SAME cream at zero alpha (never to
   `transparent`, which interpolates through black and leaves a dirty fringe). */
.intro-word {
  display: flex; align-items: flex-end; justify-content: center;
  direction: ltr; unicode-bidi: isolate;
  font-family: var(--f-num); font-weight: 700;
  font-size: clamp(2.9rem, 11.8vw, 9.5rem);
  line-height: .92; letter-spacing: -.03em;
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, .62));
}
.intro-word .ch { display: block; overflow: hidden; padding-bottom: .04em; will-change: transform; }
.intro-word .ch b {
  display: block; font-weight: inherit;
  /* Each letter clips its own copy of the gradient — the only arrangement
     Chrome masks correctly (background-clip: text on the flex parent drops
     glyphs whose boxes are transformed or clipped, and background-attachment:
     fixed is ignored entirely in the text-clip paint path). Continuity instead
     comes from phase: heroSheen() sizes the gradient in px and gives every
     letter a delay proportional to how far into the word it sits, so one
     highlight crosses all eight. The timing MUST stay linear — any easing
     desynchronises the letters and the glint breaks into steps.
     cream → white spans only ~16 levels, which is invisible at this size, so
     the highlight is flanked by a soft trough: dim, bright, dim. Every stop
     fades to the base cream at zero alpha, never to `transparent`, which
     interpolates through black and leaves a dirty fringe. */
  background-color: #efece5;
  background-image: linear-gradient(92deg,
    rgba(239, 236, 229, 0) 24%, rgba(199, 194, 184, .62) 36%,
    #ffffff 48%, rgba(199, 194, 184, .5) 60%, rgba(239, 236, 229, 0) 72%);
  background-repeat: no-repeat;
  background-size: var(--sw, 300%) 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  transform: translateY(112%);
  transition: transform 1s var(--ease);
  transition-delay: calc(var(--i) * .055s + .1s);
  animation: introSheen 6.5s linear infinite;
  animation-delay: var(--sdl, calc(var(--i) * -.16s));
}
.hero-intro.in .intro-word .ch b { transform: none; }
@keyframes introSheen {
  from { background-position-x: var(--sa, 130%); }
  to   { background-position-x: var(--sb, -170%); }
}
.intro-word .pt {
  width: .1em; height: .1em; border-radius: 50%; flex: none;
  background: var(--brand-red); margin: 0 0 .16em .1em;
  opacity: 0; transform: scale(.2);
  transition: opacity .5s var(--ease) .78s, transform .7s var(--ease) .78s;
}
.hero-intro.in .intro-word .pt { opacity: 1; transform: none; }

.intro-sub {
  margin-top: clamp(12px, 1.9svh, 24px);
  font-size: clamp(.95rem, 1.5vw, 1.28rem); font-weight: 400;
  color: #cbc8c1; line-height: 1.9;
  text-shadow: 0 8px 30px rgba(0, 0, 0, .7);
}
.intro-sub span {
  display: inline-block;
  opacity: 0; transform: translateY(18px); filter: blur(7px);
  transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease);
  transition-delay: calc(.42s + var(--i) * .06s);
}
.hero-intro.in .intro-sub span { opacity: 1; transform: none; filter: none; }

/* The cue is a real control, not decoration: scrolling is the only way out of
   the pin, so keyboard and assistive-tech users get a button that does it. */
.intro-cue {
  margin-top: clamp(22px, 3.8svh, 50px);
  display: inline-flex; align-items: center; gap: 15px;
  min-height: 44px; padding: 0 6px;
  pointer-events: auto; touch-action: manipulation;
  opacity: 0; transform: translateY(14px);
  transition: opacity .8s var(--ease) .92s, transform .8s var(--ease) .92s,
              color .3s var(--ease);
}
.hero-intro.in .intro-cue { opacity: 1; transform: none; }
/* NB: `ring` alone is a Tailwind CDN utility (blue box-shadow) — hence cue-ring */
.intro-cue .cue-ring {
  position: relative; width: 44px; height: 44px; border-radius: 50%; flex: none;
  border: 1px solid rgba(255, 255, 255, .22);
  display: grid; place-items: center;
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.intro-cue .cue-ring::after {
  content: ''; position: absolute; inset: -1px; border-radius: 50%;
  border: 1px solid var(--brand-red);
  animation: introRing 2.6s var(--ease) infinite;
}
.intro-cue:focus-visible { outline-offset: 5px; border-radius: 26px; }
.intro-cue:hover .cue-ring { border-color: var(--brand-red); background: rgba(237, 27, 36, .12); }
.intro-cue:active .cue-ring { transform: scale(.94); }
.intro-cue:hover .cue-t { color: var(--text-primary); }
.intro-cue .cue-ar {
  width: 17px; height: 17px; color: #f3f1ec;
  animation: introDrop 2.2s var(--ease-io) infinite;
}
.intro-cue .cue-t {
  font-size: 12.5px; color: var(--text-secondary); letter-spacing: .01em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .8);
  transition: color .3s var(--ease);
}
@keyframes introRing {
  0%   { opacity: .85; transform: scale(1); }
  70%, 100% { opacity: 0; transform: scale(1.6); }
}
/* the glyph is the shared #i-arrow-u, flipped — so the rotation has to ride
   inside the keyframes, and the sign of translateY flips with it */
@keyframes introDrop {
  0%, 100% { transform: rotate(180deg) translateY(3px); }
  50%      { transform: rotate(180deg) translateY(-4px); }
}

/* An interrupted entrance must not fight the scrubbed exit: the first scroll
   snaps whatever is still animating into place so the card tears cleanly. */
.hero-intro.settled .intro-word .ch b,
.hero-intro.settled .intro-kick,
.hero-intro.settled .intro-sub span,
.hero-intro.settled .intro-cue { transition-duration: .18s; transition-delay: 0s; }

/* portrait: the frame band sits high, so the card drops into the dark half */
body.hero-band .hero-intro { align-items: flex-end; padding-top: 0; padding-bottom: clamp(64px, 13svh, 130px); }
body.hero-band .intro-word { font-size: clamp(3rem, 16.5vw, 7rem); letter-spacing: -.02em; }
body.hero-band .intro-sub { max-width: 30ch; margin-inline: auto; }

/* landscape phones: ~390px of height for header + card + cue */
@media (max-height: 560px) and (min-aspect-ratio: 3/2) {
  .hero-intro { padding-top: clamp(24px, 8svh, 60px); }
  .intro-word { font-size: clamp(2.4rem, 8.5vw, 5rem); }
  .intro-sub { font-size: .92rem; }
  .intro-cue { margin-top: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .intro-kick .dot, .intro-word .ch b,
  .intro-cue .cue-ring::after, .intro-cue .cue-ar { animation: none; }
  .intro-cue .cue-ar { transform: rotate(180deg); }
}

/* Reduced motion drops the pinned sequence entirely, so the card has nowhere
   to live — but it holds the page's h1, so it is hidden visually, not removed
   from the accessibility tree. */
.hero-intro.is-muted {
  clip-path: inset(50%); width: 1px; height: 1px; padding: 0;
  overflow: hidden; white-space: nowrap;
}
.hero-intro.is-muted::before { display: none; }

.hero-copy { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.scene {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; visibility: hidden;
}
.scene .inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--shell); }
/* sized in px, not ch — `ch` here resolves against the 16px body size and
   would strangle a 5rem headline into five broken lines */
.scene .hold { max-width: clamp(300px, 46vw, 720px); }
.scene.s-center .hold { max-width: clamp(320px, 58vw, 900px); margin-inline: auto; text-align: center; }
.scene .eyebrow { margin-bottom: 20px; }
.scene h2, .scene h1 {
  font-size: clamp(2.15rem, 5.4vw, 5.2rem);
  font-weight: 900; line-height: 1.06; letter-spacing: -.03em;
  color: #f7f5f0;
  text-shadow: 0 18px 60px rgba(0, 0, 0, .6);
}
.scene p {
  margin-top: 20px; color: #c9c7c1;
  font-size: clamp(.92rem, 1vw, 1.05rem); line-height: 1.95;
  max-width: clamp(260px, 32vw, 480px);
  text-shadow: 0 6px 26px rgba(0, 0, 0, .7);
}
.scene .cta { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; pointer-events: auto; }
.scene.s-center .cta { justify-content: center; }

/* per-line mask reveal */
.line-wrap { display: block; overflow: hidden; padding-block: .06em; }
.line-wrap > span { display: block; }

.hero-scroll {
  position: absolute; inset-inline-start: var(--shell); bottom: 34px; z-index: 6;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--f-num); font-size: 10px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--text-muted); direction: ltr;
}
.hero-scroll .track { width: 1px; height: 54px; background: rgba(255, 255, 255, .14); position: relative; overflow: hidden; }
.hero-scroll .track i { position: absolute; inset-inline: 0; top: 0; height: 40%; background: var(--brand-red); animation: scrollTick 2.1s var(--ease) infinite; }
@keyframes scrollTick { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(250%); } }

.hero-meta {
  position: absolute; inset-inline-end: var(--shell); bottom: 34px; z-index: 6;
  display: flex; align-items: center; gap: 18px;
  font-family: var(--f-num); font-size: 10.5px; letter-spacing: .22em; color: var(--text-muted); direction: ltr;
}
.hero-meta .bar { width: 60px; height: 1px; background: rgba(255, 255, 255, .16); position: relative; }
.hero-meta .bar i { position: absolute; inset-block: 0; left: 0; width: 0; background: var(--brand-red); }

/* ---------- ticker ---------- */
.ticker {
  border-block: 1px solid var(--border-dark);
  background: var(--bg-secondary);
  overflow: hidden; padding-block: 20px;
}
.ticker-track { display: flex; width: max-content; animation: slide 42s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 26px; padding-inline: 26px;
  font-size: 14px; font-weight: 600; color: var(--text-secondary); white-space: nowrap;
}
.ticker-item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--brand-red); flex-shrink: 0; }
@keyframes slide { to { transform: translateX(50%); } }

/* ---------- categories ---------- */
.cats { background: #090909; }
/* 6-column bed: rows of 2+2+2 and 3+3 tile perfectly, so the grid is
   asymmetric by design and never leaves a hole. */
.cat-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(clamp(210px, 22vw, 300px), auto);
  margin-top: 54px;
}
.cat.w2 { grid-column: span 2; }
.cat.w3 { grid-column: span 3; }
.cat {
  position: relative; overflow: hidden; border-radius: 4px;
  background: var(--bg-elevated); border: 1px solid var(--border-dark);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(20px, 2vw, 32px);
  transition: border-color .5s var(--ease), transform .7s var(--ease);
  will-change: transform;
}
.cat:hover { border-color: var(--border-hover); }
.cat.tall { grid-row: span 2; }
.cat.wide { grid-column: span 2; }
.cat-img { position: absolute; inset: 0; overflow: hidden; }
.cat-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.62) saturate(.9) contrast(1.05);
  transform: scale(1.02);
  transition: transform 1.3s var(--ease), filter .7s var(--ease);
}
.cat:hover .cat-img img { transform: scale(1.09); filter: brightness(.78) saturate(1.05) contrast(1.02); }
.cat-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(4, 4, 4, .95) 4%, rgba(4, 4, 4, .5) 46%, rgba(4, 4, 4, .28) 100%);
  transition: opacity .6s var(--ease);
}
.cat:hover .cat-img::after { opacity: .86; }
.cat-body { position: relative; z-index: 2; }
.cat-n {
  font-family: var(--f-num); font-size: 10px; letter-spacing: .26em;
  color: rgba(255, 255, 255, .42); direction: ltr;
  display: block; width: fit-content; margin-bottom: 10px;
}
.cat h3 {
  font-size: clamp(1.25rem, 1.9vw, 1.9rem); font-weight: 800;
  transition: transform .6s var(--ease);
}
.cat:hover h3 { transform: translateY(-3px); }
.cat .sub { font-size: 12.5px; color: var(--text-secondary); margin-top: 5px; }
.cat .go {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600; color: var(--text-primary);
  opacity: 0; transform: translateY(10px);
  transition: opacity .5s var(--ease), transform .55s var(--ease);
}
.cat:hover .go { opacity: 1; transform: none; }
.cat .go svg { width: 15px; height: 15px; color: var(--brand-red); }
.cat .count {
  position: absolute; top: clamp(18px, 2vw, 28px); inset-inline-end: clamp(18px, 2vw, 28px); z-index: 2;
  font-family: var(--f-num); font-size: 10.5px; letter-spacing: .1em;
  color: rgba(255, 255, 255, .5); direction: ltr;
  padding: 5px 10px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 2px;
  background: rgba(0, 0, 0, .3); backdrop-filter: blur(6px);
}
/* red hairline that draws in on hover */
.cat::after {
  content: ''; position: absolute; inset-inline: 0; bottom: 0; height: 2px; z-index: 3;
  background: var(--brand-red);
  transform: scaleX(0); transform-origin: inline-end;
  transition: transform .7s var(--ease);
}
.cat:hover::after { transform: scaleX(1); transform-origin: inline-start; }

/* ---------- product card ---------- */
.p-card {
  position: relative; display: flex; flex-direction: column; height: 100%;
  background: var(--bg-card); border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 4px; overflow: hidden;
  transition: background .5s var(--ease), border-color .5s var(--ease), transform .6s var(--ease);
}
.p-card:hover { background: #151515; border-color: rgba(255, 255, 255, .16); }
.p-visual {
  position: relative; aspect-ratio: 1 / 1; display: grid; place-items: center;
  padding: 26px; overflow: hidden;
}
.p-visual::before {
  content: ''; position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  width: 74%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 27, 36, .16), transparent 66%);
  filter: blur(34px); opacity: 0; transition: opacity .7s var(--ease);
}
.p-card:hover .p-visual::before { opacity: 1; }
.p-visual img {
  position: relative; z-index: 2; width: 100%; height: 100%; object-fit: contain;
  transition: transform .9s var(--ease), filter .6s;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, .6));
}
.p-card:hover .p-visual img { transform: scale(1.075) translateY(-4px); }

.p-badges { position: absolute; top: 14px; inset-inline-start: 14px; z-index: 4; display: flex; flex-direction: column; gap: 6px; }
.badge {
  font-family: var(--f-num); font-size: 10px; font-weight: 700; letter-spacing: .1em;
  padding: 5px 9px; border-radius: 2px; direction: ltr;
}
.badge-off { background: var(--brand-red); color: #fff; }
.badge-out { background: rgba(255, 255, 255, .1); color: var(--text-secondary); border: 1px solid var(--border-dark); }
.badge-new { background: rgba(200, 155, 99, .16); color: var(--warm-accent); border: 1px solid rgba(200, 155, 99, .3); }

.p-tools {
  position: absolute; top: 14px; inset-inline-end: 14px; z-index: 4;
  display: flex; flex-direction: column; gap: 7px;
}
.p-tool {
  width: 36px; height: 36px; border-radius: 2px; display: grid; place-items: center;
  background: rgba(10, 10, 10, .74); border: 1px solid var(--border-dark);
  color: var(--text-secondary); backdrop-filter: blur(8px);
  opacity: 0; transform: translateX(-8px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), color .3s, border-color .3s, background .3s;
}
.p-card:hover .p-tool { opacity: 1; transform: none; }
.p-card:hover .p-tool:nth-child(2) { transition-delay: .06s; }
.p-tool:hover { color: var(--text-primary); border-color: var(--border-hover); background: rgba(24, 24, 24, .9); }
.p-tool.on { color: var(--brand-red); border-color: rgba(237, 27, 36, .45); }
.p-tool svg { width: 16px; height: 16px; }

.p-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; border-top: 1px solid rgba(255, 255, 255, .05); }
.p-brand {
  font-family: var(--f-num); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-muted); direction: ltr; margin-bottom: 9px;
  transition: color .35s;
}
.p-card:hover .p-brand { color: var(--warm-accent); }
.p-name {
  font-size: 14.5px; font-weight: 600; line-height: 1.65; color: var(--text-primary);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 3.3em;
}
.p-rate { display: flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 11.5px; color: var(--text-muted); }
.p-rate .stars { display: inline-flex; gap: 2px; }
.p-rate svg { width: 12px; height: 12px; color: var(--warm-accent); }
.p-rate svg.off { color: rgba(255, 255, 255, .16); }
.p-foot { margin-top: auto; padding-top: 16px; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.p-price { display: flex; flex-direction: column; gap: 2px; }
.p-price .old {
  font-size: 12px; color: var(--text-muted); text-decoration: line-through; text-decoration-color: rgba(237, 27, 36, .6);
}
.p-price .now { font-size: 16px; font-weight: 800; color: var(--text-primary); letter-spacing: -.01em; }
.p-price .now .u { font-size: 11.5px; font-weight: 500; color: var(--text-muted); margin-inline-start: 4px; }
.p-price .na { font-size: 13.5px; font-weight: 600; color: var(--text-muted); }
.p-add {
  width: 42px; height: 42px; border-radius: 2px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .05); border: 1px solid var(--border-dark);
  color: var(--text-primary);
  transition: background .4s var(--ease), border-color .4s, color .3s, transform .4s var(--ease);
}
.p-add:hover { background: var(--brand-red); border-color: var(--brand-red); color: #fff; }
.p-add:active { transform: scale(.92); }
.p-add svg { width: 17px; height: 17px; }
.p-card.out .p-visual img { filter: grayscale(.85) brightness(.62); }
.p-card.out .p-add { opacity: .35; pointer-events: none; }

/* tabs */
.tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.tab {
  padding: 10px 18px; border-radius: 2px; font-size: 13.5px; font-weight: 600;
  color: var(--text-muted); border: 1px solid transparent;
  transition: color .3s, background .35s var(--ease), border-color .35s;
}
.tab:hover { color: var(--text-secondary); background: rgba(255, 255, 255, .04); }
.tab.on { color: var(--text-primary); background: rgba(255, 255, 255, .06); border-color: var(--border-dark); }

/* swiper (dark) */
.swiper { overflow: hidden; }
.swiper-slide { height: auto; }
.sw-nav { display: flex; gap: 8px; }
.sw-btn {
  width: 46px; height: 46px; border-radius: 2px; display: grid; place-items: center;
  border: 1px solid var(--border-dark); color: var(--text-secondary);
  transition: color .3s, border-color .3s, background .35s;
}
.sw-btn:hover { color: var(--text-primary); border-color: var(--border-hover); background: rgba(255, 255, 255, .04); }
.sw-btn.swiper-button-disabled { opacity: .3; pointer-events: none; }
.sw-btn svg { width: 17px; height: 17px; }
.sw-prog { height: 1px; background: rgba(255, 255, 255, .09); margin-top: 46px; position: relative; overflow: hidden; }
.sw-prog i { position: absolute; inset-block: 0; inset-inline-start: 0; background: var(--brand-red); width: 0; transition: width .4s var(--ease); }

/* ---------- editorial split ---------- */
.split { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(30px, 5vw, 90px); }
.split-visual {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 4px;
  border: 1px solid var(--border-dark); background: var(--bg-elevated);
}
.split-visual img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.86) contrast(1.04); }
.split-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(4, 4, 4, .7), transparent 55%);
}
.split-badge {
  position: absolute; z-index: 3; bottom: 26px; inset-inline-start: 26px;
  background: rgba(8, 8, 8, .72); backdrop-filter: blur(14px);
  border: 1px solid var(--border-dark); border-radius: 3px;
  padding: 16px 20px; max-width: 260px;
}
.split-badge .k { font-family: var(--f-num); font-size: 26px; font-weight: 700; color: var(--brand-red); direction: ltr; }
.split-badge .v { font-size: 12.5px; color: var(--text-secondary); margin-top: 3px; }

.feat-list { margin-top: 40px; display: grid; gap: 2px; }
.feat-row {
  display: flex; align-items: flex-start; gap: 18px; padding: 20px 0;
  border-top: 1px solid var(--border-dark);
}
.feat-row:last-child { border-bottom: 1px solid var(--border-dark); }
.feat-row .ix { font-family: var(--f-num); font-size: 11px; color: var(--brand-red); direction: ltr; padding-top: 4px; }
.feat-row h4 { font-size: 16px; font-weight: 700; }
.feat-row p { font-size: 13.5px; color: var(--text-secondary); margin-top: 5px; line-height: 1.85; }

/* ---------- special drop ---------- */
.drop { background: var(--bg-main); position: relative; overflow: hidden; }
.drop::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 12% 0%, rgba(237, 27, 36, .16), transparent 58%);
  pointer-events: none;
}
.drop-in { position: relative; z-index: 2; }
.drop-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 4vw, 64px); align-items: end; }
.drop-title {
  font-family: var(--f-num); direction: ltr;
  font-size: clamp(3.2rem, 11vw, 11rem); font-weight: 700; line-height: .82;
  letter-spacing: -.045em; color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .3);
}
.drop-title em { font-style: normal; color: var(--brand-red); -webkit-text-stroke: 0; }

.count { display: flex; gap: 10px; }
.count-cell {
  flex: 1; text-align: center; padding: 18px 8px; border-radius: 3px;
  background: rgba(255, 255, 255, .035); border: 1px solid var(--border-dark);
  position: relative; overflow: hidden;
}
.count-cell::after {
  content: ''; position: absolute; inset-inline: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-red), transparent);
  opacity: .55;
}
.count-cell .n {
  font-family: var(--f-num); direction: ltr;
  font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 700; line-height: 1;
  color: var(--text-primary); font-variant-numeric: tabular-nums;
}
.count-cell .l {
  font-size: 11px; color: var(--text-muted); margin-top: 8px;
  letter-spacing: .04em;
}

/* ---------- brands marquee ---------- */
.brands { background: var(--bg-secondary); border-block: 1px solid var(--border-dark); }
.mq { overflow: hidden; position: relative; }
.mq::before, .mq::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: clamp(60px, 12vw, 190px); z-index: 3; pointer-events: none;
}
.mq::before { inset-inline-start: 0; background: linear-gradient(90deg, var(--bg-secondary), transparent); }
.mq::after { inset-inline-end: 0; background: linear-gradient(270deg, var(--bg-secondary), transparent); }
.mq-track { display: flex; width: max-content; }
.mq-track.a { animation: slide 46s linear infinite; }
.mq-track.b { animation: slide 58s linear infinite reverse; }
.mq:hover .mq-track { animation-play-state: paused; }
.mq-item {
  flex-shrink: 0; width: 190px; height: 96px; margin-inline: 7px;
  display: grid; place-items: center; padding: 20px 24px;
  border: 1px solid transparent; border-radius: 3px;
  transition: border-color .45s var(--ease), background .45s var(--ease);
}
.mq-item img {
  max-height: 100%; width: auto; object-fit: contain;
  filter: grayscale(1) brightness(1.6) contrast(.88);
  opacity: .6;
  transition: opacity .45s var(--ease), filter .45s var(--ease), transform .6s var(--ease);
}
.mq-item:hover { border-color: var(--border-dark); background: rgba(255, 255, 255, .03); }
.mq-item:hover img { opacity: 1; filter: grayscale(0) brightness(1.12); transform: scale(1.06); }

/* ---------- campaign banners ---------- */
.camp-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 14px; }
.camp {
  position: relative; overflow: hidden; border-radius: 4px;
  border: 1px solid var(--border-dark); background: var(--bg-elevated);
  min-height: clamp(300px, 40vw, 520px);
  display: flex; align-items: flex-end; padding: clamp(24px, 3vw, 48px);
  transition: border-color .5s;
}
.camp:hover { border-color: var(--border-hover); }
.camp img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.56) contrast(1.08) saturate(1.02);
  transform: scale(1.03);
  transition: transform 1.4s var(--ease), filter .8s var(--ease);
}
.camp:hover img { transform: scale(1.08); filter: brightness(.68) contrast(1.04); }
.camp::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(4, 4, 4, .93), rgba(4, 4, 4, .25) 58%, rgba(4, 4, 4, .45));
}
.camp-body { position: relative; z-index: 3; max-width: 46ch; }
.camp h3 { font-size: clamp(1.5rem, 2.7vw, 2.7rem); font-weight: 900; letter-spacing: -.025em; margin-top: 12px; }
.camp p { color: var(--text-secondary); font-size: 13.5px; margin-top: 12px; line-height: 1.9; }
.camp .btn { margin-top: 26px; }
.camp-red { background: var(--brand-red-deep); }
.camp-red::after { background: linear-gradient(0deg, rgba(90, 8, 12, .82), rgba(140, 12, 18, .28) 60%, rgba(90, 8, 12, .4)); }
.camp-red img { filter: brightness(.7) contrast(1.05) saturate(1.1); mix-blend-mode: multiply; }

/* ---------- reviews ---------- */
.reviews { background: #0d0d0d; }
.rev-lead {
  font-size: clamp(1.3rem, 2.6vw, 2.35rem); font-weight: 700; line-height: 1.62;
  letter-spacing: -.02em; color: var(--text-primary); max-width: 24ch;
}
.rev-card {
  background: #141414; border: 1px solid var(--border-dark); border-radius: 4px;
  padding: 30px; height: 100%; display: flex; flex-direction: column;
  transition: border-color .5s, background .5s, transform .6s var(--ease);
}
.rev-card:hover { border-color: var(--border-hover); background: #171717; }
.rev-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.rev-stars svg { width: 14px; height: 14px; color: var(--warm-accent); }
.rev-stars svg.off { color: rgba(255, 255, 255, .14); }
.rev-card blockquote { font-size: 14.5px; line-height: 2.05; color: var(--text-secondary); margin: 0; flex: 1; }
.rev-who { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border-dark); display: flex; align-items: center; gap: 13px; }
.rev-av {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-size: 14px; font-weight: 700;
  background: rgba(237, 27, 36, .12); color: var(--brand-red); border: 1px solid rgba(237, 27, 36, .24);
}
.rev-who .n { font-size: 13.5px; font-weight: 700; }
.rev-who .c { font-size: 11.5px; color: var(--text-muted); }
.rev-prod { margin-top: 14px; font-size: 11.5px; color: var(--text-muted); }
.rev-prod b { color: var(--warm-accent); font-weight: 600; }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-dark); border-block: 1px solid var(--border-dark); }
.stat { background: var(--bg-main); padding: 34px 24px; text-align: center; }
.stat .k {
  font-family: var(--f-num); direction: ltr;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem); font-weight: 700; letter-spacing: -.03em;
  color: var(--text-primary);
}
.stat .k em { font-style: normal; color: var(--brand-red); }
.stat .v { font-size: 12.5px; color: var(--text-muted); margin-top: 8px; }

/* ---------- newsletter ---------- */
.news { position: relative; overflow: hidden; background: var(--bg-secondary); }
.news::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 90% at 50% 110%, rgba(237, 27, 36, .14), transparent 62%);
}
.news-in { position: relative; z-index: 2; text-align: center; max-width: 720px; margin-inline: auto; }
.field { position: relative; display: flex; gap: 10px; margin-top: 34px; }
.input {
  flex: 1; height: 56px; padding-inline: 20px;
  background: rgba(255, 255, 255, .04); border: 1px solid var(--border-dark); border-radius: 2px;
  color: var(--text-primary); font-family: inherit; font-size: 14.5px;
  transition: border-color .35s, background .35s;
}
.input::placeholder { color: var(--text-muted); }
.input:focus { outline: none; border-color: rgba(237, 27, 36, .55); background: rgba(255, 255, 255, .055); }
.input:-webkit-autofill,
.input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text-primary);
  -webkit-box-shadow: 0 0 0 1000px #131313 inset;
  caret-color: var(--text-primary);
}
.news-note { margin-top: 16px; font-size: 12px; color: var(--text-muted); }
.form-msg { margin-top: 14px; font-size: 13px; color: var(--warm-accent); min-height: 20px; }

/* ---------- footer ---------- */
.footer { background: #050505; border-top: 1px solid var(--border-dark); position: relative; overflow: hidden; }
.f-word {
  position: absolute; inset-inline: 0; bottom: -2.5%; z-index: 0; text-align: center;
  font-family: var(--f-num); direction: ltr;
  font-size: clamp(4.5rem, 20vw, 21rem); font-weight: 700; line-height: .8;
  letter-spacing: -.04em; color: rgba(255, 255, 255, .035);
  pointer-events: none; user-select: none; white-space: nowrap;
}
.f-in { position: relative; z-index: 2; }
.f-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: clamp(24px, 3vw, 54px); }
.f-col h5 {
  font-family: var(--f-num); font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 20px; direction: ltr;
}
.f-col li { margin-bottom: 11px; }
.f-col a { font-size: 13.5px; color: var(--text-secondary); transition: color .3s, padding .4s var(--ease); display: inline-block; }
.f-col a:hover { color: var(--text-primary); padding-inline-start: 6px; }
.f-about p { font-size: 13.5px; color: var(--text-secondary); line-height: 2; margin-top: 20px; max-width: 40ch; }
.f-social { display: flex; gap: 8px; margin-top: 26px; }
.f-social a {
  width: 40px; height: 40px; border-radius: 2px; display: grid; place-items: center;
  border: 1px solid var(--border-dark); color: var(--text-secondary);
  transition: color .3s, border-color .3s, background .35s, transform .45s var(--ease);
}
.f-social a:hover { color: var(--text-primary); border-color: var(--border-hover); background: rgba(255, 255, 255, .04); transform: translateY(-3px); }
.f-social svg { width: 17px; height: 17px; }
.f-bottom {
  margin-top: clamp(48px, 6vw, 84px); padding-top: 26px; border-top: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.f-bottom .c { font-size: 12.5px; color: var(--text-muted); }
.f-pay { display: flex; align-items: center; gap: 10px; }
.f-pay span {
  padding: 7px 12px; border: 1px solid var(--border-dark); border-radius: 2px;
  font-family: var(--f-num); font-size: 10.5px; letter-spacing: .12em; color: var(--text-muted); direction: ltr;
  transition: color .3s, border-color .3s;
}
.f-pay span:hover { color: var(--text-secondary); border-color: var(--border-hover); }

/* ---------- overlays: shared ---------- */
.scrim {
  position: fixed; inset: 0; z-index: 850; background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(3px); opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
}
.scrim.on { opacity: 1; visibility: visible; }

/* search */
.search {
  position: fixed; inset: 0; z-index: 900; background: rgba(5, 5, 5, .96);
  backdrop-filter: blur(22px);
  opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s;
  display: flex; flex-direction: column;
}
.search.on { opacity: 1; visibility: visible; }
.search-top { padding-top: clamp(28px, 6vh, 70px); }
.search-field { display: flex; align-items: center; gap: 18px; border-bottom: 1px solid var(--border-dark); padding-bottom: 20px; }
.search-field svg { width: 26px; height: 26px; color: var(--text-muted); flex-shrink: 0; }
.search-input {
  flex: 1; background: none; border: 0; outline: none; color: var(--text-primary);
  font-family: inherit; font-size: clamp(1.3rem, 3.4vw, 2.6rem); font-weight: 700; letter-spacing: -.02em;
  padding: 0;
}
.search-input::placeholder { color: #3a3a38; }
.search-body { flex: 1; overflow-y: auto; padding-block: 34px clamp(30px, 8vh, 80px); }
.search-tagline { font-family: var(--f-num); font-size: 10px; letter-spacing: .3em; color: var(--text-muted); text-transform: uppercase; direction: ltr; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip {
  padding: 9px 16px; border: 1px solid var(--border-dark); border-radius: 2px;
  font-size: 13px; color: var(--text-secondary);
  transition: color .3s, border-color .3s, background .35s;
}
.chip:hover { color: var(--text-primary); border-color: var(--border-hover); background: rgba(255, 255, 255, .04); }
.res-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px; margin-top: 24px; }
.res {
  display: flex; align-items: center; gap: 14px; padding: 12px;
  background: var(--bg-card); border: 1px solid var(--border-dark); border-radius: 3px;
  transition: border-color .4s, background .4s, transform .5s var(--ease);
}
.res:hover { border-color: var(--border-hover); background: var(--bg-elevated); transform: translateY(-2px); }
.res img { width: 54px; height: 54px; object-fit: contain; flex-shrink: 0; }
.res .n { font-size: 13px; font-weight: 600; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.res .p { font-size: 12px; color: var(--warm-accent); margin-top: 4px; }
.empty { text-align: center; padding-block: 70px; }
.empty svg { width: 46px; height: 46px; color: #262626; margin-inline: auto; }
.empty h4 { font-size: 17px; margin-top: 20px; }
.empty p { font-size: 13.5px; color: var(--text-muted); margin-top: 8px; }

/* cart drawer */
.cart {
  position: fixed; inset-block: 0; inset-inline-end: 0; z-index: 900;
  width: min(430px, 100vw); background: #0c0c0c;
  border-inline-start: 1px solid var(--border-dark);
  display: flex; flex-direction: column;
  transform: translateX(100%); visibility: hidden;
  transition: transform .62s var(--ease), visibility .62s;
}
html[dir="rtl"] .cart { transform: translateX(-100%); }
.cart.on { transform: none !important; visibility: visible; }
.cart-head { padding: 24px 26px; border-bottom: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: space-between; }
.cart-head h3 { font-size: 16px; font-weight: 700; }
.cart-head .n { font-family: var(--f-num); font-size: 11px; color: var(--text-muted); direction: ltr; }
.cart-body { flex: 1; overflow-y: auto; padding: 20px 26px; }
.ci { display: flex; gap: 14px; padding: 16px; background: #141414; border: 1px solid var(--border-dark); border-radius: 3px; margin-bottom: 10px; }
.ci-img { width: 66px; height: 66px; flex-shrink: 0; background: #0e0e0e; border-radius: 2px; display: grid; place-items: center; padding: 6px; }
.ci-img img { width: 100%; height: 100%; object-fit: contain; }
.ci-b { flex: 1; min-width: 0; }
.ci-n { font-size: 13px; font-weight: 600; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ci-p { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-top: 6px; }
.ci-p .u { font-size: 10.5px; color: var(--text-muted); font-weight: 500; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--border-dark); border-radius: 2px; margin-top: 10px; }
.qty button { width: 28px; height: 28px; display: grid; place-items: center; color: var(--text-secondary); transition: color .25s, background .25s; }
.qty button:hover { color: var(--text-primary); background: rgba(255, 255, 255, .05); }
.qty span { min-width: 30px; text-align: center; font-size: 13px; font-family: var(--f-num); direction: ltr; }
.ci-x { color: var(--text-muted); align-self: flex-start; transition: color .3s; }
.ci-x:hover { color: var(--brand-red); }
.ci-x svg { width: 15px; height: 15px; }
.cart-foot { padding: 22px 26px 26px; border-top: 1px solid var(--border-dark); background: #0a0a0a; }
.cart-line { display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; color: var(--text-secondary); margin-bottom: 10px; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 14px; border-top: 1px solid var(--border-dark); margin-bottom: 18px; }
.cart-total .l { font-size: 14px; font-weight: 600; }
.cart-total .v { font-size: 21px; font-weight: 800; }
.cart-total .v .u { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-inline-start: 5px; }
.free-bar { height: 3px; background: rgba(255, 255, 255, .07); border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.free-bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--brand-red), #ff5a61); transition: width .6s var(--ease); }

/* quick view */
.qv {
  position: fixed; inset: 0; z-index: 900; display: grid; place-items: center;
  padding: clamp(14px, 4vw, 46px);
  opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s;
}
.qv.on { opacity: 1; visibility: visible; }
.qv-panel {
  position: relative; width: min(1080px, 100%); max-height: 90vh; overflow: hidden;
  background: #0e0e0e; border: 1px solid var(--border-dark); border-radius: 5px;
  display: grid; grid-template-columns: 1.05fr 1fr;
  transform: translateY(24px) scale(.985);
  transition: transform .6s var(--ease);
}
.qv.on .qv-panel { transform: none; }
.qv-visual {
  position: relative; background: #0a0a0a; display: grid; place-items: center;
  padding: clamp(26px, 4vw, 56px); border-inline-end: 1px solid var(--border-dark);
}
.qv-visual::before {
  content: ''; position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  width: 68%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 27, 36, .2), transparent 66%); filter: blur(44px);
}
.qv-visual img { position: relative; z-index: 2; max-height: 46vh; width: auto; object-fit: contain; filter: drop-shadow(0 32px 50px rgba(0, 0, 0, .7)); }
.qv-body { padding: clamp(26px, 3.4vw, 46px); overflow-y: auto; }
.qv-body h3 { font-size: clamp(1.15rem, 1.9vw, 1.7rem); font-weight: 800; line-height: 1.5; margin-top: 12px; }
.qv-desc { font-size: 13.5px; color: var(--text-secondary); line-height: 2; margin-top: 18px; }
.qv-price { display: flex; align-items: baseline; gap: 12px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--border-dark); }
.qv-price .now { font-size: 27px; font-weight: 800; }
.qv-price .now .u { font-size: 13px; font-weight: 500; color: var(--text-muted); margin-inline-start: 6px; }
.qv-price .old { font-size: 15px; color: var(--text-muted); text-decoration: line-through; }
.qv-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-dark); border: 1px solid var(--border-dark); border-radius: 3px; margin-top: 24px; overflow: hidden; }
.qv-meta div { background: #0e0e0e; padding: 14px 16px; }
.qv-meta .k { font-size: 11px; color: var(--text-muted); }
.qv-meta .v { font-size: 13px; font-weight: 600; margin-top: 4px; }
.qv-acts { display: flex; gap: 10px; margin-top: 26px; }
.qv-x {
  position: absolute; top: 14px; inset-inline-end: 14px; z-index: 5;
  width: 38px; height: 38px; border-radius: 2px; display: grid; place-items: center;
  background: rgba(10, 10, 10, .7); border: 1px solid var(--border-dark);
  color: var(--text-secondary); backdrop-filter: blur(8px);
  transition: color .3s, border-color .3s;
}
.qv-x:hover { color: var(--brand-red); border-color: rgba(237, 27, 36, .4); }
.qv-x svg { width: 16px; height: 16px; }

/* toast */
.toasts { position: fixed; bottom: 22px; inset-inline-start: 22px; z-index: 9600; display: flex; flex-direction: column; gap: 8px; }
.toast {
  display: flex; align-items: center; gap: 12px; padding: 14px 20px;
  background: rgba(18, 18, 18, .95); border: 1px solid var(--border-dark);
  border-inline-start: 2px solid var(--brand-red); border-radius: 3px;
  backdrop-filter: blur(12px); font-size: 13.5px; min-width: 250px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .6);
}
.toast svg { width: 17px; height: 17px; color: var(--brand-red); flex-shrink: 0; }

/* mobile menu */
.mnav {
  position: fixed; inset: 0; z-index: 880; background: var(--bg-main);
  transform: translateY(-100%); transition: transform .7s var(--ease);
  display: flex; flex-direction: column; padding-top: var(--h-header);
  overflow-y: auto;
}
.mnav.on { transform: none; }
.mnav-in { padding: 24px var(--shell) 60px; }
.mnav-item { border-bottom: 1px solid var(--border-dark); }
/* explicit flex order — never leave the index/label order to bidi resolution */
.mnav-item > a, .mnav-item > button {
  display: flex; align-items: center; gap: 14px; width: 100%;
  padding: 18px 0; font-size: 20px; font-weight: 700; color: var(--text-primary);
}
.mnav-t { flex: 1; min-width: 0; text-align: start; }
.mnav-item .n { font-family: var(--f-num); font-size: 11px; color: var(--text-muted); direction: ltr; }
.mnav-sub { display: none; padding-bottom: 14px; }
.mnav-item.open .mnav-sub { display: block; }
.mnav-sub a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 0; padding-inline-start: 30px;
  font-size: 14.5px; font-weight: 500; color: var(--text-secondary);
  transition: color .3s, padding .4s var(--ease);
}
.mnav-sub a:hover { color: var(--brand-red); padding-inline-start: 38px; }

/* scroll progress */
.sprog { position: fixed; top: 0; inset-inline: 0; height: 2px; z-index: 950; background: transparent; }
.sprog i { display: block; height: 100%; width: 0; background: var(--brand-red); }

/* back to top */
.totop {
  position: fixed; bottom: 24px; inset-inline-end: 24px; z-index: 700;
  width: 46px; height: 46px; border-radius: 2px; display: grid; place-items: center;
  background: rgba(16, 16, 16, .8); border: 1px solid var(--border-dark);
  color: var(--text-secondary); backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .45s, visibility .45s, transform .5s var(--ease), color .3s, border-color .3s;
}
.totop.on { opacity: 1; visibility: visible; transform: none; }
.totop:hover { color: var(--text-primary); border-color: var(--border-hover); }
.totop svg { width: 17px; height: 17px; }

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(26px); }
.rv-in { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform 1s var(--ease); }

/* ---------- responsive ---------- */
@media (max-width: 1180px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat.w2, .cat.w3 { grid-column: span 1; }
  .split { grid-template-columns: 1fr; }
  .split-visual { aspect-ratio: 16 / 10; }
  .drop-head { grid-template-columns: 1fr; }
  .camp-grid { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr 1fr 1fr; }
  .f-about { grid-column: 1 / -1; }
  .qv-panel { grid-template-columns: 1fr; max-height: 88vh; overflow-y: auto; }
  .qv-visual { border-inline-end: 0; border-bottom: 1px solid var(--border-dark); }
  .qv-visual img { max-height: 32vh; }
}
@media (max-width: 1024px) {
  .nav, .hd-actions .only-lg { display: none; }
  .burger { display: grid; }
  .mega { display: none; }
}
@media (max-width: 720px) {
  :root { --h-header: 68px; }
  body { font-size: 15px; }
  .cat-grid { grid-template-columns: 1fr; grid-auto-rows: minmax(190px, auto); }
  .cat.tall, .cat.wide { grid-row: auto; grid-column: auto; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .f-grid { grid-template-columns: 1fr 1fr; }
  .count-cell { padding: 14px 6px; }
  .hero-meta { display: none; }
  .scene .cta { flex-direction: column; align-items: stretch; }
  .scene .cta .btn { justify-content: center; }
  .toasts { inset-inline: 16px; bottom: 16px; }
  .res-grid { grid-template-columns: 1fr; }
  .p-tool { opacity: 1; transform: none; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .grain { animation: none; }
  .rv { opacity: 1; transform: none; }
}

/* ==========================================================================
   ADDED SECTIONS
   ========================================================================== */

/* ---------- trust / service bar ---------- */
.trust { background: var(--bg-secondary); border-bottom: 1px solid var(--border-dark); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-dark); }
.trust-cell {
  background: var(--bg-secondary); padding: clamp(24px, 3vw, 40px) clamp(18px, 2vw, 34px);
  display: flex; align-items: flex-start; gap: 16px;
  transition: background .5s var(--ease);
}
.trust-cell:hover { background: var(--bg-elevated); }
.trust-ic {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 3px;
  display: grid; place-items: center;
  background: rgba(237, 27, 36, .1); border: 1px solid rgba(237, 27, 36, .22);
  color: var(--brand-red);
  transition: background .45s var(--ease), transform .5s var(--ease);
}
.trust-cell:hover .trust-ic { background: rgba(237, 27, 36, .17); transform: translateY(-2px); }
.trust-ic svg { width: 20px; height: 20px; }
.trust-cell h4 { font-size: 14.5px; font-weight: 700; }
.trust-cell p { font-size: 12.5px; color: var(--text-muted); margin-top: 5px; line-height: 1.8; }

/* ---------- bestsellers: ranked editorial ---------- */
.rank { background: var(--bg-secondary); }
.rank-wrap { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(30px, 5vw, 84px); align-items: start; margin-top: 54px; }
.rank-stage {
  position: sticky; top: 110px;
  aspect-ratio: 1 / 1; border-radius: 4px; overflow: hidden;
  background: var(--bg-elevated); border: 1px solid var(--border-dark);
  display: grid; place-items: center;
}
.rank-stage::before {
  content: ''; position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  width: 70%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 27, 36, .2), transparent 66%);
  filter: blur(42px);
}
.rank-stage img {
  position: absolute; inset: clamp(30px, 5vw, 74px);
  width: auto; height: auto; max-width: 100%; max-height: 100%;
  margin: auto; object-fit: contain;
  opacity: 0; transform: scale(.94);
  transition: opacity .6s var(--ease), transform .8s var(--ease);
  filter: drop-shadow(0 34px 46px rgba(0, 0, 0, .68));
}
.rank-stage img.on { opacity: 1; transform: none; }
.rank-ghost {
  position: absolute; inset-inline-start: clamp(20px, 2.5vw, 34px); top: clamp(16px, 2.2vw, 26px);
  font-family: var(--f-num); font-size: clamp(3.4rem, 7vw, 6.6rem); font-weight: 700;
  line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .13);
  pointer-events: none; z-index: 3; direction: ltr;
}
.rank-list { display: flex; flex-direction: column; }
.rank-row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(14px, 2vw, 28px);
  padding: clamp(18px, 2.2vw, 26px) 0;
  border-top: 1px solid var(--border-dark);
  cursor: pointer; position: relative; text-align: start;
  transition: padding .5s var(--ease);
}
.rank-row:last-child { border-bottom: 1px solid var(--border-dark); }
.rank-row::after {
  content: ''; position: absolute; inset-inline: 0; bottom: -1px; height: 1px;
  background: var(--brand-red); transform: scaleX(0); transform-origin: inline-end;
  transition: transform .6s var(--ease);
}
.rank-row.on::after, .rank-row:hover::after { transform: scaleX(1); transform-origin: inline-start; }
.rank-row .r {
  font-family: var(--f-num); font-size: 13px; font-weight: 600; direction: ltr;
  color: var(--text-muted); width: 30px; transition: color .4s;
}
.rank-row.on .r, .rank-row:hover .r { color: var(--brand-red); }
.rank-row .t { min-width: 0; }
.rank-row .b {
  font-family: var(--f-num); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-muted); direction: ltr; display: block; margin-bottom: 6px;
}
.rank-row h3 {
  font-size: clamp(.98rem, 1.25vw, 1.22rem); font-weight: 700; line-height: 1.6;
  color: var(--text-secondary);
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .4s;
}
.rank-row.on h3, .rank-row:hover h3 { color: var(--text-primary); }
.rank-row .pr { text-align: end; white-space: nowrap; }
.rank-row .pr .v { font-size: 15px; font-weight: 700; }
.rank-row .pr .u { font-size: 10.5px; color: var(--text-muted); margin-inline-start: 4px; }
.rank-row .pr .o { display: block; font-size: 11.5px; color: var(--text-muted); text-decoration: line-through; }
.rank-mini { display: none; }

/* ---------- brew method picker ---------- */
.brew { background: var(--bg-main); }
.brew-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 40px; }
.brew-tab {
  display: flex; align-items: center; gap: 11px;
  padding: 14px 20px; border-radius: 3px;
  border: 1px solid var(--border-dark); background: rgba(255, 255, 255, .02);
  color: var(--text-secondary); font-size: 14px; font-weight: 600;
  transition: color .3s, border-color .35s, background .35s var(--ease), transform .4s var(--ease);
}
.brew-tab:hover { color: var(--text-primary); border-color: var(--border-hover); transform: translateY(-2px); }
.brew-tab.on { color: var(--text-primary); border-color: rgba(237, 27, 36, .5); background: rgba(237, 27, 36, .09); }
.brew-tab svg { width: 18px; height: 18px; opacity: .75; }
.brew-tab.on svg { color: var(--brand-red); opacity: 1; }

.brew-panel {
  margin-top: 24px; display: grid; grid-template-columns: .78fr 1.22fr;
  border: 1px solid var(--border-dark); border-radius: 4px;
  background: var(--bg-elevated); overflow: hidden;
}
.brew-info { padding: clamp(26px, 3vw, 44px); border-inline-end: 1px solid var(--border-dark); }
.brew-info h3 { font-size: clamp(1.3rem, 2vw, 1.9rem); font-weight: 800; margin-top: 12px; }
.brew-info p { font-size: 13.5px; color: var(--text-secondary); line-height: 2; margin-top: 14px; }
.brew-specs { margin-top: 26px; display: grid; gap: 1px; background: var(--border-dark); border: 1px solid var(--border-dark); border-radius: 3px; overflow: hidden; }
.brew-specs div { background: var(--bg-elevated); padding: 13px 16px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.brew-specs .k { font-size: 12.5px; color: var(--text-muted); }
.brew-specs .v { font-size: 13px; font-weight: 700; }
.brew-items { padding: clamp(20px, 2.4vw, 30px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; align-content: start; }
.brew-items .p-card { background: var(--bg-card); }

/* ---------- visit the store ---------- */
.visit { position: relative; overflow: hidden; background: var(--bg-main); display: flex; align-items: center; }
.visit-bg { position: absolute; inset: 0; }
.visit-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.5) contrast(1.06); }
.visit-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(270deg, rgba(5, 5, 5, .93) 6%, rgba(5, 5, 5, .55) 42%, rgba(5, 5, 5, .18) 78%),
    linear-gradient(0deg, rgba(5, 5, 5, .8), transparent 46%);
}
.visit-in { position: relative; z-index: 2; width: 100%; padding-block: clamp(70px, 9vw, 130px); }
.visit-card { max-width: 560px; }
.visit-rows { margin-top: 30px; display: grid; gap: 1px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .1); border-radius: 4px; overflow: hidden; }
.visit-rows > div {
  background: rgba(10, 10, 10, .68); backdrop-filter: blur(10px);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
}
.visit-rows svg { width: 17px; height: 17px; color: var(--brand-red); flex-shrink: 0; }
.visit-rows .k { display: block; font-size: 11.5px; color: var(--text-muted); }
.visit-rows .v { display: block; font-size: 13.5px; font-weight: 600; margin-top: 3px; }

/* ---------- faq ---------- */
.faq { background: var(--bg-secondary); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 5vw, 80px); align-items: start; }
.faq-list { border-top: 1px solid var(--border-dark); }
.faq-item { border-bottom: 1px solid var(--border-dark); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: clamp(20px, 2.2vw, 28px) 0; text-align: start;
  font-size: clamp(.95rem, 1.2vw, 1.1rem); font-weight: 700; color: var(--text-secondary);
  transition: color .35s;
}
.faq-q:hover, .faq-item.open .faq-q { color: var(--text-primary); }
.faq-sign { width: 34px; height: 34px; flex-shrink: 0; border: 1px solid var(--border-dark); border-radius: 3px; display: grid; place-items: center; position: relative; transition: border-color .4s, background .4s; }
.faq-item.open .faq-sign { border-color: rgba(237, 27, 36, .45); background: rgba(237, 27, 36, .1); }
.faq-sign::before, .faq-sign::after {
  content: ''; position: absolute; background: var(--text-secondary);
  transition: transform .45s var(--ease), background .35s;
}
.faq-sign::before { width: 12px; height: 1.5px; }
.faq-sign::after { width: 1.5px; height: 12px; }
.faq-item.open .faq-sign::before, .faq-item.open .faq-sign::after { background: var(--brand-red); }
.faq-item.open .faq-sign::after { transform: scaleY(0); }
.faq-a { overflow: hidden; height: 0; }
.faq-a p { font-size: 13.5px; color: var(--text-muted); line-height: 2.05; padding-bottom: 26px; max-width: 66ch; }

/* ---------- mobile nav polish ---------- */
.mnav-item > a, .mnav-item > button { font-family: var(--f-display); }
.mnav-item .n { flex-shrink: 0; }
.mnav-item svg.n, .mnav-sub svg.n { width: 16px; height: 16px; color: var(--text-muted); }
.mnav-ix {
  font-family: var(--f-num); font-size: 10px; letter-spacing: .2em;
  color: var(--text-muted);
  display: inline-block; direction: ltr; unicode-bidi: isolate;
  margin-inline-end: 14px;
}
.mnav-foot { margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--border-dark); }
.mnav-foot .row { display: flex; align-items: center; gap: 12px; padding: 12px 0; color: var(--text-secondary); font-size: 13.5px; }
.mnav-foot svg { width: 16px; height: 16px; color: var(--brand-red); }

/* ---------- responsive for added sections ---------- */
@media (max-width: 1180px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .rank-wrap { grid-template-columns: 1fr; }
  .rank-stage { display: none; }
  .rank-mini { display: block; width: 62px; height: 62px; flex-shrink: 0; background: #0d0d0d; border: 1px solid var(--border-dark); border-radius: 3px; padding: 6px; }
  .rank-mini img { width: 100%; height: 100%; object-fit: contain; }
  .rank-row { grid-template-columns: auto auto 1fr auto; }
  .brew-panel { grid-template-columns: 1fr; }
  .brew-info { border-inline-end: 0; border-bottom: 1px solid var(--border-dark); }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .trust-grid { grid-template-columns: 1fr; }
  .brew-items { grid-template-columns: 1fr 1fr; }
  .rank-row .pr .u { display: none; }
  .rank-row h3 { -webkit-line-clamp: 2; }
  /* tab strips scroll instead of stacking into three rows */
  .tabs, .brew-tabs {
    flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none;
    margin-inline: calc(var(--shell) * -1); padding-inline: var(--shell);
  }
  .tabs::-webkit-scrollbar, .brew-tabs::-webkit-scrollbar { display: none; }
  .tab, .brew-tab { flex-shrink: 0; }
}
