/* ════════════════════════════════════════════════════════════════════
   NELSANE WELLSPRING — Stylesheet (single source of truth)
   Dark editorial · Wear · Sound · Token
   ──────────────────────────────────────────────────────────────────
   Sections:
     01. Tokens & reset
     02. Type & utilities (mono, neon-text, gradient-text, reveal)
     03. Topbar / navigation
     04. Buttons & forms
     05. Hero (landing)
     06. Lookbook / featured products (landing)
     07. Manifesto (landing)
     08. Ecosystem (landing)
     09. Newsletter (landing)
     10. Mega footer
     11. Catalog (vault)
     12. Product detail
     13. Cart & checkout
     14. About / brand page
     15. Reviews
     16. Order success / lookup
     17. Alerts, badges, status pills, toast
     18. Responsive
     19. Cookie consent banner
     20. Dark mode / light mode
     21. Brand about page (continued)
     22. Policy pages — shipping, returns, legal
     23. Contact page
     24. Spinner — checkout button
   ════════════════════════════════════════════════════════════════════ */

/* Fonts loaded via header.php link tag — Instrument Serif, Space Grotesk, JetBrains Mono */

/* ────────────────────────────────────────────────────────────────────
   01. TOKENS & RESET
   ──────────────────────────────────────────────────────────────────── */
:root {
  /* Surfaces — dark, warm-cool neutral */
  --bg:          oklch(0.13 0.012 290);
  --bg-deep:     oklch(0.09 0.010 290);
  --bg-soft:     oklch(0.16 0.014 290);
  --bg-card:     oklch(0.17 0.014 290);

  /* Lines */
  --line:        oklch(1 0 0 / 0.08);
  --line-strong: oklch(1 0 0 / 0.18);

  /* Ink */
  --ink:         oklch(0.97 0.005 290);
  --ink-muted:   oklch(0.72 0.012 290);
  --ink-dim:     oklch(0.50 0.014 290);

  /* Gold accent — elegance / luxury */
  --gold:        oklch(0.78 0.09 85);
  --gold-light:  oklch(0.88 0.07 88);
  --gold-dim:    oklch(0.60 0.07 82);
  --gold-grad:   linear-gradient(95deg, oklch(0.88 0.07 88) 0%, oklch(0.78 0.09 85) 50%, oklch(0.70 0.08 80) 100%);

  /* Neon — kept only for NW logomark; do not use for text or UI */
  --neon-pink:   oklch(0.74 0.22 350);
  --neon-mag:    oklch(0.62 0.28 320);
  --neon-blue:   oklch(0.70 0.20 260);
  --neon-cyan:   oklch(0.82 0.16 220);
  --neon-grad:   linear-gradient(95deg, oklch(0.74 0.22 350) 0%, oklch(0.62 0.28 320) 40%, oklch(0.70 0.20 260) 75%, oklch(0.82 0.16 220) 100%);

  /* Legacy aliases (PHP/back-compat — many pages use --purple/--pink/--blue/--cyan) */
  --purple:      #d24ff2;
  --pink:        #ff4fb8;
  --blue:        #6b7cff;
  --cyan:        #5ed1d8;
  --grad-brand:  var(--gold-grad);
  --grad-top:    linear-gradient(135deg, oklch(0.88 0.07 88), oklch(0.70 0.08 80));
  --text:        oklch(0.97 0.005 290);
  --text2:       oklch(0.72 0.012 290);
  --text3:       oklch(0.50 0.014 290);
  --surface:     oklch(1 0 0 / 0.04);
  --surface2:    oklch(1 0 0 / 0.07);
  --border:      var(--line);
  --border2:     oklch(1 0 0 / 0.12);

  /* Typography stack */
  --f-serif:  "Cormorant Garamond", Georgia, serif;
  --f-hero-serif: "Cormorant Garamond", Georgia, serif;
  --f-sans:   "Space Grotesk", "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --f-mono:   "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* Shape & shadow */
  --radius:    6px;
  --radius-sm: 4px;
  --radius-lg: 10px;
  --shadow:    0 22px 60px rgba(0,0,0,0.35);
  --glow:      0 18px 44px oklch(0.78 0.09 85 / 0.18);

  /* Layout */
  --pad-x:     clamp(24px, 5vw, 96px);
  --topbar-h:  72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg-deep);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
a   { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul  { list-style: none; }
button {
  cursor: pointer;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
}
::selection { background: oklch(0.78 0.09 85 / 0.35); color: var(--ink); }

h1, h2, h3, h4, h5 {
  font-family: var(--f-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--ink-muted); }


/* ────────────────────────────────────────────────────────────────────
   02. TYPE & UTILITIES
   ──────────────────────────────────────────────────────────────────── */
.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;
}

.container,
.container-sm {
  width: 100%; margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.container    { max-width: 1400px; }
.container-sm { max-width: 860px; }

.section    { padding: 6rem 0; }
.section-sm { padding: 3rem 0; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { margin-bottom: .5rem; }
.section-title p  { max-width: 540px; margin: 0 auto; }

.nw-mono,
.mono {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 400;
  line-height: 1.5;
}
.section-kicker {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: .75rem;
}
.serif { font-family: var(--f-serif); }

.neon-text,
.gradient-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.divider {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 2rem 0;
}

/* Reveal-on-scroll — only active when JS is present (.js class added by main.js) */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1);
}
.js .reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }


/* ────────────────────────────────────────────────────────────────────
   03. TOPBAR / NAVIGATION
   ──────────────────────────────────────────────────────────────────── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.topbar.scrolled {
  background: oklch(0.09 0.010 290 / 0.70);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.topbar-inner {
  height: var(--topbar-h);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}
.topbar-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.topbar-logo img {
  height: 30px; width: 30px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px oklch(0.78 0.09 85 / 0.20));
}
.brand-name {
  font-family: var(--f-sans);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--ink);
  white-space: nowrap;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: center;
}
.topbar-nav a {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 6px 0;
  position: relative;
  transition: color .25s ease;
}
.topbar-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1px;
  background: var(--gold-grad);
  transition: right .3s ease;
}
.topbar-nav a:hover,
.topbar-nav a.active { color: var(--ink); }
.topbar-nav a:hover::after,
.topbar-nav a.active::after { right: 0; }

.topbar-actions {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher { position: relative; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 9px 14px;
  border-radius: 3px;
  background: oklch(1 0 0 / 0.04);
  border: 1px solid var(--line);
  color: var(--ink-muted);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: all .2s;
}
.lang-btn:hover {
  color: var(--ink);
  background: oklch(1 0 0 / 0.08);
  border-color: var(--line-strong);
}
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  min-width: 164px;
  padding: 8px;
  background: oklch(0.09 0.010 290 / 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: 200;
}
.lang-dropdown.open { display: block; }
.lang-option {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  transition: all .15s;
}
.lang-option:hover { background: oklch(1 0 0 / 0.08); color: var(--ink); }
.lang-option.active { color: var(--ink); background: oklch(1 0 0 / 0.07); }

/* Theme toggle — keep button visible but neutral (we run a single dark theme) */
.theme-toggle {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: oklch(1 0 0 / 0.04);
  border: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: .85rem;
  display: grid; place-items: center;
  transition: all .2s;
}
.theme-toggle:hover {
  color: var(--ink);
  border-color: var(--line-strong);
}

/* Cart button */
.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: 8px 14px;
  border-radius: 3px;
  background: oklch(1 0 0 / 0.04);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: all .2s;
}
.cart-btn:hover {
  background: oklch(1 0 0 / 0.08);
  border-color: var(--line-strong);
}
.cart-label { display: none; }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 2px;
  background: var(--gold);
  color: oklch(0.12 0.010 290);
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 600;
  display: grid; place-items: center;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  background: none;
  border: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink-muted);
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Mobile Drawer ──────────────────────────────────────── */
.nw-drawer-overlay {
  position: fixed;
  inset: 0;
  background: oklch(0.06 0.010 290 / 0.70);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.nw-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nw-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 88vw);
  height: 100dvh;
  background: oklch(0.085 0.012 290 / 0.99);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-left: 1px solid var(--line);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.75rem 2rem;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.16, 1, .3, 1);
  overflow-y: auto;
}
.nw-drawer.open {
  transform: translateX(0);
}

.nw-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.nw-drawer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nw-drawer-logo img {
  height: 36px; width: 36px;
  object-fit: contain;
}
.nw-drawer-logo span {
  font-family: var(--f-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--ink);
}
.nw-drawer-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: oklch(1 0 0 / 0.05);
  border: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 1rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all .2s;
}
.nw-drawer-close:hover {
  background: oklch(1 0 0 / 0.10);
  color: var(--ink);
}

.nw-drawer-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.nw-drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-family: var(--f-serif);
  font-size: 1.7rem;
  font-weight: 400;
  font-style: italic;
  color: oklch(0.55 0.02 290);
  border-bottom: 1px solid var(--line);
  transition: color .2s, letter-spacing .2s;
  letter-spacing: -.01em;
}
.nw-drawer-nav a:last-child { border-bottom: none; }
.nw-drawer-nav a:hover { color: var(--ink); }
.nw-drawer-nav a.active {
  color: var(--ink);
}
.nw-drawer-nav a.active::after {
  content: '';
  display: block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-left: .5rem;
}
.nw-drawer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px; height: 20px;
  padding: 0 5px;
  border-radius: 2px;
  background: var(--gold);
  color: oklch(0.12 0.010 290);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  margin-left: .5rem;
  flex-shrink: 0;
}

.nw-drawer-foot {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.nw-drawer-langs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.nw-drawer-langs a {
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: all .2s;
}
.nw-drawer-langs a:hover,
.nw-drawer-langs a.active {
  border-color: var(--gold-dim);
  color: var(--gold-light);
  background: oklch(0.78 0.09 85 / 0.06);
}
.nw-drawer-social {
  display: flex;
  gap: 1.25rem;
}
.nw-drawer-social a {
  color: var(--ink-dim);
  font-size: 1.2rem;
  transition: color .2s;
}
.nw-drawer-social a:hover { color: var(--gold-light); }

/* Body scroll lock while drawer is open */
body.nw-nav-open { overflow: hidden; }

.page-body {
  /* No top padding here — sections handle their own spacing.
     The hero starts at y=0 so the topbar (transparent) overlays
     its gradient. Inner pages have their own padding-top that
     clears the fixed topbar. */
  padding-top: 0;
}
.page-body > section:first-child:not(.nw-hero) {
  /* Non-hero first sections must clear the fixed topbar */
  padding-top: calc(var(--topbar-h) + 3rem);
}


/* ────────────────────────────────────────────────────────────────────
   04. BUTTONS & FORMS
   ──────────────────────────────────────────────────────────────────── */
.btn,
.nw-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 3px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn:hover,
.nw-btn:hover { transform: translateY(-1px); }
.btn-primary,
.nw-btn-primary {
  background: var(--ink);
  color: var(--bg-deep);
}
.btn-primary:hover,
.nw-btn-primary:hover {
  background: var(--gold);
  color: oklch(0.12 0.010 290);
  box-shadow: 0 8px 24px oklch(0.78 0.09 85 / 0.22);
}

.btn-paypal-manual {
  background: oklch(0.93 0.04 235);
  color: oklch(0.18 0.08 245);
  border: 1px solid oklch(0.75 0.08 235 / 0.55);
  box-shadow: 0 10px 28px oklch(0.35 0.12 240 / 0.18);
}
.btn-paypal-manual:hover {
  background: oklch(0.98 0.03 95);
  color: oklch(0.15 0.07 245);
  border-color: oklch(0.72 0.13 88 / 0.75);
  box-shadow: 0 12px 30px oklch(0.35 0.12 240 / 0.24);
}
.btn-disabled,
.btn-disabled:hover {
  background: oklch(0.18 0.012 285);
  color: var(--ink-dim);
  border: 1px solid var(--line);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
  opacity: .72;
}

.btn-outline,
.btn-ghost,
.nw-btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-outline:hover,
.btn-ghost:hover,
.nw-btn-ghost:hover {
  background: oklch(1 0 0 / 0.04);
  border-color: var(--ink);
}
.btn-sm  { padding: 10px 18px; font-size: 10px; }
.btn-lg  { padding: 16px 28px; font-size: 12px; }
.btn-full { width: 100%; justify-content: center; }

/* Forms */
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: .55rem;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  min-height: 46px;
  background: oklch(1 0 0 / 0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 14px;
  outline: 0;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.form-control::placeholder { color: var(--ink-dim); }
.form-control:focus {
  border-color: var(--ink);
  background: oklch(1 0 0 / 0.05);
  box-shadow: 0 0 0 3px oklch(1 0 0 / 0.06);
}
select.form-control {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%23a09ab8' fill='none' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  appearance: none;
}
select.form-control option {
  background: var(--bg-deep);
  color: var(--ink);
}
textarea.form-control { resize: vertical; min-height: 110px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }

/* Filter pills (catalog) */
.filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 3px;
  background: oklch(1 0 0 / 0.03);
  border: 1px solid var(--line);
  color: var(--ink-muted);
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: oklch(1 0 0 / 0.05);
  border-color: var(--gold-dim);
  color: var(--gold-light);
}


/* ────────────────────────────────────────────────────────────────────
   05. HERO
   ──────────────────────────────────────────────────────────────────── */
.nw-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 var(--pad-x);
  /* Brand wallpaper — exact match to brand reference image */
  background:
    radial-gradient(120% 70% at 50% 30%,
      oklch(0.15 0.014 290) 0%,
      var(--bg-deep) 70%);
}

/* Aurora — DISABLED on hero (we use the wallpaper instead).
   Kept the rule for backward compat but blobs are now invisible. */
.nw-hero .aurora { display: block; }

/* Prototype-accurate hero wash: fluid CSS layers avoid 16:9 wallpaper crop. */
.nw-hero {
  min-height: 100svh;
  isolation: isolate;
  background:
    radial-gradient(120% 70% at 50% 30%,
      oklch(0.15 0.014 290) 0%,
      var(--bg-deep) 70%);
}

.nw-hero .aurora {
  display: block;
  z-index: 0;
}

.nw-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(220px, 30vh, 380px);
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to right, oklch(1 0 0 / 0.018) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(1 0 0 / 0.014) 1px, transparent 1px),
    linear-gradient(to bottom,
      oklch(0.13 0.01 284.7 / 0) 0%,
      oklch(0.13 0.01 284.7 / 0.34) 38%,
      oklch(0.13 0.01 284.7 / 0.82) 76%,
      oklch(0.13 0.01 284.7) 100%);
  background-size: 72px 72px, 72px 72px, 100% 100%;
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 100%);
}

/* Aurora blobs */
.aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.aur {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform, opacity;
}
.aur-1 {
  width: 60vw; height: 60vw;
  left: -10vw; top: -15vw;
  opacity: .20;
  background: radial-gradient(circle, oklch(0.42 0.10 290 / 0.50), transparent 65%);
  animation: aurFloatA 22s ease-in-out infinite;
}
.aur-2 {
  width: 55vw; height: 55vw;
  right: -12vw; top: 5vw;
  opacity: .15;
  background: radial-gradient(circle, oklch(0.38 0.08 270 / 0.50), transparent 65%);
  animation: aurFloatB 28s ease-in-out infinite;
}
.aur-3 {
  width: 40vw; height: 40vw;
  left: 25vw; bottom: -15vw;
  opacity: .10;
  background: radial-gradient(circle, oklch(0.78 0.09 85 / 0.25), transparent 65%);
  animation: aurFloatC 34s ease-in-out infinite;
}
.aur-grain {
  position: absolute; inset: 0;
  opacity: .35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .14 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
@keyframes aurFloatA { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(6vw,4vw) scale(1.12); } }
@keyframes aurFloatB { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-5vw,6vw) scale(0.92); } }
@keyframes aurFloatC { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-4vw,-3vw) scale(1.08); } }

/* Hero metadata in corners (editorial) */
.nw-hero-meta {
  position: absolute;
  top: calc(var(--topbar-h) + 20px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.nw-hero-meta-tl { left: var(--pad-x); }
.nw-hero-meta-tr { right: var(--pad-x); align-items: flex-end; }

/* Hero center content */
.nw-hero-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1100px;
}
.nw-hero-eyebrow { margin-bottom: 36px; }
.nw-hero-sig {
  width: min(680px, 72vw);
  height: auto;
  margin-bottom: 36px;
  filter: drop-shadow(0 8px 40px oklch(0.78 0.09 85 / 0.18));
}
.nw-hero-tagline {
  font-family: var(--f-hero-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(26px, 2.7vw, 40px);
  line-height: 1.22;
  letter-spacing: 0.03em;
  color: oklch(0.88 0.008 292);
  max-width: 760px;
  margin: 0 0 44px;
  text-shadow: 0 8px 30px oklch(0.78 0.09 85 / 0.10);
}
.nw-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero ghost product — atmospheric right-side image */
.nw-hero-product {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: clamp(220px, 32vw, 480px);
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  /* Fade from center outward */
  mask-image: linear-gradient(to right, transparent 0%, black 35%, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 35%, black 70%, transparent 100%);
}
.nw-hero-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.22;
  filter: grayscale(30%) contrast(1.05);
}

/* Hero bottom bar */
.nw-hero-foot {
  position: absolute;
  bottom: 24px;
  left: var(--pad-x);
  right: var(--pad-x);
  display: flex;
  justify-content: space-between;
  z-index: 2;
}


/* ────────────────────────────────────────────────────────────────────
   06. LOOKBOOK / FEATURED PRODUCTS (landing)
   ──────────────────────────────────────────────────────────────────── */
.nw-lookbook {
  position: relative;
  padding: 120px var(--pad-x) 140px;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}

/* Header row: kicker+title left | link right */
.nw-lb-head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1400px;
  margin: 0 auto 56px;
  gap: 40px;
}
.nw-lb-head-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nw-lb-kicker {
  color: var(--gold);
  letter-spacing: .14em;
}
.nw-lb-title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1.0;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--ink);
}
.nw-lb-title em {
  font-style: italic;
  color: var(--ink-muted);
}

/* Product grid — editorial luxury layout: 1 hero card + 3 smaller */
.nw-lb-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.nw-lb-card {
  background: transparent;
  display: flex;
  flex-direction: column;
}

/* Hero card — spans all 3 right-side rows */
.nw-lb-card:first-child {
  grid-row: span 3;
  align-self: stretch;
}
.nw-lb-card:first-child .nw-lb-card-link {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.nw-lb-card:first-child .nw-lb-img {
  flex: 1;
  aspect-ratio: unset;
  min-height: 480px;
}
.nw-lb-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.nw-lb-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  background: oklch(0.11 0.008 285);
}
.nw-lb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.25,.46,.45,.94);
}
.nw-lb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.08 0.008 285 / 0.72) 0%, oklch(0.08 0.008 285 / 0.10) 55%, transparent 80%);
  opacity: 0;
  transition: opacity .5s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  gap: 12px;
}
.nw-lb-card:hover .nw-lb-img img { transform: scale(1.06); }
.nw-lb-card:hover .nw-lb-overlay { opacity: 1; }

/* Overlay CTA text */
.nw-lb-overlay-text {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  transition: letter-spacing .3s ease;
}
.nw-lb-card:hover .nw-lb-overlay-text { letter-spacing: .20em; }

/* Quick-add size chips */
.nw-lb-quick-add {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.nw-lb-size-chip {
  padding: 5px 11px;
  border: 1px solid oklch(1 0 0 / 0.50);
  border-radius: 2px;
  background: oklch(0.09 0.010 290 / 0.70);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.nw-lb-size-chip:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: oklch(0.12 0.010 290);
}

/* Card info below image */
.nw-lb-info {
  padding: 14px 0 0;
}
.nw-lb-cat {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 5px;
}
.nw-lb-name {
  font-family: var(--f-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
  transition: color .2s;
}
.nw-lb-card:hover .nw-lb-name { color: var(--gold-light); }
.nw-lb-price {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--ink-muted);
}

/* "Ver Tudo" header link */
.nw-lb-see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line-strong);
  transition: gap .25s, color .2s, border-color .2s;
  width: fit-content;
  margin-bottom: 6px; /* align baseline with title */
}
.nw-lb-see-all:hover {
  gap: 14px;
  color: var(--gold-light);
  border-color: var(--gold-dim);
}


/* ────────────────────────────────────────────────────────────────────
   07. MANIFESTO
   ──────────────────────────────────────────────────────────────────── */
.nw-manifesto {
  position: relative;
  padding: 160px var(--pad-x);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  border-top: 1px solid var(--line);
}
.nw-mf-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.nw-mf-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: calc(var(--topbar-h) + 40px);
  height: fit-content;
}
.nw-mf-title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 76px);
  line-height: .94;
  letter-spacing: -.01em;
  margin: 0 0 52px;
  color: var(--ink);
}
.nw-mf-title em { font-style: italic; }
.nw-mf-text { max-width: 680px; }
.nw-mf-text p {
  font-family: var(--f-serif);
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.5;
  letter-spacing: 0.003em;
  color: var(--ink);
  margin: 0 0 28px;
}
.nw-mf-text p em {
  font-style: italic;
  color: var(--ink-muted);
}
.nw-mf-drop {
  font-family: var(--f-serif);
  font-size: 1.6em;
  line-height: .8;
  float: left;
  padding: 6px 8px 0 0;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nw-mf-sig {
  margin-top: 56px;
  width: 240px;
  opacity: .85;
}
.nw-mf-sig img { width: 100%; height: auto; }


/* ────────────────────────────────────────────────────────────────────
   08. ECOSYSTEM
   ──────────────────────────────────────────────────────────────────── */
.nw-eco {
  position: relative;
  padding: 160px var(--pad-x);
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}
.nw-eco-head {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.nw-eco-title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: .94;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--ink);
}
.nw-eco-title em { font-style: italic; }
.nw-eco-intro {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0;
}
.nw-eco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: transparent;
  border: 0;
  max-width: 1400px;
  margin: 0 auto;
}
.nw-eco-card {
  position: relative;
  padding: 44px 40px;
  background: oklch(0.11 0.010 290);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 460px;
  overflow: hidden;
  transition: background .35s ease, border-color .35s ease;
}
a.nw-eco-card { text-decoration: none; }
.nw-eco-card:hover { background: oklch(0.13 0.010 290); }

/* /wear — gold accent */
.nw-eco-card:nth-child(1) { border-color: oklch(0.78 0.09 85 / 0.18); }
.nw-eco-card:nth-child(1):hover { border-color: oklch(0.78 0.09 85 / 0.35); }
.nw-eco-card:nth-child(1) .nw-eco-name { color: var(--gold-light); }
.nw-eco-card:nth-child(1) .nw-eco-glow {
  background: radial-gradient(50% 70% at 50% 100%, oklch(0.78 0.09 85 / 0.18), transparent 70%);
}

/* /sound — blue/violet accent */
.nw-eco-card:nth-child(2) { border-color: oklch(0.70 0.20 260 / 0.18); }
.nw-eco-card:nth-child(2):hover { border-color: oklch(0.70 0.20 260 / 0.35); }
.nw-eco-card:nth-child(2) .nw-eco-name { color: oklch(0.82 0.14 260); }
.nw-eco-card:nth-child(2) .nw-eco-glow {
  background: radial-gradient(50% 70% at 50% 100%, oklch(0.70 0.20 260 / 0.16), transparent 70%);
}
.nw-eco-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
.nw-eco-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.nw-eco-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.nw-eco-dot-live {
  background: oklch(0.78 0.18 145);
  box-shadow: 0 0 8px oklch(0.78 0.18 145 / 0.6);
  animation: ecoPulse 2.2s ease-in-out infinite;
}
.nw-eco-dot-soon { background: var(--ink-dim); }
@keyframes ecoPulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.nw-eco-body {
  margin: 56px 0;
  position: relative;
  z-index: 2;
}
.nw-eco-name {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  margin: 0 0 8px;
  color: var(--ink);
}
.nw-eco-sub { margin-bottom: 22px; }
.nw-eco-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0;
  max-width: 280px;
}
.nw-eco-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  transition: gap .25s;
  align-self: flex-start;
  position: relative;
  z-index: 2;
}
.nw-eco-card:hover .nw-eco-cta { gap: 16px; }
.nw-eco-glow {
  position: absolute;
  inset: auto -30% -50% -30%;
  height: 80%;
  background: radial-gradient(50% 60% at 50% 100%, oklch(0.78 0.09 85 / 0.12), transparent 70%);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.nw-eco-card:hover .nw-eco-glow { opacity: 1; }


/* ────────────────────────────────────────────────────────────────────
   09. NEWSLETTER
   ──────────────────────────────────────────────────────────────────── */
.nw-nl {
  position: relative;
  padding: 160px var(--pad-x);
  background: var(--bg);
  border-top: 1px solid var(--line);
  text-align: center;
}
.nw-nl-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.nw-nl-title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0;
}
.nw-nl-title em {
  font-style: italic;
  color: var(--ink-muted);
}
.nw-nl-sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--ink-muted);
  margin: 0;
}
.nw-nl-form {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 560px;
  margin-top: 12px;
  padding: 6px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: oklch(1 0 0 / 0.02);
  transition: border-color .25s;
}
.nw-nl-form:focus-within { border-color: var(--gold-dim); }
.nw-nl-form:focus-within { border-color: var(--ink); }
.nw-nl-form input {
  background: transparent;
  border: 0;
  outline: 0;
  padding: 0 14px;
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 14px;
  letter-spacing: 0.01em;
  min-width: 0;
}
.nw-nl-form input::placeholder { color: var(--ink-dim); }
.nw-nl-form input[name="name"] {
  width: 130px;
  flex-shrink: 0;
  border-right: 1px solid var(--line);
}
.nw-nl-form input[name="email"] { flex: 1; }
.nw-nl-form .nw-btn,
.nw-nl-form .btn { flex-shrink: 0; }
.nw-nl-note {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  opacity: .6;
  margin-top: 8px;
}

/* Newsletter AJAX status */
.nw-nl-status {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 3px;
  min-height: 1.4em;
  transition: opacity .3s;
}
.nw-nl-ok {
  color: oklch(0.85 0.18 145);
  background: oklch(0.78 0.18 145 / 0.08);
  border: 1px solid oklch(0.78 0.18 145 / 0.25);
}
.nw-nl-err {
  color: oklch(0.80 0.18 25);
  background: oklch(0.65 0.22 25 / 0.08);
  border: 1px solid oklch(0.65 0.22 25 / 0.25);
}


/* ────────────────────────────────────────────────────────────────────
   10. MEGA FOOTER
   ──────────────────────────────────────────────────────────────────── */
.nw-ft {
  position: relative;
  padding: 72px var(--pad-x) 40px;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}
.nw-ft-mega {
  max-width: 1400px;
  margin: 0 auto 96px;
}
.nw-ft-mega img {
  width: 100%;
  height: auto;
  opacity: .90;
  filter: drop-shadow(0 8px 60px oklch(0.78 0.09 85 / 0.12));
}
.nw-ft-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto 80px;
  padding-top: 0;
  border-top: 0;
}
.nw-ft-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nw-ft-col-h {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nw-ft-col a {
  font-family: var(--f-sans);
  font-size: 14px;
  color: var(--ink-muted);
  transition: color .2s;
}
.nw-ft-col a:hover { color: var(--ink); }
.nw-ft-social-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nw-ft-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nw-ft-social-link i {
  width: 16px;
  color: var(--gold);
  font-size: 14px;
  text-align: center;
}
.nw-ft-base {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  align-items: center;
  text-align: center;
}
.nw-ft-base-l,
.nw-ft-base-r,
.nw-ft-base-r a,
.nw-ft-base-note {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.nw-ft-base-note {
  margin: 0;
  max-width: 720px;
  line-height: 1.7;
  text-transform: none;
  letter-spacing: .02em;
}
.nw-ft-base-r {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.nw-ft-base-r a { transition: color .2s; }
.nw-ft-base-r a:hover { color: var(--ink); }


/* ────────────────────────────────────────────────────────────────────
   11. CATALOG (vault)
   ──────────────────────────────────────────────────────────────────── */
.vault-catalog {
  position: relative;
  padding: 100px 0 120px;
  background: var(--bg);
}
.vault-catalog-head {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}
.vault-catalog-head > span {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.2rem;
}
.vault-catalog-head h1 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: .98;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: .75rem;
}
.vault-catalog-head p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-muted);
  margin: 0 auto;
}

.vault-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  margin: 0;
}

.vault-catalog-tools {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto 64px;
}

.vault-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.vault-product-card {
  background: transparent;
  display: flex;
  flex-direction: column;
  transition: opacity .3s ease;
}
.vault-product-card:hover { opacity: .9; }
.vault-card-oos { opacity: .65; }
.vault-card-oos:hover { opacity: .65; }
.vault-oos-badge {
  position: absolute; bottom: .65rem; left: .65rem;
  background: oklch(0.12 0.006 285 / 0.88);
  border: 1px solid oklch(0.97 0.005 290 / 0.18);
  color: var(--ink-muted);
  font-family: var(--f-mono); font-size: .6rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .2rem .55rem; border-radius: 4px;
  backdrop-filter: blur(4px);
}

/* ── Pagination ──────────────────────────────────────────── */
.vault-pagination {
  display: flex; justify-content: center; align-items: center;
  gap: .45rem; padding: 2.5rem 0 1rem; flex-wrap: wrap;
}
.vault-page-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 .65rem;
  border: 1px solid oklch(0.97 0.005 290 / 0.12);
  border-radius: 6px; font-size: .82rem; font-weight: 600;
  font-family: var(--f-mono); color: var(--ink-muted);
  transition: color .2s, border-color .2s, background .2s;
  text-decoration: none;
}
.vault-page-btn:hover {
  color: var(--ink); border-color: oklch(0.97 0.005 290 / 0.3);
  background: oklch(0.97 0.005 290 / 0.04);
}
.vault-page-btn.active {
  color: var(--gold); border-color: var(--gold);
  background: oklch(0.78 0.09 85 / 0.08);
}
.vault-product-image {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: oklch(0.11 0.008 285);
  position: relative;
}
.vault-product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.08 0.006 285 / 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.vault-product-card:hover .vault-product-image::after { opacity: 1; }
.vault-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.vault-product-card:hover .vault-product-image img { transform: scale(1.04); }
.vault-product-meta {
  padding: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.vault-product-meta > span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.vault-product-meta h3 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.15;
  margin: 0;
}
.vault-product-meta h3 a { color: var(--ink); }
.vault-product-meta h3 a:hover { color: var(--gold-light); }
.vault-product-meta p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 4px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vault-product-meta > div:last-child {
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: .04em;
  color: var(--ink);
  margin-top: 12px;
}

.vault-empty {
  max-width: 560px;
  margin: 64px auto;
  text-align: center;
  padding: 80px 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.vault-empty > span {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.2rem;
}
.vault-empty h2 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 36px;
  margin-bottom: .85rem;
  color: var(--ink);
}
.vault-empty p {
  color: var(--ink-muted);
  margin-bottom: 1.8rem;
}


/* ────────────────────────────────────────────────────────────────────
   12. PRODUCT DETAIL
   ──────────────────────────────────────────────────────────────────── */
.product-detail {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
  padding-top: 32px;
}
.product-gallery {
  position: sticky;
  top: calc(var(--topbar-h) + 24px);
}
.product-gallery .main-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 3px;
  background: oklch(0.11 0.008 285);
  border: 1px solid var(--line);
}
.product-gallery .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail-info {
  padding: 0;
}
.product-detail-info .product-category {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: .75rem;
}
.product-detail-info h1 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 56px) !important;
  line-height: 1.02;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 1.25rem !important;
}

.size-selector,
.color-selector {
  margin-bottom: 1.75rem;
}
.size-selector label,
.color-selector label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: .75rem;
}
.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.size-option {
  padding: 10px 16px;
  min-width: 44px;
  background: oklch(1 0 0 / 0.03);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-muted);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}
.size-option:hover,
.size-option.selected,
.size-option:focus-visible {
  background: oklch(1 0 0 / 0.07);
  border-color: var(--ink);
  color: var(--ink);
}

.size-option:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.qty-selector {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: oklch(1 0 0 / 0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 1.75rem;
}
.qty-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  display: grid;
  place-items: center;
  transition: background .2s;
}
.qty-btn:hover { background: oklch(1 0 0 / 0.07); }
.qty-value {
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 500;
  min-width: 2rem;
  text-align: center;
  color: var(--ink);
}


/* ── Free shipping progress bar ─────────────────────────────────────── */
.cart-free-ship-bar { margin: .35rem 0 .6rem; }
.cart-free-ship-track {
  height: 5px; background: oklch(0.97 0.005 290 / 0.10);
  border-radius: 100px; overflow: hidden; margin-bottom: .4rem;
}
.cart-free-ship-fill {
  height: 100%;
  background: linear-gradient(90deg, oklch(0.78 0.09 85), oklch(0.85 0.06 85));
  border-radius: 100px;
  transition: width .5s cubic-bezier(.4,0,.2,1);
}
.cart-free-ship-label { font-size: .78rem; color: var(--ink-muted); }

/* ────────────────────────────────────────────────────────────────────
   13. CART & CHECKOUT
   ──────────────────────────────────────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}
.cart-item {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: oklch(1 0 0 / 0.025);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
}
.cart-item-image {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-soft);
  flex-shrink: 0;
}
.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--ink);
}
.cart-item-variant {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.cart-item-variant span {
  color: var(--ink-dim);
}
.cart-item-variant span + span::before {
  content: "/";
  margin-right: 6px;
  color: var(--line-strong);
}
.checkout-variant-confirm {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 7px;
}
.checkout-variant-confirm span {
  display: inline;
  color: var(--ink-dim);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.checkout-variant-confirm span + span::before {
  content: "/";
  margin-right: 6px;
  color: var(--line-strong);
}
.cart-item-price {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--ink);
  align-self: center;
}

.cart-size-warning {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding: 16px 18px;
  background: linear-gradient(90deg, oklch(0.78 0.09 85 / 0.12), oklch(1 0 0 / 0.025));
  border: 1px solid oklch(0.78 0.09 85 / 0.42);
  border-radius: 12px;
  color: var(--ink-muted);
  line-height: 1.55;
}
.cart-size-warning i {
  color: var(--gold-dim);
  margin-top: 3px;
}
.cart-size-warning strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
}
.cart-size-warning span {
  display: block;
  font-size: 13.5px;
}

.cart-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.cart-continue-link,
.cart-clear-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1;
}
.cart-continue-link {
  color: var(--ink-muted);
  text-decoration: none;
}
.cart-continue-link:hover {
  color: var(--ink);
}
.cart-clear-btn {
  border: 1px solid oklch(0.66 0.22 25 / 0.28);
  background: oklch(0.66 0.22 25 / 0.06);
  color: oklch(0.78 0.17 25);
  padding: 0 14px;
  cursor: pointer;
  font-family: var(--f-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cart-clear-btn:hover {
  background: oklch(0.66 0.22 25 / 0.12);
  border-color: oklch(0.66 0.22 25 / 0.44);
}

.cart-summary {
  background: oklch(1 0 0 / 0.025);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  position: sticky;
  top: calc(var(--topbar-h) + 24px);
}
.cart-summary h4 {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.summary-row:last-child {
  border: 0;
  font-size: 1.1rem;
  font-family: var(--f-serif);
}
.summary-row .label {
  color: var(--ink-muted);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.empty-state {
  text-align: center;
  padding: 6rem 2rem;
  color: var(--ink-muted);
}
.empty-state i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: .3;
  display: block;
}
.empty-state h3 {
  font-family: var(--f-serif);
  font-size: 2rem;
  margin-bottom: .65rem;
  color: var(--ink);
}
.empty-state-action {
  margin-top: 1.45rem;
  min-height: 46px;
  padding: 11px 20px;
  font-size: 10px;
  letter-spacing: .14em;
  gap: 8px;
}
.empty-state-action i {
  display: inline-block;
  margin: 0;
  font-size: .8rem;
  opacity: .75;
}

/* Checkout */
.checkout-private { padding-top: 4rem; }
.vault-checkout-head {
  max-width: 880px;
  margin: 0 auto 48px;
  text-align: center;
}
.vault-checkout-head > span {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}
.vault-checkout-head h1 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 76px);
  line-height: .98;
  color: var(--ink);
  margin-bottom: .85rem;
}
.vault-checkout-head p {
  max-width: 620px;
  margin: 0 auto;
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--ink-muted);
}
.checkout-progress {
  display: grid;
  grid-template-columns: auto minmax(28px, 1fr) auto minmax(28px, 1fr) auto;
  align-items: center;
  gap: 12px;
  max-width: 620px;
  margin: 28px auto 0;
}
.checkout-progress-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.checkout-progress-step span {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  aspect-ratio: 1;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  border: 1px solid oklch(0.78 0.09 85 / 0.35);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .04em;
  background: oklch(0.78 0.09 85 / 0.07);
}
.checkout-progress-step strong {
  color: var(--ink-muted);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
  white-space: nowrap;
  min-width: max-content;
}
.checkout-progress-line {
  height: 1px;
  background: linear-gradient(90deg, oklch(0.78 0.09 85 / 0.42), var(--line));
}

.card {
  background: oklch(1 0 0 / 0.025);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 18px;
}
.card h4 {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  color: var(--ink);
}
.card-gradient {
  background:
    linear-gradient(135deg, oklch(0.78 0.09 85 / 0.05), oklch(0.70 0.07 82 / 0.03)),
    oklch(1 0 0 / 0.025);
  border-color: var(--line-strong);
}

.private-checkbox {
  display: flex;
  align-items: center;
  gap: .6rem;
  cursor: pointer;
  font-size: 13px;
  color: var(--ink-muted);
}
.private-checkbox input { accent-color: var(--gold); }
.private-shipping-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: oklch(1 0 0 / 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.private-shipping-line i {
  color: var(--gold);
  font-size: 1.15rem;
}
.private-shipping-line strong { display: block; color: var(--ink); }
.private-shipping-line span {
  display: block;
  font-size: 12px;
  color: var(--ink-muted);
}
.private-shipping-line b {
  margin-left: auto;
  white-space: nowrap;
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--ink);
}

.private-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: oklch(1 0 0 / 0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink-muted);
  font-size: 13.5px;
  line-height: 1.55;
}
.private-note + .private-note { margin-top: 10px; }
.private-note i {
  color: var(--gold-dim);
  margin-top: .2rem;
}

.private-note-paypal {
  border-color: oklch(0.64 0.12 235 / 0.32);
  background: oklch(0.52 0.10 235 / 0.08);
}
.private-note-paypal i {
  color: oklch(0.78 0.12 235);
}

.private-note-blocked {
  border-color: oklch(0.68 0.16 35 / 0.35);
  background: oklch(0.42 0.12 35 / 0.10);
}
.private-note-blocked i {
  color: oklch(0.78 0.14 45);
}

.checkout-privacy {
  text-align: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 1rem;
}

.private-summary-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.private-summary-item strong {
  display: block;
  color: var(--ink);
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 15px;
}
.private-summary-item span {
  display: block;
  color: var(--ink-dim);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .08em;
}
.private-summary-item .checkout-variant-confirm span {
  display: inline;
  font-size: 10.5px;
  text-transform: uppercase;
}


/* ────────────────────────────────────────────────────────────────────
   14. ABOUT / BRAND PAGE
   ──────────────────────────────────────────────────────────────────── */
.brand-page {
  padding: 100px 0 1rem;
}

/* ── Hero ─────────────────────────── */
.brand-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 64px;
  align-items: center;
  margin-bottom: 5rem;
}
.brand-hero h1 {
  margin: .65rem 0 1.2rem;
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -.01em;
}
.brand-hero p {
  font-family: var(--f-serif);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 600px;
}
.brand-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}
.brand-mark-panel {
  min-height: 400px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 35%, oklch(0.78 0.09 85 / 0.10), transparent 50%),
    linear-gradient(145deg, oklch(0.16 0.015 290), oklch(0.10 0.014 295));
  display: grid;
  place-items: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.brand-editorial-panel {
  display: block;
  width: 100%;
  justify-self: stretch;
  padding: 18px;
  background:
    radial-gradient(circle at 80% 12%, oklch(0.78 0.09 85 / 0.12), transparent 42%),
    linear-gradient(145deg, oklch(0.14 0.014 290), oklch(0.08 0.012 295));
}
.brand-editorial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  grid-template-columns: 1.35fr .85fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-height: 330px;
}
.brand-editorial-grid a {
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: oklch(0.07 0.010 290);
}
.brand-editorial-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .35s ease, opacity .35s ease;
}
.brand-editorial-grid a:hover img {
  transform: scale(1.045);
  opacity: .94;
}
.brand-editorial-main {
  grid-row: 1 / span 2;
}
.brand-editorial-caption {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 14px;
  color: var(--ink-muted);
}
.brand-editorial-caption span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.brand-editorial-caption strong {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
}
.brand-panel-mark {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  opacity: .38;
  filter: drop-shadow(0 12px 36px oklch(0.78 0.09 85 / 0.24));
  z-index: 2;
}
.brand-mark-panel > img:first-child {
  width: 125px;
  filter: drop-shadow(0 18px 50px oklch(0.78 0.09 85 / 0.16));
}
.brand-signature {
  width: 230px;
  margin-top: -3rem;
  filter: invert(1);
  opacity: .75;
}

/* ── 4 Values ─────────────────────── */
.brand-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 5.5rem;
}
.brand-value {
  border: 1px solid var(--line-strong);
  border-top: 2px solid var(--gold-dim);
  border-radius: 4px;
  background: oklch(1 0 0 / 0.03);
  padding: 26px 24px 24px;
  transition: border-top-color .2s, background .2s;
}
.brand-value:hover {
  border-top-color: var(--gold);
  background: oklch(1 0 0 / 0.05);
}
.brand-value i {
  display: block;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.brand-value strong {
  display: block;
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}
.brand-value p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0;
}

/* ── Origin / Story ───────────────── */
.brand-origin {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
  margin-bottom: 5.5rem;
}
.origin-text h2 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.1;
  margin: .6rem 0 1.4rem;
}
.origin-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--ink-muted);
}
.origin-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  overflow: hidden;
}
.origin-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  transition: background .18s;
}
.origin-step:last-child { border-bottom: none; }
.origin-step:hover { background: oklch(1 0 0 / 0.03); }
.ostep-num {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--gold);
  min-width: 28px;
  padding-top: 3px;
  flex-shrink: 0;
}
.origin-step > div strong {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .3rem;
}
.origin-step > div p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0;
}

/* ── Wellspring / Mission ─────────── */
.brand-mission {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 56px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background:
    linear-gradient(135deg, oklch(0.78 0.09 85 / 0.06), oklch(0.70 0.07 82 / 0.03)),
    oklch(1 0 0 / 0.025);
  padding: 3rem;
  margin-bottom: 4rem;
}
.brand-mission h2 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  margin: .5rem 0 .9rem;
}
.brand-mission p {
  max-width: 560px;
  line-height: 1.75;
  color: var(--ink-muted);
}
.mission-list {
  display: grid;
  gap: 10px;
  min-width: 260px;
}
.mission-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: oklch(1 0 0 / 0.03);
  padding: 14px 18px;
  color: var(--ink);
  font-size: 14px;
  transition: background .18s;
}
.mission-list span:hover { background: oklch(1 0 0 / 0.06); }
.mission-list i {
  color: var(--gold);
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

/* ── Ecosystem strip ─────────────── */
.brand-ecosystem {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  border: 1px solid var(--line-strong);
  border-top: 2px solid var(--gold-dim);
  border-radius: 6px;
  background: oklch(1 0 0 / 0.025);
  padding: 2rem 2.5rem;
  margin-bottom: 4rem;
}
.brand-ecosystem .section-kicker { display: block; margin-bottom: .5rem; }
.brand-ecosystem p {
  color: var(--ink-muted);
  font-size: .95rem;
  line-height: 1.6;
  max-width: 540px;
}
.eco-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
}
.eco-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  transition: border-color .18s, color .18s;
  white-space: nowrap;
}
.eco-link:hover { border-color: var(--gold-dim); color: var(--ink); }
.eco-link i { color: var(--gold); width: 14px; text-align: center; }


/* ────────────────────────────────────────────────────────────────────
   15. REVIEWS
   ──────────────────────────────────────────────────────────────────── */
.reviews-section { margin-top: 5rem; }
.reviews-section h3 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.reviews-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 2rem;
}
.rating-big { text-align: center; min-width: 140px; }
.rating-big .score {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 4rem;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rating-big .stars-display { font-size: 1.2rem; margin-top: .25rem; }
.rating-big .count {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: .35rem;
}
.rating-bars { flex: 1; min-width: 220px; }
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.rating-bar-track {
  flex: 1;
  height: 4px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: var(--gold-grad);
  transition: width .5s ease;
}
.stars-display {
  display: inline-flex;
  gap: 1px;
}
.star-full { color: #FFC845; }
.star-empty { color: var(--line-strong); }

.review-card {
  background: oklch(1 0 0 / 0.025);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 14px;
}
.review-card.review-featured {
  border-color: oklch(0.78 0.09 85 / 0.35);
  background:
    linear-gradient(135deg, oklch(0.78 0.09 85 / 0.06), transparent 50%),
    oklch(1 0 0 / 0.025);
}
.review-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.review-author {
  font-family: var(--f-serif);
  font-size: 1.05rem;
  color: var(--ink);
}
.review-country {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--ink-muted);
}
.review-badge-verified,
.review-badge-featured {
  font-family: var(--f-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.review-badge-verified {
  color: oklch(0.78 0.18 145);
  background: oklch(0.78 0.18 145 / 0.10);
}
.review-badge-featured {
  color: var(--gold);
  background: oklch(0.78 0.09 85 / 0.12);
}
.review-title {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  margin-bottom: .35rem;
  color: var(--ink);
}
.review-text {
  color: var(--ink-muted);
  line-height: 1.7;
  font-size: 14.5px;
}
.review-date {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 12px;
}

/* Star input (5-star picker) */
.star-input {
  display: flex;
  flex-direction: row-reverse;
  gap: 4px;
  justify-content: flex-end;
}
.star-input input { display: none; }
.star-input label {
  font-size: 1.6rem;
  color: var(--line-strong);
  cursor: pointer;
  transition: color .15s;
}
.star-input input:checked ~ label,
.star-input label:hover,
.star-input label:hover ~ label { color: #FFC845; }

.review-form-card {
  margin-top: 2.5rem;
  padding: 2.5rem;
  background: oklch(1 0 0 / 0.025);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.review-form-card h4 {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}


/* ────────────────────────────────────────────────────────────────────
   16. ORDER SUCCESS / LOOKUP
   ──────────────────────────────────────────────────────────────────── */
.order-success-section { padding-top: 4rem; }
.order-success-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 2.5rem;
}
.order-success-head h1 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: .35rem;
}
.success-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: oklch(0.78 0.18 145 / 0.12);
  border: 1px solid oklch(0.78 0.18 145 / 0.35);
  color: oklch(0.78 0.18 145);
  font-size: 1.8rem;
}

.order-confirmation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
}
.order-card,
.lookup-panel {
  background: oklch(1 0 0 / 0.025);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 16px;
}
.order-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  color: var(--ink);
}
.order-card-title i { color: var(--gold); }
.order-number-card {
  background:
    linear-gradient(135deg, oklch(0.78 0.09 85 / 0.08), oklch(0.70 0.07 82 / 0.04)),
    oklch(1 0 0 / 0.025);
  border-color: oklch(0.78 0.09 85 / 0.25);
}
.order-number-card span {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.order-number-card strong {
  display: block;
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 2.5rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 6px 0;
}
.receipt-line,
.receipt-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.receipt-line span {
  display: block;
  color: var(--ink-dim);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .08em;
  margin-top: .15rem;
}
.receipt-total { color: var(--ink-muted); }
.receipt-grand-total {
  border-bottom: 0;
  font-size: 1.2rem;
  color: var(--ink);
  font-family: var(--f-serif);
}
.receipt-grand-total strong {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.next-steps-list {
  padding-left: 1.2rem;
  color: var(--ink-muted);
  display: grid;
  gap: .65rem;
  font-size: 14px;
}
.order-side-card {
  position: sticky;
  top: calc(var(--topbar-h) + 24px);
}
.order-details-list {
  display: grid;
  gap: .65rem;
  margin: 0;
}
.order-details-list dt {
  color: var(--ink-dim);
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.order-details-list dd {
  margin: 0 0 .5rem;
  color: var(--ink);
  font-size: 14px;
}
.order-help-box {
  background: oklch(0.78 0.09 85 / 0.06);
  border: 1px solid oklch(0.78 0.09 85 / 0.18);
  border-radius: 10px;
  padding: 1.2rem;
  color: var(--ink-muted);
  font-size: 14px;
}
.order-help-box strong {
  color: var(--ink);
  display: block;
  margin-bottom: .35rem;
}
.order-help-box p { margin-bottom: .9rem; }
.lookup-panel h1 {
  font-family: var(--f-serif);
  font-weight: 400;
  margin-bottom: .65rem;
}
.lookup-form { margin-top: 1.5rem; }


/* ────────────────────────────────────────────────────────────────────
   17. ALERTS / BADGES / STATUS / TOAST
   ──────────────────────────────────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert i { font-size: 1.05rem; }
.alert-success {
  background: oklch(0.78 0.18 145 / 0.10);
  border: 1px solid oklch(0.78 0.18 145 / 0.30);
  color: oklch(0.85 0.18 145);
}
.alert-error {
  background: oklch(0.65 0.22 25 / 0.10);
  border: 1px solid oklch(0.65 0.22 25 / 0.30);
  color: oklch(0.80 0.18 25);
}
.alert-info {
  background: oklch(0.70 0.20 260 / 0.10);
  border: 1px solid oklch(0.70 0.20 260 / 0.30);
  color: oklch(0.85 0.14 260);
}
.alert-warning {
  background: oklch(0.78 0.16 90 / 0.10);
  border: 1px solid oklch(0.78 0.16 90 / 0.30);
  color: oklch(0.85 0.14 90);
}

.badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.badge-new {
  background: var(--ink);
  color: var(--bg-deep);
}
.badge-featured {
  background: oklch(0.78 0.16 90);
  color: oklch(0.15 0.04 90);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.status::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.status-pending    { background: oklch(0.78 0.16 90 / 0.10);  color: oklch(0.85 0.14 90); }
.status-confirmed  { background: oklch(0.70 0.20 260 / 0.10); color: oklch(0.85 0.14 260); }
.status-shipped    { background: oklch(0.82 0.16 220 / 0.10); color: oklch(0.85 0.14 220); }
.status-delivered  { background: oklch(0.78 0.18 145 / 0.10); color: oklch(0.85 0.18 145); }
.status-cancelled  { background: oklch(0.65 0.22 25 / 0.10);  color: oklch(0.80 0.18 25); }
.status-paid       { background: oklch(0.78 0.18 145 / 0.10); color: oklch(0.85 0.18 145); }

#nw-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: min(420px, calc(100vw - 28px));
  padding: 14px 16px 14px 18px;
  border-radius: 3px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  transition: opacity .4s ease;
  animation: nwToastIn .35s cubic-bezier(0.16, 1, 0.3, 1);
  /* Default: success (gold) */
  background: oklch(0.14 0.010 285 / 0.92);
  border: 1px solid oklch(0.78 0.09 85 / 0.45);
  color: oklch(0.85 0.08 85);
}
.nw-toast-message {
  line-height: 1.35;
}
.nw-toast-action {
  flex-shrink: 0;
  color: oklch(0.97 0.02 85);
  border: 1px solid oklch(0.78 0.09 85 / 0.35);
  border-radius: 3px;
  padding: 8px 10px;
  text-decoration: none;
  background: oklch(0.78 0.09 85 / 0.12);
}
.nw-toast-action:hover {
  background: oklch(0.78 0.09 85 / 0.22);
}
#nw-toast[data-type="error"] {
  border-color: oklch(0.65 0.22 25 / 0.45);
  color: oklch(0.80 0.18 25);
}
#nw-toast[data-type="info"] {
  border-color: oklch(0.70 0.10 260 / 0.45);
  color: oklch(0.80 0.06 260);
}
@keyframes nwToastIn {
  from { transform: translateY(.75rem); opacity: 0; }
  to   { transform: none; opacity: 1; }
}

@media (max-width: 640px) {
  #nw-toast {
    left: 14px;
    right: 14px;
    bottom: 16px;
    justify-content: space-between;
  }
}


/* ────────────────────────────────────────────────────────────────────
   18. RESPONSIVE
   ──────────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nw-lb-grid       { grid-template-columns: 1fr 1fr; gap: 14px; }
  .nw-lb-card:first-child { grid-row: span 1; align-self: auto; }
  .nw-lb-card:first-child .nw-lb-card-link { height: auto; }
  .nw-lb-card:first-child .nw-lb-img { flex: none; aspect-ratio: 3/4; min-height: unset; }
  .nw-lb-head       { flex-direction: column; align-items: flex-start; gap: 20px; }
  .nw-eco-grid      { grid-template-columns: 1fr; }
  .vault-product-grid { grid-template-columns: repeat(2, 1fr); }
  .nw-ft-grid       { grid-template-columns: repeat(2, 1fr); }
  .product-detail   { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery  { position: static; }
  .cart-layout      { grid-template-columns: 1fr; }
  .cart-summary     { position: static; }
  .order-confirmation-grid { grid-template-columns: 1fr; }
  .order-side-card  { position: static; }
  .order-success-head { grid-template-columns: auto 1fr; }
  .brand-hero,
  .brand-origin,
  .brand-mission,
  .brand-ecosystem  { grid-template-columns: 1fr; gap: 24px; }
  .contact-layout   { grid-template-columns: 1fr; }
  .brand-values     { grid-template-columns: repeat(2, 1fr); }
  .brand-mark-panel { min-height: 280px; }
  .brand-editorial-grid { min-height: 300px; }
}

@media (max-width: 880px) {
  .topbar-nav    { display: none; }
  .hamburger     { display: flex; }
  .topbar-inner  { grid-template-columns: auto 1fr; }
  .topbar-actions .cart-label { display: none; }
  .nw-mf-grid    { grid-template-columns: 1fr; gap: 32px; }
  .nw-mf-side    { position: static; }
  .nw-hero-meta  { display: none; }
  .nw-hero-foot  { gap: 12px; flex-wrap: wrap; }
  .nw-ft-base    { gap: 12px; }
  .nw-lookbook,
  .nw-manifesto,
  .nw-eco,
  .nw-nl         { padding-top: 100px; padding-bottom: 100px; }
  .nw-eco-name   { font-size: 56px; }
  .form-row,
  .form-row-3    { grid-template-columns: 1fr; }
  .brand-mission { padding: 2rem; gap: 28px; }
  .brand-values  { grid-template-columns: repeat(2, 1fr); }
  .mission-list  { min-width: unset; }
}

@media (max-width: 600px) {
  :root { --topbar-h: 64px; }
  .topbar-inner { padding: 0 24px; gap: .65rem; }
  .topbar-actions { gap: .4rem; }
  .brand-name { display: none; }
  .lang-btn { padding: 8px 10px; }
  .theme-toggle,
  .cart-btn {
    width: 34px;
    height: 34px;
    padding: 0;
    justify-content: center;
  }
  .hamburger { width: 26px; }
  .nw-lb-grid       { grid-template-columns: 1fr; }
  .vault-product-grid { grid-template-columns: 1fr; }
  .nw-ft-grid    { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 22px; margin-bottom: 52px; }
  .nw-ft-social-col { grid-column: 1 / -1; padding-top: 6px; }
  .nw-ft-social-list { flex-direction: row; flex-wrap: wrap; gap: 12px 18px; }
  .nw-ft-social-link { min-height: 28px; }
  .nw-nl-form    { flex-direction: column; border-radius: 4px; padding: 8px; }
  .nw-nl-form input { padding: 14px 18px !important; width: auto !important; border-right: 0 !important; }
  .nw-nl-form input[name="name"] { border-bottom: 1px solid var(--line); }
  .nw-hero-sig   { width: min(420px, 85vw); }
  .nw-hero-tagline { margin-bottom: 32px; }
  .nw-hero-cta   { flex-direction: column; width: 100%; }
  .nw-hero-cta .btn,
  .nw-hero-cta .nw-btn { width: 100%; justify-content: center; }
  .nw-lookbook,
  .nw-manifesto,
  .nw-eco,
  .nw-nl,
  .nw-ft         { padding-top: 72px; padding-bottom: 72px; }
  .nw-eco-card   { min-height: 320px; padding: 32px 24px; }
  .nw-eco-name   { font-size: 48px; }
  .cart-item     { flex-direction: column; }
  .cart-item-image { width: 100%; height: 200px; }
  .cart-actions-row { align-items: stretch; }
  .cart-clear-btn { width: 100%; justify-content: center; }
  .review-card,
  .review-form-card { padding: 20px; }
  .brand-mark-panel { padding: 2rem 1rem; min-height: 240px; }
  .brand-mark-panel > img:first-child { width: 105px; }
  .brand-signature { width: 145px; margin-top: -2.25rem; }
  .brand-values  { grid-template-columns: 1fr 1fr; gap: 10px; }
  .brand-mission,
  .brand-ecosystem { grid-template-columns: 1fr; }
  .eco-links { flex-direction: row; flex-wrap: wrap; }
  .origin-steps  { margin-top: 0; }
  .reviews-header { padding: 1.25rem; }
}


/* ────────────────────────────────────────────────────────────────────
   19. COOKIE CONSENT BANNER
   ──────────────────────────────────────────────────────────────────── */
#nw-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: oklch(0.08 0.010 290 / 0.98);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  border-top: 1px solid var(--line);
  padding: 18px var(--pad-x);
  box-shadow: 0 -24px 70px rgba(0,0,0,.38);
  animation: cookieSlideUp .4s cubic-bezier(.16, 1, .3, 1);
  transition: opacity .4s ease, transform .4s ease;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.nw-cookie-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}
.nw-cookie-copy {
  min-width: 0;
}
.nw-cookie-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-muted);
  margin: 0;
}
.nw-cookie-text strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nw-cookie-text a {
  color: var(--gold-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.nw-cookie-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 10px 0 0;
  padding: 0;
}
.nw-cookie-details[hidden],
.nw-cookie-choice[hidden] {
  display: none !important;
}
.nw-cookie-list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: oklch(1 0 0 / 0.035);
  color: var(--ink-muted);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nw-cookie-list i {
  color: var(--gold-dim);
  font-size: 9px;
}
.nw-cookie-note {
  margin: 9px 0 0;
  color: var(--ink-dim);
  font-size: 12px;
}
.nw-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}
.nw-cookie-btn {
  padding: 11px 22px;
  font-size: 10px;
  white-space: nowrap;
}
@media (max-width: 880px) {
  #nw-cookie-bar { padding: 16px var(--pad-x); }
  .nw-cookie-inner {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 14px;
  }
  .nw-cookie-actions { width: 100%; flex-wrap: wrap; }
  .nw-cookie-btn { flex: 1; justify-content: center; }
}
@media (max-width: 600px) {
  .nw-cookie-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .nw-cookie-list li {
    align-items: flex-start;
    font-size: 9px;
    line-height: 1.35;
  }
}


/* ────────────────────────────────────────────────────────────────────
   20. CATALOG SEARCH
   ──────────────────────────────────────────────────────────────────── */
.vault-search-form {
  margin: 0;
  flex: 0 0 440px;
  display: flex;
  justify-content: flex-end;
}
.vault-search-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  display: flex;
  align-items: center;
}
.vault-search-wrap > i {
  position: absolute;
  left: 14px;
  color: var(--ink-dim);
  font-size: .75rem;
  pointer-events: none;
}
.vault-search-wrap input[type="search"] {
  width: 100%;
  padding: 11px 40px 11px 38px;
  background: oklch(1 0 0 / 0.03);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 13.5px;
  outline: 0;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
}
.vault-search-wrap input[type="search"]:focus {
  border-color: var(--gold-dim);
  background: oklch(1 0 0 / 0.05);
}
.vault-search-wrap input[type="search"]::-webkit-search-cancel-button { display: none; }
.vault-search-clear {
  position: absolute;
  right: 12px;
  color: var(--ink-dim);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 2px 4px;
  transition: color .2s;
}
.vault-search-clear:hover { color: var(--ink); }


/* ────────────────────────────────────────────────────────────────────
   21. STOCK STATE — product page size selector
   ──────────────────────────────────────────────────────────────────── */
.size-out-of-stock {
  opacity: .38 !important;
  cursor: not-allowed !important;
  position: relative;
  pointer-events: none;
}
.size-out-of-stock::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 85%;
  height: 1px;
  background: var(--ink-muted);
  transform: translate(-50%, -50%) rotate(-25deg);
  pointer-events: none;
}


/* ────────────────────────────────────────────────────────────────────
   22. POLICY PAGES — shipping, returns, legal
   ──────────────────────────────────────────────────────────────────── */
.policy-hero {
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 3rem;
}
.policy-hero h1 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 42px);
  margin: .4rem 0 .5rem;
}
.policy-lead {
  color: var(--ink-muted);
  font-size: .875rem;
  margin: 0;
}
.lang-notice {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 2rem;
  padding: .85rem 1.1rem;
  background: oklch(0.78 0.09 85 / 0.06);
  border: 1px solid oklch(0.78 0.09 85 / 0.25);
  border-radius: 6px;
  color: var(--ink-muted);
  font-size: .875rem;
}
.lang-notice i { color: var(--gold-dim); flex-shrink: 0; }
.policy-body { padding-bottom: 5rem; }
.policy-section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}
.policy-section:last-child { border-bottom: none; }
.policy-section h2 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 1.25rem;
  margin: 0 0 1rem;
  color: var(--ink);
}
.policy-section p {
  color: var(--ink-muted);
  line-height: 1.8;
  margin: 0 0 .9rem;
}
.policy-section p:last-child { margin-bottom: 0; }
.policy-section a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.policy-section a:hover { color: var(--gold); }
.policy-list {
  list-style: none;
  padding: 0;
  margin: .75rem 0 .9rem;
}
.policy-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: .3rem;
}
.policy-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-size: .85em;
}
.policy-list--muted li { opacity: .75; }
.policy-table-wrap { overflow-x: auto; margin: 1rem 0 .5rem; }
.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .925rem;
}
.policy-table th {
  text-align: left;
  padding: .6rem 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.policy-table th:last-child,
.policy-table td:last-child { text-align: right; }
.policy-table td {
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-muted);
}
.policy-table tr:last-child td { border-bottom: none; }
.policy-table-highlight { color: var(--gold-light); font-weight: 600; }
.policy-times {
  margin: .75rem 0;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  overflow: hidden;
}
.policy-time-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .8rem 1.25rem;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
}
.policy-time-row:last-child { border-bottom: none; }
.policy-time-row span:first-child { color: var(--ink-muted); }
.policy-time-row span:last-child { color: var(--ink); font-weight: 500; }
.policy-note {
  font-size: .825rem;
  color: var(--ink-dim);
  margin-top: .75rem;
}

/* ────────────────────────────────────────────────────────────────────
   23. CONTACT PAGE
   ──────────────────────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2.5rem;
  padding-bottom: 5rem;
  max-width: 1100px;
}
.contact-hero-wrap {
  max-width: 680px;
  margin-bottom: 3rem;
}
.contact-form-card {
  padding: 2rem 2.25rem;
}
.contact-textarea {
  min-height: 220px;
  resize: vertical;
  line-height: 1.7;
}
.contact-form-card .form-group {
  margin-bottom: 1.4rem;
}
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: calc(var(--topbar-h) + 1.5rem);
  align-self: start;
}
.contact-info-card {
  padding: 1.75rem 2rem;
}
.contact-info-row {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
}
.contact-info-row:last-of-type { border-bottom: none; }
.contact-info-row i {
  width: 1.1rem;
  text-align: center;
  color: var(--gold-dim);
  flex-shrink: 0;
}
.contact-info-row a {
  color: var(--ink-muted);
  text-decoration: none;
  transition: color .2s;
}
.contact-info-row a:hover { color: var(--gold-light); }
.contact-reply-note {
  margin: 1rem 0 0;
  font-size: .8rem;
  color: var(--ink-dim);
  line-height: 1.6;
}
.contact-collab-card {
  padding: 1.75rem 2rem;
}
.contact-collab-card strong {
  display: block;
  font-size: .925rem;
  color: var(--ink);
  margin-bottom: .5rem;
}
.contact-collab-card p {
  font-size: .875rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 0;
}

/* ────────────────────────────────────────────────────────────────────
   24. SPINNER — checkout button
   ──────────────────────────────────────────────────────────────────── */
@keyframes nwSpin {
  to { transform: rotate(360deg); }
}
@keyframes nwShake {
  0%,100% { transform: translateX(0); }
  20%     { transform: translateX(-6px); }
  40%     { transform: translateX(6px); }
  60%     { transform: translateX(-4px); }
  80%     { transform: translateX(4px); }
}
.nw-spin {
  animation: nwSpin .8s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

/* ────────────────────────────────────────────────────────────────────
   25. RESPONSIVE ADDITIONS — mobile / tablet fine-tuning
   ──────────────────────────────────────────────────────────────────── */

/* ── 1100px: fix cascade for sections defined after §18 ────────────── */
@media (max-width: 1100px) {
  /* contact-layout is defined in §23 (after §18 responsive), so the
     §18 rule is overridden by the base CSS. Re-apply it here. */
  .contact-layout { grid-template-columns: 1fr; }
}

/* ── Mobile topbar fixes ────────────────────────────────────────────── */
@media (max-width: 880px) {
  /* When .topbar-nav is hidden it leaves the grid, so .topbar-actions
     (2nd visible item) fills the 1fr column from the left.
     Push it to the right edge with justify-content. */
  .topbar-actions { justify-content: flex-end; }

  /* Language switcher is redundant on mobile — idiomas estão no drawer */
  .lang-switcher { display: none; }
}

/* ── 880px: tablet ─────────────────────────────────────────────────── */
@media (max-width: 880px) {
  /* Sections */
  .section     { padding: 4.5rem 0; }
  .section-sm  { padding: 2.25rem 0; }
  .section-title { margin-bottom: 2.25rem; }
  .page-body > section:first-child:not(.nw-hero) {
    padding-top: calc(var(--topbar-h) + 2rem);
  }

  /* Cards */
  .card { padding: 22px; }
  .order-card,
  .lookup-panel { padding: 22px; }

  /* About / brand */
  .brand-page { padding-top: 80px; }

  /* Contact */
  .contact-layout { padding-bottom: 3.5rem; }
  .contact-form-card { padding: 1.75rem; }
  .contact-info-card,
  .contact-collab-card { padding: 1.5rem 1.75rem; }

  /* Policy */
  .policy-hero { padding: 2.25rem 0 2rem; margin-bottom: 2.25rem; }
  .policy-body { padding-bottom: 3.5rem; }

  /* Catalog — reduce top padding and gaps on tablet */
  .vault-catalog        { padding: 72px 0 90px; }
  .vault-catalog-head   { margin-bottom: 36px; }
  .vault-catalog-tools  { margin-bottom: 44px; }

  /* Newsletter — 160px is overwhelming on tablet */
  .nw-nl { padding: 100px var(--pad-x); }

  /* Footer — reduce mega-logo gap */
  .nw-ft-mega { margin-bottom: 56px; }
}

/* ── 600px: phone ───────────────────────────────────────────────────── */
@media (max-width: 600px) {
  /* Global sections */
  .section     { padding: 3rem 0; }
  .section-sm  { padding: 1.75rem 0; }
  .section-title { margin-bottom: 1.75rem; }
  .page-body > section:first-child:not(.nw-hero) {
    padding-top: calc(var(--topbar-h) + 1.5rem);
  }

  /* Cards — tighter on phone */
  .card { padding: 16px; }
  .card h4 { font-size: 1.1rem; margin-bottom: 1rem; }
  .order-card,
  .lookup-panel { padding: 16px; }
  .order-card-title { font-size: 1.05rem; margin-bottom: .9rem; }

  /* Checkout */
  .checkout-private { padding-top: 2rem; }
  .vault-checkout-head { margin-bottom: 24px; }
  .vault-checkout-head h1 { margin-bottom: .5rem; }
  .checkout-progress {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
    text-align: left;
  }
  .checkout-progress-line { display: none; }
  .checkout-progress-step {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: oklch(1 0 0 / 0.025);
  }
  .private-shipping-line { padding: 10px 14px; gap: 10px; }
  .private-shipping-line b { font-size: 12px; }
  .private-note { padding: 10px 14px; font-size: 13px; }
  .checkout-privacy { font-size: 10px; }

  /* Order success */
  .order-success-section { padding-top: 2rem; }
  .order-success-head { gap: 10px; margin-bottom: 1.5rem; }
  .success-check { width: 52px; height: 52px; font-size: 1.3rem; }
  .order-number-card strong { font-size: 1.9rem; }
  .receipt-line,
  .receipt-total { padding: 10px 0; gap: 8px; }
  .receipt-grand-total { font-size: 1.05rem; }
  .order-help-box { padding: 1rem; font-size: 13px; }
  .order-confirmation-grid { gap: 12px; }

  /* Order lookup */
  .lookup-panel { padding: 16px; }
  .lookup-panel h1 { font-size: 1.5rem; }

  /* Product detail */
  .product-detail { gap: 20px; }
  .product-detail-info h1 { margin-bottom: 1rem !important; }
  .size-selector,
  .color-selector { margin-bottom: 1.25rem; }
  .size-option { padding: 9px 13px; font-size: 11.5px; }
  .qty-selector { margin-bottom: 1.25rem; }

  /* Cart */
  .cart-item { gap: 10px; padding: 14px; }
  .cart-summary { padding: 16px; }

  /* Policy pages */
  .policy-hero { padding: 1.5rem 0 1.25rem; margin-bottom: 1.75rem; }
  .policy-body { padding-bottom: 2.5rem; }
  .policy-section { padding: 1.25rem 0; }
  .policy-time-row { padding: .6rem .9rem; font-size: .85rem; }
  .policy-table { font-size: .85rem; }
  .policy-table th,
  .policy-table td { padding: .5rem .25rem; }

  /* Contact page */
  .contact-layout { padding-bottom: 2.5rem; gap: 1.5rem; }
  .contact-form-card { padding: 1.1rem; }
  .contact-info-card,
  .contact-collab-card { padding: 1.1rem; }
  .contact-textarea { min-height: 160px; }
  .contact-hero-wrap { margin-bottom: 1.5rem; }

  /* About / brand */
  .brand-page { padding-top: 68px; }
  .brand-values { gap: 8px; }
  .brand-editorial-panel { padding: 12px; }
  .brand-editorial-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 210px 130px;
    gap: 8px;
    min-height: 0;
  }
  .brand-editorial-main { grid-column: 1 / span 2; grid-row: auto; }
  .brand-editorial-caption { align-items: flex-start; flex-direction: column; gap: 2px; }
  .brand-panel-mark { width: 34px; right: 14px; top: 14px; }

  /* Forms — prevent iOS Safari auto-zoom (requires font-size >= 16px) */
  .form-control,
  select.form-control,
  textarea.form-control { font-size: 16px; }

  /* Alerts */
  .alert { font-size: .875rem; padding: .75rem 1rem; }

  /* Catalog — compact header + 2-column grid on phone */
  .vault-catalog        { padding: 52px 0 64px; }
  .vault-catalog-head   { margin-bottom: 20px; }
  .vault-catalog-head h1 { font-size: clamp(32px, 9vw, 52px); }
  .vault-catalog-tools  { flex-direction: column-reverse; gap: 14px; margin-bottom: 24px; }
  .vault-filter-row     { gap: 6px; justify-content: center; width: 100%; }
  .vault-search-form    { flex: 0 0 auto; width: 100%; }
  .vault-search-wrap    { max-width: none; }
  .filter-btn           { padding: 6px 11px; font-size: 10px; }
  .vault-product-grid   { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .vault-product-meta   { padding: 10px 0 0; gap: 3px; }
  .vault-product-meta p { display: none; }
  .vault-product-meta h3 { font-size: 1.1rem; }

  /* Newsletter — massive padding is painful on phone */
  .nw-nl         { padding: 68px var(--pad-x) 60px; }
  .nw-nl-inner   { gap: 16px; }
  .nw-nl-title   { font-size: clamp(26px, 8vw, 38px); }

  /* Footer — tighten top-padding and mega-logo gap */
  .nw-ft         { padding: 48px var(--pad-x) 28px; }
  .nw-ft-mega    { margin-bottom: 36px; }
  .nw-ft-grid    { gap: 30px 22px; }
}

/* ── Very narrow (under 400px) — edge-case safety ──────────────────── */
@media (max-width: 400px) {
  .vault-product-grid { grid-template-columns: 1fr; }
  .contact-layout { gap: 1.25rem; }
  .contact-form-card { padding: 1rem; }
  .order-number-card strong { font-size: 1.6rem; }
  .size-option { padding: 8px 10px; }
}


/* ────────────────────────────────────────────────────────────────────
   26. PRODUCT — sticky mobile CTA bar
   ──────────────────────────────────────────────────────────────────── */
.product-trust-panel {
  margin: 1.25rem 0 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: oklch(1 0 0 / 0.035);
}
.product-trust-title {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: .75rem;
}
.product-trust-grid {
  display: grid;
  gap: .55rem;
}
.product-trust-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  color: var(--ink-muted);
  font-size: .88rem;
  line-height: 1.55;
}
.product-trust-item i {
  color: var(--gold-dim);
  font-size: .72rem;
  margin-top: .25rem;
}

.nw-sticky-cta {
  display: none; /* only shows on mobile via media query */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: oklch(0.09 0.012 290 / 0.97);
  border-top: 1px solid var(--line);
  padding: 10px var(--pad-x) max(10px, env(safe-area-inset-bottom, 10px));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  gap: 14px;
  align-items: center;
  transform: translateY(102%);
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}
@media (max-width: 880px) {
  .nw-sticky-cta { display: flex; }
}
.nw-sticky-cta.nw-cta-visible { transform: translateY(0); }
.nw-sticky-cta-info { flex: 1; min-width: 0; }
.nw-sticky-cta-name {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}
.nw-sticky-cta-price {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .05em;
  color: var(--gold-dim);
  margin-top: 3px;
}
.nw-sticky-cta .btn {
  flex-shrink: 0;
  padding: 12px 18px;
  font-size: .75rem;
  white-space: nowrap;
}

@media print {
  .topbar, .nw-ft,
  .order-success-head .btn,
  .order-help-box .btn,
  .order-side-card .btn { display: none !important; }
  .page-body { padding-top: 0; }
  body { background: #fff; color: #111; }
  .order-card { border-color: #ddd; }
}
