/* Aweh Eyewear: Elevated Experience.
   Direct port of the Lovable design system (src/styles.css) to static CSS.
   Token values are the original oklch definitions, unchanged. */

@font-face {
  font-family: 'Anton';
  src: url('fonts/anton.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('fonts/manrope.woff2') format('woff2-variations');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Mono';
  src: url('fonts/spacemono.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Mono';
  src: url('fonts/spacemono-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --radius: 0.25rem;

  --ink: oklch(0.13 0.022 25);
  --oxblood: oklch(0.32 0.115 22);
  --ember: oklch(0.62 0.2 33);
  --gold: oklch(0.82 0.14 84);
  --sand: oklch(0.95 0.02 80);
  --veld: oklch(0.72 0.13 175);

  --background: oklch(0.13 0.022 25);
  --foreground: oklch(0.96 0.012 80);
  --card: oklch(0.17 0.028 24);
  --primary: oklch(0.82 0.14 84);
  --primary-foreground: oklch(0.15 0.03 30);
  --secondary: oklch(0.32 0.115 22);
  --muted: oklch(0.22 0.03 25);
  --muted-foreground: oklch(0.7 0.025 60);
  --accent: oklch(0.62 0.2 33);
  --border: oklch(0.98 0.01 80 / 12%);
  --ring: oklch(0.82 0.14 84);

  --gradient-ember: linear-gradient(135deg, oklch(0.32 0.115 22), oklch(0.62 0.2 33) 55%, oklch(0.82 0.14 84));
  --gradient-veil: linear-gradient(to top, oklch(0.13 0.022 25) 4%, oklch(0.13 0.022 25 / 72%) 38%, oklch(0.13 0.022 25 / 10%) 82%);
  --shadow-lift: 0 30px 80px -40px oklch(0.05 0.02 25 / 90%);
  --shadow-glow: 0 0 90px -20px oklch(0.62 0.2 33 / 55%);

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-sans: 'Manrope', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --shell: 1600px;
}

*, *::before, *::after { box-sizing: border-box; border-color: var(--border); }

body.aweh2 {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.aweh2 h1, .aweh2 h2, .aweh2 h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}
.aweh2 p { margin: 0; }
.aweh2 img { max-width: 100%; display: block; }
.aweh2 a { color: inherit; text-decoration: none; }
.aweh2 ul { list-style: none; margin: 0; padding: 0; }
.aweh2 ::selection { background: var(--gold); color: var(--ink); }

.aweh2 :where(a, button, input, [tabindex]):focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 3px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.shell { margin-inline: auto; max-width: var(--shell); padding-inline: 20px; }
@media (min-width: 768px) { .shell { padding-inline: 40px; } }

/* ---------- Design-system utilities (ported 1:1) ---------- */
.type-mega {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 0.82;
  letter-spacing: -0.02em;
  font-size: clamp(2.75rem, 11vw, 11rem);
}
.type-eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.6875rem;
}
.text-gradient-ember {
  background: var(--gradient-ember);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.outline-type {
  color: transparent;
  -webkit-text-stroke: 1px oklch(0.96 0.012 80 / 45%);
}
.veil { background: var(--gradient-veil); }
.grain { position: relative; }
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.shimmer-line { background: linear-gradient(90deg, transparent, oklch(0.82 0.14 84 / 80%), transparent); }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-track { animation: marquee 28s linear infinite; }

@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
  50% { transform: none; animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}
.animate-bounce { animation: bounce 1s infinite; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transform: translateY(-80px);
  opacity: 0;
  transition: transform 0.9s var(--ease-out-expo) 0.2s, opacity 0.9s var(--ease-out-expo) 0.2s;
}
.nav.is-in { transform: none; opacity: 1; }
.nav__shell {
  border-bottom: 1px solid transparent;
  transition: background-color 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease;
}
.nav.is-solid .nav__shell {
  border-bottom-color: var(--border);
  background: oklch(0.13 0.022 25 / 85%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.nav__row {
  margin-inline: auto;
  max-width: var(--shell);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  min-width: 0;
}
.nav__brand, .nav__actions { flex: 0 0 auto; }
@media (min-width: 768px) { .nav__row { padding-inline: 40px; } }
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand { gap: 16px; }
.nav__mark {
  display: block;
  width: 66px; height: 66px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px oklch(0.82 0.14 84 / 55%), 0 0 0 1px oklch(0.82 0.14 84 / 20%);
  flex-shrink: 0;
}
.nav__mark img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.42); }
@media (max-width: 640px) { .nav__mark { width: 52px; height: 52px; } }
.nav__name { line-height: 1; }
.nav__name b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  line-height: 0.95;
  letter-spacing: 0.15em;
  color: var(--foreground);
}
.nav__name > span {
  display: block;
  margin-top: 3px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--primary);
}
@media (max-width: 640px) { .nav__name b { font-size: 1.5rem; } .nav__name > span { letter-spacing: 0.3em; font-size: 0.6rem; } }
/* The real menu carries long labels ("Blue Light Blocking Glasses"), so the
   row must never wrap: wrapping was pushing links back over the logo. Below
   the breakpoint the drawer takes over instead. */
.nav__links {
  display: none;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(14px, 1.5vw, 26px);
  min-width: 0;
}
.nav__links > li { flex: 0 0 auto; }
.nav__links a { white-space: nowrap; font-size: 0.625rem; letter-spacing: 0.16em; }
@media (min-width: 1280px) { .nav__links { display: flex; } }
.nav__item { position: relative; }
.nav__item > a { display: inline-flex; align-items: center; gap: 7px; }
.nav__chev { display: inline-grid; transition: transform 0.28s var(--ease-out-expo); }
.nav__chev svg { width: 12px; height: 12px; }
.nav__item.has-sub:hover .nav__chev, .nav__item.has-sub:focus-within .nav__chev { transform: rotate(180deg); }

/* Dropdown submenus */
.nav__sub {
  position: absolute;
  top: calc(100% + 14px);
  left: -20px;
  min-width: 236px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: oklch(0.15 0.024 25 / 97%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lift);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.26s var(--ease-out-expo), transform 0.26s var(--ease-out-expo), visibility 0.26s;
  z-index: 60;
}
.nav__sub::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav__item.has-sub:hover .nav__sub,
.nav__item.has-sub:focus-within .nav__sub { opacity: 1; visibility: visible; transform: none; }
.nav__sub a {
  display: block;
  padding: 11px 14px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: oklch(0.96 0.012 80 / 82%);
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.nav__sub a:hover { color: var(--primary); background: oklch(0.82 0.14 84 / 10%); transform: translateX(3px); }
.nav__links a {
  position: relative;
  color: oklch(0.96 0.012 80 / 80%);
  transition: color 0.3s ease;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -8px;
  height: 1px; width: 100%;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav__links a:hover { color: var(--primary); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__actions { display: flex; align-items: center; gap: 8px; }
.nav__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: oklch(0.96 0.012 80 / 80%);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.nav__icon:hover { color: var(--primary); border-color: var(--primary); }
.nav__icon svg { width: 16px; height: 16px; }
/* The 40px circle is the design; this invisibly grows the hit area to the
   44px touch minimum without changing a single rendered pixel. */
.nav__icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
}
.nav__icon--wish { display: none; }
@media (min-width: 640px) { .nav__icon--wish { display: grid; } }
.nav__cart {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 12px 16px;
  transition: transform 0.3s ease;
  min-height: 44px;
}
.nav__cart:hover { transform: scale(1.05); }
.nav__cart svg { width: 16px; height: 16px; }
.nav__cart span { display: none; }
@media (min-width: 640px) { .nav__cart span { display: inline; } }
/* ---------- Global glass navigation ---------- */
.nav__menubtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  margin-left: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.nav__menubtn:hover { border-color: var(--primary); background: oklch(0.82 0.14 84 / 10%); }
.nav__menuword {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav__menubars { display: grid; gap: 4px; width: 20px; }
.nav__menubars i {
  display: block;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out-expo), opacity 0.2s ease;
}
/* Burger folds into a cross: outer bars meet, middle one drops out. */
.nav__menubtn[aria-expanded='true'] .nav__menubars i:first-child { transform: translateY(5.5px) rotate(45deg); }
.nav__menubtn[aria-expanded='true'] .nav__menubars i:nth-child(2) { opacity: 0; transform: scaleX(0.4); }
.nav__menubtn[aria-expanded='true'] .nav__menubars i:last-child { transform: translateY(-5.5px) rotate(-45deg); }
@media (min-width: 1280px) { .nav__menubtn { display: none; } }

/* Phones get the plain burger: a round icon button, no label, thumb-sized.
   Tablets keep the labelled pill, where there is room for the word. */
@media (max-width: 767px) {
  .nav__menubtn {
    width: 46px;
    height: 46px;
    padding: 0;
    margin-left: 2px;
    justify-content: center;
    gap: 0;
  }
  .nav__menuword { display: none; }
}

.glassnav { position: fixed; inset: 0; z-index: 90; }
.glassnav[hidden] { display: none; }
.glassnav__scrim {
  position: absolute;
  inset: 0;
  background: oklch(0.08 0.014 25 / 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.glassnav.is-in .glassnav__scrim { opacity: 1; }
.glassnav__panel {
  position: absolute;
  inset: 0 0 auto 0;
  max-height: 100svh;
  overflow-y: auto;
  padding: 18px 20px 32px;
  /* The glass itself: blur plus a little saturation so the artwork behind
     still reads as colour rather than grey mush. */
  background: oklch(0.13 0.022 25 / 72%);
  backdrop-filter: blur(26px) saturate(150%);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  border-bottom: 1px solid oklch(0.82 0.14 84 / 25%);
  box-shadow: 0 30px 80px -30px oklch(0.05 0.02 25 / 80%);
  transform: translateY(-14px);
  opacity: 0;
  transition: transform 0.45s var(--ease-out-expo), opacity 0.35s ease;
}
.glassnav.is-in .glassnav__panel { transform: none; opacity: 1; }
@media (min-width: 768px) { .glassnav__panel { padding: 22px 40px 44px; } }

.glassnav__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.glassnav__top .nav__mark { width: 52px; height: 52px; }
.glassnav__top .nav__name b { font-size: 1.5rem; }
.glassnav__close {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.glassnav__close:hover { border-color: var(--primary); color: var(--primary); }

.glassnav__cols {
  display: grid;
  gap: 4px 40px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
@media (min-width: 620px) { .glassnav__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 40px; } }
@media (min-width: 1000px) { .glassnav__cols { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.glassnav__col { padding-block: 6px; }
.glassnav__head {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.25rem, 3.4vw, 1.75rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--foreground);
  padding-block: 10px;
  min-height: 46px;
  transition: color 0.25s ease, transform 0.25s ease;
}
.glassnav__head:hover { color: var(--primary); transform: translateX(4px); }
.glassnav__sub { margin-top: 4px; display: grid; gap: 2px; }
.glassnav__sub a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  font-size: 0.9375rem;
  color: oklch(0.96 0.012 80 / 74%);
  transition: color 0.22s ease, transform 0.22s ease;
}
.glassnav__sub a::before { content: ''; width: 12px; height: 1px; background: oklch(0.82 0.14 84 / 65%); flex-shrink: 0; transition: width 0.22s ease; }
.glassnav__sub a:hover { color: var(--primary); transform: translateX(3px); }
.glassnav__sub a:hover::before { width: 20px; }

.glassnav__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.glassnav__foot a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: oklch(0.96 0.012 80 / 78%);
  transition: color 0.22s ease;
}
.glassnav__foot a:hover { color: var(--primary); }
.glassnav__foot svg { width: 17px; height: 17px; color: var(--primary); }

/* Sections settle in one after another once the panel is open. */
.glassnav__col, .glassnav__foot { opacity: 0; transform: translateY(10px); }
.glassnav.is-in .glassnav__col,
.glassnav.is-in .glassnav__foot {
  opacity: 1;
  transform: none;
  transition: opacity 0.45s ease var(--d, 0s), transform 0.45s var(--ease-out-expo) var(--d, 0s);
}
body.glass-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .glassnav__panel, .glassnav__scrim, .glassnav__col, .glassnav__foot,
  .nav__menubars i { transition: none !important; transform: none !important; opacity: 1; }
  .glassnav__scrim { opacity: 1; }
}

/* ---------- Hero ---------- */
.hero { position: relative; height: 112svh; overflow: hidden; }
.hero__media { position: absolute; inset: 0; will-change: transform; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 28%; }
.hero__veil { position: absolute; inset: 0; background: var(--gradient-veil); }
.hero__wash { position: absolute; inset: 0; background: oklch(0.32 0.115 22 / 25%); mix-blend-mode: multiply; }
.hero__grain { position: absolute; inset: 0; }
.hero__glyph {
  pointer-events: none;
  position: absolute;
  left: -24px;
  top: 18svh;
  user-select: none;
  font-family: var(--font-display);
  font-size: 42svh;
  line-height: 1;
  opacity: 0.25;
  will-change: transform;
}
.hero__inner {
  position: relative;
  z-index: 10;
  margin-inline: auto;
  display: flex;
  height: 100svh;
  max-width: var(--shell);
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 20px 96px;
  will-change: transform, opacity;
}
@media (min-width: 768px) { .hero__inner { padding-inline: 40px; } }
.hero__eyebrow { margin-bottom: 24px; color: var(--primary); }
.hero h1 { max-width: 18ch; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: block; }
.hero__ctas { margin-top: 36px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.hero__note { max-width: 20rem; font-size: 0.875rem; color: oklch(0.96 0.012 80 / 70%); }
.hero__note em { font-style: normal; color: var(--primary); }
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  text-align: center;
}
.hero__scroll svg { width: 16px; height: 16px; margin-inline: auto; color: var(--primary); }
.hero__scroll span { margin-top: 8px; display: block; color: var(--muted-foreground); }

/* Entrance animations */
.js .hero h1 .line > span { transform: translateY(110%) rotate(var(--rot, -3deg)); }
.js .hero__eyebrow, .js .hero__ctas { opacity: 0; transform: translateY(20px); }
.js .hero.is-ready h1 .line > span {
  transform: none;
  transition: transform 1s var(--ease-out-expo) var(--d, 0s);
}
.js .hero.is-ready .hero__eyebrow,
.js .hero.is-ready .hero__ctas { opacity: 1; transform: none; transition: opacity 0.8s ease var(--d, 0s), transform 0.8s ease var(--d, 0s); }

/* ---------- Buttons ---------- */
.btn-fill {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 16px 32px;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}
.btn-fill > span:first-child { position: relative; z-index: 10; }
.btn-fill__wipe {
  position: absolute;
  inset: 0;
  transform: translateY(100%);
  background: var(--accent);
  transition: transform 0.5s ease;
}
.btn-fill:hover .btn-fill__wipe { transform: translateY(0); }
.btn-line {
  border-radius: 999px;
  border: 1px solid oklch(0.96 0.012 80 / 40%);
  padding: 16px 32px;
  color: var(--foreground);
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.btn-line:hover { border-color: var(--primary); color: var(--primary); }

/* ---------- Shop by brand: auto-scrolling campaign carousel ---------- */
.brandrail {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: oklch(0.16 0.026 24);
  padding-block: 30px 34px;
}
.brandrail__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.brandrail__head h2 { font-size: clamp(1.25rem, 2.2vw, 1.75rem); letter-spacing: 0.02em; }
.brandrail__head a { color: var(--primary); }
.brandrail__viewport { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.brandrail__track { display: flex; width: max-content; align-items: stretch; gap: 20px; }
.brandrail__item {
  position: relative;
  flex: 0 0 auto;
  width: 340px;
  aspect-ratio: 20 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.35s ease, transform 0.35s var(--ease-out-expo);
}
.brandrail__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out-expo); }
.brandrail__item:hover { border-color: oklch(0.82 0.14 84 / 55%); transform: translateY(-4px); }
.brandrail__item:hover img { transform: scale(1.04); }
.brandrail__item span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(to top, oklch(0.13 0.022 25 / 88%), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.brandrail__item:hover span { opacity: 1; }
@media (max-width: 640px) { .brandrail__item { width: 250px; } }

/* ---------- Story (scrollytelling) ---------- */
.story { position: relative; height: 520svh; background: var(--ink); }
.story__sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.story__chapter { position: absolute; inset: 0; opacity: 0; }
.story__media { position: absolute; inset: 0; overflow: hidden; clip-path: inset(0 0 100% 0); }
.story__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Portrait subjects sit high in frame; without this the parallax drift
     pushed heads out of shot on wide viewports. */
  object-position: var(--focus, 50% 32%);
  will-change: transform;
}
/* The copy block sits over the lower third, so keep the subject clear of it. */
@media (max-width: 900px) { .story__media img { object-position: var(--focus-m, 50% 22%); } }
.story__tint { position: absolute; inset: 0; background: oklch(0.13 0.022 25 / 60%); }
.story__veil { position: absolute; inset: 0; background: var(--gradient-veil); }
.story__body {
  position: relative;
  margin-inline: auto;
  display: flex;
  height: 100%;
  max-width: var(--shell);
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 20px 64px;
}
@media (min-width: 768px) { .story__body { padding: 0 40px 96px; } }
.story__no { font-family: var(--font-display); font-size: 22svh; line-height: 1; opacity: 0.4; }
.story__kicker { margin-top: 16px; color: var(--primary); }
.story__title { margin-top: 12px; max-width: 16ch; font-size: 2.25rem; line-height: 0.92; }
@media (min-width: 768px) { .story__title { font-size: 4.5rem; } }
.story__copy { margin-top: 20px; max-width: 32rem; font-size: 1rem; line-height: 1.65; color: oklch(0.96 0.012 80 / 80%); }
@media (min-width: 768px) { .story__copy { font-size: 1.125rem; } }
.story__grain { pointer-events: none; position: absolute; inset: 0; }
.story__bar { position: absolute; inset-inline: 0; top: 0; height: 1px; background: var(--border); }
.story__bar > i { display: block; height: 1px; width: 0; }
.story__label { position: absolute; left: 20px; top: 24px; color: oklch(0.96 0.012 80 / 50%); }
@media (min-width: 768px) { .story__label { left: 40px; } }

/* ---------- Categories ---------- */
.cats { position: relative; margin-inline: auto; max-width: var(--shell); padding: 96px 20px; }
@media (min-width: 768px) { .cats { padding: 144px 40px; } }
.cats__head { margin-bottom: 48px; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; }
.cats__head h2 { margin-top: 16px; font-size: 3rem; line-height: 0.9; }
@media (min-width: 768px) { .cats__head h2 { font-size: 6rem; } }
.cats__all { border-bottom: 1px solid var(--primary); padding-bottom: 4px; color: var(--primary); display: inline-flex; align-items: center; min-height: 44px; }
.cats__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 16px; }
@media (min-width: 768px) { .cats__grid { gap: 24px; } }
.cat {
  position: relative;
  grid-column: span 12;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  transition: transform 1s var(--ease-out-expo), opacity 1s var(--ease-out-expo);
}
@media (min-width: 768px) {
  .cat--7 { grid-column: span 7; }
  .cat--5 { grid-column: span 5; }
  .cat--12 { grid-column: span 12; }
}
.cat__media { position: relative; height: 46svh; overflow: hidden; }
@media (min-width: 768px) { .cat__media { height: 58svh; } }
.cat__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
  /* Product renders are square; a heavy scale on a landscape card cut the
     frames in half. Kept just enough overscan to give the parallax room. */
  transform: scale(1.04);
  transition: filter 0.7s ease;
  will-change: transform;
}
.cat:hover .cat__media img { filter: brightness(1.1); }
.cat__veil { position: absolute; inset: 0; background: var(--gradient-veil); opacity: 0.9; }
/* Hairline that draws itself across the card on reveal */
.cat::before {
  content: '';
  position: absolute;
  left: 24px; right: 24px; bottom: 96px;
  height: 1px;
  background: oklch(0.82 0.14 84 / 55%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease-out-expo) 0.15s;
  z-index: 3;
}
.cat.is-in::before { transform: scaleX(1); }

/* Index numeral, set large and quiet in the opposite corner */
.cat__no {
  position: absolute;
  top: 20px; right: 26px;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 3.25rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px oklch(0.96 0.012 80 / 38%);
  transition: color 0.5s ease, -webkit-text-stroke-color 0.5s ease;
}
.cat:hover .cat__no { -webkit-text-stroke-color: oklch(0.82 0.14 84 / 75%); }

.cat__foot {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
}
@media (min-width: 768px) { .cat__foot { padding: 36px; } }
.cat__foot h3 { font-size: 1.875rem; line-height: 1; }
@media (min-width: 768px) { .cat__foot h3 { font-size: 3rem; } }
.cat__foot p { margin-top: 12px; max-width: 24rem; font-size: 0.875rem; color: oklch(0.96 0.012 80 / 70%); }
.cat__go {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid oklch(0.82 0.14 84 / 60%);
  color: var(--primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}
.cat:hover .cat__go { background: var(--primary); color: var(--primary-foreground); }
.cat__go svg { width: 20px; height: 20px; }

/* ---------- Featured ---------- */
.featured { position: relative; overflow: hidden; background: oklch(0.32 0.115 22 / 25%); padding-block: 96px; }
@media (min-width: 768px) { .featured { padding-block: 144px; } }
.featured__word {
  pointer-events: none;
  position: absolute;
  top: -24px;
  left: 0;
  user-select: none;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 16svw;
  line-height: 1;
  opacity: 0.2;
  will-change: transform;
}
.featured__inner { position: relative; margin-inline: auto; max-width: var(--shell); padding-inline: 20px; }
@media (min-width: 768px) { .featured__inner { padding-inline: 40px; } }
.featured__head {
  margin-bottom: 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 10svw;
}
@media (min-width: 768px) { .featured__head { padding-top: 7svw; } }
.featured__head h2 { max-width: 20ch; font-size: 2.25rem; line-height: 0.92; }
@media (min-width: 768px) { .featured__head h2 { font-size: 4.5rem; } }
.featured__head p { max-width: 24rem; font-size: 0.875rem; color: oklch(0.96 0.012 80 / 70%); }
.featured__grid { display: grid; gap: 16px; }
@media (min-width: 768px) { .featured__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; } }
.prod {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: oklch(0.17 0.028 24 / 60%);
  padding: 24px;
  backdrop-filter: blur(4px);
}
.prod__top { display: flex; align-items: center; justify-content: space-between; }
.prod__tag { color: var(--primary); }
.prod__no { color: var(--muted-foreground); }
.prod__shot {
  position: relative;
  margin-block: 32px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
}
.prod__shot > div {
  position: absolute;
  inset: 0;
  padding: 16px;
  transition: transform 0.7s var(--ease-out-expo);
}
.prod:hover .prod__shot > div { transform: scale(1.12) rotate(-3deg) translateY(-8px); }
.prod__shot img { width: 100%; height: 100%; object-fit: contain; }
.prod h3 { font-size: 1.25rem; line-height: 1.2; }
@media (min-width: 768px) { .prod h3 { font-size: 1.5rem; } }
.prod__detail { margin-top: 8px; font-size: 0.875rem; color: var(--muted-foreground); }
.prod__foot {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.prod__price { font-family: var(--font-display); font-size: 1.5rem; color: var(--primary); }
.prod__view { color: oklch(0.96 0.012 80 / 70%); transition: color 0.3s ease; }
.prod:hover .prod__view { color: var(--primary); }

/* ---------- Parallax band ---------- */
.band { position: relative; height: 110svh; overflow: hidden; }
.band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.band__tint { position: absolute; inset: 0; background: oklch(0.13 0.022 25 / 55%); }
.band__grain { position: absolute; inset: 0; }
.band__inner {
  position: relative;
  margin-inline: auto;
  display: flex;
  height: 100%;
  max-width: 1400px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 20px;
  text-align: center;
}
@media (min-width: 768px) { .band__inner { padding-inline: 40px; } }
.band__eyebrow { margin-bottom: 32px; color: var(--primary); }
.band h2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 0.28em;
  row-gap: 4px;
  font-size: 2.25rem;
  line-height: 0.95;
}
@media (min-width: 768px) { .band h2 { font-size: 4.5rem; } }
.band h2 .w { overflow: hidden; }
.band h2 .w > span { display: block; }
.band__copy { margin-top: 32px; max-width: 36rem; font-size: 1rem; color: oklch(0.96 0.012 80 / 80%); }
@media (min-width: 768px) { .band__copy { font-size: 1.125rem; } }

/* ---------- Assurance ---------- */
.assure { position: relative; margin-inline: auto; max-width: var(--shell); padding: 96px 20px; }
@media (min-width: 768px) { .assure { padding: 128px 40px; } }
.assure__grid { display: grid; gap: 56px; }
@media (min-width: 1024px) { .assure__grid { grid-template-columns: 1fr 1.1fr; } }
.assure h2 { margin-top: 16px; font-size: 2.25rem; line-height: 0.92; }
@media (min-width: 768px) { .assure h2 { font-size: 3.75rem; } }
.assure__brands { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; column-gap: 32px; row-gap: 16px; }
.assure__brands span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: oklch(0.96 0.012 80 / 45%);
  transition: color 0.3s ease;
}
@media (min-width: 768px) { .assure__brands span { font-size: 1.875rem; } }
.assure__brands span:hover { color: var(--primary); }
.assure__cards { display: grid; gap: 16px; }
@media (min-width: 640px) { .assure__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.pillar {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: oklch(0.17 0.028 24 / 60%);
  padding: 28px;
  transition: transform 0.3s ease;
}
.pillar:hover { transform: translateY(-6px); }
.pillar svg { width: 24px; height: 24px; color: var(--primary); }
.pillar h3 { margin-top: 24px; font-size: 1.25rem; line-height: 1.2; }
.pillar p { margin-top: 12px; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }

/* ---------- Ray-Ban certified-store badge ----------
   Rebuilt from the supplied certification PDF, which is pure vector, so this
   renders crisp at any size instead of shipping a flattened raster. */
.certified {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: oklch(0.17 0.028 24 / 60%);
  padding: 24px 28px;
}
.certified__seal {
  position: relative;
  flex-shrink: 0;
  width: 132px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 14px;
  background: oklch(0.08 0.008 30);
  border: 5px solid transparent;
  background-image:
    linear-gradient(oklch(0.08 0.008 30), oklch(0.08 0.008 30)),
    linear-gradient(150deg, oklch(0.72 0.11 84), oklch(0.9 0.13 92) 42%, oklch(0.62 0.1 78));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  text-align: center;
}
.certified__seal img { width: 74%; height: auto; filter: brightness(0) invert(1); }
.certified__seal b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fff;
}
.certified__seal span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  line-height: 1.05;
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
}
.certified__copy h3 { font-size: 1.35rem; line-height: 1.15; }
.certified__copy p { margin-top: 10px; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); max-width: 46ch; }
@media (max-width: 640px) {
  .certified { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ---------- Closer ---------- */
.closer { position: relative; overflow: hidden; border-top: 1px solid var(--border); background: oklch(0.32 0.115 22 / 30%); }
.closer__inner { margin-inline: auto; max-width: var(--shell); padding: 96px 20px 48px; }
@media (min-width: 768px) { .closer__inner { padding: 128px 40px 48px; } }
.closer__ctas { margin-top: 48px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.closer__legal {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  color: var(--muted-foreground);
}

/* ---------- Catalogue ---------- */
.nav--static { position: sticky; }
.shop { padding-top: 96px; }
.shop__banner {
  position: relative;
  margin-inline: auto;
  max-width: var(--shell);
  padding-inline: 20px;
  margin-top: 8px;
}
@media (min-width: 768px) { .shop__banner { padding-inline: 40px; } }
.shop__banner img {
  width: 100%;
  aspect-ratio: 20 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
@media (max-width: 640px) { .shop__banner img { aspect-ratio: 16 / 10; } }
.shop__head { padding-block: 56px 32px; }
.shop__head--under { padding-block: 32px 28px; }
.crumbs { display: flex; align-items: center; gap: 10px; color: var(--muted-foreground); flex-wrap: wrap; }
.crumbs a { transition: color 0.25s ease; }
.crumbs a:hover { color: var(--primary); }
.shop__head h1 {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.shop__blurb { margin-top: 18px; max-width: 58ch; color: oklch(0.96 0.012 80 / 72%); font-size: 1rem; }

.shop__bar {
  position: sticky;
  top: 74px;
  z-index: 30;
  border-block: 1px solid var(--border);
  background: oklch(0.13 0.022 25 / 92%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  margin-bottom: 40px;
}
.shop__bar-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 14px; }
.chips { display: flex; align-items: center; gap: 10px; overflow-x: auto; scrollbar-width: none; padding-block: 4px; }
.chips::-webkit-scrollbar { display: none; }
.chips__rule { flex: 0 0 1px; align-self: stretch; background: var(--border); margin-inline: 6px; }
.chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: oklch(0.96 0.012 80 / 78%);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
.chip:hover { color: var(--primary); border-color: oklch(0.82 0.14 84 / 60%); }
.chip.is-on { background: var(--primary); border-color: var(--primary); color: var(--primary-foreground); }
.shop__tools { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.shop__count { color: var(--muted-foreground); white-space: nowrap; }
.sortform { position: relative; display: flex; align-items: center; }
.sortform select {
  appearance: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--foreground);
  padding: 0 38px 0 18px;
  min-height: 40px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}
.sortform select option { background: oklch(0.17 0.028 24); color: var(--foreground); }
.sortform__chev { position: absolute; right: 14px; pointer-events: none; color: var(--muted-foreground); display: grid; }
.sortform__chev svg { width: 14px; height: 14px; }

.pgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: oklch(0.17 0.028 24 / 55%);
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease;
}
.pcard:hover { transform: translateY(-6px); border-color: oklch(0.82 0.14 84 / 45%); box-shadow: var(--shadow-lift); }
.pcard__link { display: flex; flex-direction: column; flex: 1; }
.pcard__shot {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  /* Pure white, edge to edge: the product photography is already shot on
     white, so any tinted ground shows as a visible frame around it. */
  background: #FFFFFF;
  padding: 0;
  overflow: hidden;
}
.pcard__shot img {
  width: 100%; height: 100%;
  /* cover fills the tile so the photo's own white reaches every edge */
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.pcard:hover .pcard__shot img { transform: scale(1.07) rotate(-2deg); }
.pcard__off {
  position: absolute;
  left: 12px; bottom: 12px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 999px;
}
.pcard__oos {
  position: absolute;
  right: 12px; top: 12px;
  background: oklch(0.13 0.022 25 / 88%);
  color: var(--foreground);
  padding: 6px 12px;
  border-radius: 999px;
}
.pcard__body { display: flex; flex-direction: column; gap: 8px; padding: 20px; flex: 1; }
.pcard__brand { color: var(--primary); }
.pcard__name {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.0625rem;
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pcard__price { margin-top: auto; font-family: var(--font-display); font-size: 1.375rem; color: var(--primary); }
.pcard__price del { color: var(--muted-foreground); font-size: 0.95rem; margin-right: 8px; text-decoration-thickness: 1px; }
.pcard__price ins { text-decoration: none; }
.pcard__colours { font-size: 0.8125rem; color: var(--muted-foreground); }
.pcard__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-top: 1px solid var(--border);
  color: oklch(0.96 0.012 80 / 75%);
  transition: color 0.25s ease, background-color 0.25s ease;
}
.pcard__cta svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.pcard:hover .pcard__cta { color: var(--primary); background: oklch(0.82 0.14 84 / 8%); }
.pcard:hover .pcard__cta svg { transform: translateX(4px); }

.pager { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; padding-block: 64px 8px; }
.pager .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding-inline: 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: oklch(0.96 0.012 80 / 80%);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
.pager .page-numbers:hover { color: var(--primary); border-color: oklch(0.82 0.14 84 / 55%); }
.pager .page-numbers.current { background: var(--primary); border-color: var(--primary); color: var(--primary-foreground); }
.pager .dots { border-color: transparent; }

.empty { text-align: center; padding-block: 96px; }
.empty h2 { font-size: 2.5rem; }
.empty p { margin: 14px 0 28px; color: var(--muted-foreground); }

.shop__assure {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.shop__assure b { display: block; font-family: var(--font-display); text-transform: uppercase; font-size: 1.05rem; letter-spacing: 0.01em; }
.shop__assure span { display: block; margin-top: 6px; font-size: 0.875rem; color: var(--muted-foreground); }

.foot-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-top: 72px;
}
.foot-cols h4 { color: var(--primary); margin-bottom: 14px; font-family: var(--font-mono); font-weight: 400; }
.foot-cols a { display: block; padding-block: 7px; font-size: 0.9375rem; color: oklch(0.96 0.012 80 / 72%); transition: color 0.25s ease, transform 0.25s ease; }
.foot-cols a:hover { color: var(--primary); transform: translateX(3px); }

@media (max-width: 1100px) { .pgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 860px) {
  .shop__bar-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .shop__tools { justify-content: space-between; }
  .foot-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop__assure { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .pcard__body { padding: 14px; }
  .pcard__name { font-size: 0.95rem; }
  .pcard__price { font-size: 1.15rem; }
  .shop__bar { top: 66px; }
}

/* ---------- Single product ---------- */
.pdp { padding-top: 100px; padding-bottom: 96px; }
.pdp__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 56px; margin-top: 28px; align-items: start; }
.pdp__shots { display: grid; gap: 16px; }
.pdp__stage {
  position: relative;
  background: #FFFFFF;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.pdp__stage img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.35s ease; }
.pdp__stage img.is-swapping { opacity: 0; }
.pdp__zoomhint {
  position: absolute; right: 14px; bottom: 14px;
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: oklch(0.13 0.022 25 / 55%);
  pointer-events: none;
}
.pdp__thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.pdp__thumb {
  width: 78px; height: 78px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #FFFFFF;
  border: 2px solid transparent;
  box-shadow: inset 0 0 0 1px var(--border);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumb:hover { transform: translateY(-3px); }
.pdp__thumb.is-on { border-color: var(--primary); }

.pdp__buy { position: sticky; top: 100px; }
.pdp__buyinner { border: 1px solid var(--border); border-radius: var(--radius); background: oklch(0.17 0.028 24 / 60%); padding: 32px; }
.pdp__brand { color: var(--primary); }
.pdp__title {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 0.98;
  text-transform: uppercase;
}
.pdp__price { margin-top: 20px; font-family: var(--font-display); font-size: 2rem; color: var(--primary); }
.pdp__price del { color: var(--muted-foreground); font-size: 1.25rem; margin-right: 10px; }
.pdp__price ins { text-decoration: none; }
.pdp__stock { margin-top: 14px; display: flex; align-items: center; gap: 10px; font-size: 0.9375rem; color: oklch(0.96 0.012 80 / 80%); }
.dot { width: 8px; height: 8px; border-radius: 999px; display: inline-block; }
.dot--ok { background: var(--veld); }
.dot--out { background: var(--accent); }
.pdp__form { margin-top: 26px; }
.pdp__points { margin-top: 26px; display: grid; gap: 12px; border-top: 1px solid var(--border); padding-top: 22px; }
.pdp__points li { display: flex; align-items: center; gap: 12px; font-size: 0.9375rem; color: oklch(0.96 0.012 80 / 78%); }
.pdp__points svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.pdp__sku { margin-top: 20px; color: var(--muted-foreground); }

/* WooCommerce's own add-to-cart markup, restyled in place */
.pdp__form .quantity { display: inline-flex; align-items: center; margin-right: 12px; }
.pdp__form .quantity input[type='number'],
.pdp__form input.qty {
  width: 84px;
  min-height: 54px;
  padding: 0 12px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--foreground);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-align: center;
}
.pdp__form button[type='submit'],
.pdp__form .single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 34px;
  border: none;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.pdp__form .single_add_to_cart_button:hover { background: var(--accent); color: #fff; }
.pdp__form .single_add_to_cart_button:active { transform: translateY(1px); }
.pdp__form .single_add_to_cart_button.disabled { opacity: 0.45; cursor: not-allowed; }
.pdp__form table.variations { width: 100%; border-collapse: collapse; margin-bottom: 18px; }
.pdp__form table.variations th,
.pdp__form table.variations td { display: block; text-align: left; padding: 0; }
.pdp__form table.variations th label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  display: block;
  margin-bottom: 8px;
}
.pdp__form table.variations td { margin-bottom: 16px; }
.pdp__form select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  background: oklch(0.13 0.022 25);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  cursor: pointer;
}
.pdp__form .reset_variations {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.pdp__form .woocommerce-variation-price { margin-bottom: 16px; font-family: var(--font-display); font-size: 1.6rem; color: var(--primary); }
.pdp__form .woocommerce-variation-availability { margin-bottom: 12px; font-size: 0.9rem; color: oklch(0.96 0.012 80 / 78%); }
.pdp__form .stock.out-of-stock { color: var(--accent); }
.pdp__form p.price { display: none; } /* the panel already shows the price */

/* Variation Swatches ships light-theme defaults: white chips with our near-white
   ink, which is unreadable on this ground. Restyled to the design system. */
.pdp__form .cfvsw-swatches-container { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 6px; }
.pdp__form .cfvsw-swatches-option {
  background: transparent !important;
  border: 1px solid var(--border) !important;
  border-radius: 999px !important;
  color: var(--foreground) !important;
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 20px !important;
  width: auto !important;
  box-shadow: none !important;
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}
.pdp__form .cfvsw-swatches-option:hover { border-color: oklch(0.82 0.14 84 / 60%) !important; color: var(--primary) !important; }
.pdp__form .cfvsw-swatches-option.cfvsw-selected-swatch,
.pdp__form .cfvsw-swatches-option[class*='selected'] {
  border-color: var(--primary) !important;
  background: oklch(0.82 0.14 84 / 12%) !important;
  color: var(--primary) !important;
}
.pdp__form .cfvsw-swatch-inner {
  font-family: var(--font-mono) !important;
  font-size: 0.6875rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: inherit !important;
  white-space: nowrap;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
}
/* Real colour chip, driven by the term's own stored hex via --sw */
.pdp__form .cfvsw-swatches-option[style*='--sw'] .cfvsw-swatch-inner::before,
.pdp__form .cfvsw-swatches-option[data-swatch-colour] .cfvsw-swatch-inner::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--sw, transparent);
  box-shadow: inset 0 0 0 1px oklch(0.96 0.012 80 / 35%), 0 1px 3px oklch(0.05 0.02 25 / 60%);
  flex-shrink: 0;
}
/* Chip showing the real frame in that colourway */
.pdp__form .cfvsw-swatches-option[data-swatch-shot] .cfvsw-swatch-inner::before {
  content: '';
  width: 26px; height: 26px;
  border-radius: 999px;
  background-image: var(--sw-img);
  background-size: cover;
  background-position: center;
  background-color: #fff;
  box-shadow: inset 0 0 0 1px oklch(0.96 0.012 80 / 30%);
  flex-shrink: 0;
}
.pdp__form .cfvsw-swatches-option[data-slug*='out-of-stock'] { opacity: 0.4; }

/* ---------- Collapsible product detail ---------- */
.acc { margin-top: 22px; border-top: 1px solid var(--border); }
.acc__item { border-bottom: 1px solid var(--border); }
.acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 2px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  min-height: 56px;
  transition: color 0.25s ease;
}
.acc__btn:hover { color: var(--primary); }
.acc__btn span {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease-out-expo), border-color 0.25s ease, background-color 0.25s ease;
}
.acc__btn span svg { width: 14px; height: 14px; }
.acc__btn[aria-expanded='true'] span { transform: rotate(180deg); border-color: var(--primary); background: oklch(0.82 0.14 84 / 12%); color: var(--primary); }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease-out-expo); }
.acc__panel > div { overflow: hidden; }
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__body { padding: 0 2px 26px; color: oklch(0.96 0.012 80 / 82%); line-height: 1.75; max-width: 70ch; }
.acc__body p { margin-bottom: 1em; }
.acc__body ul, .acc__body ol { margin: 0 0 1em 1.2em; list-style: disc; }
.acc__body li { margin-bottom: 0.4em; }
.acc__body table { width: 100%; border-collapse: collapse; }
.acc__body th, .acc__body td { text-align: left; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.9375rem; }
.acc__body th { color: var(--muted-foreground); font-weight: 500; width: 40%; }

/* ---------- Add-to-cart feedback ---------- */
.cartflash {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid oklch(0.82 0.14 84 / 45%);
  background: oklch(0.17 0.028 24 / 97%);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lift);
  color: var(--foreground);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s var(--ease-out-expo), opacity 0.4s ease;
  max-width: min(92vw, 380px);
}
.cartflash.is-in { transform: none; opacity: 1; pointer-events: auto; }
.cartflash img { width: 52px; height: 52px; object-fit: cover; border-radius: var(--radius); background: #fff; flex-shrink: 0; }
.cartflash b { display: block; font-family: var(--font-mono); font-size: 0.625rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--primary); }
.cartflash p { margin-top: 4px; font-size: 0.875rem; line-height: 1.35; }
.cartflash a { color: var(--primary); font-family: var(--font-mono); font-size: 0.625rem; letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap; }

.single_add_to_cart_button.is-loading { opacity: 0.7; pointer-events: none; }
@keyframes cartpulse { 0% { transform: scale(1); } 45% { transform: scale(1.16); } 100% { transform: scale(1); } }
.nav__cartcount.is-bump { animation: cartpulse 0.6s var(--ease-out-expo); }
.nav__cartcount {
  display: inline-grid;
  place-items: center;
  min-width: 20px; height: 20px;
  padding-inline: 5px;
  border-radius: 999px;
  background: var(--primary-foreground);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.625rem;
}
.nav__cartcount[hidden] { display: none; }

.pdp__detail { margin-top: 88px; border-top: 1px solid var(--border); padding-top: 48px; }
.pdp__detail h2, .pdp__related h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.pdp__prose { margin-top: 22px; max-width: 72ch; color: oklch(0.96 0.012 80 / 82%); line-height: 1.75; }
.pdp__prose p { margin-bottom: 1em; }
.pdp__prose ul, .pdp__prose ol { margin: 0 0 1em 1.2em; list-style: disc; }
.pdp__prose li { margin-bottom: 0.4em; }
.pdp__prose strong { color: var(--foreground); }
.pdp__related { margin-top: 80px; border-top: 1px solid var(--border); padding-top: 48px; }
.pdp__related .pgrid { margin-top: 28px; }

@media (max-width: 900px) {
  .pdp__grid { grid-template-columns: 1fr; gap: 32px; }
  .pdp__buy { position: static; }
  .pdp__buyinner { padding: 24px; }
}

/* ---------- Cart & checkout ---------- */
.woopage { padding-top: 100px; padding-bottom: 96px; }
.woopage__head { margin-top: 22px; margin-bottom: 26px; }
.woopage__head p { color: var(--primary); }
.woopage__head h1 { margin-top: 12px; font-size: clamp(2.25rem, 5.5vw, 4.5rem); line-height: 0.9; }

.steps { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; padding: 0; list-style: none; }
.steps li {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.steps li span { color: oklch(0.96 0.012 80 / 40%); }
.steps li.is-on { border-color: var(--primary); color: var(--primary); background: oklch(0.82 0.14 84 / 10%); }
.steps li.is-on span { color: var(--primary); }
.steps li.is-done { color: oklch(0.96 0.012 80 / 70%); border-color: oklch(0.96 0.012 80 / 28%); }

/* WooCommerce markup, restyled in place */
.woo { color: var(--foreground); }
.woo a { color: var(--primary); }
.woo table { width: 100%; border-collapse: collapse; }
.woo table th, .woo table td { padding: 16px 12px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: middle; }
.woo table th {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  font-weight: 400;
}
.woo .product-thumbnail img { width: 84px; height: 84px; object-fit: cover; background: #fff; border-radius: var(--radius); }
.woo .product-name a { font-family: var(--font-display); text-transform: uppercase; font-size: 1.05rem; color: var(--foreground); }
.woo .product-name a:hover { color: var(--primary); }
.woo .product-price, .woo .product-subtotal, .woo .product-total { font-family: var(--font-display); font-size: 1.15rem; color: var(--primary); }
.woo .product-remove a {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  font-size: 1rem;
  text-decoration: none;
}
.woo .product-remove a:hover { border-color: var(--accent); color: var(--accent); }
.woo .quantity input[type='number'], .woo input.qty {
  width: 84px; min-height: 48px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--foreground);
  text-align: center;
  font-family: var(--font-mono);
}
.woo .coupon { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.woo input[type='text'], .woo input[type='email'], .woo input[type='tel'],
.woo input[type='password'], .woo textarea, .woo select, .woo .select2-selection {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  background: oklch(0.13 0.022 25);
  border: 1px solid var(--border) !important;
  border-radius: var(--radius);
  color: var(--foreground) !important;
  font-family: var(--font-sans);
  font-size: 0.95rem;
}
.woo textarea { min-height: 120px; }
.woo input::placeholder, .woo textarea::placeholder { color: oklch(0.96 0.012 80 / 40%); }
.woo .select2-selection__rendered { color: var(--foreground) !important; line-height: 24px !important; }
.woo .select2-selection__arrow { top: 14px !important; }
.woo button, .woo .button, .woo input[type='submit'] {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border: none;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.woo button:hover, .woo .button:hover, .woo input[type='submit']:hover { background: var(--accent); color: #fff; }
.woo button:disabled, .woo .button.disabled { opacity: 0.45; cursor: not-allowed; }
.woo .button--outline, .woo .wc-backward {
  background: transparent;
  color: var(--foreground);
  box-shadow: inset 0 0 0 1px oklch(0.96 0.012 80 / 40%);
}
.woo .cart_totals, .woo .cross-sells { margin-top: 44px; }
.woo .cart_totals h2, .woo .cross-sells h2, .woo h3 { font-size: 1.5rem; margin-bottom: 16px; }
.woo .cart-collaterals { display: grid; gap: 32px; margin-top: 40px; }
@media (min-width: 900px) { .woo .cart-collaterals { grid-template-columns: 1fr 1fr; align-items: start; } }
.woo .cart_totals table { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.woo .order-total .amount, .woo .cart-subtotal .amount { font-family: var(--font-display); font-size: 1.35rem; color: var(--primary); }
.woo .checkout-button { width: 100%; margin-top: 16px; }

/* Checkout two-column */
.woo form.checkout { display: grid; gap: 40px; }
@media (min-width: 1000px) { .woo form.checkout { grid-template-columns: 1.05fr 0.95fr; align-items: start; } }
.woo .woocommerce-billing-fields h3, .woo #order_review_heading { font-family: var(--font-display); text-transform: uppercase; }
.woo #order_review {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: oklch(0.17 0.028 24 / 55%);
  padding: 26px;
}
.woo .form-row { margin-bottom: 16px; }
.woo label { display: block; margin-bottom: 8px; font-size: 0.875rem; color: oklch(0.96 0.012 80 / 78%); }
.woo .required { color: var(--accent); }
.woo .woocommerce-info, .woo .woocommerce-message, .woo .woocommerce-error, .woo .cart-empty {
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  background: oklch(0.17 0.028 24 / 60%);
  padding: 16px 20px;
  margin-bottom: 22px;
  list-style: none;
}
.woo .woocommerce-error { border-left-color: var(--accent); }
.woo #payment { margin-top: 8px; }
.woo #payment ul.payment_methods { list-style: none; padding: 0; margin: 0 0 18px; border-bottom: 1px solid var(--border); padding-bottom: 18px; }
.woo #payment li.wc_payment_method { margin-bottom: 12px; }
.woo #payment label { display: inline-flex; align-items: center; gap: 10px; margin: 0; }
.woo #payment .payment_box { margin-top: 10px; padding: 14px; border-radius: var(--radius); background: oklch(0.13 0.022 25); font-size: 0.875rem; color: var(--muted-foreground); }
.woo #place_order { width: 100%; min-height: 58px; }
.woo .woocommerce-terms-and-conditions-wrapper { margin-bottom: 16px; font-size: 0.875rem; }
.woo .return-to-shop { margin-top: 18px; }

.wooassure {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 64px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
}
.wooassure svg { width: 22px; height: 22px; color: var(--primary); }
.wooassure b { display: block; margin-top: 12px; font-family: var(--font-display); text-transform: uppercase; font-size: 1rem; }
.wooassure span { display: block; margin-top: 5px; font-size: 0.875rem; color: var(--muted-foreground); }
@media (max-width: 800px) { .wooassure { grid-template-columns: 1fr; gap: 18px; } }

/* ---------- Info pages (contact, about) ---------- */
.info { padding-top: 100px; padding-bottom: 96px; }
.info__head { margin-top: 22px; margin-bottom: 56px; max-width: 60ch; }
.info__head p.type-eyebrow { color: var(--primary); }
.info__head h1 { margin-top: 14px; font-size: clamp(2.5rem, 7vw, 5.5rem); line-height: 0.88; }
.info__lede { margin-top: 20px; font-size: 1.0625rem; line-height: 1.7; color: oklch(0.96 0.012 80 / 78%); }

.contact { display: grid; gap: 40px; }
@media (min-width: 940px) { .contact { grid-template-columns: 0.85fr 1.15fr; align-items: start; } }
.contact__side { display: grid; gap: 14px; }
.contact__card {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: oklch(0.17 0.028 24 / 55%);
  padding: 22px 24px;
  transition: border-color 0.28s ease, transform 0.28s var(--ease-out-expo);
}
a.contact__card:hover { border-color: oklch(0.82 0.14 84 / 55%); transform: translateY(-3px); }
.contact__card span { color: var(--primary); display: block; }
.contact__card b { display: block; margin-top: 10px; font-family: var(--font-display); font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0.01em; }
.contact__card p { margin-top: 6px; font-size: 0.9375rem; color: var(--muted-foreground); line-height: 1.6; }
.contact__form { border: 1px solid var(--border); border-radius: var(--radius); background: oklch(0.17 0.028 24 / 45%); padding: 32px; }
@media (max-width: 640px) { .contact__form { padding: 22px; } }

.aform__row { margin-bottom: 20px; border: 0; padding: 0; }
.aform label, .aform legend {
  display: block;
  margin-bottom: 9px;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.aform input[type='text'], .aform input[type='email'], .aform textarea {
  width: 100%;
  min-height: 54px;
  padding: 15px 16px;
  background: oklch(0.13 0.022 25);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.25s ease;
}
.aform textarea { min-height: 150px; resize: vertical; }
.aform input:focus, .aform textarea:focus { border-color: var(--primary); outline: none; }
.aform__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.aform__chip { margin: 0; }
.aform__chip input { position: absolute; opacity: 0; pointer-events: none; }
.aform__chip span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(0.96 0.012 80 / 78%);
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}
.aform__chip input:checked + span { border-color: var(--primary); color: var(--primary); background: oklch(0.82 0.14 84 / 12%); }
.aform__chip input:focus-visible + span { outline: 2px solid var(--ring); outline-offset: 3px; }
.aform__pot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.notice { border: 1px solid var(--border); border-left: 3px solid var(--primary); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 24px; }
.notice--bad { border-left-color: var(--accent); }
.notice b { font-family: var(--font-display); text-transform: uppercase; }
.notice p { margin-top: 6px; font-size: 0.9375rem; color: var(--muted-foreground); }

.about__band { margin: 8px 0 72px; }
.about__band img { width: 100%; height: clamp(240px, 42vh, 460px); object-fit: cover; object-position: 50% 45%; }
.about__split { display: grid; gap: 28px; padding-bottom: 72px; border-bottom: 1px solid var(--border); }
@media (min-width: 900px) { .about__split { grid-template-columns: 1fr 1fr; gap: 56px; } }
.about__split h2 { font-size: clamp(1.875rem, 4vw, 3.25rem); line-height: 0.95; }
.about__split p { font-size: 1.0625rem; line-height: 1.8; color: oklch(0.96 0.012 80 / 80%); }
.about__pillars { display: grid; gap: 18px; padding-block: 72px; }
@media (min-width: 700px) { .about__pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .about__pillars { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.about__cta { padding-top: 56px; border-top: 1px solid var(--border); }
.about__cta h2 { font-size: clamp(3rem, 11vw, 8rem); line-height: 0.85; text-transform: uppercase; }

/* ---------- Banner video ---------- */
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 28%;
  display: block;
}
/* No visible copy in the banner, so the CTAs sit on their own. */
.hero--clean .hero__inner { justify-content: flex-end; padding-bottom: 132px; }
.hero--clean .hero__ctas { margin-top: 0; }
@media (max-width: 640px) { .hero--clean .hero__inner { padding-bottom: 108px; } }

/* ---------- Still deciding closer ---------- */
.stilldeciding { padding-bottom: 8px; }
.stilldeciding__head { max-width: 60ch; }
.stilldeciding__head p.type-eyebrow { color: var(--primary); }
.stilldeciding__head h2 {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.9;
  text-transform: uppercase;
}
.stilldeciding__lede { margin-top: 18px; font-size: 1.0625rem; line-height: 1.65; color: oklch(0.96 0.012 80 / 76%); }
.stilldeciding__routes { display: grid; gap: 16px; margin-top: 44px; }
@media (min-width: 860px) { .stilldeciding__routes { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.route {
  position: relative;
  display: block;
  padding: 28px 26px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: oklch(0.17 0.028 24 / 50%);
  transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.35s var(--ease-out-expo);
}
.route:hover { border-color: oklch(0.82 0.14 84 / 55%); background: oklch(0.17 0.028 24 / 80%); transform: translateY(-5px); }
.route__icon { display: block; }
.route__icon svg { width: 24px; height: 24px; color: var(--primary); }
.route__kick { display: block; margin-top: 20px; color: var(--muted-foreground); }
.route__label {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.05;
}
.route__note { display: block; margin-top: 10px; font-size: 0.9375rem; line-height: 1.55; color: var(--muted-foreground); max-width: 30ch; }
.route__go {
  position: absolute;
  top: 24px; right: 22px;
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--primary);
  transition: transform 0.3s var(--ease-out-expo), background-color 0.3s ease;
}
.route__go svg { width: 16px; height: 16px; }
.route:hover .route__go { transform: translateX(4px); background: oklch(0.82 0.14 84 / 12%); }

/* ---------- Trust bar ---------- */
.trustbar { border-bottom: 1px solid var(--border); background: oklch(0.16 0.026 24); }
.trustbar__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 30px;
  padding-block: 16px;
}
.trustbar__row > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: oklch(0.96 0.012 80 / 78%);
}
.trustbar__row svg { width: 17px; height: 17px; color: var(--primary); flex-shrink: 0; }
.trustbar__cert {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid oklch(0.82 0.14 84 / 45%);
  border-radius: 999px;
  min-height: 40px;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.trustbar__cert:hover { border-color: var(--primary); background: oklch(0.82 0.14 84 / 10%); }
.trustbar__cert img { height: 13px; width: auto; filter: brightness(0) invert(1); }
.trustbar__cert b {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}
.trustbar__cert { min-height: 44px; }
@media (max-width: 900px) {
  /* One scrolling line instead of four wrapped rows: it was eating a quarter
     of a phone screen right where the page should be getting to product. */
  .trustbar__row {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 22px;
    padding-block: 12px;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent);
    mask-image: linear-gradient(90deg, #000 88%, transparent);
  }
  .trustbar__row::-webkit-scrollbar { display: none; }
  .trustbar__row > span, .trustbar__cert { flex: 0 0 auto; white-space: nowrap; }
  .trustbar__cert { margin-left: 0; }
}

/* ---------- Guided discovery ---------- */
.find { padding-block: 72px 40px; }
.find__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.find__head p { color: var(--primary); }
.find__head h2 { margin-top: 14px; font-size: clamp(1.875rem, 4.2vw, 3.25rem); line-height: 0.94; }
.find__tabs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-bottom: 34px; }
.find__tab {
  text-align: left;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: oklch(0.17 0.028 24 / 45%);
  color: var(--foreground);
  cursor: pointer;
  min-height: 76px;
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s var(--ease-out-expo);
}
.find__tab:hover { transform: translateY(-3px); border-color: oklch(0.82 0.14 84 / 50%); }
.find__tab b {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.find__tab span { display: block; margin-top: 5px; font-size: 0.8125rem; color: var(--muted-foreground); }
.find__tab.is-on { border-color: var(--primary); background: oklch(0.82 0.14 84 / 12%); }
.find__tab.is-on b { color: var(--primary); }
.find__panel[hidden] { display: none; }
@media (max-width: 860px) { .find__tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .find__tabs { grid-template-columns: 1fr; } .find__tab { min-height: 0; padding: 14px 16px; } }

/* ---------- Shared product mini-card + rail ---------- */
.minirail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 20px 22px;
  scrollbar-width: thin;
  scrollbar-color: oklch(0.82 0.14 84 / 40%) transparent;
}
@media (min-width: 768px) {
  .minirail { padding-inline: 40px; }
  .find .minirail, .minirail--flush { padding-inline: max(40px, calc((100vw - var(--shell)) / 2 + 40px)); }
}
.minirail::-webkit-scrollbar { height: 5px; }
.minirail::-webkit-scrollbar-thumb { background: oklch(0.82 0.14 84 / 40%); border-radius: 999px; }
.minicard {
  position: relative;
  flex: 0 0 auto;
  width: 244px;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: oklch(0.17 0.028 24 / 55%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out-expo), border-color 0.3s ease;
}
.minicard:hover { transform: translateY(-6px); border-color: oklch(0.82 0.14 84 / 50%); }
.minicard__rank {
  position: absolute;
  top: 10px; left: 12px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px oklch(0.13 0.022 25 / 55%);
}
.minicard__shot { display: block; aspect-ratio: 1 / 1; background: #fff; overflow: hidden; }
.minicard__shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out-expo); }
.minicard:hover .minicard__shot img { transform: scale(1.06); }
.minicard__body { display: flex; flex-direction: column; gap: 6px; padding: 15px 16px 18px; flex: 1; }
.minicard__brand { color: var(--primary); }
.minicard__name {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.95rem;
  line-height: 1.15;
}
.minicard__price { margin-top: auto; font-family: var(--font-display); font-size: 1.2rem; color: var(--primary); }
.minicard--more {
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  background: transparent;
  border-style: dashed;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.minicard--more svg { width: 20px; height: 20px; transition: transform 0.25s ease; }
.minicard--more:hover svg { transform: translateX(5px); }

/* ---------- Customer voices (off until real quotes exist) ---------- */
.voices { padding-block: 72px; }
.voices__grid { display: grid; gap: 18px; }
@media (min-width: 800px) { .voices__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.voice { margin: 0; border: 1px solid var(--border); border-radius: var(--radius); background: oklch(0.17 0.028 24 / 55%); padding: 26px; }
.voice blockquote { margin: 0; font-size: 1.0625rem; line-height: 1.65; color: oklch(0.96 0.012 80 / 88%); }
.voice figcaption { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
.voice figcaption b { display: block; font-family: var(--font-display); text-transform: uppercase; font-size: 0.95rem; }
.voice figcaption span { display: block; margin-top: 4px; font-family: var(--font-mono); font-size: 0.625rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-foreground); }

/* ---------- Best sellers rail ---------- */
.bestsell { padding-block: 96px 40px; }
.bestsell__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; }
.bestsell__head p { color: var(--primary); }
.bestsell__head h2 { margin-top: 14px; font-size: clamp(2rem, 4.6vw, 3.75rem); line-height: 0.92; }
.bestsell__rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 20px 20px;
  scrollbar-width: thin;
  scrollbar-color: oklch(0.82 0.14 84 / 40%) transparent;
}
@media (min-width: 768px) { .bestsell__rail { padding-inline: max(40px, calc((100vw - var(--shell)) / 2 + 40px)); } }
.bestsell__rail::-webkit-scrollbar { height: 5px; }
.bestsell__rail::-webkit-scrollbar-thumb { background: oklch(0.82 0.14 84 / 40%); border-radius: 999px; }
.bestsell__card {
  position: relative;
  flex: 0 0 auto;
  width: 260px;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: oklch(0.17 0.028 24 / 55%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out-expo), border-color 0.3s ease;
}
.bestsell__card:hover { transform: translateY(-6px); border-color: oklch(0.82 0.14 84 / 50%); }
.bestsell__rank {
  position: absolute;
  top: 10px; left: 12px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px oklch(0.13 0.022 25 / 55%);
}
.bestsell__shot { display: block; aspect-ratio: 1 / 1; background: #fff; overflow: hidden; }
.bestsell__shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out-expo); }
.bestsell__card:hover .bestsell__shot img { transform: scale(1.06); }
.bestsell__name {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  padding: 16px 16px 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.95rem;
  line-height: 1.15;
}
.bestsell__price { padding: 10px 16px 18px; font-family: var(--font-display); font-size: 1.2rem; color: var(--primary); }

/* ---------- Blue light comparison ---------- */
.lens { padding-block: 96px; }
.lens__grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1000px) { .lens__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 72px; } }
.lens h2 { margin-top: 16px; font-size: clamp(2rem, 4.6vw, 3.75rem); line-height: 0.92; }
.lens__copy { margin-top: 22px; max-width: 46ch; color: oklch(0.96 0.012 80 / 78%); line-height: 1.7; }
.lens__strengths { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.lens__strengths a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px;
  border: 1px solid var(--border); border-radius: 999px;
  font-family: var(--font-mono); font-size: 0.625rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: oklch(0.96 0.012 80 / 80%);
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}
.lens__strengths a:hover { border-color: var(--primary); color: var(--primary); background: oklch(0.82 0.14 84 / 10%); }
.lens__stage {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  background: var(--night-raised);
  touch-action: pan-y;
}
.lens__layer { position: absolute; inset: 0; }
.lens__layer img { width: 100%; height: 100%; object-fit: cover; }
.lens__layer--raw img { filter: saturate(0.6) brightness(1.25) contrast(0.88) hue-rotate(-14deg); }
.lens__layer--filtered { clip-path: inset(0 0 0 var(--split, 52%)); }
.lens__layer--filtered img { filter: saturate(1.08) contrast(1.06) brightness(1.02); }
.lens__divider {
  position: absolute; top: 0; bottom: 0; left: var(--split, 52%);
  width: 2px; background: var(--warm-lit); opacity: 0.9; pointer-events: none;
}
.lens__divider::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 42px; height: 42px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 2px solid var(--warm-lit);
  background: oklch(0.13 0.022 25 / 70%);
}
.lens__tag {
  position: absolute; bottom: 14px;
  font-family: var(--font-mono); font-size: 0.625rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 999px;
  background: oklch(0.13 0.022 25 / 70%);
  pointer-events: none;
}
.lens__tag--l { left: 14px; color: var(--glare); }
.lens__tag--r { right: 14px; color: var(--warm-lit); }
.lens__range {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}
.lens__range:focus-visible { opacity: 0.001; outline: 3px solid var(--ring); outline-offset: -3px; }

/* ---------- WhatsApp support launcher ---------- */
.walaunch { position: fixed; right: 18px; bottom: 18px; z-index: 80; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.walaunch__btn {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 52px; padding: 0 20px;
  border: none; border-radius: 999px;
  background: #25D366; color: #06301A;
  font-family: var(--font-mono); font-size: 0.625rem; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 30px oklch(0.05 0.02 25 / 55%);
  transition: transform 0.28s var(--ease-out-expo), box-shadow 0.28s ease;
}
.walaunch__btn:hover { transform: translateY(-3px); box-shadow: 0 18px 38px oklch(0.05 0.02 25 / 65%); }
.walaunch__btn svg { width: 22px; height: 22px; }
.walaunch__panel {
  width: min(88vw, 300px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: oklch(0.17 0.028 24 / 98%);
  backdrop-filter: blur(18px);
  padding: 20px;
  box-shadow: var(--shadow-lift);
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.32s var(--ease-out-expo), opacity 0.28s ease;
}
.walaunch__panel.is-in { transform: none; opacity: 1; }
.walaunch__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.walaunch__head b { font-family: var(--font-display); text-transform: uppercase; font-size: 1rem; }
.walaunch__close { background: none; border: none; color: var(--muted-foreground); font-size: 1.4rem; line-height: 1; cursor: pointer; min-width: 34px; min-height: 34px; }
.walaunch__panel p { margin-top: 10px; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }
.walaunch__go {
  display: flex; align-items: center; justify-content: center;
  margin-top: 16px; min-height: 48px;
  border-radius: 999px; background: #25D366; color: #06301A;
  font-family: var(--font-mono); font-size: 0.625rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.walaunch__alt { display: block; margin-top: 12px; text-align: center; font-size: 0.8125rem; color: var(--primary); }
@media (max-width: 640px) {
  .walaunch { right: 12px; bottom: 12px; }
  .walaunch__btn span { display: none; }
  .walaunch__btn { padding: 0; width: 54px; height: 54px; justify-content: center; }
}

/* ---------- Scroll-reveal primitives ---------- */
.js .r-up { opacity: 0; transform: translateY(70px); }
.js .r-up.is-in { opacity: 1; transform: none; transition: opacity 1s var(--ease-out-expo) var(--d, 0s), transform 1s var(--ease-out-expo) var(--d, 0s); }
.js .r-blur { opacity: 0; transform: translateY(80px); filter: blur(10px); }
.js .r-blur.is-in { opacity: 1; transform: none; filter: blur(0); transition: opacity 0.95s var(--ease-out-expo) var(--d, 0s), transform 0.95s var(--ease-out-expo) var(--d, 0s), filter 0.95s var(--ease-out-expo) var(--d, 0s); }
.js .r-word > span { display: block; transform: translateY(115%); opacity: 0; }
.js .r-word.is-in > span { transform: none; opacity: 1; transition: transform 0.9s var(--ease-out-expo) var(--d, 0s), opacity 0.9s var(--ease-out-expo) var(--d, 0s); }
.js .r-tilt { opacity: 0; transform: translateY(70px) rotate(var(--tilt3, 0deg)); }
.js .r-tilt.is-in { opacity: 1; transform: rotate(var(--tilt, 0deg)); }
.r-tilt:hover { transform: rotate(0deg) scale(1.012) !important; }

@media (prefers-reduced-motion: reduce) {
  .js .r-up, .js .r-blur, .js .r-tilt { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
  .js .r-word > span { opacity: 1 !important; transform: none !important; transition: none !important; }
  .js .hero h1 .line > span { transform: none !important; }
  .js .hero__eyebrow, .js .hero__ctas { opacity: 1 !important; transform: none !important; }
  .marquee-track, .animate-bounce { animation: none !important; }
  .hero__media, .hero__glyph, .hero__inner, .featured__word, .band > img, .cat__media img, .story__media img { transform: none !important; }
  .story { height: auto; }
  .story__sticky { position: relative; height: auto; }
  .story__chapter { position: relative; opacity: 1 !important; min-height: 80svh; }
  .story__media { clip-path: none !important; }
  .prod__shot > div, .pillar, .cat__media img { transition: none !important; }
}
