/** Shopify CDN: Minification failed

Line 1416:17 Unexpected "<"

**/
/* =========================================================
   KLAKS — Design System
   ========================================================= */
:root {
  /* Earth tone palette */
  --bg: #FFFFFF;
  --bg-2: #FFFFFF;
  --ink: #15110D;
  --ink-soft: #3A3128;
  --muted: #7B7163;
  --line: #E5E5E5;
  --line-strong: #A89878;

  --olive: #5C6845;
  --olive-deep: #3F4830;
  --rust: #B25A33;
  --rust-deep: #8A3F1F;
  --ochre: #D8A24A;
  --cream: #F1EADD;

  --accent: var(--rust);

  /* Spacing */
  --pad: clamp(20px, 3vw, 56px);
  --gap: clamp(16px, 2vw, 32px);

  /* Type */
  --f-display: "Archivo Black", "Arial Black", sans-serif;
  --f-condensed: "Anton", "Archivo Narrow", sans-serif;
  --f-sans: "DM Sans", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  --density: 1;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; max-width: 100%; overflow-x: clip; overscroll-behavior-x: none; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  padding-top: 36px; /* leave room for fixed announcement bar */
}

/* Skip link — hidden until keyboard focus */
.skip-link.visually-hidden,
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed !important;
  top: 8px; left: 8px;
  width: auto; height: auto;
  clip: auto;
  background: var(--ink); color: var(--bg);
  padding: 10px 16px; z-index: 200;
  font-family: var(--f-mono); font-size: 12px;
}

/* Guard: nothing should push past the viewport width */
.footer-mega, .drop-section-title, .drops-h, .coll-h,
.early h2, .pinned-title, .cat-sticky-name {
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}
.footer-mega { overflow: hidden; }

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

/* =========================================================
   Type
   ========================================================= */
.display { font-family: var(--f-display); font-weight: 900; letter-spacing: -0.02em; line-height: 0.86; text-transform: uppercase; }
.cond { font-family: var(--f-condensed); font-weight: 400; letter-spacing: 0.01em; text-transform: uppercase; }
.mono { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.lbl { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

h1, h2, h3, h4 { margin: 0; font-family: var(--f-display); font-weight: 900; letter-spacing: -0.02em; line-height: 0.9; text-transform: uppercase; }

/* =========================================================
   Layout primitives
   ========================================================= */
.row { display: flex; align-items: center; gap: 12px; }
.section { padding: calc(64px * var(--density)) var(--pad); }
.rule { border: 0; border-top: 1px solid var(--ink); margin: 0; }
.rule-soft { border: 0; border-top: 1px solid var(--line); }

/* =========================================================
   Announcement bar
   ========================================================= */
.announce {
  background: var(--ink);
  color: var(--bg);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  overflow: hidden;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 51;
  height: 36px;
}
.announce-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  align-items: center;
  height: 100%;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.announce-track > span { display: inline-flex; align-items: center; gap: 64px; }
.announce-dot { width: 6px; height: 6px; background: var(--ochre); border-radius: 50%; display: inline-block; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   Nav — transparent over hero, solid after scroll
   ========================================================= */
.nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  color: var(--bg);
  transition: background .3s ease, border-color .3s ease, color .3s ease, top .3s ease;
}
.nav.solid {
  background: transparent;
  border-bottom-color: transparent;
  color: var(--ink);
}
.nav.solid .brand-wordmark .reg { color: var(--muted); }
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px var(--pad);
  gap: 24px;
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 22px; }
.nav-right { justify-content: flex-end; }
.nav-link {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  color: inherit;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: currentColor; transition: right .35s ease;
}
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.nav-link.active { font-weight: 700; }
.nav .brand-wordmark .reg { color: currentColor; opacity: 0.7; }

.brand-wordmark {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 900;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
}
.brand-wordmark .reg {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  align-self: flex-start;
  margin-top: 4px;
  color: var(--muted);
}
/* Logo image (replaces text wordmark) */
.brand-logo { display: inline-flex; align-items: center; }
.brand-logo img { height: 58px; width: auto; display: block; }
.brand-logo-menu img { height: 46px; }
@media (max-width: 900px) {
  .brand-logo img { height: 46px; }
}
@media (max-width: 480px) {
  .brand-logo img { height: 40px; }
}
.welcome-logo img { height: 48px; width: auto; display: block; }

.icon-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 0;
}
.icon-btn svg { width: 16px; height: 16px; }
/* Bag as a plain icon button (matches search/account/save), with a small count badge */
.cart-icon-btn {
  background: transparent !important;
  border: 0 !important;
  padding: 4px !important;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  color: inherit;
}
.cart-icon-btn svg { width: 16px; height: 16px; }
.cart-icon-btn:hover { background: transparent !important; transform: translateY(-1px); }
.cart-icon-btn .count {
  position: absolute; top: -4px; right: -6px;
  background: var(--ochre); color: var(--ink);
  border-radius: 999px; padding: 0 4px; min-width: 14px; height: 14px;
  font-size: 9px; line-height: 14px; text-align: center; font-weight: 700;
}
.nav.solid .cart-icon-btn { color: var(--ink); }
.cart-pill {
  background: transparent; color: inherit;
  border: 1px solid currentColor;
  border-radius: 999px; padding: 6px 12px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  transition: background .2s, color .2s, border-color .2s;
}
.cart-pill:hover { background: currentColor; }
.cart-pill:hover span:first-child,
.cart-pill:hover .count { mix-blend-mode: difference; }
.nav.solid .cart-pill { background: transparent; color: var(--ink); border-color: var(--ink); }
.nav.solid .cart-pill:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.cart-pill .count {
  background: var(--ochre); color: var(--ink);
  border-radius: 999px; padding: 1px 7px; min-width: 18px; text-align: center;
  font-weight: 700;
}

/* =========================================================
   Popup notification (illicitbloc style — original)
   ========================================================= */
.popup {
  position: fixed; left: 20px; bottom: 20px; z-index: 70;
  background: var(--ink); color: var(--bg);
  width: min(340px, calc(100vw - 40px));
  padding: 18px 18px 18px 18px;
  border-radius: 4px;
  display: grid; grid-template-columns: 56px 1fr auto; gap: 14px; align-items: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  transform: translateY(120%); opacity: 0; transition: transform .5s cubic-bezier(.22,.61,.36,1), opacity .3s;
}
.popup.show { transform: translateY(0); opacity: 1; }
.popup-thumb {
  width: 56px; height: 56px;
  background: var(--bg-2);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.popup-thumb .ph-img { position: absolute; inset: 0; }
.popup-text { font-size: 12px; line-height: 1.45; }
.popup-text strong { display:block; font-family: var(--f-display); font-size: 11px; letter-spacing: 0.05em; margin-bottom: 4px; text-transform: uppercase; }
.popup-text .city { font-family: var(--f-mono); font-size: 10px; opacity: 0.7; letter-spacing: 0.1em; margin-top: 4px; }
.popup-close { color: var(--bg); padding: 4px; align-self: flex-start; opacity: 0.6; }
.popup-close:hover { opacity: 1; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 36px);
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--bg-2);
  overflow: hidden;
  margin-top: -36px;
}
.hero-media {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse at 30% 40%, rgba(178,90,51,0.35), transparent 60%),
    radial-gradient(ellipse at 75% 70%, rgba(92,104,69,0.45), transparent 60%),
    linear-gradient(180deg, #3F4830 0%, #2A2419 70%);
}
.hero-grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.6; mix-blend-mode: overlay;
}
/* =========================================================
   Home — overlap hero + drop grid scrolls over it
   ========================================================= */
.home-overlap { position: relative; }

/* Hero on the home page — normal flow block, fills the viewport.
   Earlier versions used position:fixed but that broke in Shopify because
   every JSON section gets wrapped in <section class="shopify-section">,
   and stacking with sibling sections proved unreliable across themes.
   Sticking to normal flow + z-index keeps the layout bulletproof. */
.home-overlap .hero-clean {
  position: fixed;
  top: 36px;            /* under the announcement bar */
  left: 0; right: 0;
  width: 100%;
  height: calc(100vh - 36px);
  min-height: 480px;
  z-index: 0;
  margin: 0;
  background-color: #15110D;
}
/* Spacer occupies one viewport so the page scrolls past the fixed hero */
.home-overlap .hero-spacer { display: block !important; height: calc(100vh - 36px); pointer-events: none; }
/* Rising sheet scrolls up over the fixed hero — the scroll itself IS the
   animation. Rounded top corners reveal the hero behind as it rises. */
.home-overlap .rising-sheet {
  position: relative;
  z-index: 5;
  background: var(--bg);
  margin-top: 0;
  box-shadow: 0 -28px 60px -24px rgba(21, 17, 13, 0.22);
}
.home-overlap .drop-overlap {
  box-shadow: 0 -28px 60px -24px rgba(21, 17, 13, 0.22);
}
.home-overlap .drop-overlap::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ink-soft) 50%, transparent);
  opacity: 0.18;
}

/* On phones, drop the radius cushion but keep the lift shadow */
@media (max-width: 760px) {
  .home-overlap .hero-clean { height: calc(100vh - 36px); }
  .home-overlap .hero-spacer { height: calc(100vh - 36px); }
  .home-overlap .drop-overlap { box-shadow: 0 -24px 50px -16px rgba(21, 17, 13, 0.22); }
}
@media (max-width: 480px) {
  /* Use small-viewport-height where supported so the address bar doesn't fight us */
  .home-overlap .hero-clean { height: calc(100svh - 36px); }
  .home-overlap .hero-spacer { height: calc(100svh - 36px); }
}

/* Tighten grid spacing on mobile so 2-up cards fit comfortably */
@media (max-width: 760px) {
  .drops-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
  .drops-head { grid-template-columns: 1fr; gap: 8px; }
  .drops-head > div:nth-child(2), .drops-head > div:nth-child(3) { text-align: left !important; }
}
.hero-real .hero-pic { position: absolute; inset: 0; z-index: 1; }
.hero-real .hero-pic img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-real .hero-shade {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(21,17,13,0.35) 0%, rgba(21,17,13,0) 35%, rgba(21,17,13,0.05) 60%, rgba(21,17,13,0.78) 100%),
    radial-gradient(ellipse at 25% 80%, rgba(178,90,51,0.18), transparent 55%);
}
.hero-real .hero-inner { color: var(--bg); }
.hero-real .hero-h { mix-blend-mode: normal; color: var(--bg); text-shadow: 0 2px 30px rgba(0,0,0,0.35); }
@media (max-width: 760px) {
  .hero-real .hero-pic img { object-position: center top; }
  .hero-real .hero-bottom { grid-template-columns: 1fr; gap: 16px; }
  .hero-real .hero-bottom .hero-meta:last-child { display: none; }
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 100px var(--pad) var(--pad);
  color: var(--bg);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: calc(100vh - 36px);
}
.hero-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; }
.hero-edition { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.hero-h {
  font-family: var(--f-display);
  font-size: clamp(80px, 16vw, 280px);
  line-height: 0.82;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}
.hero-h .it { font-style: italic; font-family: serif; font-weight: 400; letter-spacing: -0.01em; }
.hero-bottom {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 24px; align-items: end;
  padding-top: 24px;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--bg); color: var(--ink);
  padding: 18px 28px; border-radius: 999px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  transition: background .2s, color .2s;
}
.hero-cta:hover { background: var(--ochre); }
.hero-cta .arrow { width: 18px; height: 18px; }

.hero-meta { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; max-width: 240px; line-height: 1.7; }

/* =========================================================
   Logo 3D (CSS only — original take)
   ========================================================= */
.logo3d {
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  display: inline-block;
  color: var(--bg);
  text-shadow:
    1px 1px 0 var(--ink),
    2px 2px 0 var(--ink),
    3px 3px 0 var(--ink),
    4px 4px 0 var(--ink),
    5px 5px 0 var(--rust-deep),
    6px 6px 0 var(--rust-deep),
    7px 7px 0 var(--rust-deep);
  transform: rotate(-4deg);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  border-radius: 999px;
  transition: all .2s;
  cursor: pointer;
}
.btn-ink { background: var(--ink); color: var(--bg); }
.btn-ink:hover { background: var(--rust); }
.btn-rust { background: var(--rust); color: var(--bg); }
.btn-rust:hover { background: var(--ink); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn-block { width: 100%; justify-content: center; padding: 18px; }

/* =========================================================
   Product card
   ========================================================= */
.pcard { position: relative; display: flex; flex-direction: column; gap: 10px; cursor: pointer; }
.pcard-media {
  position: relative;
  aspect-ratio: 419.79 / 615.5;
  background: #FFFFFF;
  overflow: hidden;
  border-radius: 2px;
}
.pcard-media .img-a, .pcard-media .img-b {
  position: absolute; inset: 0;
  transition: opacity .5s, transform .8s;
}
.pcard-media .img-b { opacity: 0; }
.pcard:hover .pcard-media .img-a { opacity: 0; }
.pcard:hover .pcard-media .img-b { opacity: 1; transform: scale(1.04); }
.pcard-wish {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: transform .2s;
}
.pcard-wish:hover { transform: scale(1.12); }
.pcard-wish svg { width: 22px; height: 22px; }
.pcard-wish.on svg { fill: var(--bg); stroke: var(--bg); }
.pcard-tags {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.pcard-tag {
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 9px; border-radius: 999px; font-weight: 700;
}
.pcard-tag.new { background: var(--ochre); color: var(--ink); }
.pcard-tag.drop { background: var(--rust); color: var(--bg); }
.pcard-tag.sold { background: var(--ink); color: var(--bg); }

.pcard-meta { display: flex; flex-direction: column; gap: 4px; padding: 12px 4px 0; }
.pcard-title-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.pcard-title { font-family: var(--f-sans); font-weight: 600; font-size: 14px; letter-spacing: -0.01em; line-height: 1.3; flex: 1; }
.pcard-add {
  width: 28px; height: 28px; border: 1px solid var(--ink); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .15s, color .15s, transform .15s;
}
.pcard-add svg { width: 14px; height: 14px; }
.pcard-add:hover { background: var(--ink); color: var(--bg); transform: scale(1.06); }
.pcard-price { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--ink-soft); }
.pcard-sub { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* =========================================================
   Placeholder image system (editorial stripes + label)
   ========================================================= */
.ph {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 14px;
  overflow: hidden;
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    var(--ph-dir, 45deg),
    var(--ph-c1, var(--olive)) 0 14px,
    var(--ph-c2, var(--olive-deep)) 14px 28px
  );
  opacity: 0.95;
}
.ph::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.35) 100%);
}
.ph-label {
  position: relative; z-index: 1;
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bg);
}
.ph-num {
  position: relative; z-index: 1;
  font-family: var(--f-display); font-size: 11px; letter-spacing: 0.1em;
  color: var(--bg); opacity: 0.7;
}
.ph.olive { --ph-c1: #5C6845; --ph-c2: #3F4830; }
.ph.rust  { --ph-c1: #B25A33; --ph-c2: #8A3F1F; }
.ph.ochre { --ph-c1: #D8A24A; --ph-c2: #A87A2A; }
.ph.ink   { --ph-c1: #2A2419; --ph-c2: #15110D; }
.ph.cream { --ph-c1: #E7DECB; --ph-c2: #C9BC9C; }
.ph.mix-or { --ph-c1: #B25A33; --ph-c2: #5C6845; }
.ph.mix-oo { --ph-c1: #D8A24A; --ph-c2: #5C6845; }

/* Real image — fills its container, identical positioning rules to PH */
.ph-img { position: absolute; inset: 0; width: 100%; height: 100%; background: var(--bg-2); overflow: hidden; }
.ph-img img { transition: transform .9s cubic-bezier(.22,.61,.36,1); }
.pcard:hover .img-b .ph-img img { transform: scale(1.04); }

/* =========================================================
   Scroll-pinned categories (nude-project-inspired, original)
   ========================================================= */
.pinned {
  position: relative;
  background: var(--ink);
}
.pinned-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.pinned-bg {
  position: absolute; inset: 0;
  transition: opacity .8s ease;
}
.pinned-bg .ph { inset: 0; }
.pinned-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(21,17,13,0.2) 0%, rgba(21,17,13,0.55) 100%);
}
.pinned-tracker {
  position: absolute; top: 24px; left: 24px; z-index: 3;
  color: var(--bg);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
}
.pinned-tracker .bar { width: 80px; height: 1px; background: rgba(241,234,221,0.3); position: relative; }
.pinned-tracker .bar i { position: absolute; top: 0; left: 0; height: 100%; background: var(--bg); transition: width .3s; }
.pinned-titles { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 24px; }
.pinned-title {
  position: absolute;
  font-family: var(--f-display);
  font-size: clamp(60px, 14vw, 220px);
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--bg);
  text-align: center;
  transition: opacity .6s, transform .8s cubic-bezier(.22,.61,.36,1);
  white-space: nowrap;
  pointer-events: none;
}
.pinned-title .sub { display: block; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.2em; margin-top: 24px; opacity: 0.8; }
.pinned-shop {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3;
}
.pinned-scroller { /* sets total scrollable area */ }

/* =========================================================
   Drops grid (mertra/bluorng-feel grid, original)
   ========================================================= */
.drops-head {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 24px;
  padding: 0 0 calc(40px * var(--density));
}
.drops-h { font-size: clamp(48px, 8vw, 120px); letter-spacing: -0.04em; line-height: 0.85; }
.drops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 18px;
}
.drops-grid.dense {
  grid-template-columns: repeat(6, 1fr);
  gap: 18px 12px;
}
@media (max-width: 900px) { .drops-grid { grid-template-columns: repeat(2, 1fr); } .drops-grid.dense { grid-template-columns: repeat(3, 1fr); } }

/* Scroll-rise effect for drops */
.rise {
  transform: translateY(60px); opacity: 0;
  transition: transform .9s cubic-bezier(.22,.61,.36,1), opacity .9s;
}
.rise.in { transform: translateY(0); opacity: 1; }

/* =========================================================
   Lookbook editorial strip
   ========================================================= */
.look {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.look-l { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.look-r { display: grid; grid-template-rows: 1fr 1fr; gap: 24px; }
.look-r > div { position: relative; overflow: hidden; }
.look-overlay {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  color: var(--bg);
  display: flex; justify-content: space-between; align-items: end;
  z-index: 2;
}
.look-overlay .num { font-family: var(--f-display); font-size: 64px; line-height: 0.8; }
.look-overlay .ttl { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; max-width: 220px; }
@media (max-width: 900px) { .look { grid-template-columns: 1fr; } }

/* =========================================================
   Values / Sustainability
   ========================================================= */
.values { background: var(--ink); color: var(--bg); }
.values h2 { color: var(--bg); font-size: clamp(48px, 8vw, 100px); }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px;
  margin-top: 48px;
}
.value-card { border-top: 1px solid rgba(241,234,221,0.25); padding-top: 24px; }
.value-card .n { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--ochre); }
.value-card h4 { color: var(--bg); font-size: 22px; margin: 20px 0 12px; letter-spacing: -0.01em; }
.value-card p { font-size: 13px; color: rgba(241,234,221,0.7); line-height: 1.6; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   Early Access (clean — houseoferrors-inspired, original)
   ========================================================= */
.early-clean { background: var(--bg); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.early-clean-inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center;
}
.early-clean-eyebrow {
  font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 24px;
}
.early-clean-form {
  display: flex; align-items: stretch;
  border: 1px solid var(--ink);
  background: transparent;
  max-width: 560px;
}
.early-clean-form input {
  flex: 1; border: 0; background: transparent; outline: none;
  font-family: var(--f-mono); font-size: 14px; letter-spacing: 0.04em;
  padding: 18px 22px; color: var(--ink);
}
.early-clean-form input::placeholder { color: var(--muted); }
.early-clean-form button {
  width: 58px; display: flex; align-items: center; justify-content: center;
  border-left: 1px solid var(--ink); color: var(--ink); transition: background .2s, color .2s;
}
.early-clean-form button svg { width: 22px; height: 22px; }
.early-clean-form button:hover { background: var(--ink); color: var(--bg); }
.early-clean-done { padding: 8px 0; }
.early-clean-meta { margin-top: 14px; font-size: 11px; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; }
.early-clean-r { display: flex; flex-direction: column; gap: 14px; font-size: 12px; letter-spacing: 0.1em; }
.early-clean-bul { display: flex; align-items: center; gap: 14px; }
.early-clean-bul .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rust); display: inline-block; }
@media (max-width: 900px) {
  .early-clean-inner { grid-template-columns: 1fr; gap: 32px; }
  .early-clean-r { padding-top: 16px; border-top: 1px solid var(--line); }
}

/* =========================================================
   Instagram feed
   ========================================================= */
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.ig-tile { position: relative; aspect-ratio: 1; overflow: hidden; }
.ig-tile::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(21,17,13,0); transition: background .3s;
}
.ig-tile:hover::before { background: rgba(21,17,13,0.5); }
.ig-tile .heart { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--bg); opacity: 0; transition: opacity .3s; }
.ig-tile:hover .heart { opacity: 1; }
@media (max-width: 900px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--ink); color: var(--bg); padding: 80px var(--pad) 24px; position: relative; z-index: 6; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(241,234,221,0.2);
}
.footer h5 { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ochre); margin-bottom: 18px; font-weight: 700; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 13px; color: rgba(241,234,221,0.7); transition: color .2s; }
.footer ul a:hover { color: var(--bg); }
.footer-mega {
  font-family: var(--f-display);
  font-size: clamp(80px, 22vw, 360px);
  text-align: center; line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--ink);
  -webkit-text-stroke: 1px rgba(241,234,221,0.2);
  margin: 64px 0 24px;
}
.footer-bot {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(241,234,221,0.5);
  padding-top: 24px;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   Welcome popup (clubhouse-style, original)
   ========================================================= */
.welcome {
  position: fixed; left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(.96);
  width: min(840px, calc(100vw - 40px));
  max-height: min(560px, calc(100vh - 40px));
  background: var(--bg);
  z-index: 115;
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  opacity: 0; pointer-events: none;
  transition: opacity .4s, transform .5s cubic-bezier(.22,.61,.36,1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  overflow: hidden;
}
.welcome.show { opacity: 1; transform: translate(-50%, -50%) scale(1); pointer-events: auto; }
.welcome-media { position: relative; background: #FFF; overflow: hidden; min-height: 360px; }
.welcome-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.welcome-body { position: relative; padding: 40px 40px 32px; display: flex; flex-direction: column; justify-content: center; }
.welcome-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); transition: background .2s;
}
.welcome-close:hover { background: var(--bg-2); }
.welcome-close svg { width: 18px; height: 18px; }
.welcome-logo {
  font-family: var(--f-display); font-size: 22px; letter-spacing: -0.03em;
  margin-bottom: 28px; display: inline-flex; align-items: flex-start; gap: 6px;
}
.welcome-logo span { font-family: var(--f-mono); font-size: 9px; color: var(--muted); margin-top: 4px; }
.welcome-h {
  font-family: var(--f-display); font-size: clamp(26px, 3.4vw, 40px);
  line-height: 0.92; letter-spacing: -0.02em; text-transform: uppercase;
  margin: 0 0 22px;
}
.welcome-h em { font-family: serif; font-style: italic; font-weight: 400; text-transform: none; letter-spacing: -0.01em; }
.welcome-sub { margin: 0 0 24px; font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.welcome-form { display: flex; flex-direction: column; gap: 8px; }
.welcome-form label { font-size: 10px; letter-spacing: 0.16em; color: var(--muted); margin-bottom: 4px; }
.welcome-form input {
  border: 1px solid var(--ink); background: transparent; outline: none;
  font-family: var(--f-sans); font-size: 15px;
  padding: 14px 16px;
  border-radius: 2px;
  color: var(--ink);
}
.welcome-form input::placeholder { color: var(--muted); }
.welcome-form input:focus { border-color: var(--rust); }
.welcome-cta {
  margin-top: 8px;
  background: var(--ink); color: var(--bg);
  padding: 16px 22px; border-radius: 2px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  transition: background .2s;
}
.welcome-cta:hover { background: var(--rust); }
.welcome-cta svg { width: 16px; height: 16px; }
.welcome-fine { margin-top: 20px; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.08em; line-height: 1.7; color: var(--muted); }
@media (max-width: 720px) {
  .welcome {
    grid-template-columns: 0.82fr 1.18fr;
    width: calc(100vw - 28px);
    max-height: min(420px, calc(100vh - 40px));
  }
  .welcome-media { min-height: 0; }
  .welcome-body { padding: 22px 20px; }
  .welcome-h { font-size: clamp(20px, 6vw, 28px); margin-bottom: 16px; }
  .welcome-logo img { height: 38px; }
  .welcome-form input { font-size: 14px; padding: 11px 13px; }
  .welcome-cta { padding: 13px 18px; font-size: 11px; }
  .welcome-fine { margin-top: 14px; font-size: 9px; }
  .welcome-close { top: 10px; right: 10px; width: 30px; height: 30px; }
}
@media (max-width: 460px) {
  .welcome { grid-template-columns: 0.74fr 1.26fr; }
  .welcome-body { padding: 18px 16px; }
  .welcome-h { font-size: clamp(18px, 6.4vw, 24px); }
}

/* =========================================================
   Mini-cart drawer
   ========================================================= */
.scrim {
  position: fixed; inset: 0; background: rgba(21,17,13,0.5);
  opacity: 0; pointer-events: none; transition: opacity .3s;
  z-index: 80;
}
.scrim.show { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(440px, 92vw);
  background: var(--bg);
  z-index: 90;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
  display: flex; flex-direction: column;
}
.drawer.show { transform: translateX(0); }
.drawer-head { padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--ink); }
.drawer-head h3 { font-size: 18px; letter-spacing: -0.01em; }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.drawer-foot { padding: 22px 24px; border-top: 1px solid var(--ink); }
.drawer-row {
  display: grid; grid-template-columns: 70px 1fr auto; gap: 14px;
  padding: 16px 0; border-bottom: 1px dashed var(--line);
}
.drawer-row:last-child { border-bottom: 0; }
.drawer-row .thumb { position: relative; aspect-ratio: 3/4; background: #FFFFFF; overflow: hidden; }
.drawer-row .ttl { font-weight: 600; font-size: 13px; line-height: 1.3; }
.drawer-row .meta { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.drawer-row .qty { display: inline-flex; align-items: center; border: 1px solid var(--ink); border-radius: 999px; padding: 2px 8px; margin-top: 6px; }
.drawer-row .qty button { padding: 2px 6px; font-size: 12px; }
.drawer-row .qty span { font-family: var(--f-mono); font-size: 11px; padding: 0 8px; }
.drawer-row .price { font-family: var(--f-mono); font-size: 12px; font-weight: 700; align-self: start; }
.drawer-row .rm { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.drawer-row .rm:hover { color: var(--rust); }
.drawer-totals { display: flex; justify-content: space-between; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.drawer-totals strong { font-weight: 700; font-size: 14px; }
.drawer-empty { text-align: center; padding: 60px 20px; }
.drawer-empty h4 { font-size: 22px; margin-bottom: 8px; }
.drawer-empty p { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }

/* =========================================================
   Search overlay
   ========================================================= */
.search-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg);
  transform: translateY(-100%);
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
  display: flex; flex-direction: column;
}
.search-overlay.show { transform: translateY(0); }
.search-head {
  padding: 20px var(--pad); display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 24px;
  border-bottom: 1px solid var(--ink);
}
.search-head input {
  width: 100%; border: 0; background: transparent;
  font-family: var(--f-display); font-size: clamp(28px, 5vw, 56px);
  letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--ink); outline: none;
  padding: 12px 0;
}
.search-head input::placeholder { color: var(--line-strong); }
.search-body { flex: 1; padding: 40px var(--pad); overflow-y: auto; display: grid; grid-template-columns: 280px 1fr; gap: 48px; }
.search-suggestions h6, .search-results h6 { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; font-weight: 400; }
.search-suggestions ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.search-suggestions li button { font-family: var(--f-display); font-size: 22px; letter-spacing: -0.01em; text-transform: uppercase; transition: color .2s; }
.search-suggestions li button:hover { color: var(--rust); }
.search-results { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-content: start; }
@media (max-width: 900px) { .search-body { grid-template-columns: 1fr; } .search-results { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   Collection page
   ========================================================= */
.coll-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: end;
  padding: calc(40px * var(--density)) var(--pad);
}
.coll-h { font-size: clamp(60px, 11vw, 180px); line-height: 0.85; letter-spacing: -0.03em; }
.coll-meta { display: flex; flex-direction: column; gap: 14px; align-items: end; text-align: right; }
.coll-toolbar {
  position: sticky; top: 110px; z-index: 20;
  background: var(--bg);
  display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 24px;
  padding: 16px var(--pad);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.coll-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--ink); transition: all .2s;
}
.chip.on { background: var(--ink); color: var(--bg); }
.chip:hover { background: var(--ink); color: var(--bg); }
.chip.on:hover { background: var(--rust); border-color: var(--rust); }
.coll-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 18px;
  padding: 32px var(--pad);
}
.coll-grid.dense { grid-template-columns: repeat(5, 1fr); gap: 24px 12px; }
@media (max-width: 1100px) { .coll-grid, .coll-grid.dense { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .coll-grid, .coll-grid.dense { grid-template-columns: repeat(2, 1fr); } }

.sort-sel {
  background: transparent; border: 1px solid var(--ink); border-radius: 999px;
  padding: 8px 14px; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer;
}

/* =========================================================
   PDP
   ========================================================= */
.pdp { display: grid; grid-template-columns: 1.4fr 1fr; gap: 0; align-items: start; }
.pdp-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 24px; }
.pdp-gallery > div { position: relative; aspect-ratio: 3/4; overflow: hidden; background: #FFFFFF; }
.pdp-gallery > div.big { grid-column: 1 / -1; aspect-ratio: 16/12; }
.pdp-info {
  position: sticky; top: 100px;
  padding: 48px 48px 48px 24px;
  display: flex; flex-direction: column; gap: 22px;
}
.pdp-crumb { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.pdp-title { font-size: clamp(36px, 4.5vw, 60px); letter-spacing: -0.02em; line-height: 0.88; }
.pdp-price { display: flex; align-items: baseline; gap: 12px; font-family: var(--f-mono); }
.pdp-price .now { font-size: 22px; font-weight: 700; }
.pdp-price .was { color: var(--muted); text-decoration: line-through; }
.pdp-color { display: flex; gap: 10px; }
.pdp-color button {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid transparent;
  transition: border-color .2s; cursor: pointer;
}
.pdp-color button.on { border-color: var(--ink); }
.pdp-sizes { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.pdp-sizes button {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 0; border: 1px solid var(--ink); border-radius: 4px;
  background: var(--bg); transition: all .15s;
}
.pdp-sizes button:hover { background: var(--ink); color: var(--bg); }
.pdp-sizes button.on { background: var(--ink); color: var(--bg); }
.pdp-sizes button.out { color: var(--line-strong); position: relative; border-color: var(--line); }
.pdp-sizes button.out::after { content: ""; position: absolute; left: 8px; right: 8px; top: 50%; height: 1px; background: var(--line-strong); }
.pdp-sizes button.out:hover { background: var(--bg); color: var(--line-strong); cursor: not-allowed; }

.pdp-actions { display: flex; gap: 12px; align-items: stretch; }
.pdp-actions .add { flex: 1; }
.pdp-accordion details { border-top: 1px solid var(--line); padding: 16px 0; }
.pdp-accordion summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
}
.pdp-accordion summary::-webkit-details-marker { display: none; }
.pdp-accordion p { font-size: 13px; line-height: 1.6; color: var(--ink-soft); padding-top: 12px; }
.pdp-accordion details[open] summary .sign { transform: rotate(45deg); }
.pdp-accordion .sign { transition: transform .3s; font-size: 18px; line-height: 1; }

.pdp-row { display: flex; gap: 16px; align-items: center; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.pdp-row svg { width: 16px; height: 16px; }

@media (max-width: 1000px) { .pdp { grid-template-columns: 1fr; } .pdp-info { position: static; padding: 24px; } }

/* =========================================================
   Cart page
   ========================================================= */
.cart-page { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; padding: 48px var(--pad); }
.cart-list { display: flex; flex-direction: column; }
.cart-row {
  display: grid; grid-template-columns: 100px 1fr auto auto;
  gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line);
  align-items: start;
}
.cart-row .thumb { position: relative; aspect-ratio: 3/4; background: #FFFFFF; overflow: hidden; }
.cart-row h4 { font-family: var(--f-sans); font-size: 16px; font-weight: 600; letter-spacing: -0.01em; text-transform: none; }
.cart-summary {
  position: sticky; top: 110px; align-self: start;
  background: var(--bg-2); padding: 32px;
  border-radius: 4px;
}
.cart-summary h3 { font-size: 22px; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.summary-row.total { font-size: 16px; font-weight: 700; border-top: 1px solid var(--ink); padding-top: 16px; margin-top: 8px; }
@media (max-width: 900px) { .cart-page { grid-template-columns: 1fr; } }

/* =========================================================
   Checkout
   ========================================================= */
.checkout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 0; min-height: 100vh; }
.checkout-form { padding: 48px var(--pad); }
.checkout-side { background: var(--bg-2); padding: 48px var(--pad); border-left: 1px solid var(--ink); }
.checkout-steps { display: flex; gap: 24px; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 32px; }
.checkout-steps span { color: var(--muted); }
.checkout-steps span.on { color: var(--ink); font-weight: 700; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.field input, .field select {
  font-family: var(--f-sans); font-size: 14px;
  padding: 12px 14px; border: 1px solid var(--ink); background: var(--bg);
  border-radius: 4px; outline: none;
}
.field input:focus { border-color: var(--rust); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.pay-methods { display: grid; gap: 12px; }
.pay-method {
  display: flex; align-items: center; gap: 14px;
  padding: 16px; border: 1px solid var(--ink); border-radius: 4px;
  cursor: pointer; transition: all .2s;
}
.pay-method.on { background: var(--ink); color: var(--bg); }
.pay-method .dot { width: 14px; height: 14px; border-radius: 50%; border: 2px solid currentColor; position: relative; }
.pay-method.on .dot::after { content: ""; position: absolute; inset: 2px; background: var(--bg); border-radius: 50%; }

@media (max-width: 900px) { .checkout { grid-template-columns: 1fr; } .checkout-side { border-left: 0; border-top: 1px solid var(--ink); } }

/* =========================================================
   Editorial pages (About, Lookbook, Journal, Contact)
   ========================================================= */
.editorial-hero {
  padding: 80px var(--pad) 64px;
  border-bottom: 1px solid var(--ink);
  display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: end;
}
.editorial-hero h1 { font-size: clamp(60px, 11vw, 200px); line-height: 0.82; letter-spacing: -0.03em; }
.editorial-hero p { font-size: 16px; line-height: 1.5; max-width: 360px; }
.editorial-body { padding: 64px var(--pad); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.story-grid h3 { font-size: 32px; margin-bottom: 16px; letter-spacing: -0.01em; }
.story-grid p { line-height: 1.7; color: var(--ink-soft); margin-bottom: 16px; }
.story-num { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--ochre); margin-bottom: 8px; }
@media (max-width: 900px) { .editorial-hero, .story-grid { grid-template-columns: 1fr; } }

.look-page { display: grid; grid-template-columns: repeat(12, 1fr); gap: 4px; padding: 4px; background: var(--ink); }
.look-page > div { position: relative; overflow: hidden; }
.look-page .l-1 { grid-column: 1 / 7; aspect-ratio: 4/5; }
.look-page .l-2 { grid-column: 7 / 13; aspect-ratio: 4/5; }
.look-page .l-3 { grid-column: 1 / 5; aspect-ratio: 3/4; }
.look-page .l-4 { grid-column: 5 / 9; aspect-ratio: 3/4; }
.look-page .l-5 { grid-column: 9 / 13; aspect-ratio: 3/4; }
.look-page .l-6 { grid-column: 1 / 13; aspect-ratio: 16/8; }
.look-page .l-7 { grid-column: 1 / 8; aspect-ratio: 4/5; }
.look-page .l-8 { grid-column: 8 / 13; aspect-ratio: 4/5; }
.look-cap { position: absolute; left: 16px; bottom: 16px; color: var(--bg); font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }

.journal-list { display: grid; gap: 0; }
.journal-row {
  display: grid; grid-template-columns: 1fr 2fr 1fr auto;
  gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding .3s;
}
.journal-row:hover { padding-left: 24px; }
.journal-row .num { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--muted); }
.journal-row h3 { font-size: 28px; letter-spacing: -0.01em; line-height: 1; }
.journal-row .cat { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rust); }
.journal-row .date { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-block h4 { font-size: 14px; font-family: var(--f-mono); letter-spacing: 0.16em; color: var(--ochre); margin-bottom: 12px; font-weight: 400; }
.contact-block p, .contact-block a { display: block; font-size: 22px; line-height: 1.4; letter-spacing: -0.01em; margin-bottom: 18px; }
.contact-form .field input, .contact-form .field textarea {
  background: transparent; border: 0; border-bottom: 1px solid var(--ink);
  padding: 12px 0; font-size: 16px; border-radius: 0;
}
.contact-form .field textarea { min-height: 100px; resize: vertical; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Account
   ========================================================= */
.account {
  min-height: 80vh; display: grid; grid-template-columns: 1fr 1fr;
}
.account-side { background: var(--ink); color: var(--bg); padding: 80px var(--pad); position: relative; overflow: hidden; }
.account-side h1 { font-size: clamp(60px, 9vw, 140px); color: var(--bg); line-height: 0.86; }
.account-side .tag { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--ochre); margin-bottom: 24px; }
.account-side .mega {
  position: absolute; bottom: -40px; left: -10px; right: -10px;
  font-family: var(--f-display); font-size: 28vw; line-height: 0.85;
  letter-spacing: -0.05em; color: transparent;
  -webkit-text-stroke: 1px rgba(241,234,221,0.18);
  pointer-events: none;
}
.account-form { padding: 80px var(--pad); }
.account-tabs { display: flex; gap: 32px; margin-bottom: 32px; border-bottom: 1px solid var(--ink); }
.account-tabs button {
  padding: 14px 0; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}
.account-tabs button.on { color: var(--ink); border-bottom-color: var(--ink); font-weight: 700; }
@media (max-width: 900px) { .account { grid-template-columns: 1fr; } .account-side { min-height: 40vh; } }

/* =========================================================
   Utility
   ========================================================= */
.text-rust { color: var(--rust); }
.text-ochre { color: var(--ochre); }
.text-olive { color: var(--olive); }
.bg-ink { background: var(--ink); color: var(--bg); }
.center-text { text-align: center; }
.spacer-l { height: 80px; }
.spacer-m { height: 40px; }
.divider {
  display: flex; align-items: center; gap: 24px;
  padding: 16px 0;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
}
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--ink); }

.scrolltext {
  white-space: nowrap; overflow: hidden;
  font-family: var(--f-display); font-size: clamp(80px, 16vw, 240px);
  letter-spacing: -0.04em; line-height: 1;
}
.scrolltext-track { display: inline-block; animation: marquee 60s linear infinite; }
.scrolltext-track > span { padding-right: 60px; display: inline-block; }
.scrolltext .it { font-family: serif; font-style: italic; font-weight: 400; }

/* Solid-pane top padding so content clears the fixed nav on non-home pages */
.page-enter > section:first-of-type:not(.hero):not(.editorial-hero):not(.account):not(.checkout) { padding-top: 110px; }
.editorial-hero { padding-top: 130px; }
.account-side { padding-top: 130px; }
.checkout-form { padding-top: 110px; }
.checkout-side { padding-top: 110px; }
.coll-toolbar { top: 90px; }

/* =========================================================
   Product card — multi-image carousel + arrows
   ========================================================= */
.pcard-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.pcard-slide.on { opacity: 1; pointer-events: auto; }
.pcard-slide .ph-img { position: absolute; inset: 0; }

.pcard-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(241, 234, 221, 0.72);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .2s ease, background .2s ease, transform .2s ease;
  z-index: 3;
}
.pcard-arrow svg { width: 18px; height: 18px; }
.pcard-arrow-l { left: 12px; }
.pcard-arrow-r { right: 12px; }
.pcard:hover .pcard-arrow,
.pcard:focus-within .pcard-arrow { opacity: 1; }
.pcard-arrow:hover { background: var(--bg); transform: translateY(-50%) scale(1.06); }

/* Dots — clickable, always visible */
.pcard-dots {
  position: absolute; left: 0; right: 0; bottom: 12px; z-index: 3;
  display: flex; gap: 6px; justify-content: center;
}
.pcard-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.55);
  transition: background .2s, transform .2s, width .2s;
  cursor: pointer;
}
.pcard-dots span.on { background: #fff; width: 18px; border-radius: 4px; }

/* Mobile tap-friendly: always show arrows on touch devices */
@media (hover: none) {
  .pcard-arrow { opacity: 0.85; }
}

/* =========================================================
   Product mosaic — picture-only clickable grid
   ========================================================= */
.mosaic-section {
  position: relative;
  z-index: 2;
  background: var(--bg);
  padding: 24px 4px;
}
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.mosaic-cell {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-2);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}
.mosaic-cell:hover { transform: scale(1.02); z-index: 2; }
.mosaic-cell .ph-img { position: absolute; inset: 0; }
.mosaic-cell .ph-img img { transition: transform .6s ease; }
.mosaic-cell:hover .ph-img img { transform: scale(1.06); }

@media (max-width: 1024px) {
  .mosaic-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 768px) {
  .mosaic-grid { grid-template-columns: repeat(3, 1fr); }
  .mosaic-section { padding: 18px 2px; }
}
.cat-showcase {
  position: relative;
  z-index: 2;
  background: var(--bg);
  display: flex; flex-direction: column;
  gap: 0;
}
.cat-block {
  display: flex; flex-direction: column;
  padding-bottom: 16px;
}
.cat-stage {
  position: relative;
  width: 100%;
  /* Tall enough that the sticky label has visible travel distance */
  aspect-ratio: 16 / 12;
  min-height: 70vh;
  overflow: visible; /* sticky child needs visible to escape parent */
  background: var(--ink);
}
.cat-stage > .ph-img { position: absolute; inset: 0; }
.cat-stage > .ph-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-stage-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(21,17,13,0.35) 0%, rgba(21,17,13,0.05) 40%, rgba(21,17,13,0.45) 100%);
  z-index: 1;
}

/* Small left-side label — starts at top of image, sticks to viewport top so it
   appears to travel down the image as the user scrolls through. */
.cat-sticky-label {
  position: sticky;
  top: 70px;
  left: 0;
  z-index: 3;
  display: inline-flex; flex-direction: column;
  align-items: flex-start;
  gap: 0;
  color: var(--bg);
  padding: 18px 0 0 20px;
  width: max-content;
  max-width: 60vw;
  margin-left: 0;
  pointer-events: none;
}
.cat-sticky-name {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: none;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
  margin-bottom: 18px;
  font-weight: 700;
}
.cat-sticky-sub {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}
.cat-shop-now {
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0;
  padding: 16px 44px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.95);
  background: transparent;
  color: var(--bg);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.01em;
  pointer-events: auto;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}
.cat-shop-now:hover { background: var(--bg); color: var(--ink); transform: translateY(-1px); text-shadow: none; }
@media (max-width: 768px) {
  .cat-sticky-label { top: 64px; left: 0 !important; right: 0; width: 100%; max-width: 100%; padding: 14px 16px 0; align-items: center; text-align: center; }
  .cat-sticky-name { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 700; font-size: clamp(24px, 6.2vw, 32px); letter-spacing: -0.02em; margin-bottom: 18px; }
  .cat-shop-now { padding: 13px 34px; font-size: 14px; font-weight: 500; border-width: 1.5px; }
}

/* The wider container needs to allow sticky positioning relative to the
   cat-stage scrollable height. cat-stage has its own min-height so sticky
   can find headroom inside it. */
.cat-stage { contain: layout; }

.cat-products {
  padding: 22px 16px 0;
}
/* Category blocks sit over the dark fixed hero — make their product text white */
.cat-products .pcard-title { color: #FFFFFF; }
.cat-products .pcard-price,
.cat-products .drops-grid-luxe .pcard-price { color: #FFFFFF; }
.cat-products .pcard-add { color: #FFFFFF; border-color: rgba(255,255,255,0.7); background: transparent; }
.cat-products .pcard-add:hover { background: #FFFFFF; color: var(--ink); }
.cat-cta .discover-pill { color: #FFFFFF; }
.cat-cta .discover-pill::after { background: #FFFFFF; }
.cat-cta {
  display: flex; justify-content: center;
  padding: 22px 0 4px;
}
.cat-grid-4 {
  grid-template-columns: repeat(4, 1fr) !important;
}

/* Stagger-rise animation — controlled by .in on the section root.
   Gated behind .klaks-anim so cards show without JS. */
.klaks-anim .cat-block { opacity: 0; transform: translateY(70px); transition: opacity .6s ease, transform .7s cubic-bezier(.22, 1, .36, 1); will-change: opacity, transform; }
.klaks-anim .cat-block.in { opacity: 1; transform: translateY(0); }

/* Responsive tweaks */
@media (max-width: 1024px) {
  .cat-stage { aspect-ratio: 16 / 12; min-height: 60vh; }
  .cat-grid-4 { grid-template-columns: repeat(3, 1fr) !important; }
  .cat-grid-4 > *:nth-child(4) { display: none; } /* show 3 on tablet to avoid wrap */
}
@media (max-width: 768px) {
  .cat-stage { aspect-ratio: 4 / 5; min-height: 70vh; }
  .cat-sticky-label { top: 80px; left: 0 !important; right: 0; width: 100%; max-width: 100%; margin-left: 0; padding: 10px 16px 0; align-items: center; text-align: center; }
  .cat-sticky-name { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 700; font-size: clamp(24px, 6.2vw, 32px); letter-spacing: -0.02em; }
  .cat-sticky-sub { font-size: 10px; letter-spacing: 0.14em; }
  .cat-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .cat-grid-4 > *:nth-child(4) { display: block; }
  .cat-products { padding: 22px 8px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .klaks-anim .cat-block { transition: opacity .3s ease !important; transform: none !important; }
}
/* =========================================================
   Standardized grid gaps across the whole site
   ========================================================= */
.drops-grid,
.drops-grid-luxe,
.coll-grid {
  gap: 28px 4px;
}
@media (max-width: 768px) {
  .drops-grid,
  .drops-grid-luxe,
  .coll-grid { gap: 22px 4px; }
}
@media (max-width: 480px) {
  .drops-grid,
  .drops-grid-luxe,
  .coll-grid { gap: 18px 4px; }
}

/* Tighter side padding on home drop section — lets cards run wider */
.drop-section { padding-left: 16px; padding-right: 16px; }
@media (max-width: 768px) {
  .drop-section { padding-left: 8px; padding-right: 8px; }
}
   Transforms on <main> would become the containing block for any
   position:fixed descendants (like the hero), causing layout offsets. */
/* Page transitions — opacity only, no transform.
   Transforms on <main> would become the containing block for any
   position:fixed descendants (like the hero), causing layout offsets. */
.page-enter { animation: pageIn .5s ease both; }
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =========================================================
   Hero scrim — keeps nav text legible against the photo
   ========================================================= */
.home-overlap .hero-clean { overflow: hidden; }
.home-overlap .hero-clean::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 180px;
  background: linear-gradient(180deg, rgba(21,17,13,0.55), rgba(21,17,13,0));
  pointer-events: none;
  z-index: 1;
}

/* =========================================================
   Klaks Luxe — drop grid section header (matches reference)
   ========================================================= */
.drop-section { padding-top: calc(56px * var(--density)); padding-bottom: calc(64px * var(--density)); }
.drop-section-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  padding-right: 36px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .drop-section-head { padding-right: 16px; }
}
.drop-section-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
.discover-pill {
  background: transparent;
  color: var(--ink);
  border: 0;
  padding: 4px 0;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
}
.discover-pill::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--ink); transition: right .35s ease;
}
.discover-pill:hover::after { right: 0; }

/* Reference-style product card grid — rounded media + accent price + carousel dots */
.drops-grid-luxe { gap: 28px 14px; }
.drops-grid-luxe .pcard-media { border-radius: 14px; }
.drops-grid-luxe .pcard-add {
  background: var(--bg);
  border-color: var(--ink);
}
.drops-grid-luxe .pcard-add:hover { background: var(--ink); color: var(--bg); }
.drops-grid-luxe .pcard-price { color: var(--ink); font-weight: 600; }
.drops-grid-luxe .pcard-wish {
  color: var(--bg);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.45));
}
.drops-grid-luxe .pcard-wish svg { width: 24px; height: 24px; }

/* Image carousel dots (decorative — indicates more product imagery) */
.pcard-dots {
  position: absolute; left: 0; right: 0; bottom: 14px; z-index: 2;
  display: flex; gap: 5px; justify-content: center;
}
.pcard-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.55);
  transition: background .25s, transform .25s;
}
.pcard-dots span.on { background: #fff; transform: scale(1.15); }
.pcard:hover .pcard-dots span:nth-child(1) { background: rgba(255,255,255,0.55); transform: scale(1); }
.pcard:hover .pcard-dots span:nth-child(2) { background: #fff; transform: scale(1.15); }

/* =========================================================
   Scroll-rise animation for product cards (staggered)
   Animation only applies when JS adds .klaks-anim to <html>.
   Without JS, cards are fully visible — never hidden.
   ========================================================= */
.klaks-anim .pcard-rise {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
.klaks-anim .pcard-rise.in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Rising-sheet section — Klaks Luxe.
   Section transform is driven continuously by scroll position in
   app.js (reversible: moves up as you scroll down, back down as you
   scroll up). It stays visible at all times so it can never get
   stuck hidden on the live site.
   ========================================================= */
.rising-sheet {
  position: relative;
  z-index: 2;
  border-radius: 60px 60px 0 0;
  background: var(--bg);
  box-shadow: 0 -28px 60px -24px rgba(21, 17, 13, 0.22);
  will-change: transform;
}

/* Hero sits behind; rising sheet scrolls over it */
.home-overlap .hero-clean { z-index: 0; }
.home-overlap .rising-sheet { z-index: 5; }
/* Opaque white sections that sit ABOVE the fixed hero (so it doesn't show
   through). Category blocks intentionally stay transparent. */
.home-overlap .mosaic-section,
.home-overlap .lookbook-white,
.home-overlap .early-clean {
  position: relative;
  z-index: 4;
  background: var(--bg);
}
/* Opaque floor below the LAST home section so the fixed hero can't show
   through in the gap before the footer. Categories above stay transparent. */
.home-overlap .early-clean::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 100%;
  height: 220vh;
  background: var(--bg);
  z-index: 0;
}
@media (max-width: 768px) {
  .home-overlap .rising-sheet { margin-top: 0; }
}

/* Responsive — tablet */
@media (max-width: 1024px) {
  .rising-sheet { border-radius: 44px 44px 0 0; }
  .drops-grid-luxe { grid-template-columns: repeat(3, 1fr); }
}
/* Responsive — mobile */
@media (max-width: 768px) {
  .rising-sheet { border-radius: 28px 28px 0 0; }
  .drops-grid-luxe { grid-template-columns: repeat(2, 1fr); }
}

/* Reduced motion — no transform, instant visibility */
@media (prefers-reduced-motion: reduce) {
  .klaks-anim .pcard-rise {
    transition: opacity .3s ease !important;
    transform: none !important;
  }
}

/* Responsive — drop grid */
@media (max-width: 1100px) {
  .drops-grid-luxe { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .drops-grid-luxe { grid-template-columns: repeat(2, 1fr); gap: 22px 12px; }
  .drop-section-head { padding-bottom: 18px; margin-bottom: 18px; }
  .drop-section-title { font-size: 26px; }
  .discover-pill { padding: 8px 14px; font-size: 10px; }
  .drops-grid-luxe .pcard-media { border-radius: 12px; }
  .drops-grid-luxe .pcard-wish svg { width: 22px; height: 22px; }
}
@media (max-width: 400px) {
  .drop-section-title { font-size: 22px; }
}


/* =========================================================
   Shopify theme — mobile menu + responsive header
   ========================================================= */
.mobile-menu-btn {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  align-items: center;
}
.mobile-menu-btn span {
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: transform .3s, opacity .3s;
}

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(380px, 100vw);
  background: var(--bg);
  z-index: 95;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
  display: flex; flex-direction: column;
  border-left: 1px solid var(--line);
}
.mobile-menu.show { transform: translateX(0); }
.mobile-menu-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-head .brand-wordmark { font-size: 20px; }
.mobile-menu-links {
  flex: 1;
  display: flex; flex-direction: column;
  padding: 24px 24px;
  gap: 6px;
}
.mobile-menu-link {
  padding: 14px 0;
  font-family: var(--f-display);
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu-link:last-child { border-bottom: 0; }
.mobile-menu-foot {
  display: flex; gap: 18px; flex-wrap: wrap;
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
}
.mobile-menu-foot a, .mobile-menu-foot button {
  background: transparent; border: 0; padding: 0; color: var(--ink);
  font: inherit; cursor: pointer;
}

/* Mobile responsive header — keep search/save/cart icons in the bar,
   move only the text links into the hamburger menu. */
@media (max-width: 900px) {
  .nav-inner {
    grid-template-columns: auto 1fr auto !important;
    gap: 10px !important;
  }
  .nav-left, .nav-right .nav-link { display: none !important; }
  .nav-right { gap: 12px !important; }
  .nav-right .nav-icon { display: inline-flex !important; }
  .nav-icon-account { display: none !important; } /* account lives in the menu */
  .nav .cart-pill { padding: 6px 10px; font-size: 10px; }
  .mobile-menu-btn { display: inline-flex !important; }
  .brand-wordmark { font-size: 22px; }
  .brand-wordmark .reg { font-size: 8px; }
}
@media (max-width: 480px) {
  .nav-right { gap: 9px !important; }
  .nav .cart-pill { padding: 5px 9px; font-size: 9px; }
  .nav .cart-pill .count { padding: 1px 5px; min-width: 14px; }
}

/* Hero image — show a dark fallback until the JPG loads so it never goes blank-white */
.hero-real { background-color: #15110D !important; }
.hero-pic, .hero-pic picture { width: 100%; height: 100%; display: block; }
.hero-pic img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Subtle scrim at top of hero so the white nav text always reads */
.home-overlap .hero-clean::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 160px;
  background: linear-gradient(180deg, rgba(21,17,13,0.5), rgba(21,17,13,0));
  z-index: 1;
  pointer-events: none;
}


/* =========================================================
   Off-canvas overflow guard
   Cart / wishlist / mobile-menu panels sit off-screen via
   translateX(100%). Because they're position:fixed, an ancestor's
   overflow-x:hidden can't always clip them on mobile Safari, so pin
   them flush to the right edge when closed and only allow them to
   occupy space once shown.
   ========================================================= */
.drawer, .mobile-menu { right: 0; max-width: 100vw; }
.drawer:not(.show), .mobile-menu:not(.show) { visibility: hidden; }
.drawer.show, .mobile-menu.show { visibility: visible; }
.search-overlay:not(.show) { visibility: hidden; }
.search-overlay.show { visibility: visible; }


/* =========================================================
   Category Stacked Deck — bluorng-style (one on top, peek behind)
   ========================================================= */
.cat-stack-section { position: relative; z-index: 5; background: var(--bg); padding: 20px 0 40px; overflow: hidden; }
/* Stacked category deck shows on mobile only — hidden on desktop/tablet */
@media (min-width: 769px) { .cat-stack-section { display: none !important; } }
.cat-stack {
  position: relative;
  width: 100%;
  height: 64vw; max-height: 560px; min-height: 380px;
  margin: 0 auto;
  touch-action: pan-y;
  cursor: grab;
}
.cat-stack:active { cursor: grabbing; }
.cat-stack-card {
  position: absolute; top: 50%; left: 50%;
  width: 40%; max-width: 380px;
  aspect-ratio: 3 / 4;
  border-radius: 18px; overflow: hidden;
  transform: translate(-50%, -50%);
  transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .35s ease;
  box-shadow: 0 24px 60px -20px rgba(21,17,13,0.45);
  background: var(--bg-2);
  will-change: transform;
  display: block; text-decoration: none;
}
.cat-stack-card img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.cat-stack-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.6) 100%); }
.cat-stack-name {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  color: #fff; text-align: center;
  font-family: var(--f-sans); font-weight: 500; letter-spacing: 0.01em;
  font-size: clamp(13px, 1.4vw, 18px);
  padding: 24px 14px 18px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
  opacity: 0; transition: opacity .35s ease;
}
.cat-stack-card.is-active .cat-stack-name { opacity: 1; }
.cat-stack-card:not(.is-active) { filter: brightness(0.82); }

.cat-stack-dots { display: flex; gap: 7px; justify-content: center; margin-top: 22px; }
.cat-stack-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line-strong); cursor: pointer; transition: background .2s, width .2s; }
.cat-stack-dot.on { background: var(--ink); width: 20px; border-radius: 4px; }

@media (max-width: 1024px) {
  .cat-stack-card { width: 52%; }
}
@media (max-width: 768px) {
  .cat-stack { height: 118vw; max-height: 620px; }
  .cat-stack-card { width: 66%; border-radius: 18px; }
  .cat-stack-name { font-size: 15px; padding: 22px 12px 16px; }
}
@media (max-width: 480px) {
  .cat-stack-card { width: 70%; }
}

/* =========================================================
   Video Deck — stacked vertical-reel cards (above lookbook)
   ========================================================= */
.vid-stack-section { position: relative; z-index: 4; background: var(--bg); padding: 28px 0 36px; overflow: hidden; }
.vid-stack-heading {
  font-family: var(--f-display); font-size: clamp(24px, 3vw, 44px);
  text-transform: uppercase; letter-spacing: -0.02em; text-align: center; margin: 0 0 24px;
}
.vid-stack {
  position: relative; width: 100%;
  height: 70vw; max-height: 660px; min-height: 460px;
  margin: 0 auto; touch-action: pan-y; cursor: grab;
}
.vid-stack:active { cursor: grabbing; }
.vid-stack-card {
  position: absolute; top: 50%; left: 50%;
  width: 30%; max-width: 320px;
  transform: translate(-50%, -50%);
  transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .35s ease;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  will-change: transform;
}
.vid-stack-media {
  position: relative; width: 100%; aspect-ratio: 9 / 16;
  border-radius: 18px; overflow: hidden; background: #000;
  box-shadow: 0 24px 60px -20px rgba(21,17,13,0.45);
}
.vid-stack-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vid-stack-label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  color: #fff; text-align: center; font-family: var(--f-sans); font-weight: 600;
  font-size: 14px; padding: 30px 12px 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
}
.vid-stack-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 30px; border-radius: 999px;
  border: 1.5px solid var(--ink); color: var(--ink); background: transparent;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  text-decoration: none; transition: background .2s, color .2s, opacity .3s;
  opacity: 0; pointer-events: none;
}
.vid-stack-card.is-active .vid-stack-cta { opacity: 1; pointer-events: auto; }
.vid-stack-cta:hover { background: var(--ink); color: #fff; }
.vid-stack-card:not(.is-active) .vid-stack-media { filter: brightness(0.82); }
.vid-stack-dots { display: flex; gap: 7px; justify-content: center; margin-top: 20px; }
.vid-stack-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line-strong); cursor: pointer; transition: background .2s, width .2s; }
.vid-stack-dot.on { background: var(--ink); width: 20px; border-radius: 4px; }
@media (max-width: 1024px) {
  .vid-stack-card { width: 44%; }
}
@media (max-width: 768px) {
  .vid-stack { height: 150vw; max-height: 720px; }
  .vid-stack-card { width: 64%; }
  .vid-stack-cta { padding: 11px 26px; font-size: 11px; }
}
@media (max-width: 480px) {
  .vid-stack-card { width: 70%; }
}
