/* ─────────────────────────────────────────────
   NULL® — Editorial Streetwear
   Shared design system
   ───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Archivo:wght@400;500;700;800;900&family=Nunito:ital,wght@1,900&display=swap');

:root {
  --bg: #ffffff;
  --bg-alt: #f5f5f4;
  --bg-panel: #e7e5e4;
  --ink: #0a0a0a;
  --ink-2: #57534e;
  --ink-3: #a8a29e;
  --line: #e7e5e4;
  --accent: #0a0a0a;

  --nav-h: 96px;
  --bar-h: 36px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --t-fast: 180ms;
  --t-med: 320ms;
}

* { box-sizing: border-box; }

html {
  overflow-x: hidden; /* prevents cart drawer from being reachable by horizontal scroll */
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Push page content below the fixed bar + nav */
body {
  padding-top: calc(var(--bar-h) + var(--nav-h));
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
img { display: block; max-width: 100%; }

/* ───── Top announcement bar ───── */
.bar {
  height: var(--bar-h);
  background: var(--bg);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.bar__arrow {
  position: absolute;
  top: 0;
  height: 100%;
  width: 48px;
  display: grid;
  place-items: center;
  opacity: 0.35;
  transition: opacity var(--t-fast);
}
.bar__arrow:hover { opacity: 0.8; }
.bar__arrow--left { left: 0; }
.bar__arrow--right { right: 0; }

/* ───── Nav ───── */
.nav {
  height: var(--nav-h);
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 36px;
  position: fixed;
  top: var(--bar-h);
  left: 0;
  right: 0;
  z-index: 50;
}
/* only show divider on inner pages (non-hero) */
.nav--bordered { border-bottom: 1px solid var(--line); }

.nav__left, .nav__right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__right { justify-content: flex-end; }

.nav__link {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  transition: color var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav__link:hover { color: var(--ink); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: var(--ink);
}
.nav__link .chev {
  width: 9px;
  height: 9px;
  display: inline-block;
  transform: translateY(-1px);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.brand img {
  height: 80px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}
.brand sup, .brand small { display: none; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background var(--t-fast);
}
.icon-btn:hover { background: var(--bg-alt); }
.icon-btn svg { width: 18px; height: 18px; }

.cart {
  position: relative;
}
.cart__count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--ink);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/* ───── Hero (index) ───── */
.hero {
  height: calc(100vh - var(--nav-h) - var(--bar-h));
  overflow: hidden;
  position: relative;
  background: #c8c5c0;
}

.hero__track {
  display: flex;
  height: 100%;
  width: max-content;
  animation: slide 52s linear infinite;
  will-change: transform;
  gap: 0;
}

.hero__slide {
  flex: 0 0 34vw;
  height: 100%;
  background: #c8c5c0;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
  margin: 0;   /* reset browser figure default margin */
  padding: 0;
}
.hero__slide img {
  width: calc(100% + 2px); /* closes sub-pixel seam */
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin: 0;
}

@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero:hover .hero__track { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .hero__track { animation: none; }
}

/* Hero overlay caption */
.hero__caption {
  position: absolute;
  left: 36px;
  bottom: 28px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  mix-blend-mode: difference;
  filter: invert(1);
  display: flex;
  gap: 18px;
  align-items: baseline;
}
.hero__caption strong { font-weight: 700; }
.hero__caption span { opacity: 0.7; }

.hero__cta {
  position: absolute;
  right: 36px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hero__dot {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  transition: background var(--t-fast);
  backdrop-filter: blur(8px);
}
.hero__dot:hover { background: rgba(255,255,255,1); }
.hero__dot svg { width: 14px; height: 14px; }

/* ───── Web Hero (interactive node network) ───── */
.web-hero {
  height: calc(100vh - var(--nav-h) - var(--bar-h));
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
#web-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
#web-nodes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.web-node {
  position: absolute;
  top: 0; left: 0;
  width: 150px;
  display: block;
  pointer-events: auto;
  text-decoration: none;
  will-change: transform;
}
.web-node__img {
  width: 150px;
  height: 150px;
  overflow: hidden;
  background: var(--bg-panel);
}
.web-node__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 500ms var(--ease);
}
.web-node:hover .web-node__img img { transform: scale(1.06); }
.web-node__label {
  display: block;
  padding: 8px 0 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-align: center;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 220ms, transform 220ms;
}
.web-node:hover .web-node__label { opacity: 1; transform: translateY(0); }
.web-hero__info {
  position: absolute;
  left: 36px;
  bottom: 28px;
  z-index: 2;
  line-height: 1.6;
}
.web-hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 2px;
}
.web-hero__meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
}
.web-hero__cta {
  position: absolute;
  right: 36px;
  bottom: 28px;
  z-index: 2;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: #fff;
  transition: background var(--t-fast);
}
.web-hero__cta:hover { background: #1f1f1f; }
.web-hero__cta svg { width: 14px; height: 14px; }
@media (max-width: 720px) {
  .web-node { width: 110px; }
  .web-node__img { width: 110px; height: 110px; }
  .web-hero__info { left: 20px; bottom: 20px; }
  .web-hero__cta { right: 20px; bottom: 20px; }
}

/* ───── Generic page sections ───── */
.page {
  min-height: calc(100vh - var(--nav-h) - var(--bar-h));
}

.section {
  padding: 80px 36px;
  max-width: 1440px;
  margin: 0 auto;
}

.section--full { max-width: none; padding-left: 36px; padding-right: 36px; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}

.display {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 140px);
  letter-spacing: -0.03em;
  line-height: 0.88;
  text-transform: uppercase;
  margin: 0;
}

.h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0;
}

.lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
}

.body p { color: var(--ink-2); line-height: 1.7; font-size: 15px; }
.body p + p { margin-top: 1em; }

.divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ───── Buttons ───── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 28px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.btn:hover { background: #1f1f1f; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }

/* ───── Shop grid ───── */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding: 36px;
  max-width: 1600px;
  margin: 0 auto;
}
.filters h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 16px;
}
.filters ul { list-style: none; padding: 0; margin: 0 0 32px; }
.filters li {
  padding: 8px 0;
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  transition: color var(--t-fast);
}
.filters li:hover, .filters li.is-on { color: var(--ink); }
.filters li.is-on { font-weight: 600; }
.filters li span { color: var(--ink-3); font-size: 11px; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.product {
  position: relative;
  background: var(--bg-panel);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: pointer;
}
.product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.product:hover img { transform: scale(1.03); }

.product__meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to top, rgba(255,255,255,0.95), rgba(255,255,255,0));
  font-size: 12px;
  letter-spacing: 0.06em;
}
.product__name { font-weight: 600; text-transform: uppercase; }
.product__price { color: var(--ink-2); }

.product__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 600;
  padding: 4px 8px;
  text-transform: uppercase;
}
.product__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.product__add {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translate(-50%, 8px);
  opacity: 0;
  transition: all var(--t-med) var(--ease);
  background: var(--ink);
  color: #fff;
  padding: 10px 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 3;
}
.product__badge { z-index: 2; }
.product:hover .product__add {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ───── Lookbook (editorial redesign) ───── */

/* Intro — full-viewport hero with overlaid title */
.lb-intro {
  height: calc(100vh - var(--nav-h) - var(--bar-h));
  position: relative;
  overflow: hidden;
  background: #111;
}
.lb-intro img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  opacity: 0.85;
}
.lb-intro__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 52px 48px;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0) 55%);
}
.lb-intro__vol {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.lb-intro__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 8vw, 130px);
  letter-spacing: -0.03em;
  line-height: 0.88;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.lb-intro__sub {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
}
.lb-intro__scroll {
  position: absolute;
  right: 40px;
  bottom: 44px;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 12px;
}
.lb-intro__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.35);
}

/* Full-bleed single image */
.lb-full {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--bg-panel);
}
.lb-full--tall { height: 90vh; }
.lb-full--mid  { height: 70vh; }
.lb-full img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease);
}
.lb-full:hover img { transform: scale(1.02); }
.lb-full__cap {
  position: absolute;
  bottom: 28px;
  left: 40px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.lb-full__num {
  position: absolute;
  top: 28px;
  right: 36px;
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.22em;
  mix-blend-mode: difference;
  filter: invert(1);
}

/* Two-up split */
.lb-split {
  display: grid;
  gap: 3px;
}
.lb-split--even   { grid-template-columns: 1fr 1fr; }
.lb-split--wide   { grid-template-columns: 3fr 2fr; }
.lb-split--narrow { grid-template-columns: 2fr 3fr; }
.lb-pane {
  position: relative;
  overflow: hidden;
  background: var(--bg-panel);
}
.lb-pane--tall { aspect-ratio: 3/4; }
.lb-pane--sq   { aspect-ratio: 1/1; }
.lb-pane--land { aspect-ratio: 4/3; }
.lb-pane img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 900ms var(--ease);
}
.lb-pane:hover img { transform: scale(1.03); }
.lb-pane__cap {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  mix-blend-mode: difference;
  filter: invert(1);
}

/* Three-column */
.lb-triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.lb-triple .lb-pane { aspect-ratio: 2/3; }

/* Editorial text break */
.lb-statement {
  padding: 100px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 900px;
}
.lb-statement__num {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.lb-statement__text {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 6vw, 88px);
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}
.lb-statement__body {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 44ch;
}

/* Centered statement */
.lb-statement--center {
  align-items: center;
  text-align: center;
  max-width: 100%;
  padding: 80px 48px;
}
.lb-statement--center .lb-statement__body { margin: 0 auto; }

/* Horizontal film strip */
.lb-strip {
  display: flex;
  overflow-x: auto;
  gap: 3px;
  padding: 0;
  scrollbar-width: none;
}
.lb-strip::-webkit-scrollbar { display: none; }
.lb-strip__frame {
  flex: 0 0 260px;
  height: 360px;
  position: relative;
  overflow: hidden;
  background: var(--bg-panel);
}
.lb-strip__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease);
}
.lb-strip__frame:hover img { transform: scale(1.05); }
.lb-strip__num {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* Drop CTA band */
.lb-cta {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.lb-cta__date {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.lb-cta__sub {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .lb-split--even, .lb-split--wide, .lb-split--narrow {
    grid-template-columns: 1fr;
  }
  .lb-triple { grid-template-columns: 1fr 1fr; }
  .lb-triple .lb-pane:last-child { display: none; }
  .lb-statement { padding: 60px 24px; }
  .lb-intro__title { font-size: clamp(40px, 10vw, 80px); }
  .lb-cta { flex-direction: column; align-items: flex-start; padding: 40px 24px; }
  .lb-strip__frame { flex: 0 0 180px; height: 260px; }
}

/* ───── About ───── */
.about-hero {
  padding: 120px 36px 80px;
  max-width: 1440px;
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 36px;
  max-width: 1440px;
  margin: 0 auto;
  align-items: start;
}
.about-grid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-grid--reverse > :first-child { order: 2; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 40px 0;
}
.stat {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 44px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 8px;
}

/* ───── Page header band (about/lookbook/shop) ───── */
.page-head {
  padding: 56px 36px 32px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.page-head .display { font-size: clamp(40px, 6vw, 96px); }
.page-head__meta {
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ───── Footer ───── */
.footer {
  border-top: 1px solid var(--line);
  padding: 56px 36px 28px;
  margin-top: 80px;
  background: var(--bg);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1440px;
  margin: 0 auto;
}
.footer h5 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: 6px 0; color: var(--ink-2); font-size: 13px; }
.footer li a:hover { color: var(--ink); }
.footer__mark {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 42px;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}
.footer__bottom {
  max-width: 1440px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* ───── Responsive ───── */
@media (max-width: 1024px) {
  .nav { padding: 0 20px; }
  .nav__left, .nav__right { gap: 18px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 1fr; gap: 24px; padding: 20px; }
  .filters { display: flex; flex-wrap: wrap; gap: 24px; }
  .filters ul { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 0; }
  .filters ul li { padding: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  :root { --nav-h: 72px; }
  .nav { grid-template-columns: auto 1fr auto; padding: 0 16px; }
  .nav__left a:not(:first-child),
  .nav__right a.nav__link { display: none; }
  .brand img { height: 44px; }
  .hero__slide { flex-basis: 100vw; }
  .hero__track { animation-duration: 24s; }
  .hero__caption { left: 20px; bottom: 20px; flex-direction: column; gap: 4px; font-size: 10px; max-width: 55%; }
  .hero__caption span { display: none; }
  .hero__cta { right: 20px; bottom: 20px; }
  .grid { grid-template-columns: 1fr; }
  .look-cell--a, .look-cell--b, .look-cell--c, .look-cell--d, .look-cell--e, .look-cell--f {
    grid-column: span 12;
    aspect-ratio: 4/5;
  }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .page-head { flex-direction: column; align-items: flex-start; }
  .page-head__meta { text-align: left; }
}

/* Focus states */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ───── Drop Timer ───── */
.drop-timer {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 36px;
  background: var(--ink);
  color: #fff;
  position: relative;
}
.drop-timer__eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}
.drop-timer__headline {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 7vw, 110px);
  letter-spacing: -0.03em;
  line-height: 0.88;
  text-transform: uppercase;
  margin: 0 0 56px;
}
.drop-timer__headline span { color: rgba(255,255,255,0.2); }
.drop-timer__sub {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: -24px 0 48px;
}
.drop-timer__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.drop-timer .btn {
  background: #fff;
  color: var(--ink);
}
.drop-timer .btn:hover { background: rgba(255,255,255,0.88); }
.drop-timer .btn--ghost {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  background: transparent;
}
.drop-timer .btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
.drop-timer__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ink-3);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.drop-timer__scroll-hint svg { width: 16px; height: 16px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Scroll indicator on hero */
.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  mix-blend-mode: difference;
  filter: invert(1);
  animation: bounce 2.4s ease-in-out infinite;
  z-index: 3;
  text-decoration: none;
}
.hero__scroll-hint svg { width: 14px; height: 14px; }

@media (max-width: 720px) {
  .drop-timer__clock { gap: 0; }
  .drop-timer__unit { padding: 0 16px; }
  .drop-timer__num { font-size: clamp(36px, 10vw, 64px); }
}

/* ───── Page transitions ───── */
body {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.42s var(--ease), transform 0.42s var(--ease);
}
body.is-ready {
  opacity: 1;
  transform: translateY(0);
}
body.is-leaving {
  opacity: 0;
  transform: translateY(-8px);
  transition-duration: 0.28s;
}

/* ───── Shop mega-dropdown ───── */
.nav-item {
  position: static;
}
.nav-item [data-toggle] {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  transition: color var(--t-fast);
}
.nav-item [data-toggle]:hover { color: var(--ink); }
.nav-item.is-open [data-toggle] .chev {
  transform: translateY(-1px) rotate(180deg);
  transition: transform 0.25s var(--ease);
}
.nav-item [data-toggle] .chev {
  transition: transform 0.25s var(--ease);
}

.shop-dropdown {
  position: fixed;
  top: calc(var(--bar-h) + var(--nav-h)); /* overridden by JS on scroll */
  left: 0;
  right: 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  z-index: 45;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}
.nav-item.is-open .shop-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.shop-dropdown__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 36px 48px;
  display: grid;
  grid-template-columns: 200px 200px 200px 1fr;
  gap: 0 56px;
}

.shop-dropdown__col h5 {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.shop-dropdown__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.shop-dropdown__col ul li {
  padding: 0;
  margin-bottom: 12px;
}
.shop-dropdown__col ul li a {
  font-size: 22px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-block;
  transition: color var(--t-fast);
  line-height: 1;
}
.shop-dropdown__col ul li a:hover { color: var(--ink-2); }

.shop-dropdown__featured {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-panel);
  max-width: 420px;
  justify-self: end;
  width: 100%;
}
.shop-dropdown__featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.shop-dropdown__featured:hover img { transform: scale(1.03); }
.shop-dropdown__featured-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}

.dropdown-backdrop {
  position: fixed;
  inset: 0;
  z-index: 44;
  background: transparent;
  display: none;
}
.dropdown-backdrop.is-visible { display: block; }

@media (max-width: 1024px) {
  .shop-dropdown__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .shop-dropdown__featured { display: none; }
}
@media (max-width: 720px) {
  .shop-dropdown { top: calc(var(--bar-h) + var(--nav-h)); }
  .shop-dropdown__inner {
    grid-template-columns: 1fr;
    padding: 24px 20px 32px;
    gap: 24px;
  }
  .shop-dropdown__col ul li a { font-size: 18px; }
}

/* ───── Lookbook dropdown ───── */
.lb-dropdown {
  position: fixed;
  top: calc(var(--bar-h) + var(--nav-h)); /* overridden by JS on scroll */
  left: 0;
  right: 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  z-index: 45;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}
.nav-item.is-open .lb-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lb-dropdown__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 36px 36px;
}
.lb-dropdown__inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lb-dropdown__inner ul li { border-bottom: 1px solid var(--line); }
.lb-dropdown__inner ul li:first-child { border-top: 1px solid var(--line); }
.lb-dropdown__inner ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: clamp(18px, 2.2vw, 26px);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color var(--t-fast);
}
.lb-dropdown__inner ul li a:hover { color: var(--ink-2); }
.lb-dropdown__meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

/* ───── Lookbook photo-grid page ───── */
.lb-page-header {
  padding: 56px 36px 40px;
  text-align: center;
}
.lb-page-header__title {
  font-size: clamp(13px, 1.6vw, 17px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--ink);
}
.lb-page-header__sub {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
}
.lb-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.lb-photo-grid__item {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-panel);
  position: relative;
}
.lb-photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 800ms var(--ease);
}
.lb-photo-grid__item:hover img { transform: scale(1.03); }
.lb-grid-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 72px 36px;
  text-align: center;
  border-top: 1px solid var(--line);
  margin-top: 2px;
}
.lb-grid-cta__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 64px);
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
  line-height: 0.95;
}
.lb-grid-cta__meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
@media (max-width: 768px) {
  .lb-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .lb-grid-cta { padding: 48px 24px; }
  .lb-page-header { padding: 36px 20px 28px; }
  .lb-dropdown__inner { padding: 20px 20px 28px; }
}
@media (max-width: 480px) {
  .lb-photo-grid { grid-template-columns: 1fr; }
}

/* ───── Cart Drawer ───── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s var(--ease);
}
.cart-overlay.is-visible { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 440px;
  background: var(--bg);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s var(--ease);
  box-shadow: -12px 0 48px rgba(0,0,0,0.14);
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.cart-drawer__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-drawer__badge {
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  padding: 0 4px;
}
.cart-drawer__close {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  transition: background var(--t-fast);
  color: var(--ink);
}
.cart-drawer__close:hover { background: var(--bg-alt); }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  transition: opacity 0.2s;
}

/* Items */
.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 14px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.cart-item__img {
  width: 76px; height: 96px;
  background: var(--bg-panel);
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item__info { display: flex; flex-direction: column; gap: 3px; }
.cart-item__name {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.35;
}
.cart-item__variant { font-size: 11px; color: var(--ink-3); letter-spacing: 0.05em; }
.cart-item__controls {
  display: flex; align-items: center; gap: 8px; margin-top: 14px;
}
.cart-qty__btn {
  width: 26px; height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 15px; line-height: 1;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.cart-qty__btn:hover { background: var(--bg-alt); border-color: var(--ink-3); }
.cart-qty__num { font-size: 13px; font-weight: 500; min-width: 18px; text-align: center; }
.cart-item__remove {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3); text-decoration: underline; text-underline-offset: 3px;
  transition: color var(--t-fast); margin-left: 4px;
}
.cart-item__remove:hover { color: var(--ink); }
.cart-item__price { font-size: 13px; font-weight: 600; white-space: nowrap; padding-top: 2px; }

/* Empty state */
.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px;
  min-height: 320px; padding: 48px 28px; text-align: center;
}
.cart-empty svg { color: var(--ink-3); }
.cart-empty p { font-size: 13px; color: var(--ink-2); letter-spacing: 0.05em; }

/* Footer */
.cart-drawer__footer {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.cart-drawer__subtotal {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px;
}
.cart-drawer__total { font-weight: 700; font-size: 15px; }
.cart-drawer__note {
  font-size: 11px; color: var(--ink-3);
  letter-spacing: 0.05em; text-align: center; margin: 0;
}
.cart-drawer__checkout { width: 100%; justify-content: center; }

@media (max-width: 480px) {
  .cart-drawer { max-width: 100%; }
  .cart-item { grid-template-columns: 64px 1fr auto; gap: 12px; padding: 14px 20px; }
  .cart-item__img { width: 64px; height: 80px; }
  .cart-drawer__header, .cart-drawer__footer { padding-left: 20px; padding-right: 20px; }
}

/* ───── Product detail page ───── */
.product-page {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: calc(100vh - var(--nav-h) - var(--bar-h));
  align-items: start;
}

/* Sticky gallery */
.product-page__gallery {
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow: hidden;
  background: var(--bg-panel);
}
.product-page__gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Info panel */
.product-page__info {
  padding: 56px 52px 80px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.product-page__back {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 40px;
  transition: color var(--t-fast);
}
.product-page__back:hover { color: var(--ink); }
.product-page__drop {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.product-page__name {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.025em;
  line-height: 0.93;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.product-page__price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.product-page__price {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.product-page__badge {
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
}

/* Size selector */
.product-page__size-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}
.product-page__size-label span { color: var(--ink-3); font-weight: 400; }
.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.size-option {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
  background: none; color: var(--ink);
}
.size-option:hover:not(.is-sold-out) { border-color: var(--ink); }
.size-option.is-selected { background: var(--ink); color: #fff; border-color: var(--ink); }
.size-option.is-sold-out {
  color: var(--ink-3); cursor: not-allowed;
  position: relative; overflow: hidden;
}
.size-option.is-sold-out::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 120%; height: 1px;
  background: var(--line);
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Add to bag */
.product-page__add {
  width: 100%; height: 56px;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  background: var(--ink); color: #fff;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t-fast);
  border: none; border-radius: 0;
  margin-bottom: 40px;
}
.product-page__add:hover { background: #1f1f1f; }

/* Description */
.product-page__desc {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.72;
  margin-bottom: 40px;
}

/* Accordion */
.product-details { border-top: 1px solid var(--line); }
.product-details__item { border-bottom: 1px solid var(--line); }
.product-details__trigger {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; width: 100%; background: none; border: none;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; cursor: pointer; color: var(--ink);
}
.product-details__trigger svg {
  width: 14px; height: 14px;
  transition: transform 0.25s var(--ease);
}
.product-details__item.is-open .product-details__trigger svg {
  transform: rotate(45deg);
}
.product-details__body {
  font-size: 13px; color: var(--ink-2); line-height: 1.7;
  padding: 0 0 18px; display: none;
}
.product-details__item.is-open .product-details__body { display: block; }

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  60%       { transform: translateX(6px); }
}

/* Responsive */
@media (max-width: 900px) {
  .product-page { grid-template-columns: 1fr; }
  .product-page__gallery { position: relative; top: auto; height: 70vw; max-height: 560px; }
  .product-page__info { padding: 36px 24px 60px; }
}
@media (max-width: 480px) {
  .product-page__gallery { height: 100vw; }
}

/* ─────────────────────────────────────────────
   AUTH MODAL
   ───────────────────────────────────────────── */

.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease);
}
.auth-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.auth-modal {
  background: var(--bg);
  width: 420px;
  max-width: 100%;
  overflow-y: auto;
  padding: 40px 36px 36px;
  position: relative;
  margin: auto;
  transform: translateY(16px);
  transition: transform 300ms var(--ease);
  flex-shrink: 0;
}
.auth-overlay.is-open .auth-modal {
  transform: translateY(0);
}
@media (max-width: 480px) {
  .auth-overlay { padding: 16px 12px; align-items: flex-start; }
  .auth-modal { padding: 32px 20px 28px; }
}

.auth-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  opacity: 0.4;
  transition: opacity var(--t-fast);
}
.auth-modal__close:hover { opacity: 1; }

.auth-modal__brand {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* Tabs */
.auth-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
  gap: 0;
}
.auth-tab {
  flex: 1;
  padding: 10px 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.auth-tab.is-active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.auth-tab:hover:not(.is-active) { color: var(--ink-2); }

/* Panels */
.auth-panel { display: none; }
.auth-panel.is-active { display: block; }

/* Google button */
.auth-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.auth-google:hover { background: var(--bg-alt); border-color: var(--ink-3); }

/* Divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--ink-3);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Form */
.auth-form { display: flex; flex-direction: column; gap: 12px; }
.auth-input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  font: inherit;
  font-size: 13px;
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color var(--t-fast);
}
.auth-input:focus { border-color: var(--ink); }
.auth-input::placeholder { color: var(--ink-3); }

.auth-submit {
  width: 100%;
  padding: 14px 20px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
  transition: background var(--t-fast);
}
.auth-submit:hover { background: #222; }

.auth-forgot {
  font-size: 11.5px;
  color: var(--ink-3);
  text-align: center;
  padding: 4px;
  transition: color var(--t-fast);
}
.auth-forgot:hover { color: var(--ink); }

.auth-error { font-size: 12px; color: #c0392b; margin-top: 8px; min-height: 18px; }
.auth-success { font-size: 12px; color: #27ae60; margin-top: 8px; min-height: 18px; }

.auth-notify-lead {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 24px;
}

/* ── Email / Phone method toggle ── */
.auth-method-toggle {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  border: 1px solid var(--line);
}
.auth-method-btn {
  flex: 1;
  padding: 9px 12px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: transparent;
  transition: background var(--t-fast), color var(--t-fast);
}
.auth-method-btn + .auth-method-btn { border-left: 1px solid var(--line); }
.auth-method-btn.is-active { background: var(--ink); color: #fff; }
.auth-method-btn:not(.is-active):hover { background: var(--bg-alt); color: var(--ink); }

/* ── Phone row (country code + number) ── */
.auth-phone-row {
  display: flex;
  gap: 8px;
}
.auth-country-code {
  flex: 0 0 120px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23a8a29e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
  cursor: pointer;
  font-size: 12px;
}
.auth-phone-row .auth-input { flex: 1; }

/* ── OTP step ── */
.auth-otp-hint {
  font-size: 12.5px;
  color: var(--ink-2);
  margin-bottom: 12px;
  line-height: 1.5;
}
.auth-otp-input {
  font-size: 22px !important;
  letter-spacing: 0.3em;
  text-align: center;
  font-weight: 600;
}

/* ── Nav login button when authed ── */
.nav-login-btn.is-authed {
  width: 32px;
  height: 32px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  padding: 0;
}

/* ── User menu dropdown ── */
.user-menu {
  position: fixed;
  z-index: 150;
  background: var(--bg);
  border: 1px solid var(--line);
  width: 240px;
  box-shadow: 0 8px 32px rgba(10,10,10,0.12);
}
.user-menu__inner { padding: 0; }
.user-menu__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.user-menu__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.user-menu__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.user-menu__email {
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 2px;
  word-break: break-all;
}
.user-menu__nav { padding: 8px 0; }
.user-menu__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background var(--t-fast), color var(--t-fast);
}
.user-menu__item:hover { background: var(--bg-alt); color: var(--ink); }
.user-menu__signout {
  width: 100%;
  text-align: left;
  padding: 14px 20px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  border-top: 1px solid var(--line);
  transition: color var(--t-fast);
}
.user-menu__signout:hover { color: var(--ink); }

/* ── Wishlist heart button ── */
.wishlist-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: var(--bg);
  transition: background var(--t-fast), border-color var(--t-fast);
  flex-shrink: 0;
}
.wishlist-btn svg { width: 16px; height: 16px; transition: fill var(--t-fast); }
.wishlist-btn:hover { border-color: var(--ink-3); background: var(--bg-alt); }
.wishlist-btn.is-wishlisted { border-color: var(--ink); background: var(--ink); }
.wishlist-btn.is-wishlisted svg { stroke: #fff; fill: #fff; }

/* ── Currency selector ── */
.currency-dropdown {
  position: fixed;
  z-index: 150;
  background: var(--bg);
  border: 1px solid var(--line);
  width: 260px;
  box-shadow: 0 8px 32px rgba(10,10,10,0.12);
  display: none;
}
.currency-dropdown.is-open { display: block; }
.currency-dropdown__header {
  padding: 14px 18px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  border-bottom: 1px solid var(--line);
}
.currency-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 18px;
  font-size: 13px;
  color: var(--ink-2);
  text-align: left;
  transition: background var(--t-fast), color var(--t-fast);
}
.currency-option:hover { background: var(--bg-alt); color: var(--ink); }
.currency-option.is-active { color: var(--ink); font-weight: 600; }
.currency-option.is-active::after {
  content: '✓';
  font-size: 12px;
  color: var(--ink);
}
.currency-option__flag { margin-right: 8px; font-size: 16px; }
.nav-currency-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 0;
  color: var(--ink);
  transition: color var(--t-fast);
}
.nav-currency-btn:hover { color: var(--ink-2); }
.nav-currency-btn .chev {
  width: 9px;
  height: 9px;
  transition: transform 200ms;
}
.nav-currency-btn.is-open .chev { transform: rotate(180deg); }

/* ─────────────────────────────────────────────
   NOTIFY MODAL
   ───────────────────────────────────────────── */

.notify-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  /* NO overflow-y here — overlay stays exactly viewport-sized so
     align-items:center works relative to the viewport, not the page */
  padding: 24px 16px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--ease);
}
.notify-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.notify-modal {
  background: var(--bg);
  width: 480px;
  max-width: 100%;
  /* Scroll inside the modal if viewport is very short */
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 52px 48px 44px;
  position: relative;
  flex-shrink: 0;
  transform: translateY(24px) scale(0.97);
  transition: transform 400ms var(--ease), opacity 400ms var(--ease);
  opacity: 0;
}
.notify-overlay.is-open .notify-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

@media (max-width: 540px) {
  .notify-overlay { padding: 12px; }
  .notify-modal { padding: 48px 24px 36px; max-height: calc(100vh - 24px); }
}

.notify-modal__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  opacity: 0.35;
  transition: opacity var(--t-fast);
}
.notify-modal__close:hover { opacity: 1; }

.notify-modal__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}

.notify-modal__headline {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.notify-modal__lead {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 36ch;
}

/* Form */
.notify-form { display: flex; flex-direction: column; gap: 10px; }

.notify-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  font: inherit;
  font-size: 14px;
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color var(--t-fast);
  -webkit-appearance: none;
}
.notify-input:focus { border-color: var(--ink); }
.notify-input::placeholder { color: var(--ink-3); }

/* Phone row */
.notify-phone-row { display: flex; gap: 8px; }
.notify-country {
  flex: 0 0 130px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23a8a29e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
  cursor: pointer;
  font-size: 13px;
}
.notify-phone-row .notify-input { flex: 1; }

/* SMS consent */
.notify-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
  padding: 2px 0;
}
.notify-consent input[type="checkbox"] {
  width: 16px; height: 16px;
  border: 1px solid var(--line);
  accent-color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}

/* Submit */
.notify-submit {
  width: 100%;
  padding: 16px 20px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 6px;
  transition: background var(--t-fast), opacity var(--t-fast);
}
.notify-submit:hover:not(:disabled) { background: #222; }
.notify-submit:disabled { opacity: 0.55; }

/* Fine print + messages */
.notify-fine {
  font-size: 11px;
  color: var(--ink-3);
  line-height: 1.6;
  margin-top: 16px;
}
.notify-success {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  margin-top: 20px;
  line-height: 1.6;
}
.notify-error {
  font-size: 12.5px;
  color: #c0392b;
  margin-top: 8px;
}

/* ── Nav notify bell button ── */
.nav-notify-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 0;
  color: var(--ink);
  transition: color var(--t-fast);
}
.nav-notify-btn svg { width: 15px; height: 15px; }
.nav-notify-btn:hover { color: var(--ink-2); }
