/* ============================================================
   Peripheral — Shop
   ============================================================ */

@font-face {
  font-family: 'Thomas Craft';
  src: url('fonts/ThomasCraft-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Thomas Craft';
  src: url('fonts/ThomasCraft-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ebe3ce;
  --bg-elev: #e0d7c1;
  --bg-elev-2: #d3c9b1;
  --fg: #0a0908;
  --fg-mute: #4a4239;
  --fg-dim: #7a7160;
  --line: rgba(10, 9, 8, 0.12);
  --line-strong: rgba(10, 9, 8, 0.28);
  --accent: #d96f3a;
  --accent-warm: #e8c466;
  --accent-deep: #8b3a1a;

  --serif: 'Thomas Craft', 'Times New Roman', serif;
  --serif-italic: 'Thomas Craft', 'Times New Roman', serif;
  --sans: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1480px;
  --pad: clamp(20px, 4vw, 64px);
  --radius: 2px;

  --t-fast: 180ms cubic-bezier(.2,.6,.2,1);
  --t-med:  320ms cubic-bezier(.2,.6,.2,1);
  --t-slow: 600ms cubic-bezier(.2,.6,.2,1);
}

/* Cream theme — softer palette with stronger contrast */
/* Editorial Dark theme */
[data-theme="dark"] {
  --bg: #0a0908;
  --bg-elev: #14110e;
  --bg-elev-2: #1c1814;
  --fg: #ebe3ce;
  --fg-mute: #a39a89;
  --fg-dim: #6f6757;
  --line: rgba(235, 227, 206, 0.10);
  --line-strong: rgba(235, 227, 206, 0.22);
  --accent: #d96f3a;
  --accent-warm: #e8c466;
  --accent-deep: #8b3a1a;
}

/* Cream (default for brand) — logo cream against deep black accents */
[data-theme="cream"] {
  --bg: #ebe3ce;
  --bg-elev: #e0d7c1;
  --bg-elev-2: #d3c9b1;
  --fg: #0a0908;
  --fg-mute: #4a4239;
  --fg-dim: #7a7160;
  --line: rgba(10, 9, 8, 0.12);
  --line-strong: rgba(10, 9, 8, 0.28);
  --accent: #d96f3a;
  --accent-warm: #e8c466;
  --accent-deep: #8b3a1a;
}

[data-theme="mono"] {
  --bg: #000;
  --bg-elev: #0a0a0a;
  --bg-elev-2: #131313;
  --fg: #fff;
  --fg-mute: #9a9a9a;
  --fg-dim: #5e5e5e;
  --line: rgba(255,255,255,0.10);
  --line-strong: rgba(255,255,255,0.24);
  --accent: #c69464;
  --accent-warm: #d6a87a;
  --accent-deep: #8b5a3c;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { background: var(--bg); color: var(--fg); }

body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
  transition: background var(--t-med), color var(--t-med);
}

@media (pointer: coarse) { body { cursor: auto; } #cursor { display: none; } }

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

::selection { background: var(--accent); color: var(--bg); }

/* film grain overlay */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 999;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.96 0 0 0 0 0.93 0 0 0 0 0.88 0 0 0 1.2 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
[data-theme="cream"] .grain { opacity: 0.10; mix-blend-mode: multiply; }

/* custom cursor */
/* Vinyl record cursor — true proportions: thick black grooves, white label, tiny spindle hole.
   Wrapper owns the JS-driven position; the .vinyl child spins via CSS so the two transforms don't conflict. */
#cursor {
  position: fixed; top: 0; left: 0; width: 28px; height: 28px;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: opacity var(--t-fast);
}
#cursor .vinyl {
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at center,
      transparent 0%, transparent 8%,                  /* spindle hole — only a few px */
      #ebe3ce 9%, #ebe3ce 38%,                          /* WHITE label — thicker */
      #0a0908 39%, #0a0908 100%);                       /* thick black grooved disc */
  box-shadow:
    0 0 0 0.5px rgba(0,0,0,0.5),
    0 4px 12px rgba(0,0,0,0.35);
  animation: vinyl-spin 5s linear infinite;
}
/* faux groove ring at ~70% radius for the "tracks" feel */
#cursor .vinyl::after {
  content: '';
  position: absolute; inset: 22%;
  border-radius: 50%;
  border: 0.5px solid rgba(235, 227, 206, 0.12);
  pointer-events: none;
}
@keyframes vinyl-spin { to { transform: rotate(360deg); } }
#cursor span { display: none; }
/* hover: transparent, NO size change */
#cursor.hover { opacity: 0.35; }
#cursor.text {
  width: 3px; height: 22px;
  transform: translate(-50%, -50%);
}
#cursor.text .vinyl {
  background: var(--fg);
  border-radius: 0;
  animation: none;
  box-shadow: none;
}
#cursor.text .vinyl::after { display: none; }

/* ---------- typography ---------- */
.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 11vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.h-display em { font-style: normal; font-weight: 400; color: var(--accent); text-transform: uppercase; }
.h-1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 86px);
  line-height: 1.0;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.h-1 em { font-style: normal; font-weight: 400; color: var(--accent); text-transform: uppercase; }
.h-2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.h-2 em { font-style: normal; font-weight: 400; color: var(--accent); text-transform: uppercase; }
.h-3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.label-mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--fg-mute);
}
.num {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}

/* ---------- layout primitives ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.row { display: flex; align-items: center; }
.between { justify-content: space-between; }
.stack { display: flex; flex-direction: column; }
.divider { height: 1px; background: var(--line); width: 100%; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px var(--pad);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 24px;
  background: linear-gradient(to bottom, var(--bg) 50%, transparent);
  transition: background var(--t-med);
}
.nav.scrolled { background: color-mix(in oklab, var(--bg) 86%, transparent); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.nav-left, .nav-right { display: flex; align-items: center; gap: 28px; }
.nav-right { justify-content: flex-end; }
.nav-link {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-mute);
  position: relative; padding: 6px 0;
  white-space: nowrap;
  transition: color var(--t-fast);
}
.nav-link::after {
  content:""; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 1px; background: var(--fg); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-med);
}
.nav-link:hover { color: var(--fg); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--fg); }
.nav-link.active::after { transform: scaleX(1); }

.nav-icon {
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 50%;
  color: var(--fg); position: relative;
  transition: background var(--t-fast);
}
.nav-icon:hover { background: var(--bg-elev); }
.nav-icon .badge {
  position: absolute; top: 4px; right: 4px;
  min-width: 14px; height: 14px; padding: 0 4px;
  border-radius: 8px; background: var(--accent); color: var(--bg);
  font-family: var(--mono); font-size: 9px; font-weight: 500;
  display: grid; place-items: center;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  line-height: 1;
}
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: var(--fg);
  display: grid; place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.logo-word {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.logo .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  display: inline-block; transform: translateY(-2px);
}

/* ---------- hero ---------- */
/* Minimal Studio-Iki style hero (default) — full-bleed */
.hero-v2 {
  padding: 78px 0 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.hero-image {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  max-height: calc(100vh - 140px);
  min-height: 520px;
  background: var(--bg-elev);
  overflow: hidden;
}
/* hero image cinematic letterbox + photo overlay vignette */
.hero-image::before {
  content:"";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.45) 100%),
    radial-gradient(120% 80% at 50% 50%, transparent 50%, rgba(0,0,0,0.25));
  pointer-events: none;
  z-index: 1;
}
.hero-image image-slot {
  display: block; width: 100%; height: 100%;
  --image-slot-bg: var(--bg-elev);
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
}
.hero-overlay-cta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0 var(--pad) clamp(80px, 14vh, 140px);
  background: linear-gradient(to top, rgba(10,9,8,0.6) 0%, rgba(10,9,8,0.25) 40%, transparent 80%);
  display: flex; justify-content: center; align-items: flex-end;
  z-index: 2;
  pointer-events: none;
}
.hero-on-img-cta { pointer-events: auto; }
.hero-on-img-cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 20px 36px;
  background: #ebe3ce; color: #0a0908;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  white-space: nowrap;
  transition: gap var(--t-med), background var(--t-fast), color var(--t-fast), transform var(--t-fast);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.hero-on-img-cta:hover { gap: 22px; background: #fff; transform: translateY(-2px); }
.hero-on-img-cta .arrow { transition: transform var(--t-med); font-size: 14px; }
.hero-on-img-cta:hover .arrow { transform: translateX(4px); }
@media (max-width: 760px) {
  .hero-on-img-cta { padding: 16px 26px; font-size: 11px; }
  .hero-overlay-cta { padding: 24px var(--pad) 28px; }
}
.hero-meta-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; padding: 8px var(--pad) 0;
  flex-wrap: wrap;
}
.hero-meta-left { display: flex; align-items: center; gap: 14px; color: var(--fg-mute); flex-wrap: wrap; min-width: 0; }
.hero-meta-left .label-mono { color: inherit; white-space: nowrap; }
.hidden-sm { display: inline; }
@media (max-width: 760px) {
  .hero-image { aspect-ratio: 4/5; min-height: 380px; max-height: 70vh; }
  .hidden-sm { display: none; }
  .hero-meta-row { flex-direction: column; align-items: flex-start; }
}
.hero-cta-min {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  background: var(--fg); color: var(--bg);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: gap var(--t-med);
}
.hero-cta-min:hover { gap: 18px; }
.hero-cta-min .arrow { transition: transform var(--t-med); }
.hero-cta-min:hover .arrow { transform: translateX(4px); }

/* Original spinning-vinyl hero — opt-in via Tweaks */
.hero {
  position: relative; min-height: 100vh;
  padding: 120px var(--pad) 80px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.hero-stage {
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 50%, transparent, var(--bg) 78%),
              radial-gradient(50% 50% at 70% 30%, color-mix(in oklab, var(--accent-deep) 38%, transparent), transparent 60%);
}
[data-theme="cream"] .hero-stage {
  background: radial-gradient(120% 80% at 50% 50%, transparent, var(--bg) 78%),
              radial-gradient(60% 60% at 70% 30%, color-mix(in oklab, var(--accent-warm) 22%, transparent), transparent 60%),
              linear-gradient(180deg, color-mix(in oklab, var(--bg-elev) 60%, var(--bg)) 0%, var(--bg) 50%);
}
.hero-stage::before {
  content:""; position: absolute; inset: 0;
  background-image:
    repeating-radial-gradient(circle at 70% 50%,
      transparent 0, transparent 5px,
      color-mix(in oklab, var(--fg) 4%, transparent) 5px, color-mix(in oklab, var(--fg) 4%, transparent) 6px);
  opacity: 0.6;
}
.hero-vinyl {
  position: absolute; right: -14vw; top: 50%; transform: translateY(-50%);
  width: 55vw; max-width: 760px; aspect-ratio: 1; pointer-events: none;
}
@media (min-width: 1400px) { .hero-vinyl { right: -8vw; width: 50vw; } }
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 24px;
  margin-top: auto; margin-bottom: 8vh;
  max-width: 800px;
}
.h-display { max-width: 13ch; }
.hero-meta { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.hero-meta-item { display: flex; flex-direction: column; gap: 2px; }
.hero-meta-item .v { font-family: var(--mono); font-size: 12px; color: var(--fg); }
.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px;
  background: var(--fg); color: var(--bg);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 999px;
  align-self: flex-start;
  transition: gap var(--t-med), transform var(--t-fast);
}
.hero-cta:hover { gap: 18px; }
.hero-cta .arrow { transition: transform var(--t-med); }
.hero-cta:hover .arrow { transform: translateX(4px); }

.hero-top {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.hero-top { gap: 32px; }
.hero-top .eyebrow-block { display: flex; flex-direction: column; gap: 6px; flex-shrink: 0; }
.hero-top .eyebrow { white-space: nowrap; }
.hero-runner {
  position: absolute; right: var(--pad); top: 50%;
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  color: var(--fg-dim); text-transform: uppercase;
  z-index: 2;
}

/* ---------- section ---------- */
.section { padding: 100px var(--pad); position: relative; }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; margin-bottom: 48px;
  border-top: 1px solid var(--line); padding-top: 28px;
}
.section-head .left { display: flex; flex-direction: column; gap: 12px; min-width: 0; flex: 1; }
.section-head .right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; white-space: nowrap; }
.section-link {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--fg);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 4px;
  display: inline-flex; gap: 8px; align-items: center;
  transition: gap var(--t-fast), border-color var(--t-fast);
}
.section-link:hover { gap: 14px; border-color: var(--accent); }

/* ---------- featured drop strip ---------- */
.drop-banner {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.drop-banner-l {
  padding: 64px var(--pad) 64px 0;
  display: flex; flex-direction: column; justify-content: space-between; gap: 32px;
}
.drop-banner-r {
  position: relative; aspect-ratio: 4/3;
  background: var(--bg-elev);
  overflow: hidden;
}
.drop-banner .h-1 em { font-style: italic; color: var(--accent); }
.drop-meta { display: flex; flex-direction: column; gap: 14px; }
.drop-meta-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); }
.drop-meta-row .l { color: var(--fg-mute); font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.drop-meta-row .r { font-family: var(--mono); font-size: 12px; }

/* ---------- category strip ---------- */
.cats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cat {
  background: var(--bg);
  aspect-ratio: 4/5;
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  transition: background var(--t-med), color var(--t-med);
  overflow: hidden;
}
.cat:hover { background: var(--bg-elev); }
.cat > * { position: relative; z-index: 2; }
.cat .cat-num { font-family: var(--mono); font-size: 11px; color: var(--fg-mute); }
.cat .cat-name { font-family: var(--serif); font-style: italic; font-size: clamp(28px, 3vw, 44px); line-height: 0.95; max-width: 70%; }
.cat .cat-count { font-family: var(--mono); font-size: 11px; color: var(--fg-mute); letter-spacing: 0.1em; text-transform: uppercase; }
.cat-svg {
  position: absolute; right: -10%; bottom: -10%;
  width: 75%; opacity: 0.16; transition: opacity var(--t-med), transform var(--t-med);
}
.cat:hover .cat-svg { opacity: 0.42; transform: translate(-4px, -4px); }

/* ---------- product grid ---------- */
.grid {
  display: grid; gap: 4px;
  grid-template-columns: repeat(3, 1fr);
}
[data-grid="square"] .grid { grid-template-columns: repeat(3, 1fr); }
[data-grid="dense"] .grid { grid-template-columns: repeat(4, 1fr); gap: 2px; }
[data-grid="editorial"] .grid { grid-template-columns: repeat(6, 1fr); }
[data-grid="editorial"] .grid .card { grid-column: span 2; }
[data-grid="editorial"] .grid .card:nth-child(7n+1) { grid-column: span 3; aspect-ratio: 4/5; }
[data-grid="editorial"] .grid .card:nth-child(7n+2) { grid-column: span 3; }
[data-grid="editorial"] .grid .card:nth-child(7n+4) { grid-column: span 4; }

.card {
  position: relative;
  background: #0a0908;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: none;
  isolation: isolate;
  color: #ebe3ce;
}
.card-media {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background:
    radial-gradient(80% 60% at 50% 40%, color-mix(in oklab, var(--accent-deep) 18%, transparent), transparent 70%),
    var(--bg-elev);
  transition: transform var(--t-slow);
}
.card-media .alt { position: absolute; inset: 0; opacity: 0; display: grid; place-items: center; transition: opacity var(--t-med); }
.card:hover .card-media .alt { opacity: 1; }
.card:hover .card-media .main { opacity: 0; }
.card-media .main { transition: opacity var(--t-med); }
.card-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 16px;
  color: #ebe3ce;
  background: linear-gradient(to top, rgba(10,9,8,0.85), transparent);
}
.card-meta .name {
  font-family: var(--serif); font-weight: 400;
  font-size: 22px; line-height: 1.0; letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ebe3ce;
}
.card-meta .label-mono { color: rgba(235, 227, 206, 0.6); }
.card-meta .price { color: #ebe3ce; }
.card-meta .price { font-family: var(--mono); font-size: 12px; }
.card-tag {
  position: absolute; top: 12px; left: 12px;
  padding: 5px 10px; border: 1px solid rgba(235,227,206,0.25);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(235,227,206,0.7);
  background: rgba(10,9,8,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
}
.card-tag.featured { color: var(--accent-warm); border-color: rgba(232,196,102,0.4); }
.card-wish {
  position: absolute; top: 10px; right: 10px;
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 50%;
  background: color-mix(in oklab, var(--bg) 50%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0; transform: translateY(-4px);
  transition: opacity var(--t-med), transform var(--t-med), background var(--t-fast);
}
.card:hover .card-wish { opacity: 1; transform: translateY(0); }
.card-wish:hover { background: var(--fg); color: var(--bg); }
.card-wish.on { opacity: 1; color: var(--accent); }
.card-quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  padding: 10px 0; text-align: center;
  background: var(--fg); color: var(--bg);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 999px;
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--t-med), transform var(--t-med);
  z-index: 2;
}
.card:hover .card-quick { opacity: 1; transform: translateY(0); }

/* swatches in card */
.card-swatches {
  position: absolute; top: 12px; right: 56px;
  display: flex; gap: 4px;
  opacity: 0; transition: opacity var(--t-med);
}
.card:hover .card-swatches { opacity: 1; }
.swatch {
  width: 12px; height: 12px; border-radius: 50%;
  border: 1px solid var(--line-strong);
}

/* ---------- filter bar ---------- */
.toolbar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; padding: 18px 0; margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}
.toolbar .chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 8px 14px; border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-mute);
  transition: all var(--t-fast);
}
.chip:hover { color: var(--fg); border-color: var(--fg-mute); }
.chip.on { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.toolbar .right { display: flex; align-items: center; gap: 18px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-mute); }
.toolbar select.sort {
  background: transparent; border: 0; color: var(--fg);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  border-bottom: 1px solid var(--line-strong);
  padding: 6px 0; cursor: none;
}

/* ---------- collections strip ---------- */
.collections {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
}
@media (max-width: 1100px) { .collections { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .collections { grid-template-columns: 1fr; } }
.collection-card {
  display: flex; flex-direction: column;
  background: var(--bg-elev);
  overflow: hidden;
  isolation: isolate;
  transition: background var(--t-med);
}
.collection-card:hover { background: var(--bg-elev-2); }
.collection-image {
  aspect-ratio: 4/5;
  position: relative;
  background:
    radial-gradient(75% 60% at 50% 42%, color-mix(in oklab, #d96f3a 32%, #1a1612), #0a0908);
  overflow: hidden;
  color: #ebe3ce;
}
.collection-image image-slot {
  display: block; width: 100%; height: 100%;
  --image-slot-bg: transparent;
}
.collection-silhouette {
  position: absolute; inset: 16% 22% 16% 22%;
  color: #ebe3ce;
  opacity: 0.72;
  transition: opacity var(--t-med), transform var(--t-med);
  pointer-events: none;
}
.collection-card:hover .collection-silhouette {
  opacity: 1;
  transform: translateY(-4px);
}
.collection-meta {
  padding: 20px 22px 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.collection-num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-mute);
}
.collection-name {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 2.2vw, 34px); line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.collection-sub {
  font-family: var(--mono); font-size: 11px;
  color: var(--fg-mute); letter-spacing: 0.04em;
}
.collection-link {
  margin-top: 6px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap var(--t-fast);
}
.collection-card:hover .collection-link { gap: 14px; }

/* ---------- collection page hero ---------- */
.collection-hero { padding-top: 32px; padding-bottom: 24px; }
.collection-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; margin-top: 18px;
  padding-bottom: 24px; border-bottom: 1px solid var(--line);
}

/* ---------- product row (best sellers / new in) ---------- */
.row-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
}
.row-strip .card { aspect-ratio: 4/5; }
@media (max-width: 900px) { .row-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- about section ---------- */
.about { padding-top: 80px; padding-bottom: 80px; }
.about-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px;
  align-items: stretch;
}
.about-image {
  background: var(--bg-elev); aspect-ratio: 4/5;
  min-height: 480px;
}
.about-image image-slot {
  display: block; width: 100%; height: 100%;
  --image-slot-bg: var(--bg-elev);
}
.about-bg-img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.about-copy {
  display: flex; flex-direction: column; gap: 22px;
  padding: 24px 0;
  max-width: 540px;
}
.about-copy p { color: var(--fg-mute); line-height: 1.7; font-size: 16px; }
.about-press {
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 14px;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.press-row {
  display: flex; flex-wrap: wrap; gap: 18px 32px;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--fg);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.press-row span { opacity: 0.78; transition: opacity var(--t-fast); }
.press-row span:hover { opacity: 1; color: var(--accent); }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image { min-height: 380px; }
}

/* ---------- lookbook strip ---------- */
.lookbook {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 4px;
  padding: 0 var(--pad);
}
.lk { background: var(--bg-elev); aspect-ratio: 4/5; position: relative; overflow: hidden; }
.lk.wide { grid-column: span 6; aspect-ratio: 16/9; }
.lk.tall { grid-column: span 3; aspect-ratio: 3/4; }
.lk.sq { grid-column: span 3; aspect-ratio: 1; }
.lk-caption {
  position: absolute; left: 16px; bottom: 16px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-mute);
}

/* ---------- accordion (size guide / faq) ---------- */
.acc { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 24px 0; text-align: left;
}
.acc-head .h-2 { font-style: italic; transition: color var(--t-med); }
.acc-head .plus { font-family: var(--mono); font-size: 18px; color: var(--fg-mute); transition: transform var(--t-med); }
.acc-item.open .acc-head .plus { transform: rotate(45deg); color: var(--accent); }
.acc-item.open .acc-head .h-2 { color: var(--accent); }
.acc-body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-slow);
}
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body > div { overflow: hidden; min-height: 0; }
.acc-body-inner { padding: 0 0 32px 0; max-width: 720px; color: var(--fg-mute); }
.acc-body-inner p + p { margin-top: 12px; }

.size-table {
  width: 100%; border-collapse: collapse;
  font-family: var(--mono); font-size: 12px;
  margin-top: 16px;
}
.size-table th, .size-table td {
  padding: 12px 8px; text-align: left;
  border-bottom: 1px solid var(--line);
  color: var(--fg);
}
.size-table th {
  font-weight: 400; color: var(--fg-mute);
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 10px;
}

/* ---------- bottom hero (above footer) ---------- */
.bottom-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  min-height: 520px;
  max-height: 80vh;
  overflow: hidden;
  background: #0a0908;
}
.bottom-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}
.bottom-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg,
    rgba(10,9,8,0.78) 0%,
    rgba(10,9,8,0.55) 35%,
    rgba(10,9,8,0.20) 65%,
    rgba(10,9,8,0.10) 100%);
  z-index: 1;
}
.bottom-hero-text {
  position: absolute; z-index: 2;
  left: var(--pad); bottom: 0;
  padding: 0 0 64px 0;
  max-width: 620px;
  display: flex; flex-direction: column; gap: 20px;
  align-items: flex-start;
}
.bottom-hero-text .h-1 em { color: var(--accent-warm); }
@media (max-width: 760px) {
  .bottom-hero { min-height: 480px; aspect-ratio: 4/5; }
  .bottom-hero-text { padding-bottom: 40px; }
  .bottom-hero-img { object-position: 60% center; }
}

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid rgba(235, 227, 206, 0.10);
  padding: 80px var(--pad) 32px;
  display: flex; flex-direction: column; gap: 80px;
  background: #0a0908;
  color: #ebe3ce;
}
.footer .footer-col h4 { color: rgba(235, 227, 206, 0.55); }
.footer .footer-col a { color: #ebe3ce; }
.footer .footer-col a:hover { color: var(--accent); }
.footer .footer-display { border-color: rgba(235, 227, 206, 0.10); }
.footer .footer-bot { color: rgba(235, 227, 206, 0.45); }
.footer .newsletter { border-color: rgba(235, 227, 206, 0.22); }
.footer .newsletter input::placeholder { color: rgba(235, 227, 206, 0.35); }
.footer .newsletter input { color: #ebe3ce; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; }
.footer-col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-mute); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a:hover { color: var(--accent); }
.footer-display {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(60px, 9vw, 160px); line-height: 0.86; letter-spacing: -0.02em;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  white-space: nowrap; overflow: hidden;
}
.footer-display .marquee {
  display: inline-block; padding-right: 64px;
  animation: marquee 40s linear infinite;
}
.footer-display .dot { color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.footer-bot {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; color: var(--fg-mute); letter-spacing: 0.1em; text-transform: uppercase;
}
.newsletter { display: flex; gap: 0; border-bottom: 1px solid var(--line-strong); }
.newsletter input {
  flex: 1; background: transparent; border: 0; outline: none;
  padding: 10px 0;
  font-family: var(--sans); font-size: 14px;
}
.newsletter input::placeholder { color: var(--fg-dim); }
.newsletter button {
  padding: 10px 0 10px 16px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
}

/* ---------- now playing ticker (cinematic touch) ---------- */
.now-playing {
  position: fixed; bottom: 24px; left: 24px; z-index: 90;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px 10px 10px;
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--fg-mute);
  max-width: 320px;
  transition: opacity var(--t-med), transform var(--t-med);
}
.now-playing.minimized { transform: translateY(80px); opacity: 0; pointer-events: none; }
.np-spin {
  width: 28px; height: 28px; border-radius: 50%;
  background: radial-gradient(circle at center, var(--bg) 18%, var(--fg) 19%, var(--bg-elev) 22%, var(--fg-dim) 36%, var(--bg-elev-2) 50%, var(--fg-dim) 64%, var(--bg-elev-2) 78%, var(--accent) 100%);
  animation: spin 4s linear infinite;
  flex-shrink: 0;
  position: relative;
}
.np-spin::after { content:""; position: absolute; inset: 42%; background: var(--bg); border-radius: 50%; }
@keyframes spin { to { transform: rotate(360deg); } }
.np-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.np-text .l1 { color: var(--accent); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; }
.np-text .l2 { color: var(--fg); text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }

/* ---------- drawer ---------- */
.drawer-scrim {
  position: fixed; inset: 0; z-index: 200;
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-med);
}
.drawer-scrim.on { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 201;
  width: min(480px, 100vw);
  background: var(--bg);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform var(--t-slow);
  display: flex; flex-direction: column;
}
.drawer.on { transform: translateX(0); }
.drawer-head {
  padding: 24px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line);
}
.drawer-body { flex: 1; overflow-y: auto; padding: 0 24px; }
.drawer-foot { padding: 20px 24px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; }
.drawer-foot .subtotal { display: flex; justify-content: space-between; align-items: baseline; }
.drawer-foot .subtotal .l { color: var(--fg-mute); font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.drawer-foot .subtotal .r { font-family: var(--serif); font-style: italic; font-size: 28px; }
.btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 18px 24px;
  background: var(--fg); color: var(--bg);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 999px;
  transition: gap var(--t-fast);
  width: 100%;
  white-space: nowrap;
}
.btn-primary:hover { gap: 18px; }
.btn-primary > span { display: inline-flex; align-items: center; }
.btn-secondary {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 16px 24px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg);
  transition: border-color var(--t-fast), background var(--t-fast);
  width: 100%;
}
.btn-secondary:hover { border-color: var(--fg); }

.cart-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.cart-thumb {
  aspect-ratio: 1; background: var(--bg-elev); border: 1px solid var(--line);
  display: grid; place-items: center; overflow: hidden;
}
.cart-info { display: flex; flex-direction: column; gap: 4px; }
.cart-info .nm { font-family: var(--serif); font-style: italic; font-size: 20px; line-height: 1.1; }
.cart-info .vr { font-family: var(--mono); font-size: 11px; color: var(--fg-mute); letter-spacing: 0.08em; }
.cart-info .pr { font-family: var(--mono); font-size: 13px; margin-top: 4px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: 999px; }
.qty button { width: 28px; height: 28px; display: grid; place-items: center; }
.qty .v { font-family: var(--mono); font-size: 12px; min-width: 20px; text-align: center; }
.cart-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.x-btn { color: var(--fg-mute); font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.x-btn:hover { color: var(--accent); }

.empty-cart {
  padding: 80px 24px;
  display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center;
}
.empty-cart .h-2 { font-style: italic; }
.empty-cart p { color: var(--fg-mute); max-width: 320px; }

/* search drawer */
.search-bar {
  padding: 24px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.search-bar input {
  flex: 1; background: transparent; border: 0; outline: none;
  font-family: var(--serif); font-style: italic;
  font-size: 28px; line-height: 1;
  padding: 8px 0;
}
.search-bar input::placeholder { color: var(--fg-dim); }
.search-hint { padding: 24px; color: var(--fg-mute); }
.search-hint h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: 12px; }
.search-hint ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.search-hint a:hover { color: var(--accent); }
.search-results { padding: 12px 0; }
.search-result {
  display: grid; grid-template-columns: 60px 1fr auto;
  gap: 16px; padding: 14px 24px; align-items: center;
  border-bottom: 1px solid var(--line);
  transition: background var(--t-fast);
}
.search-result:hover { background: var(--bg-elev); }
.search-result .thumb { aspect-ratio: 1; background: var(--bg-elev-2); border-radius: 2px; display: grid; place-items: center; }
.search-result .nm { font-family: var(--serif); font-style: italic; font-size: 18px; }
.search-result .pr { font-family: var(--mono); font-size: 12px; }

/* ---------- product detail page ---------- */
.pdp {
  padding: 20px var(--pad) 80px;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.pdp-gallery {
  position: sticky;
  top: 80px;
  height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
}
.pdp-main {
  flex: 1; min-height: 0;
  background: var(--bg-elev);
  position: relative; overflow: hidden;
}
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 56px;
  background: rgba(0,0,0,0.25); border: none;
  color: rgba(235,227,206,0.85); font-size: 22px; line-height: 1;
  display: grid; place-items: center;
  cursor: none; z-index: 2;
  transition: background var(--t-fast);
}
.gallery-arrow:hover { background: rgba(0,0,0,0.5); }
.gallery-prev { left: 0; }
.gallery-next { right: 0; }

.pdp-info { padding-top: 8px; display: flex; flex-direction: column; gap: 20px; }
.pdp-crumb { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-mute); }
.pdp-crumb a:hover { color: var(--fg); }
.pdp-crumb .sep { opacity: 0.4; }
.pdp-title { display: flex; flex-direction: column; gap: 8px; }
.pdp-price { display: flex; align-items: baseline; gap: 12px; font-family: var(--mono); font-size: 18px; flex-wrap: wrap; }
.pdp-price .ship { color: var(--fg-mute); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
.pdp-desc { color: var(--fg-mute); line-height: 1.65; max-width: 540px; }

.pdp-section { display: flex; flex-direction: column; gap: 12px; }
.pdp-section .h { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.pdp-section .h h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-mute); white-space: nowrap; }
.pdp-section .h a { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); white-space: nowrap; }
.pdp-section .h a:hover { text-decoration: underline; text-underline-offset: 4px; }
.opts { display: flex; flex-wrap: wrap; gap: 8px; }
.opt {
  min-width: 56px; padding: 12px 16px;
  border: 1px solid var(--line-strong);
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.08em;
  transition: all var(--t-fast);
  position: relative;
}
.opt:hover { border-color: var(--fg); }
.opt.on { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.opt.oos { color: var(--fg-dim); }
.opt.oos::after { content:""; position: absolute; left: 12%; right: 12%; top: 50%; height: 1px; background: var(--fg-dim); }
.opt-color {
  width: 36px; height: 36px; padding: 0; border-radius: 50%;
  border: 1px solid var(--line-strong); position: relative;
}
.opt-color.on { border-color: var(--accent); box-shadow: 0 0 0 2px var(--bg) inset, 0 0 0 3px var(--accent) inset; }

.pdp-actions { display: flex; flex-direction: column; gap: 10px; }
.pdp-pair { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.pdp-wish {
  width: 56px; aspect-ratio: 1;
  border: 1px solid var(--line-strong); border-radius: 999px;
  display: grid; place-items: center;
  transition: all var(--t-fast);
}
.pdp-wish:hover { border-color: var(--accent); color: var(--accent); }
.pdp-wish.on { color: var(--accent); border-color: var(--accent); }

.pdp-meta-list { display: flex; flex-direction: column; }
.pdp-meta-list .row {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 24px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-size: 12px;
}
.pdp-meta-list .row .k { color: var(--fg-mute); letter-spacing: 0.08em; text-transform: uppercase; font-size: 11px; }

/* reviews */
.reviews { display: flex; flex-direction: column; gap: 32px; }
.review-summary { display: flex; align-items: center; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.review-summary .score { font-family: var(--serif); font-style: italic; font-size: 64px; line-height: 1; }
.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.review { padding: 20px 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; }
.review-head { display: flex; justify-content: space-between; align-items: center; }
.review-head .who { font-family: var(--mono); font-size: 12px; }
.review-head .when { font-family: var(--mono); font-size: 11px; color: var(--fg-mute); }
.review .body { color: var(--fg-mute); line-height: 1.6; }

/* recently viewed strip */
.strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
}
.strip .card { aspect-ratio: 4/5; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .pdp { grid-template-columns: 1fr; gap: 32px; }
  .drop-banner { grid-template-columns: 1fr; }
  .drop-banner-l { padding: 48px 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .cats { grid-template-columns: repeat(2, 1fr); }
  .grid { grid-template-columns: repeat(2, 1fr) !important; }
  [data-grid="editorial"] .grid .card { grid-column: span 1 !important; aspect-ratio: 4/5 !important; }
  .nav-left .nav-link { display: none; }
  .lookbook { grid-template-columns: 1fr; }
  .lk { grid-column: span 1 !important; aspect-ratio: 4/5 !important; }
  .strip { grid-template-columns: repeat(2, 1fr); }
}

/* fade-in (disabled — kept to avoid breaking existing classNames) */
.fade-in { opacity: 1; }
@keyframes fade-in { from { opacity: 1; transform: none; } to { opacity: 1; transform: none; } }
