/* 9 ELEVEN — CHROME / OFF-WHITE PROTOTYPE */
:root {
  --bone: #e9e6df;
  --bone-2: #f4f2ed;
  --ink: #0b0b0b;
  --muted: #76736d;
  --line: rgba(11, 11, 11, 0.2);
  --lime: #d7ff35;
  --header-h: 78px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-in: cubic-bezier(.76, 0, .24, 1);
  --anim-play: running;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bone); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bone);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  cursor: none;
}
body.locked { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { color: inherit; }
button { cursor: none; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { color: var(--bone); background: var(--ink); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.hp-field {
  position: absolute; left: -10000px; top: auto; width: 1px; height: 1px;
  overflow: hidden; opacity: 0; pointer-events: none;
}

.noise {
  position: fixed; inset: 0; z-index: 9997; opacity: .04; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  will-change: opacity;
}

.cursor { position: fixed; left: 0; top: 0; border-radius: 50%; pointer-events: none; z-index: 10000; transform: translate(-50%,-50%); }
.cursor-dot { width: 5px; height: 5px; background: var(--ink); }
.cursor-ring { width: 35px; height: 35px; border: 1px solid var(--ink); transition: width .25s var(--ease), height .25s var(--ease), background .25s, border .25s; mix-blend-mode: difference; }
.cursor-ring.is-active { width: 58px; height: 58px; background: #fff; border-color: #fff; }

.text-btn, .nav-link, .icon-btn, .sound-toggle, .close-btn {
  border: 0; background: none; padding: 0; text-transform: uppercase;
}

/* INTRO */
.intro {
  position: fixed; inset: 0; z-index: 9000; overflow: hidden;
  color: var(--ink); background: var(--bone-2);
  transition: clip-path 1.1s var(--ease-in), visibility 1.1s;
  clip-path: inset(0 0 0 0);
}
.intro.is-leaving { clip-path: inset(0 0 100% 0); visibility: hidden; }
.intro-pattern, .mobile-menu-pattern {
  position: absolute; inset: -40px; opacity: .11;
  background-image:
    radial-gradient(circle at center, transparent 0 26px, #111 27px 28px, transparent 29px),
    url("data:image/svg+xml,%3Csvg width='86' height='86' viewBox='0 0 86 86' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='43' y='49' text-anchor='middle' font-family='Arial Black,Arial' font-size='18' font-weight='900' fill='%23000'%3E9/11%3C/text%3E%3C/svg%3E");
  background-size: 86px 86px;
  transform: translate3d(0,0,0) rotate(-4deg) scale(1.1);
  /* Very slow drift — transform-only, GPU-composited. The eye still sees movement, but it's only ~2deg/sec of work. */
  animation: patternDrift 180s linear infinite;
  animation-play-state: var(--anim-play);
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: center;
}
.mobile-menu-pattern { display: none; }
.mobile-menu.is-open .mobile-menu-pattern { display: block; }

/* Pause the drift while the tab is hidden — saves battery/CPU when user isn't looking */
@media (prefers-reduced-motion: reduce) {
  .intro-pattern, .mobile-menu-pattern { animation: none; }
}

/* Stop painting the pattern entirely once the intro has left the screen */
.intro.is-leaving .intro-pattern,
.intro[aria-hidden="true"] .intro-pattern { display: none; }
.intro-pattern::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(244,242,237,.2) 5%, rgba(244,242,237,.82) 46%, rgba(244,242,237,.1) 100%);
}
.intro-topline, .intro-bottomline {
  position: absolute; z-index: 5; left: 28px; right: 28px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  font-size: 10px; font-weight: 700; letter-spacing: .16em;
}
.intro-topline { top: 24px; grid-template-columns: 1fr auto; }
.intro-topline > *:last-child { justify-self: end; }
.intro-bottomline { bottom: 24px; }
/* The 2nd and 3rd children were placed, the 1st was not — so the sound toggle
   stretched across its whole 1fr column (612px wide for a ~60px label) and
   swallowed clicks anywhere in the bottom-left corner. */
.intro-bottomline > *:first-child { justify-self: start; }
.intro-bottomline > *:nth-child(2) { justify-self: center; }
.intro-bottomline > *:last-child { justify-self: end; }
.intro-lang { font-weight: 800; border-bottom: 1px solid; }
.intro-stage {
  position: relative; z-index: 2; min-height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  perspective: 1100px;
}
.intro-kicker, .intro-hint {
  margin: 0; font-size: 9px; font-weight: 800; letter-spacing: .28em;
}
.intro-kicker { position: absolute; top: 14.5%; }
.intro-hint { position: absolute; bottom: 14%; opacity: .55; }
.coin-wrap {
  --rx: -8deg; --ry: 0deg; --gx: 45%; --gy: 35%;
  width: clamp(210px, 28vw, 390px); aspect-ratio: 1;
  position: relative; transform-style: preserve-3d;
}
.coin-shadow {
  position: absolute; width: 76%; height: 13%; left: 12%; bottom: -6%; border-radius: 50%;
  background: rgba(0,0,0,.28); transform: translateZ(-40px) translate(var(--shadow-x, 0), var(--shadow-y, 0));
  transition: transform .25s ease;
}
.coin {
  position: absolute; inset: 4%; transform-style: preserve-3d;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform .16s ease-out;
  will-change: transform;
}
.coin-wrap:not(.is-tracking) .coin { animation: coinIdle 8s ease-in-out infinite; animation-play-state: var(--anim-play); }
.coin-edge {
  position: absolute; inset: -8px; border-radius: 50%; transform: translateZ(-14px);
  background: conic-gradient(from 20deg, #0b0b0b, #eee 5%, #575757 11%, #fafafa 18%, #242424 27%, #ddd 39%, #111 47%, #fff 58%, #555 68%, #eee 78%, #171717 88%, #fafafa);
  box-shadow: 0 25px 60px rgba(0,0,0,.28);
}
.coin-face {
  position: absolute; inset: 0; overflow: hidden; border-radius: 50%; transform: translateZ(4px);
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,.95) 0 3%, transparent 20%),
    radial-gradient(circle at 60% 72%, #bbb 0, #ddd 12%, transparent 40%),
    conic-gradient(from 140deg, #f8f8f8, #2d2d2d 12%, #d8d8d8 23%, #fff 30%, #5f5f5f 43%, #f5f5f5 55%, #343434 67%, #ddd 78%, #fff 88%, #656565);
  border: 2px solid rgba(255,255,255,.75);
  box-shadow: inset 0 0 0 9px rgba(10,10,10,.18), inset 0 0 35px rgba(0,0,0,.55), 0 0 0 1px #111;
}
.coin-rings {
  position: absolute; inset: 8%; border: 1px solid rgba(0,0,0,.4); border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255,255,255,.1), inset 0 0 15px rgba(255,255,255,.4);
}
.coin-face img {
  position: absolute; z-index: 2; width: 74%; left: 13%; top: 13%;
  filter: brightness(0) contrast(1.8) drop-shadow(0 2px 1px rgba(255,255,255,.35));
  transform: translateZ(18px);
}
.coin-glare {
  position: absolute; z-index: 3; inset: -30%; pointer-events: none;
  background: radial-gradient(circle at var(--gx) var(--gy), rgba(255,255,255,.95) 0, rgba(255,255,255,.32) 8%, transparent 27%);
  mix-blend-mode: screen;
}
.intro-wordmark {
  margin: clamp(14px, 2vh, 26px) 0 0; font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(36px, 5.4vw, 84px); line-height: .85; letter-spacing: -.055em;
}
.intro-wordmark span { font-style: italic; }
.enter-btn {
  display: inline-flex; align-items: center; justify-content: center; margin-top: 30px;
  padding: 12px 0 9px;
  border: 0; border-bottom: 2px solid; background: none; font-size: 12px; font-weight: 900; letter-spacing: .08em;
  transition: padding .35s var(--ease);
}
.enter-btn:hover { padding-inline: 8px; }
.sound-toggle { display: inline-flex; align-items: center; gap: 9px; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.sound-bars { display: flex; align-items: center; gap: 2px; height: 12px; }
.sound-bars i { display: block; width: 2px; height: 3px; background: currentColor; }
.sound-toggle[aria-pressed="true"] .sound-bars i { animation: soundBars .8s ease-in-out infinite alternate; animation-play-state: var(--anim-play); }
.sound-toggle[aria-pressed="true"] .sound-bars i:nth-child(2) { animation-delay: -.2s; }
.sound-toggle[aria-pressed="true"] .sound-bars i:nth-child(3) { animation-delay: -.5s; }
.sound-toggle[aria-pressed="true"] .sound-bars i:nth-child(4) { animation-delay: -.1s; }
.intro.entering .coin { animation: coinEnter .85s var(--ease-in) forwards; }
.intro.entering .intro-wordmark, .intro.entering .enter-btn, .intro.entering .intro-kicker, .intro.entering .intro-hint { animation: fadeOut .35s ease forwards; }

/* CHROME TEXT */
.chrome-text {
  color: transparent;
  background: linear-gradient(180deg, #161616 0%, #fbfbfb 20%, #555 36%, #f7f7f7 51%, #181818 67%, #cfcfcf 84%, #fff 100%);
  -webkit-background-clip: text; background-clip: text;
  filter: drop-shadow(0 1px 0 #000);
}

/* SITE CHROME */
.site { min-height: 100vh; transition: opacity .4s ease; }
.site.is-hidden { visibility: hidden; opacity: 0; }
.site.is-visible { visibility: visible; opacity: 1; }
.announcement {
  height: 27px; overflow: hidden; color: var(--bone); background: var(--ink);
  font-size: 9px; line-height: 27px; font-weight: 800; letter-spacing: .16em;
}
.marquee { overflow: hidden; white-space: nowrap; }
.marquee-track { width: max-content; display: flex; gap: 34px; animation: marquee 40s linear infinite; will-change: transform; animation-play-state: var(--anim-play); }
.marquee-track b { color: var(--lime); }
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h); padding: 0 32px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px;
  background: rgba(233,230,223,.96); border-bottom: 1px solid transparent;
  transition: height .35s var(--ease), border .35s;
}
.site-header.is-scrolled { height: 62px; border-color: var(--line); }
.header-logo { width: 148px; }
.header-logo img { width: 100%; filter: brightness(0); }
.desktop-nav { display: flex; align-items: center; gap: 22px; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.desktop-nav a, .nav-link { position: relative; }
.desktop-nav a::after, .nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: currentColor;
  transition: right .35s var(--ease);
}
.desktop-nav a:hover::after, .nav-link:hover::after { right: 0; }
.nav-right { justify-content: flex-end; }
.cart-toggle sup { display: inline-grid; place-items: center; min-width: 18px; height: 18px; margin-inline-start: 2px; border: 1px solid; border-radius: 50%; font-size: 8px; }
.header-left, .header-right {
  display: flex; align-items: center; gap: 22px; min-width: 0;
}
.header-right { justify-content: flex-end; }
.menu-btn {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  flex: none; align-self: center;
  width: 40px; height: 40px; gap: 6px;
}
.menu-btn span {
  display: block; width: 22px; height: 1.5px; margin: 0; background: var(--ink);
  transition: transform .35s var(--ease);
}
.menu-btn.is-open { gap: 0; }
.menu-btn.is-open span:first-child { transform: translateY(0.75px) rotate(45deg); }
.menu-btn.is-open span:last-child { transform: translateY(-0.75px) rotate(-45deg); }
.mobile-cart { display: none; }

/* GLOBAL PAGE */
.page { min-height: 70vh; animation: pageIn .7s var(--ease) both; }
.page-head {
  min-height: 43vh; padding: 8vw 28px 35px; display: flex; flex-direction: column; justify-content: flex-end;
  border-bottom: 1px solid var(--ink); position: relative; overflow: hidden;
}
.page-head .eyebrow { margin-bottom: 15px; }
.page-title {
  margin: 0; font-family: Impact, "Arial Black", sans-serif; font-size: clamp(52px, 10vw, 140px);
  line-height: .94; letter-spacing: .02em; text-transform: uppercase;
}
.page-title.is-long {
  font-size: clamp(36px, 8.4vw, 88px);
  letter-spacing: .04em;
  line-height: 1.02;
  overflow-wrap: anywhere;
}
.page-head-meta { position: absolute; right: 28px; bottom: 35px; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-align: right; }
[dir="rtl"] .page-head-meta { right: auto; left: 28px; text-align: left; }
.eyebrow { font-size: 9px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.reveal { opacity: 0; transform: translateY(45px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* HOME HERO */
.hero {
  position: relative; min-height: calc(100svh - 105px); overflow: hidden;
  border-bottom: 1px solid var(--ink); isolation: isolate;
}
.hero-grid {
  position: absolute; inset: 0; opacity: .3; z-index: -1;
  background-image: linear-gradient(to right, transparent calc(100% - 1px), var(--line) 1px), linear-gradient(to bottom, transparent calc(100% - 1px), var(--line) 1px);
  background-size: calc(100vw / 6) 100%, 100% 25%;
}
.hero-copy { position: absolute; z-index: 2; left: 2vw; right: 2vw; top: 7%; pointer-events: none; }
.hero-title {
  margin: 0; text-align: center; font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(76px, 15.5vw, 250px); line-height: .75; letter-spacing: -.065em; white-space: nowrap;
  /* Impact's word space is wide, and the negative letter-spacing above does not
     touch it — that is what left the gap between "9" and "ELEVEN". Tightening
     the word space (rather than deleting the space character) keeps the two
     words separable, so the narrow-screen rule below can still wrap them. */
  word-spacing: -.14em;
}
.hero-title .outline { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.hero-product-stage {
  --mx: 0deg; --my: 0deg; position: absolute; z-index: 3; width: min(50vw, 690px); height: 84%;
  left: 50%; bottom: 0; transform: translateX(-50%); perspective: 1100px;
}
/* THE CREW, SOLO — one piece, hero-scale. Same floating language as the
   shop strip (own float phase, pointer tilt, soft grounded shadow) but
   nothing else competes: the crewneck owns the frame. A whisper of tilt
   keeps it alive while it drifts. */
.hero-solo {
  position: absolute; left: 50%; bottom: 0; width: 100%; height: 100%; object-fit: contain;
  transform-origin: 50% 100%;
  translate: -50% 0;
  filter: drop-shadow(0 28px 24px rgba(0,0,0,.16));
  will-change: transform;
  animation: heroSoloFloat 9s ease-in-out infinite;
  animation-play-state: var(--anim-play);
}
@keyframes heroSoloFloat {
  0%, 100% { transform: rotate(-1.5deg) rotateX(var(--mx)) rotateY(var(--my)) translateY(0); }
  50% { transform: rotate(-1.5deg) rotateX(var(--mx)) rotateY(var(--my)) translateY(-16px); }
}
.hero-side { position: absolute; z-index: 5; top: 51%; width: 180px; font-size: 10px; }
.hero-side.left { left: 28px; }
.hero-side.right { right: 28px; text-align: right; }
.hero-side p { margin: 0 0 14px; }
.hero-side .line { height: 1px; background: var(--ink); margin-bottom: 14px; }
.hero-index { font-family: Impact, sans-serif; font-size: 42px; line-height: 1; }
.hero-cta {
  position: absolute; z-index: 6; left: 28px; bottom: 28px; display: inline-flex; align-items: center; gap: 0;
  padding: 14px 22px; color: var(--bone); background: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .12em;
}
/* `gap` was 22px while the only sibling was an empty <b>, so every hero CTA
   carried 22px of dead space on its trailing edge. The empty node is gone and
   the gap is 0; the breathing room now comes from symmetric padding instead. */
.hero-scroll { position: absolute; right: 28px; bottom: 28px; font-size: 9px; font-weight: 700; letter-spacing: .16em; writing-mode: vertical-rl; }
.orbit-badge {
  position: absolute; z-index: 4; top: 20%; right: 9%; width: 116px; aspect-ratio: 1; display: grid; place-items: center;
  border: 1px solid var(--ink); border-radius: 50%;
}
/* Slow spin only on capable desktops — skip on touch to save battery/GPU */
@media (pointer: fine) and (min-width: 1025px) {
  .orbit-badge { animation: spin 22s linear infinite; }
}
.orbit-badge::before { content: "DROP 001 · NINE ELEVEN · DROP 001 ·"; width: 90%; text-align: center; font-size: 8px; font-weight: 900; }
.orbit-badge::after { content: "11"; position: absolute; font-family: Impact, sans-serif; font-size: 31px; }

/* MANIFESTO */
.manifesto { padding: clamp(90px, 13vw, 190px) 28px; border-bottom: 1px solid var(--ink); }
.manifesto-grid { display: grid; grid-template-columns: 1fr 4fr 1fr; gap: 25px; }
.manifesto h2 {
  grid-column: 2; margin: 0; font-family: Impact, "Arial Black", sans-serif; font-size: clamp(55px, 9.2vw, 145px); line-height: .86; letter-spacing: -.045em; text-transform: uppercase;
}
.manifesto h2 em { font-style: normal; color: transparent; -webkit-text-stroke: 1px var(--ink); }
.manifesto-note { grid-column: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; font-size: 11px; }
.manifesto-note p { max-width: 350px; margin: 0; }
.manifesto-note p:last-child { justify-self: end; }

/* COLLECTION CARDS */
.section-head { padding: 28px; display: flex; align-items: flex-end; justify-content: space-between; border-bottom: 1px solid var(--ink); }
.section-head h2 { margin: 0; font-family: Impact, sans-serif; font-size: clamp(44px, 7vw, 100px); line-height: .8; letter-spacing: -.04em; }
.arrow-link { font-size: 10px; font-weight: 900; letter-spacing: .1em; border-bottom: 1px solid; padding-bottom: 5px; }
.collections { border-bottom: 1px solid var(--ink); }

/* PRODUCTS */
.product-section { padding-bottom: 70px; border-bottom: 1px solid var(--ink); }
.product-grid { display: grid; grid-template-columns: repeat(12, 1fr); }
.product-card { position: relative; grid-column: span 4; min-width: 0; border-bottom: 1px solid var(--ink); border-right: 1px solid var(--ink); }
[dir="rtl"] .product-card { border-right: 0; border-left: 1px solid var(--ink); }
.product-card:nth-child(3n) { border-inline-end: 0; }
/* ALL PRODUCTS — 2 per row */
.all-products-grid .product-card { grid-column: span 6; }
.all-products-grid .product-card:nth-child(3n) { border-inline-end: 1px solid var(--ink); }
.all-products-grid .product-card:nth-child(2n) { border-inline-end: 0; }
[dir="rtl"] .all-products-grid .product-card:nth-child(3n) { border-inline-end: 0; border-inline-start: 1px solid var(--ink); }
[dir="rtl"] .all-products-grid .product-card:nth-child(2n) { border-inline-start: 0; }
.product-media { position: relative; display: block; aspect-ratio: .92; overflow: hidden; background: #f4f3ef; }
.product-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 7%; mix-blend-mode: multiply; transition: opacity .55s var(--ease), transform .9s var(--ease); }
.product-media .back { opacity: 0; transform: scale(1.03); }
.product-card:hover .product-media .front { opacity: 0; transform: scale(.97); }
.product-card:hover .product-media .back { opacity: 1; transform: scale(1); }
.product-tag { position: absolute; top: 13px; left: 13px; z-index: 2; padding: 6px 8px; color: var(--bone); background: var(--ink); font-size: 8px; font-weight: 900; letter-spacing: .12em; }
[dir="rtl"] .product-tag { left: auto; right: 13px; }
/* The quick-add button used to be a direct child of .product-card, so
   `bottom: 13px` anchored it to the bottom of the whole card — on top of the
   name and price. It now lives in a wrapper around the image only, so it sits
   over the photo where it belongs and can never collide with the text. */
.product-media-wrap { position: relative; }
.quick-add {
  position: absolute; right: 13px; bottom: 13px; z-index: 3; width: 44px; height: 44px; display: grid; place-items: center;
  border: 1px solid var(--ink); border-radius: 50%; background: rgba(244,242,237,.88); font-size: 21px;
  transform: translateY(8px); opacity: 0; transition: opacity .4s, transform .4s var(--ease), background .3s, color .3s;
}
[dir="rtl"] .quick-add { right: auto; left: 13px; }
.product-card:hover .quick-add { opacity: 1; transform: none; }
.quick-add:hover { color: var(--bone); background: var(--ink); }
/* `align-items: start` keeps the price on the baseline of the name's FIRST
   line. Without it the price cell stretched to the full height of a wrapped
   name (3 lines for the sweatpants) and floated against nothing. */
/* Flex-wrap instead of a 2-column grid: `1fr` could not shrink below the
   name's longest word, so on a 180px card the price was pushed 29px outside
   the card and clipped. Now name and price share a line when they fit and the
   price drops to its own line when they don't — no breakpoint needed, and it
   holds for any product name length. */
.product-info { padding: 18px 16px 22px; display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 4px 10px; font-size: 15px; font-weight: 800; letter-spacing: .02em; }
.product-info h3 { flex: 1 1 auto; margin: 0; font-size: 17px; line-height: 1.2; }
.product-info p { flex: 0 0 auto; margin: 0; font-size: 15px; line-height: 1.2; font-variant-numeric: tabular-nums; white-space: nowrap; }
.product-color { flex: 1 0 100%; color: var(--muted); font-size: 11px; font-weight: 500; letter-spacing: .06em; }

/* EDITORIAL BAND */
.editorial { position: relative; min-height: 80vh; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; color: var(--bone); background: var(--ink); }
.editorial-copy { padding: 70px 28px; display: flex; flex-direction: column; justify-content: space-between; }
.editorial-copy h2 { margin: 0; font-family: Impact, sans-serif; font-size: clamp(60px, 9vw, 140px); line-height: .78; letter-spacing: -.045em; }
.editorial-copy h2 span { display: block; color: transparent; -webkit-text-stroke: 1px var(--bone); }
.editorial-copy p { width: min(360px, 90%); margin: 35px 0 0; font-size: 11px; line-height: 1.5; }
.editorial-art { position: relative; background: var(--bone); overflow: hidden; }
.editorial-art::before { content: "9/11  9/11  9/11  9/11  9/11"; position: absolute; z-index: 0; inset: 0; font-family: Impact, sans-serif; font-size: 10vw; line-height: .8; color: rgba(0,0,0,.08); transform: rotate(-12deg) scale(1.3); }
.editorial-art img { position: absolute; z-index: 1; width: 82%; height: 82%; left: 9%; top: 9%; object-fit: contain; mix-blend-mode: multiply; transform: rotate(8deg) scale(1.05); filter: drop-shadow(25px 30px 20px rgba(0,0,0,.22)); }
/* 82%/9% rather than 90%/5%: rotating 8deg grows the element's bounding box
   (w·cos8 + h·sin8), and scale(1.05) grows it again. At 90% that came out
   747x731 inside a 703x682 panel, so `overflow: hidden` clipped 24px off the
   hood and the hem — the only product on the site shown cropped. */

/* SHOP */
.shop-product-grid .product-card { grid-column: span 3; }
.shop-product-grid .product-card:nth-child(3n) { border-inline-end: 1px solid var(--ink); }
.shop-product-grid .product-card:nth-child(4n) { border-inline-end: 0; }

/* PRODUCT DETAIL */
.product-page { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(340px, .7fr); border-bottom: 1px solid var(--ink); }
.product-gallery { display: grid; grid-template-columns: 1fr 1fr; border-right: 1px solid var(--ink); }
[dir="rtl"] .product-gallery { border-right: 0; border-left: 1px solid var(--ink); }
.gallery-image { aspect-ratio: .84; background: #f4f3ef; border-bottom: 1px solid var(--ink); overflow: hidden; }
.gallery-image:first-child { grid-column: 1 / -1; aspect-ratio: 1.25; }
.gallery-image:nth-child(even) { border-right: 1px solid var(--ink); }
.gallery-image img { width: 100%; height: 100%; object-fit: contain; padding: 7%; mix-blend-mode: multiply; transition: transform 1s var(--ease); }
.gallery-image:hover img { transform: scale(1.05); }
.product-panel { padding: 60px 35px 35px; position: sticky; top: 62px; align-self: start; min-height: calc(100vh - 62px); display: flex; flex-direction: column; }
.product-breadcrumb { font-size: 8px; font-weight: 800; letter-spacing: .14em; color: var(--muted); }
.product-name { margin: 35px 0 8px; font-family: Impact, sans-serif; font-size: clamp(44px, 5vw, 78px); line-height: .82; letter-spacing: -.035em; }
.product-price { margin: 12px 0 35px; font-size: 13px; font-weight: 800; }
.panel-label { display: flex; justify-content: space-between; margin: 20px 0 10px; font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.panel-label a { border-bottom: 1px solid; }
/* Auto-sized columns: the row always fills, whatever sizes are in stock. */
/* Auto-sized columns: the row always fills, whatever sizes are in stock. */
.size-options { position: relative; display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 4px; padding: 4px; }
.size-btn { position: relative; z-index: 1; min-height: 46px; border: 0; background: transparent; font-size: 10px; font-weight: 800; letter-spacing: .06em; }
.size-btn.is-selected { color: var(--bone); background: transparent; }
.add-btn { width: 100%; min-height: 58px; margin: 16px 0; border: 1px solid var(--ink); color: var(--bone); background: var(--ink); font-size: 10px; font-weight: 900; letter-spacing: .12em; transition: color .4s, background .4s; }
.add-btn:hover { color: var(--ink); background: var(--lime); }
.stock-line { margin: 0; font-size: 9px; }
.stock-dot { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: #6cae45; box-shadow: 0 0 0 3px rgba(108,174,69,.15); }
[dir="rtl"] .stock-dot { margin-right: 0; margin-left: 6px; }
.product-accordions { margin-top: auto; padding-top: 35px; }
.accordion { border-top: 1px solid var(--ink); }
.accordion:last-child { border-bottom: 1px solid var(--ink); }
.accordion button { width: 100%; padding: 16px 0; display: flex; justify-content: space-between; border: 0; background: none; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-align: inherit; }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); font-size: 10px; line-height: 1.6; }
.accordion-content p { margin: 0 0 18px; }
/* Delivery & returns now carries real terms, so the cap has to clear them. */
.accordion.is-open .accordion-content { max-height: 620px; }
.accordion .plus { transition: transform .4s var(--ease); }
.accordion.is-open .plus { transform: rotate(45deg); }
.related-products { padding-bottom: 70px; }

/* CART DRAWER / SEARCH */
.overlay { position: fixed; inset: 0; z-index: 890; background: rgba(0,0,0,.42); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.overlay.is-open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; z-index: 900; top: 0; right: 0; width: min(520px, 100vw); height: 100%; display: flex; flex-direction: column;
  background: var(--bone-2); transform: translateX(102%); transition: transform .7s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,.14);
}
[dir="rtl"] .cart-drawer { right: auto; left: 0; transform: translateX(-102%); }
.cart-drawer.is-open { transform: none; }
.drawer-head, .search-head { min-height: 78px; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--ink); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.close-btn { font-size: 30px; font-weight: 300; line-height: 1; }
.drawer-items { flex: 1; overflow-y: auto; }
.drawer-item { display: grid; grid-template-columns: 120px 1fr auto; gap: 15px; padding: 17px; border-bottom: 1px solid var(--line); }
.drawer-item img { width: 120px; height: 135px; object-fit: contain; background: #fff; mix-blend-mode: multiply; }
.drawer-item h4 { margin: 4px 0 7px; font-size: 10px; }
.drawer-item p { margin: 0 0 18px; color: var(--muted); font-size: 9px; }
.qty { display: inline-flex; align-items: center; border: 1px solid; }
.qty button, .qty span { width: 28px; height: 28px; display: grid; place-items: center; border: 0; background: none; font-size: 10px; }
.remove-item { align-self: start; border: 0; border-bottom: 1px solid; background: none; font-size: 8px; font-weight: 800; }
.drawer-footer { padding: 20px 24px 26px; border-top: 1px solid var(--ink); }
.drawer-total { display: flex; justify-content: space-between; margin-bottom: 17px; font-size: 12px; font-weight: 900; }
.drawer-note { margin: 0 0 15px; color: var(--muted); font-size: 9px; }
.drawer-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.drawer-actions a, .drawer-actions button { min-height: 48px; display: grid; place-items: center; border: 1px solid var(--ink); background: transparent; font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.drawer-actions .checkout { color: var(--bone); background: var(--ink); }
.empty-cart { height: 100%; display: grid; place-content: center; text-align: center; padding: 50px; }
.empty-cart b { font-family: Impact, sans-serif; font-size: 50px; }
.empty-cart p { font-size: 10px; color: var(--muted); }
.search-overlay { position: fixed; z-index: 950; inset: 0; background: var(--bone-2); transform: translateY(-102%); transition: transform .75s var(--ease); }
.search-overlay.is-open { transform: none; }
.search-form { padding: clamp(35px, 7vw, 100px) 28px 24px; display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid var(--ink); }
.search-form input { min-width: 0; border: 0; outline: 0; color: var(--ink); background: none; font-family: Impact, sans-serif; font-size: clamp(40px, 8vw, 120px); text-transform: uppercase; }
.search-form input::placeholder { color: rgba(0,0,0,.22); }
.search-form button {
  align-self: center; padding: 14px 22px; min-height: 48px;
  border: 1px solid var(--ink); border-radius: 999px; background: var(--ink); color: var(--bone);
  font-size: 10px; font-weight: 900; letter-spacing: .16em;
}
.search-results { display: grid; grid-template-columns: repeat(5, 1fr); max-height: 50vh; overflow: auto; }
.search-result { padding: 15px; border-right: 1px solid var(--line); }
.search-result img { width: 100%; aspect-ratio: 1; object-fit: contain; background: #fff; mix-blend-mode: multiply; }
.search-result h4 { font-size: 9px; }

/* CART PAGE */
.cart-page { padding: 55px 28px 100px; }
.cart-layout { display: grid; grid-template-columns: 1.4fr .6fr; gap: 55px; }
.cart-list { border-top: 1px solid var(--ink); }
.cart-row { display: grid; grid-template-columns: 160px 1fr auto; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--ink); }
.cart-row img { width: 160px; height: 180px; object-fit: contain; background: var(--bone-2); mix-blend-mode: multiply; }
.cart-row h3 { margin: 7px 0 10px; font-size: 14px; }
.cart-row .row-meta { color: var(--muted); font-size: 10px; }
.cart-row .row-actions { margin-top: 45px; display: flex; align-items: center; gap: 20px; }
.cart-summary { align-self: start; position: sticky; top: 90px; padding: 26px; color: var(--bone); background: var(--ink); }
.cart-summary h2 { margin: 0 0 30px; font-family: Impact, sans-serif; font-size: 45px; }
.summary-line { padding: 12px 0; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.2); font-size: 10px; }
.summary-total { margin-top: 18px; font-size: 15px; font-weight: 900; }
.cart-summary .add-btn { color: var(--ink); background: var(--bone); border-color: var(--bone); }
.demo-note { padding: 10px; border: 1px dashed; font-size: 9px; line-height: 1.5; }

/* CHECKOUT — COD */
.checkout-page { padding: 55px 28px 100px; }
.checkout-layout { display: grid; grid-template-columns: 1.4fr .6fr; gap: 55px; align-items: start; }
.checkout-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 14px; align-content: start; }
.checkout-step { grid-column: 1 / -1; margin: 10px 0 2px; padding-bottom: 10px; border-bottom: 1px solid var(--ink); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.checkout-step + .field, .checkout-step + .pay-method { margin-top: 4px; }
.checkout-form .field-error { min-height: 0; font-size: 9px; font-weight: 700; letter-spacing: .04em; color: #b3261e; }
.checkout-form .field.has-error .field-error { margin-top: 5px; }
.checkout-form .field { gap: 6px; }
.checkout-form label { font-size: 9px; }
.checkout-form .field.has-error input, .checkout-form .field.has-error textarea, .checkout-form .field.has-error select { border-bottom-color: #b3261e; }
.checkout-form textarea { min-height: 84px; }
.checkout-form .field input, .checkout-form .field textarea, .checkout-form .field select { padding: 13px 12px; }
.checkout-form textarea.short { min-height: 56px; }

.pay-method { display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; border: 1px solid var(--ink); background: var(--bone-2); }
.pay-method .pay-dot { flex: none; width: 14px; height: 14px; margin-top: 3px; border: 1px solid var(--ink); border-radius: 50%; background: radial-gradient(circle, var(--ink) 0 45%, transparent 46%); }
.pay-method > div { flex: 1; min-width: 0; }
.pay-method b { display: block; margin-bottom: 6px; font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.pay-method p { margin: 0; font-size: 10px; line-height: 1.6; color: var(--muted); }

.checkout-summary { align-self: start; position: sticky; top: 90px; padding: 26px; color: var(--bone); background: var(--ink); }
.checkout-summary h2 { margin: 0 0 22px; font-family: Impact, sans-serif; font-size: 40px; word-break: break-word; }
.checkout-summary .add-btn { color: var(--ink); background: var(--bone); border-color: var(--bone); }
.checkout-summary .add-btn.ghost { color: var(--bone); background: transparent; }
.checkout-summary .arrow-link.light, .order-send .arrow-link { color: var(--bone); }
.order-send .arrow-link { color: var(--ink); }
.sum-items { margin-bottom: 20px; border-top: 1px solid rgba(255,255,255,.2); }
.sum-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.sum-item img { flex: none; width: 46px; height: 52px; object-fit: contain; background: var(--bone-2); }
.sum-item div { min-width: 0; flex: 1; }
.sum-item b { display: block; font-size: 10px; font-weight: 800; letter-spacing: .04em; line-height: 1.4; }
.sum-item span { font-size: 9px; color: rgba(233,230,223,.6); }
.sum-item i { flex: none; font-style: normal; font-size: 10px; font-weight: 900; font-variant-numeric: tabular-nums; white-space: nowrap; }
.cod-note { margin: 10px 0 18px; font-size: 9px; line-height: 1.6; opacity: .65; }
.order-address { margin: 22px 0 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.2); display: grid; gap: 5px; }
.order-address b { font-size: 11px; letter-spacing: .06em; }
.order-address span { font-size: 10px; line-height: 1.5; color: rgba(233,230,223,.7); }

.order-done { display: grid; grid-template-columns: 1.4fr .6fr; gap: 55px; align-items: start; }
.order-send .lead { margin: 26px 0 34px; font-family: Arial, sans-serif; font-size: clamp(26px, 3.6vw, 52px); line-height: 1.05; letter-spacing: -.035em; }
.order-actions { display: grid; gap: 14px; max-width: 420px; justify-items: start; }
.order-actions .add-btn { margin: 0; }
.add-btn.as-link { display: grid; place-content: center; text-align: center; }
.add-btn.ghost { color: var(--ink); background: transparent; }
.add-btn.ghost:hover { color: var(--ink); background: var(--lime); }


/* CONTENT PAGES */
.content-wrap { padding: 80px 28px 120px; }
.content-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 8vw; }
.content-aside { font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.content-body { max-width: 900px; }
.content-body .lead { margin: 0 0 70px; font-family: Arial, sans-serif; font-size: clamp(28px, 4.2vw, 64px); line-height: 1.05; letter-spacing: -.035em; }
.content-body h2 { margin: 46px 0 20px; font-family: Impact, sans-serif; font-size: 38px; letter-spacing: -.02em; }
/* Gap between paragraphs must exceed the line height inside them,
   otherwise the block reads as one wall of text. */
.content-body p { max-width: 660px; margin: 0 0 32px; line-height: 1.7; }
.aside-links { display: grid; gap: 16px; justify-items: start; }
[dir="rtl"] .aside-links { justify-items: end; }
.content-body p:last-child { margin-bottom: 0; }
.content-body .lead + p { margin-top: 0; }
.policy-list { display: grid; gap: 22px; justify-items: start; }
.numbered-values { margin-top: 70px; border-top: 1px solid; }
.value-row { padding: 22px 0; display: grid; grid-template-columns: 60px 1fr 2fr; gap: 20px; border-bottom: 1px solid; align-items: start; }
.value-row h3 { margin: 0; font-size: 17px; }
.value-row p { margin: 0; font-size: 11px; }

.size-table { width: 100%; border-collapse: collapse; margin-top: 35px; font-size: 11px; }
.size-table th, .size-table td { padding: 16px 12px; border: 1px solid var(--ink); text-align: center; }
.size-table th { color: var(--bone); background: var(--ink); }
.size-diagram { margin: 55px 0; padding: 45px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; background: var(--bone-2); }
.size-silhouette { position: relative; min-height: 360px; }
.size-silhouette::before { content: ""; position: absolute; left: 23%; right: 23%; top: 9%; bottom: 3%; background: var(--ink); clip-path: polygon(28% 0,72% 0,79% 10%,100% 20%,90% 46%,80% 40%,78% 100%,22% 100%,20% 40%,10% 46%,0 20%,21% 10%); }
.measure-line { position: absolute; z-index: 2; height: 1px; background: var(--lime); color: var(--ink); font-size: 9px; }
.measure-line.chest { left: 18%; right: 18%; top: 37%; }
.measure-line.length { width: 1px; height: 74%; top: 14%; left: 50%; }
.size-copy ol { padding-inline-start: 18px; line-height: 2; }

.faq-list { border-top: 1px solid; }
.faq-item { border-bottom: 1px solid; }
.faq-item button { width: 100%; padding: 25px 0; display: grid; grid-template-columns: 65px 1fr auto; border: 0; background: none; text-align: inherit; font-size: 14px; font-weight: 800; }
.faq-answer { max-height: 0; overflow: hidden; padding-left: 65px; transition: max-height .5s var(--ease); }
[dir="rtl"] .faq-answer { padding-left: 0; padding-right: 65px; }
.faq-answer p { max-width: 700px; margin: 0 0 28px; line-height: 1.7; }
.faq-item.is-open .faq-answer { max-height: 420px; }
.faq-item .plus { transition: transform .4s; }
.faq-item.is-open .plus { transform: rotate(45deg); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 8vw; }
.contact-meta { display: grid; gap: 30px; align-content: start; }
.contact-meta div { border-top: 1px solid; padding-top: 10px; }
.contact-meta p { margin: 0 0 7px; color: var(--muted); font-size: 9px; font-weight: 800; }
.contact-meta a { font-size: 17px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 15px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid; outline: 0; background: transparent; }
.field textarea { min-height: 140px; resize: vertical; }
.submit-btn { grid-column: 1 / -1; min-height: 55px; border: 1px solid; color: var(--bone); background: var(--ink); font-size: 10px; font-weight: 900; }

/* MOBILE MENU */
.mobile-menu { position: fixed; z-index: 800; inset: 0; padding: calc(var(--header-h) + 36px) 40px 36px; overflow: auto; color: var(--bone); background: var(--ink); transform: translateY(-105%); transition: transform .75s var(--ease); }
.mobile-menu.is-open { transform: none; }
.mobile-menu-pattern { opacity: .08; filter: invert(1); }
.mobile-menu-close {
  position: absolute; z-index: 5; top: 18px; right: 20px;
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.4); border-radius: 50%;
  color: var(--bone); background: rgba(255,255,255,.06);
  font-size: 26px; line-height: 1; font-weight: 300;
  transition: transform .35s var(--ease), background .25s, border-color .25s;
}
.mobile-menu-close:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.75); transform: rotate(90deg); }
[dir="rtl"] .mobile-menu-close { right: auto; left: 20px; }
.mobile-ig { display: inline-grid; place-items: center; width: 28px; height: 28px; color: var(--bone); }
.mobile-ig svg { width: 100%; height: 100%; }
.mobile-menu nav { position: relative; z-index: 2; }
.mobile-menu nav a { padding: 12px 0; display: grid; grid-template-columns: 42px 1fr; align-items: start; border-bottom: 1px solid rgba(255,255,255,.2); }
.mobile-menu nav span { font-size: 9px; }

/* POLICY is a disclosure, not a link: it expands in place to reveal the
   policies underneath it. Styled to sit in the same rhythm as the nav rows. */
.menu-group-toggle {
  width: 100%; padding: 12px 0; display: grid; grid-template-columns: 42px 1fr auto;
  align-items: center; border: 0; border-bottom: 1px solid rgba(255,255,255,.2);
  background: none; color: inherit; text-align: start; font: inherit;
}
/* `start` already resolves to the right edge in RTL; forcing `end` sent this
   one row to the left while every other row stayed right. */
[dir="rtl"] .menu-group-toggle { text-align: start; }
.menu-chev {
  width: 11px; height: 11px; margin-inline-end: 4px; border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor; transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .35s var(--ease); opacity: .75;
}
.menu-group-toggle[aria-expanded="true"] .menu-chev { transform: rotate(-135deg) translate(-3px, -3px); }
.menu-submenu {
  /* 0fr -> 1fr animates to the panel's natural height, which `height: auto`
     cannot do. The inner wrapper carries overflow so the rows can collapse.
     CLOSING: the panel waits .12s so the row can slide out first — without
     that delay the height reached 0 in 280ms while the row was still moving
     at 420ms, so the content was clipped away instead of animating out. */
  display: grid; grid-template-rows: 0fr; opacity: 0;
  transition: grid-template-rows .42s var(--ease) .12s, opacity .3s ease .12s;
}
.menu-submenu > .menu-submenu-inner { overflow: hidden; min-height: 0; padding-inline-start: 42px; }
/* OPENING: panel first, no delay — the row follows it in. */
.menu-group-toggle[aria-expanded="true"] + .menu-submenu {
  grid-template-rows: 1fr; opacity: 1;
  transition: grid-template-rows .42s var(--ease), opacity .28s ease;
}
.mobile-menu .menu-submenu a {
  padding: 11px 0; display: block; border-bottom: 1px solid rgba(255,255,255,.12);
  /* Slides in from the leading edge as well as downward, so the row travels
     into place instead of only fading. --slide-x flips for RTL. */
  --slide-x: -26px;
  transform: translate3d(var(--slide-x), -12px, 0);
  opacity: 0;
  transition: transform .32s var(--ease), opacity .24s ease;
}
[dir="rtl"] .mobile-menu .menu-submenu a { --slide-x: 26px; }
.menu-group-toggle[aria-expanded="true"] + .menu-submenu a {
  transform: none; opacity: 1;
  transition: transform .52s var(--ease) .1s, opacity .34s ease .1s;
}
/* Scoped under .mobile-menu so it outweighs `.mobile-menu nav b` (42px) —
   otherwise the sub-item renders at full nav size and wraps to two lines. */
.mobile-menu .menu-submenu b { font-size: 17px; letter-spacing: .04em; line-height: 1.2; }

@media (prefers-reduced-motion: reduce) {
  .menu-submenu, .mobile-menu .menu-submenu a { transition-duration: .001ms; }
}
.mobile-menu nav b { font-family: Impact, sans-serif; font-size: 42px; line-height: .9; font-weight: 400; }
/* Arabic has real ascenders and descenders — .9 cut them against the divider. */
[dir="rtl"] .mobile-menu nav b { line-height: 1.18; }
.mobile-menu-footer { position: absolute; z-index: 2; left: 26px; right: 26px; bottom: 24px; display: flex; justify-content: space-between; font-size: 9px; font-weight: 800; }
.mobile-menu-footer .text-btn { color: inherit; }

/* FOOTER */
.footer { color: var(--bone); background: var(--ink); }
.footer-top { padding: 75px 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; border-bottom: 1px solid rgba(255,255,255,.25); }
.footer-mark img { width: min(310px, 85%); filter: none; }
.footer-mark p { margin-top: 25px; font-size: 10px; line-height: 1.6; letter-spacing: .1em; }
.footer-phrase { white-space: nowrap; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.footer-links div { display: flex; flex-direction: column; gap: 11px; font-size: 10px; }
.footer-links p { margin: 0 0 15px; color: #777; font-size: 9px; }
.footer-links a { white-space: nowrap; }
/* Instagram CTA — compact horizontal row, same language as footer links */
.footer-cta { padding: 28px; border-bottom: 1px solid rgba(255,255,255,.25); }
.ig-cta {
  position: relative; display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 18px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px;
  color: var(--bone); overflow: hidden;
  background: rgba(255,255,255,.05);
  transition: transform .4s var(--ease), border-color .3s, background .3s, color .3s;
}
.ig-cta:hover {
  transform: translateY(-2px);
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(215,255,53,.06);
}
.ig-icon {
  flex: none; width: 22px; height: 22px; color: currentColor;
  display: grid; place-items: center;
}
.ig-icon svg { width: 100%; height: 100%; }
.ig-text { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.ig-text em {
  font-style: normal; font-size: 9px; font-weight: 900; letter-spacing: .2em;
  color: rgba(245,242,235,.55); text-transform: uppercase;
}
.ig-text b {
  font-size: 11px; font-weight: 900; letter-spacing: .12em;
}
.footer-bottom { padding: 18px 28px; display: grid; grid-template-columns: 1fr auto 1fr; font-size: 8px; letter-spacing: .1em; }
.footer-bottom button { color: var(--bone); }
.footer-bottom span:last-child { justify-self: end; }

/* TOAST */
.toast {
  position: fixed;
  z-index: 13000;
  left: 50%;
  bottom: max(22px, env(safe-area-inset-bottom, 0px));
  min-width: 240px;
  padding: 13px 18px;
  text-align: center;
  color: var(--bone);
  background: var(--ink);
  border: 1px solid var(--bone);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-50%, 14px, 0);
  transition:
    transform .5s cubic-bezier(.22, 1, .36, 1),
    opacity .4s ease,
    visibility 0s linear .5s;
  will-change: transform, opacity;
}
.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(-50%, 0, 0);
  transition:
    transform .55s cubic-bezier(.22, 1, .36, 1),
    opacity .28s ease,
    visibility 0s;
}

/* RTL */
[dir="rtl"] body { font-family: Tahoma, Arial, sans-serif; }
[dir="rtl"] .intro-wordmark, [dir="rtl"] .page-title, [dir="rtl"] .hero-title, [dir="rtl"] .manifesto h2, [dir="rtl"] .section-head h2, [dir="rtl"] .editorial-copy h2, [dir="rtl"] .product-name, [dir="rtl"] .content-body h2, [dir="rtl"] .mobile-menu nav b { font-family: Tahoma, Arial, sans-serif; font-weight: 900; }
[dir="rtl"] .product-name { font-size: clamp(38px, 3.6vw, 58px); line-height: .94; letter-spacing: 0; overflow-wrap: anywhere; }
[dir="rtl"] .hero-side.left { left: auto; right: 28px; text-align: right; }
[dir="rtl"] .hero-side.right { right: auto; left: 28px; text-align: left; }
[dir="rtl"] .hero-cta { left: auto; right: 28px; }
[dir="rtl"] .hero-scroll { right: auto; left: 28px; }
[dir="rtl"] .orbit-badge { right: auto; left: 9%; }

/* ANIMATIONS */
@keyframes patternDrift { to { transform: rotate(-4deg) scale(1.1) translate(86px,-56px); } }
@keyframes coinIdle { 0%,100% { transform: rotateX(-7deg) rotateY(-12deg) translateY(0); } 50% { transform: rotateX(8deg) rotateY(14deg) translateY(-10px); } }
@keyframes coinEnter { 0% { transform: rotateX(0) rotateY(0) scale(1); } 55% { transform: rotateX(0) rotateY(260deg) scale(1.25); } 100% { transform: rotateX(0) rotateY(540deg) scale(7); } }
@keyframes soundBars { from { height: 3px; } to { height: 12px; } }
@keyframes fadeOut { to { opacity: 0; transform: translateY(-15px); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pageIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* TABLET */
@media (max-width: 1024px) {
  body { cursor: auto; }
  button, a { cursor: pointer; }
  .cursor { display: none; }
  .desktop-nav { display: none; }
  .site-header { padding: 0 18px; }
  .mobile-cart { display: block; justify-self: end; position: relative; width: 28px; height: 28px; }
  .bag-icon { display: block; width: 18px; height: 18px; margin: auto; border: 1px solid; border-radius: 2px; }
  .bag-icon::before { content: ""; position: absolute; width: 8px; height: 5px; left: 9px; top: 1px; border: 1px solid; border-bottom: 0; border-radius: 6px 6px 0 0; }
  .mobile-cart sup { position: absolute; right: -4px; top: -2px; width: 14px; height: 14px; display: grid; place-items: center; border-radius: 50%; color: var(--bone); background: var(--ink); font-size: 7px; }
  .hero-grid { background-size: 25vw 100%, 100% 25%; }
  .hero-product-stage { width: min(64vw, 620px); }
  .hero-title { font-size: 16vw; }
  .product-card, .shop-product-grid .product-card { grid-column: span 6; }
  .product-card:nth-child(3n), .shop-product-grid .product-card:nth-child(3n), .shop-product-grid .product-card:nth-child(4n) { border-inline-end: 1px solid var(--ink); }
  .product-card:nth-child(2n), .shop-product-grid .product-card:nth-child(2n) { border-inline-end: 0; }
  .product-page { grid-template-columns: 1fr; }
  .product-gallery { border-right: 0; border-left: 0; }
  .product-panel { position: relative; top: auto; min-height: 0; }
  .manifesto-grid { grid-template-columns: .3fr 4fr .3fr; }
}

/* MOBILE */
@media (max-width: 700px) {
  :root { --header-h: 61px; }
  .noise { opacity: .035; }
  .intro-topline, .intro-bottomline { left: 16px; right: 16px; }
  .intro-bottomline > *:nth-child(2) { display: none; }
  .intro-bottomline { grid-template-columns: 1fr auto; }
  .coin-wrap { width: min(70vw, 310px); }
  .intro-kicker { top: 13%; }
  .intro-hint { bottom: 13%; max-width: 70%; text-align: center; line-height: 1.5; }
  .intro-wordmark { font-size: 12vw; }
  .announcement { height: 25px; line-height: 25px; }
  .site-header { height: 61px; }
  .site-header.is-scrolled { height: 54px; }
  .header-logo { width: 118px; }
  .mobile-menu { inset: 25px 0 0; padding-top: 95px; }
  .mobile-menu nav b { font-size: 36px; }
  .hero { min-height: calc(100svh - 86px); }
  .hero-copy { top: 8%; }
  .hero-title { font-size: 19vw; line-height: .8; white-space: normal; }
  .hero-product-stage { width: 94vw; height: 64%; bottom: 5%; }
  .hero-side.left { top: 40%; left: 15px; width: 115px; }
  .hero-side.right { display: none; }
  [dir="rtl"] .hero-side.left { right: 15px; }
  .hero-side p { font-size: 8px; }
  .hero-index { font-size: 28px; }
  .hero-cta { left: 15px; bottom: 17px; padding: 13px 20px; font-size: 9px; }
  [dir="rtl"] .hero-cta { left: auto; right: 15px; }
  .hero-scroll { display: none; }
  .orbit-badge { width: 75px; top: 29%; right: 14px; }
  [dir="rtl"] .orbit-badge { right: auto; left: 14px; }
  .orbit-badge::before { font-size: 5px; }
  .orbit-badge::after { font-size: 23px; }
  .manifesto { padding: 95px 15px; }
  .manifesto-grid { display: block; }
  .manifesto h2 { font-size: 16vw; }
  .manifesto-note { display: block; margin-top: 30px; }
  .manifesto-note p { margin: 0 0 22px; }
  .section-head { padding: 20px 15px; }
  .section-head h2 { font-size: 45px; }
  .all-products-grid .product-card { grid-column: span 12 !important; border-inline-end: 0 !important; }
  .product-media { aspect-ratio: 1; }
  .quick-add { opacity: 1; transform: none; }
  /* Stacked on narrow screens the two halves met on a hard seam. Give each its
     own rounded glass panel with a gap between them, matching every other
     surface on the site instead of butting flush. */
  .editorial {
    min-height: 0; grid-template-columns: 1fr; gap: 12px;
    padding: 12px; background: none; overflow: visible;
  }
  .editorial-copy {
    min-height: 500px; padding: 46px 22px; border-radius: 22px;
    border: 1px solid rgba(255,255,255,.14);
    background: linear-gradient(135deg, rgba(16,17,20,.86), rgba(0,0,0,.58));
    -webkit-backdrop-filter: blur(22px) saturate(1.2);
    backdrop-filter: blur(22px) saturate(1.2);
  }
  .editorial-art {
    min-height: 470px; border-radius: 22px; overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
  }
  .page-head { min-height: 0; padding: 26px 15px 20px; }
  .page-title { font-size: 13.5vw; line-height: 1.02; letter-spacing: .03em; }
  .page-title.is-long { font-size: 11.4vw; letter-spacing: .045em; line-height: 1.06; }
  .page-head .eyebrow { margin-bottom: 10px; }
  .page-head-meta {
    position: static; right: auto; bottom: auto; left: auto;
    margin-top: 12px; font-size: 8px; text-align: inherit;
  }
  [dir="rtl"] .page-head-meta { right: auto; left: auto; text-align: inherit; }
  .product-gallery { grid-template-columns: 1fr; }
  .gallery-image:first-child { grid-column: 1; aspect-ratio: 1; }
  .gallery-image { aspect-ratio: 1; }
  .gallery-image:nth-child(even) { border-right: 0; }
  .product-panel { padding: 40px 15px 50px; }
  .product-name { font-size: 52px; }
  .search-form { padding: 100px 15px 20px; }
  .search-form button { min-height: 44px; padding: 12px 16px; font-size: 9px; }
  .search-results { grid-template-columns: 1fr 1fr; }
  .drawer-head, .search-head { min-height: 62px; }
  .drawer-item { grid-template-columns: 92px 1fr auto; padding: 12px; }
  .drawer-item img { width: 92px; height: 110px; }
  .drawer-actions { grid-template-columns: 1fr; }
  .cart-page { padding: 35px 15px 75px; }
  .cart-layout { grid-template-columns: 1fr; gap: 35px; }
  .cart-row { grid-template-columns: 95px 1fr auto; gap: 12px; }
  .cart-row img { width: 95px; height: 110px; }
  .cart-row .row-actions { margin-top: 20px; }
  .cart-summary { position: relative; top: auto; }
  .checkout-page { padding: 35px 15px 75px; }
  .checkout-layout, .order-done { grid-template-columns: 1fr; gap: 26px; }
  .checkout-form { gap: 12px; }
  .checkout-page { padding: 26px 15px 70px; }
  .checkout-form { grid-template-columns: 1fr; }
  .checkout-form .field, .checkout-form .field.full, .checkout-step, .pay-method { grid-column: 1; }
  .checkout-summary { position: relative; top: auto; }
  .pay-method { flex-wrap: nowrap; }
  .order-actions { max-width: none; justify-items: stretch; }

  .content-wrap { padding: 26px 15px 70px; }
  .content-grid, .contact-grid { grid-template-columns: 1fr; gap: 26px; }
  .content-body .lead { margin-bottom: 30px; font-size: 27px; }
  .content-body h2 { margin: 38px 0 14px; font-size: 30px; }
  .policy-list { gap: 18px; }
  .aside-links { gap: 14px; }
  .contact-meta { gap: 20px; }
  .faq-item button { padding: 20px 0; grid-template-columns: 34px 1fr auto; font-size: 13px; }
  .faq-answer { padding-left: 34px; }
  [dir="rtl"] .faq-answer { padding-left: 0; padding-right: 34px; }
  .faq-item.is-open .faq-answer { max-height: 560px; }
  .value-row { grid-template-columns: 35px 1fr; }
  .value-row p { grid-column: 2; }
  .size-diagram { padding: 25px 10px; grid-template-columns: 1fr; }
  .size-table { font-size: 9px; }
  .size-table th, .size-table td { padding: 11px 5px; }
  .faq-item button { grid-template-columns: 38px 1fr auto; font-size: 12px; }
  .faq-answer { padding-left: 38px; }
  [dir="rtl"] .faq-answer { padding-right: 38px; }
  .contact-form { grid-template-columns: 1fr; }
  .field.full, .submit-btn { grid-column: 1; }
  .footer-top, .footer-cta { padding: 28px 15px; }
  .footer-links { gap: 14px; }
  .footer-links div { font-size: 8px; }
  .ig-cta { padding: 10px 14px; gap: 10px; border-radius: 999px; }
  .ig-icon { width: 20px; height: 20px; }
  .ig-text { gap: 8px; }
  .ig-text em { font-size: 8px; letter-spacing: .16em; }
  .ig-text b { font-size: 10px; }
  .ig-arrow { font-size: 13px; }
  .footer-bottom { padding: 17px 15px; grid-template-columns: 1fr auto; }
  .footer-bottom button { display: none; }
  .footer-bottom span:last-child { text-align: right; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .cursor { display: none; }
  body { cursor: auto; }
}


/* TYPE + SPACE TUNE */
.announcement { height: 30px; line-height: 30px; font-size: 11px; }
.eyebrow { font-size: 11px; letter-spacing: .18em; }
.intro-kicker, .intro-hint { font-size: 11px; }
.intro-topline, .intro-bottomline { font-size: 11px; }
.hero-cta { padding: 15px 24px; font-size: 12px; }
.add-btn, .submit-btn { font-size: 12px; letter-spacing: .1em; }
.product-tag { font-size: 10px; padding: 7px 10px; }
.product-info { padding: 20px 18px 24px; gap: 6px 12px; }
.product-info h3 { font-size: 18px; line-height: 1.25; }
.product-info p { font-size: 16px; }
.product-color { font-size: 12px; }
.manifesto-note { font-size: 15px; line-height: 1.55; margin-top: 48px; }
.editorial-copy p { font-size: 15px; line-height: 1.6; }
.section-head { padding: 32px 32px 24px; }
.arrow-link { font-size: 12px; }
.product-breadcrumb, .panel-label, .accordion button, .stock-line { font-size: 11px; }
.accordion-content { font-size: 14px; line-height: 1.7; }
.product-price { font-size: 16px; }
.content-body p { font-size: 16px; }
.footer-mark p { font-size: 10px; line-height: 1.6; }
.footer-links div { font-size: 10px; gap: 11px; }
.footer-links p { font-size: 9px; }
.footer-bottom { font-size: 8px; padding: 18px 28px; }
.ig-text em { font-size: 11px; }
.ig-text b { font-size: 13px; }
.mobile-menu nav b { font-size: 48px; }
.mobile-menu-footer { font-size: 12px; }
.drawer-item h4 { font-size: 13px; }
.drawer-item p { font-size: 12px; }
.drawer-actions a, .drawer-actions button { font-size: 11px; }
.contact-meta a { font-size: 18px; }
.field label { font-size: 11px; }

@media (max-width: 700px) {
  body { font-size: 15px; line-height: 1.45; }
  .product-info h3 { font-size: 16px; }
  .product-info p { font-size: 15px; }
  .mobile-menu { padding: 88px 20px 28px; }
  .mobile-menu nav b { font-size: 34px; }
  .footer-links div { font-size: 8px; }
  .footer-bottom { font-size: 8px; padding: 17px 15px; }
}


/* POLICY TITLE SPACE */
.page-title { letter-spacing: .02em; }
.page-title.is-long { letter-spacing: .045em; line-height: 1.04; }
@media (max-width: 700px) {
  .page-title { font-size: 13.2vw; letter-spacing: .03em; line-height: 1.04; }
  .page-title.is-long { font-size: 11vw; letter-spacing: .05em; line-height: 1.08; }
}

/* =============================================================================
   SHOP — FLOATING DUO STRIP (2026-09-01)
   Layered transparent product shots under the shop header (no text overlay).
   The three shots are the same two products: crew back (deep), crew front
   (mid), hoodie front (hero). A soft gradient melts them into the bone page
   so the grid below starts clean.
   ============================================================================= */
.shop-duo-strip {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
}
.shop-duo-strip img {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(17,17,17,.10));
  transform: translateZ(0);
}
.shop-duo-strip .duo-back {
  left: 8%;
  bottom: 0;
  width: clamp(150px, 23vw, 260px);
  opacity: .30;
}
.shop-duo-strip .duo-mid {
  right: 6%;
  bottom: 0;
  width: clamp(140px, 21vw, 240px);
  opacity: .55;
}
.shop-duo-strip .duo-front {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 270px; /* h = 280px → sits 60px inside the 340px stage, top dips ~40px behind the glass */
  opacity: 1;
}
.shop-duo-strip .duo-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(233,230,223,0) 34%,
    rgba(233,230,223,.55) 74%,
    rgba(233,230,223,.97) 96%);
  pointer-events: none;
}
@media (max-width: 860px) {
  .shop-duo-strip { height: clamp(200px, 55vw, 250px); }
  .shop-duo-strip .duo-front { width: clamp(150px, 42vw, 190px); }
  .shop-duo-strip .duo-back, .shop-duo-strip .duo-mid { width: clamp(110px, 32vw, 150px); }
  .shop-duo-strip .duo-back { left: 6%; }
}
@media (prefers-reduced-motion: reduce) {
  .shop-duo-strip img { filter: none; }
  .hero-solo { filter: none; animation: none; }
}

/* =============================================================================
   SHOP — HOODIE UNDER THE GLASS + GHOST WORD (v48, 2026-09-01)
   The hero hoodie rises from the duo strip and slides BEHIND the page-head
   glass (it sits at a lower z-index, so the glass's backdrop blur refracts
   its top — a real liquid-glass layering). The panel stays on top; a large
   ghost word fills the empty right side of the same panel.
   ============================================================================= */
.page-head {
  z-index: 3; /* keep the glass panel above the duo strip */
}

/* Big outline ghost on the right side of the SHOP panel. */
.page-head-ghost {
  position: absolute;
  inset-inline-end: 22px;
  bottom: -8px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(64px, 9vw, 150px);
  line-height: .78;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(17,17,17,.13);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* Pull the strip up so only the hoodie's crown dips behind the glass
   (34px on desktop, 19px on mobile — the hood stays visible, the glass
   just kisses its top). */
.shop-duo-strip {
  margin-top: -110px;
  z-index: 1;
}

/* Nothing behind the glass on smaller screens; ghost hides, overlap shrinks. */
@media (max-width: 860px) {
  .page-head-ghost { display: none; }
  .shop-duo-strip { margin-top: -80px; }
}

/* =============================================================================
   FIX — BLUE FOCUS RING UNDER THE HEADER (v50, 2026-09-01)
   The router calls focus() on <main id="app" tabindex="-1"> so screen readers
   announce the new route. iOS/Safari paints its default blue focus ring
   around that full-width container, which reads as a blue line under the
   header. main is a focus anchor, not an interactive control — kill the ring,
   keep the accessibility move.
   ============================================================================= */
#app:focus,
main:focus {
  outline: none !important;
}
#app:focus-visible,
main:focus-visible {
  outline: none !important;
}

/* Tablet / touch: keep the diagonal but calm it — the floats pause (they are
   the desktop pointer crowd-pleaser), sizes tighten, and the glass shards
   shrink with the pieces instead of covering them. */
@media (max-width: 1024px) {
  .hero-product-stage { width: min(56vw, 560px); height: 80%; }
  .hero-solo { animation: none; }
}
@media (max-width: 860px) {
  .hero-product-stage { width: min(76vw, 420px); height: 76%; bottom: 4%; }
  .hero-solo { animation: none; }
}

/* =============================================================================
   SHOP — SIGNATURE SIZE BUMP + 9 ELEVEN EYEBROW (v66, 2026-09-04)
   The SHOP title reads small against the 43vh glass panel, and the eyebrow
   band above it was empty. Add the brand line on top and scale the title up
   a notch — scoped to .shop-page only so CART / CHECKOUT / POLICY keep their
   established hierarchy.
   ============================================================================= */
.shop-page .page-head .eyebrow { margin-bottom: 10px; }
.shop-page .page-title { font-size: clamp(64px, 12.5vw, 175px); }
@media (max-width: 860px) {
  .shop-page .page-title { font-size: 16vw; }
}

/* =============================================================================
   STOCK HONESTY (v69, 2026-09-04)
   Lime brand badge wherever a tracked count remains — permanent, not only
   "1 left". Plus a firm "no" shake on the quantity control when the customer
   tries to go over the remaining stock (paired with the sold-out sound).
   ============================================================================= */
.stock-count {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: .94em;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: middle;
}
.stock-line.is-limited {
  color: var(--ink);
}
.stock-line.is-limited .stock-dot {
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(215, 255, 53, .34);
}
.stock-line.is-limited .stock-line-text {
  font-weight: 900;
  letter-spacing: .08em;
}
.qty {
  position: relative;
}
.qty.is-shaking {
  animation: qtyShake .5s cubic-bezier(.36, .07, .19, .97);
}
.qty.is-shaking .qty-core,
.qty.is-shaking span {
  animation: qtyPulse .5s ease;
}
@keyframes qtyShake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-7px); }
  35% { transform: translateX(7px); }
  55% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
  90% { transform: translateX(-2px); }
}
@keyframes qtyPulse {
  0%, 100% { color: inherit; }
  35% { color: #a01010; }
  70% { color: #a01010; }
}
@media (prefers-reduced-motion: reduce) {
  .qty.is-shaking { animation: none; }
  .qty.is-shaking span { animation: none; }
}

/* =============================================================================
   CHECKOUT PERKS (v70, 2026-09-06)
   Promo code row + first-order free-shipping badge — branded lime like the
   stock badge, so the whole "limited / free / discounted" language is one.
   ============================================================================= */
[hidden] { display: none !important; }
.promo-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  column-gap: 10px;
  row-gap: 3px;
}
.promo-row label { grid-column: 1 / -1; }
.promo-flex { display: contents; }
.checkout-form .promo-flex input {
  flex: 1;
  min-width: 0;
  text-transform: uppercase;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid rgba(26, 25, 24, .26);
  border-radius: 14px;
  padding: 13px 16px;
  background: transparent;
  transition: border-color .25s;
}
.checkout-form .promo-flex input:focus { border-color: var(--ink); }
.promo-apply {
  flex: 0 0 auto;
  min-width: 96px;
  border: 1px solid var(--ink);
  border-radius: 14px;
  background: var(--ink);
  color: var(--bone);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  cursor: pointer;
  transition: color .3s, background .3s;
}
.promo-apply:hover { background: var(--lime); color: var(--ink); }
.promo-apply:disabled { opacity: .55; cursor: default; }
.promo-msgs { grid-column: 1; text-align: left; }
.promo-error {
  display: block;
  margin-top: 2px;
  padding-left: 8px;
  text-align: left;
  font-size: 9px;
  font-weight: 800;
  color: #b3261e;
}
.promo-success {
  display: block;
  margin-top: 2px;
  padding-left: 8px;
  text-align: left;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #5c9c3a;
}
.promo-success .promo-x {
  display: inline;
  margin: 0 0 0 6px;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font-size: 10px;
  cursor: pointer;
  opacity: .7;
}
.promo-row.is-shaking { animation: qtyShake .5s cubic-bezier(.36, .07, .19, .97); }

.free-text {
  color: var(--lime);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.free-note-text {
  display: block;
  margin-top: -3px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  color: #5c9c3a;
}
.free-note-text[hidden] { display: none !important; }

.summary-line.promo-line b { color: var(--lime); }

@media (prefers-reduced-motion: reduce) {
  .promo-row.is-shaking { animation: none; }
}

/* =============================================================================
   ORDER RESULT HONESTY (v71)
   A refused order now tells the truth on the result page: red note + retry.
   ============================================================================= */
.thanks-title.is-rejected { color: #b3261e; }
.thanks-note.is-error {
  color: #b3261e;
  font-weight: 700;
}
.thanks-actions { margin-top: 20px; }

/* v71.3 — error-page actions: TRY AGAIN sits above KEEP SHOPPING and is a
   touch smaller, centered; KEEP SHOPPING stays the full-width live button. */
.thanks-actions--rejected {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.add-btn.try-again-btn {
  width: 82%;
  min-height: 50px;
  margin: 12px auto 4px;
  padding: 12px 20px;
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1;
}
@media (min-width: 700px) {
  .add-btn.try-again-btn { width: 60%; }
}

/* =============================================================================
   SOLD-OUT IN CART (v71)
   When a tracked size reaches 0 while it sits in the cart, the row shows an
   honest badge and its + button is dead — no more 99-cap loophole.
   ============================================================================= */
.sold-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #b3261e;
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  vertical-align: middle;
}
[dir="rtl"] .sold-badge { margin-left: 0; margin-right: 8px; }
.cart-row.is-soldout, .drawer-item.is-soldout { opacity: .62; }
.cart-row.is-soldout .qty button[data-qty="1"],
.drawer-item.is-soldout .qty button[data-qty="1"] {
  opacity: .35;
  cursor: not-allowed;
}

/* ERROR X — same seat as the success tick, painted in the error red. */
.thanks-tick.is-error .tick-ring { stroke: #b3261e; }
.thanks-tick.is-error .tick-mark {
  stroke: #b3261e;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* v71.1 — HOLD: the motion ended but the sheet result hasn't landed yet.
   The button keeps a faint pulse so the wait is read as "still working". */
.checkout-motion.is-holding { animation: order-hold-pulse 1s var(--ease) infinite; }
@keyframes order-hold-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.015); }
}
@media (prefers-reduced-motion: reduce) {
  .checkout-motion.is-holding { animation: none; }
}


/* v75: smooth spinner while waiting for server verification */
.checkout-motion__spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(7, 17, 10, 0.25);
  border-top-color: #07110a;
  border-radius: 50%;
  animation: checkoutSpinnerRotate .75s linear infinite;
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
}
@keyframes checkoutSpinnerRotate {
  to { transform: rotate(360deg); }
}
