/* ============================================================
   SABOTAGE — winter streetwear. Panda King universe.
   Design tokens
   ============================================================ */
:root{
  --bg: #0b0b0c;
  --bg-alt: #141416;
  --panel: #1a1a1d;
  --line: #2a2a2e;
  --ink: #f4f3ef;
  --ink-dim: #a8a7a3;
  --paper: #f4f3ef;
  --accent: #ff3b30;      /* sabotage red — for text/icons on dark backgrounds only (~5.7:1 there) */
  --accent-dark: #b81f15; /* red on white/light backgrounds — passes AA at ~6.6:1, plain --accent does not */
  --accent-ink: #0b0b0c;
  --radius: 2px;
  --maxw: 1240px;
  --gutter: clamp(16px, 4vw, 48px);
  --font-display: "Anton", "Archivo Black", "Arial Black", Impact, sans-serif;
  --font-brush: "Permanent Marker", cursive;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ margin:0; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.01em; }
p{ margin:0; }
button{ font-family: inherit; cursor:pointer; }
.wrap{ max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.visually-hidden{
  position:absolute; width:1px; height:1px; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0; padding:0;
}
.skip-link{
  position:absolute; left:-999px; top:0; z-index:200;
  background:var(--accent); color:#fff; padding:12px 18px; font-family: var(--font-mono);
}
.skip-link:focus{ left: var(--gutter); }

/* ============================== Header ============================== */
.site-header{
  position: sticky; top:0; z-index:100;
  background: rgba(11,11,12,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  height: 72px;
}
.logo{
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  display:flex; align-items:center; gap:8px;
}
.logo .crown{ color: var(--accent); }
.main-nav{ display:flex; gap: 28px; }
.main-nav a{
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.main-nav a:hover, .main-nav a:focus-visible{ color: var(--ink); border-color: var(--accent); }
.header-actions{ display:flex; align-items:center; gap:14px; }
.icon-btn{
  background:none; border:1px solid var(--line); color: var(--ink);
  width:40px; height:40px; border-radius: var(--radius);
  display:flex; align-items:center; justify-content:center;
  position:relative;
  transition: border-color .15s ease, background .15s ease;
}
.icon-btn:hover{ border-color: var(--ink-dim); }
.cart-count{
  position:absolute; top:-7px; right:-7px;
  background: var(--accent); color:#fff;
  font-family: var(--font-mono); font-size: 11px; font-weight:700;
  min-width:18px; height:18px; border-radius: 999px;
  display:flex; align-items:center; justify-content:center; padding: 0 4px;
}
.burger{ display:none; }

/* ============================== Hero ============================== */
.hero{
  position: relative;
  border-bottom: 1px solid var(--accent-dark);
  overflow:hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% 45%, transparent 40%, rgba(184,31,21,0.35) 78%, rgba(184,31,21,0.15) 100%),
    radial-gradient(ellipse at 80% 15%, rgba(255,59,48,0.16), transparent 55%),
    linear-gradient(180deg, #0f0808 0%, #0b0b0c 70%);
}
.hero::after{
  /* faint cracked-vein overlay, echoing the embroidered-patch reference art */
  content:"";
  position:absolute; inset:0; pointer-events:none; opacity:.5; mix-blend-mode:screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.8  0 0 0 0 0.1  0 0 0 0 0.08  0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner{
  display:grid; grid-template-columns: 1.1fr 0.9fr; align-items:center; gap: 24px;
  padding-top: 56px; padding-bottom: 32px; min-height: 78vh;
}
.hero-copy h1{
  font-size: clamp(40px, 6.4vw, 92px);
  line-height: 0.94;
  margin: 14px 0 22px;
}
.hero-copy h1 span{ display:block; }
.hero-copy h1 .outline{
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
}
.hero-sub{
  max-width: 46ch;
  color: var(--ink-dim);
  font-size: 17px;
  margin-bottom: 30px;
}
.hero-cta{ display:flex; gap:14px; flex-wrap:wrap; }
.hero-visual{
  position:relative;
  display:flex; align-items:center; justify-content:center;
}
.hero-visual::before{
  content:"";
  position:absolute; inset: 6% ;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
  border-radius: 50%;
}
.hero-visual img{
  position:relative;
  width: min(420px, 82%);
  height:auto; /* see .card-media img comment — same attr-height-wins bug applies here */
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
}
.hero-tag{
  position:absolute; bottom: 22px; left: 0;
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-dim);
  letter-spacing: .06em;
}

/* ============================== Buttons ============================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 14px 26px;
  font-family: var(--font-mono);
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: none; /* reset UA default button chrome — without this, ghost buttons render as barely-legible light-grey-on-light-grey */
  transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:active{ transform: translateY(1px); }
/* white-on-accent is ~3.6:1 (fails WCAG AA for 13px text) — dark ink on accent passes at ~5:1 */
.btn-primary{ background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover{ background:#e62f24; }
.btn-ghost{ border-color: var(--line); color: var(--ink); background: none; }
.btn-ghost:hover{ border-color: var(--ink); }
.btn-block{ width:100%; }
.btn-sm{ padding:10px 16px; font-size:12px; }

/* ============================== Marquee ============================== */
.marquee{
  border-bottom:1px solid var(--line);
  background: var(--paper);
  color: var(--bg);
  overflow:hidden;
  white-space: nowrap;
}
.marquee-track{
  display:inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee-track span{
  font-family: var(--font-display);
  font-size: 15px;
  padding: 12px 28px;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-right: 1px solid rgba(11,11,12,0.15);
}
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation: none; }
}

/* ============================== Section shell ============================== */
section{ padding: 88px 0; }
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap: 24px;
  margin-bottom: 40px; flex-wrap:wrap;
}
.section-head h2{ font-size: clamp(28px, 4vw, 44px); }
.section-head p{ color: var(--ink-dim); max-width: 48ch; }

/* ============================== Manifesto ============================== */
.manifesto{ background: var(--bg-alt); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.manifesto-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items:start; }
.manifesto-grid p{ color: var(--ink-dim); font-size: 18px; line-height:1.7; margin-bottom:18px; }
.manifesto-grid p strong{ color: var(--ink); }
.stat-row{ display:grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 32px; }
.stat{ border-top:1px solid var(--line); padding-top:12px; }
.stat b{ display:block; font-family: var(--font-display); font-size: 30px; }
.stat span{ font-family: var(--font-mono); font-size: 12px; color: var(--ink-dim); text-transform:uppercase; letter-spacing:.06em; }

/* ============================== Filters ============================== */
.filters{ display:flex; gap:10px; flex-wrap:wrap; }
.chip{
  font-family: var(--font-mono); font-size: 12px; text-transform:uppercase; letter-spacing:.06em;
  padding: 9px 16px; border:1px solid var(--line); border-radius: 999px; color: var(--ink-dim);
  background:transparent;
}
.chip:hover{ border-color: var(--ink-dim); color: var(--ink); }
/* Must come after .chip:hover: both are (0,2,0) specificity, so source order decides —
   without this ordering, hovering an active/pressed chip reset its text color back to
   var(--ink) on top of its own var(--ink) background, making the label invisible. */
.chip[aria-pressed="true"]{ background: var(--ink); color: var(--bg); border-color: var(--ink); }
.chip[aria-pressed="true"]:hover{ color: var(--bg); }
.currency-toggle{ display:flex; gap:0; border:1px solid var(--line); border-radius:999px; overflow:hidden; }
.currency-toggle button{
  background:transparent; border:none; color:var(--ink-dim);
  font-family: var(--font-mono); font-size:12px; letter-spacing:.05em; padding:8px 14px;
}
.currency-toggle button[aria-pressed="true"]{ background: var(--ink); color: var(--bg); }

/* ============================== Product grid ============================== */
.grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.card{
  background: var(--panel); border:1px solid var(--line); border-radius: var(--radius);
  overflow:hidden; display:flex; flex-direction:column;
  transition: border-color .15s ease, transform .15s ease;
}
.card:hover{ border-color: var(--ink-dim); transform: translateY(-3px); }
.card-media{
  position:relative; aspect-ratio: 4/5; display:flex; align-items:center; justify-content:center;
  padding: 26px;
  background:
    radial-gradient(circle at 50% 30%, rgba(184,31,21,0.22), transparent 62%),
    var(--bg-card, #202024);
}
/* height:auto is required here — the HTML height="" attribute becomes a low-priority
   `height:600px` CSS rule that otherwise wins whenever width alone is overridden,
   stretching every card image regardless of its actual rendered width. */
.card-media img{ width: 78%; height:auto; filter: drop-shadow(0 14px 18px rgba(0,0,0,0.4)); }
/* mix-blend-mode:multiply melts the flat characters' baked-in white background into the
   dark card (white*dark≈dark, black*dark≈black) — used until every character gets a real
   red/black embroidered-patch reshoot like WINTER KING already has. Remove once they do. */
.card-media:not(.is-photo) img{ mix-blend-mode: multiply; }
.card-media.is-photo{ padding:0; background:#111; }
.card-media.is-photo img{ width:100%; height:100%; object-fit:cover; filter:none; }
.card-img-back{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  opacity:0; transition: opacity .35s ease;
}
.has-flip:hover .card-img-back{ opacity:1; }
.flip-hint{
  position:absolute; bottom:12px; left:50%; transform:translateX(-50%);
  font-family: var(--font-mono); font-size:10px; letter-spacing:.05em; text-transform:uppercase;
  color: var(--ink-dim); background: rgba(11,11,12,0.7); padding:5px 10px; border-radius:999px;
  pointer-events:none; opacity:.9;
}
.has-flip:hover .flip-hint{ opacity:0; }
.card-badge{
  position:absolute; top:12px; left:12px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing:.08em; text-transform:uppercase;
  background: var(--accent); color: var(--accent-ink); padding: 4px 8px; border-radius: 999px;
}
.card-wish{
  position:absolute; top:10px; right:10px; width:34px; height:34px;
  border-radius:50%; border:1px solid rgba(255,255,255,0.25); background: rgba(0,0,0,0.35); color:#fff;
  display:flex; align-items:center; justify-content:center;
}
.card-body{ padding: 16px 18px 18px; display:flex; flex-direction:column; gap:10px; flex:1; }
.card-cat{ font-family: var(--font-mono); font-size: 11px; color: var(--ink-dim); text-transform:uppercase; letter-spacing:.08em; }
.card-title{ font-family: var(--font-display); font-size: 16px; letter-spacing:.01em; }
.card-desc{ color: var(--ink-dim); font-size: 13px; line-height:1.5; }
.story-link{
  background:none; border:none; padding:0; text-align:left; cursor:pointer;
  font-family: var(--font-mono); font-size:11px; letter-spacing:.04em; text-transform:uppercase;
  color: var(--accent); width:fit-content;
}
.story-link:hover{ text-decoration: underline; }
.card-swatches{ display:flex; gap:6px; margin-top:2px; }
.swatch{ width:16px; height:16px; border-radius:50%; border:1px solid rgba(255,255,255,0.25); }
.card-foot{ display:flex; align-items:center; justify-content:space-between; margin-top:auto; padding-top:6px; }
.price{ font-family: var(--font-mono); font-size: 16px; font-weight:700; }
.price .old{ text-decoration: line-through; color: var(--ink-dim); font-weight:400; font-size:13px; margin-right:6px; }
.add-btn{
  width:38px; height:38px; border-radius: var(--radius);
  background: var(--ink); color: var(--bg); border:none;
  display:flex; align-items:center; justify-content:center; font-size:18px; font-weight:700;
  transition: background .15s ease;
}
.add-btn:hover{ background: var(--accent); color:#fff; }

/* ============================== Universe / lore ============================== */
.universe{ background: var(--bg); }
.universe-scroller{
  display:grid; grid-auto-flow:column; grid-auto-columns: minmax(220px, 260px);
  gap: 16px; overflow-x:auto; padding-bottom: 14px; scroll-snap-type: x mandatory;
}
.universe-scroller::-webkit-scrollbar{ height:6px; }
.universe-scroller::-webkit-scrollbar-thumb{ background: var(--line); border-radius:4px; }
.lore-card{
  scroll-snap-align:start; background: var(--bg-alt); border:1px solid var(--line);
  padding: 18px; display:flex; flex-direction:column; gap:10px;
}
.lore-card img{ width:100%; aspect-ratio:1/1; object-fit:contain; background:#101012; }
.lore-card h3{ font-size:14px; }
.lore-card p{ color: var(--ink-dim); font-size:12.5px; line-height:1.5; }

/* ============================== Lookbook gallery ============================== */
.lookbook-gallery{ background: var(--bg-alt); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.promo-banner{
  display:block; border-radius: var(--radius); overflow:hidden; margin-bottom: 24px;
  border:1px solid var(--accent-dark); transition: transform .2s ease, box-shadow .2s ease;
}
.promo-banner:hover{ transform: translateY(-2px); box-shadow: 0 20px 50px rgba(184,31,21,0.25); }
.promo-banner img{ width:100%; height:auto; display:block; }
.lookbook-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
.lookbook-grid figure{ margin:0; border-radius: var(--radius); overflow:hidden; background:#0d0d0f; border:1px solid var(--line); }
.lookbook-grid img{ width:100%; height:auto; display:block; }
.lookbook-grid figcaption{
  padding: 12px 14px; font-family: var(--font-mono); font-size:11px; letter-spacing:.05em;
  text-transform:uppercase; color: var(--ink-dim); border-top:1px solid var(--line);
}

/* ============================== Production ============================== */
.production{ background: var(--bg); border-top:1px solid var(--line); }
.production-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
.production-grid figure{ margin:0; border-radius: var(--radius); overflow:hidden; background:#0d0d0f; border:1px solid var(--line); }
.production-grid img{ width:100%; height:100%; aspect-ratio:4/5; object-fit:cover; display:block; }
.production-grid figcaption{
  padding: 12px 14px; font-family: var(--font-mono); font-size:11px; letter-spacing:.05em;
  text-transform:uppercase; color: var(--ink-dim); border-top:1px solid var(--line);
}

/* ============================== Channels ============================== */
.channels{ background: var(--paper); color: var(--bg); border-top:1px solid var(--line); }
.channels .section-head p{ color:#4a4a48; }
.channel-grid{ display:grid; grid-template-columns: repeat(5,1fr); gap:14px; }
.channel-card{
  border:1px solid rgba(11,11,12,0.15); padding: 20px 16px; text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  background:#fff;
}
/* raised "badge" treatment: radial highlight + soft shadow reads as a small
   3D icon without redrawing each platform's actual trademarked logo */
.channel-badge{
  width:52px; height:52px; border-radius:16px; display:flex; align-items:center; justify-content:center;
  color:#fff; box-shadow: 0 6px 14px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.25);
}
.channel-badge svg{ width:26px; height:26px; }
.brand-shop{ background: radial-gradient(circle at 30% 25%, #ff5c50, var(--accent-dark)); }
.brand-instagram{ background: radial-gradient(circle at 30% 25%, #fed373, #d6249f 45%, #515bd4 90%); }
.brand-tiktok{ background: radial-gradient(circle at 30% 25%, #2a2a2a, #000 70%); box-shadow: 0 6px 14px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.15), inset 2px 0 0 #25f4ee, inset -2px 0 0 #fe2c55; }
.brand-amazon{ background: radial-gradient(circle at 30% 25%, #ffb84d, #e07b00 80%); }
.brand-ebay{ background: radial-gradient(circle at 30% 25%, #5aa7ff, #1a5fd1 80%); }
.channel-card b{ font-family: var(--font-mono); font-size:12px; text-transform:uppercase; letter-spacing:.06em; }
.channel-card span{ font-size:12px; color:#5a5a58; }
/* .channel-card span (0,1,1) beat .status-live/.status-soon (0,1,0) on specificity,
   silently overriding their color to #5a5a58 regardless of which status — every rule
   below is written as .channel-card .status-* (0,2,0) so the pill's own color wins. */
.channel-card .channel-status{
  font-family: var(--font-mono); font-size:10px; text-transform:uppercase; letter-spacing:.05em;
  padding:2px 8px; border-radius:999px;
}
.channel-card .status-live{ background:#123b1f; color:#7bffb0; }
.channel-card .status-soon{ background:#3a3a38; color:#d8d6cf; }

/* ============================== Trust bar ============================== */
.trust-bar{ background:#0d0d0f; border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:26px 0; }
.trust-grid{ display:grid; grid-template-columns: repeat(5,1fr); gap:20px; }
.trust-item{ display:flex; align-items:center; gap:12px; }
.trust-badge{
  flex:none; width:44px; height:44px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  color:#fff; background: radial-gradient(circle at 30% 25%, #ff5c50, var(--accent-dark));
  box-shadow: 0 6px 14px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
}
.trust-badge svg{ width:22px; height:22px; }
.trust-item b{ display:block; font-family: var(--font-mono); font-size:12px; text-transform:uppercase; letter-spacing:.04em; }
.trust-item span{ display:block; font-size:12px; color: var(--ink-dim); margin-top:3px; line-height:1.4; }

/* ============================== Newsletter / contact ============================== */
/* var(--accent) is only ~3.56:1 with white text — fine for the large h2 (passes the
   3:1 large-text threshold) but fails AA for the smaller paragraph/link/note text
   below at any reasonable opacity. var(--accent-dark) gets white text to ~6.5:1. */
.cta-band{
  background: var(--accent-dark); color:#fff; text-align:center;
}
.cta-band h2{ font-size: clamp(26px,4vw,44px); margin-bottom:14px; }
.cta-band p{ color: rgba(255,255,255,0.92); max-width:56ch; margin:0 auto 28px; }
.subscribe-form{ display:flex; gap:10px; max-width:420px; margin:0 auto; }
.subscribe-form input{
  flex:1; padding:14px 16px; border:1px solid rgba(255,255,255,0.5); background: rgba(0,0,0,0.15);
  color:#fff; border-radius: var(--radius); font-family: var(--font-mono); font-size:13px;
}
.subscribe-form input::placeholder{ color: rgba(255,255,255,0.75); }
.subscribe-form .btn{ background:#fff; color: var(--accent-dark); }
.form-note{ margin-top:12px; font-size:12px; color: rgba(255,255,255,0.85); }

/* ============================== Footer ============================== */
.site-footer{ background:#0b0b0c; border-top:1px solid var(--line); padding: 56px 0 28px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
.footer-grid h3{ font-family: var(--font-mono); font-size:12px; letter-spacing:.08em; color: var(--ink-dim); margin-bottom:14px; }
.footer-grid ul li{ margin-bottom:10px; }
.footer-grid ul a{ color: var(--ink-dim); font-size:14px; }
.footer-grid ul a:hover{ color: var(--ink); }
.footer-brand p{ color: var(--ink-dim); font-size:13px; max-width:34ch; margin-top:10px; }
.footer-bottom{
  margin-top: 48px; padding-top:20px; border-top:1px solid var(--line);
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  font-family: var(--font-mono); font-size:11px; color: var(--ink-dim); text-transform:uppercase; letter-spacing:.05em;
}

/* ============================== Cart drawer ============================== */
.overlay{
  position:fixed; inset:0; background: rgba(0,0,0,0.6); opacity:0; pointer-events:none;
  transition: opacity .2s ease; z-index: 150;
}
.overlay.open{ opacity:1; pointer-events:auto; }
.cart-drawer{
  position:fixed; top:0; right:0; height:100%; width: min(420px, 92vw);
  background: var(--bg-alt); border-left:1px solid var(--line);
  transform: translateX(100%); transition: transform .25s ease;
  z-index: 160; display:flex; flex-direction:column;
}
.cart-drawer.open{ transform: translateX(0); }
.cart-head{ display:flex; align-items:center; justify-content:space-between; padding:20px; border-bottom:1px solid var(--line); }
.cart-head h3{ font-size:16px; }
.cart-items{ flex:1; overflow-y:auto; padding: 8px 20px; }
.cart-item{ display:flex; gap:12px; padding:14px 0; border-bottom:1px solid var(--line); }
.cart-item img{ width:64px; height:64px; object-fit:contain; background:#101012; border-radius: var(--radius); }
.cart-item-info{ flex:1; display:flex; flex-direction:column; gap:4px; }
.cart-item-info b{ font-size:13px; }
.cart-item-info span{ font-size:12px; color: var(--ink-dim); font-family: var(--font-mono); }
.qty{ display:flex; align-items:center; gap:10px; margin-top:4px; }
.qty button{ width:22px; height:22px; border:1px solid var(--line); background:none; color:var(--ink); border-radius:4px; }
.remove-btn{ font-family: var(--font-mono); font-size:11px; color: var(--ink-dim); text-decoration: underline; align-self:flex-start; margin-top:4px; }
.cart-empty{ padding: 60px 20px; text-align:center; color: var(--ink-dim); font-size:13px; }
.cart-foot{ padding:18px 20px 22px; border-top:1px solid var(--line); }
.cart-total-row{ display:flex; justify-content:space-between; font-family: var(--font-mono); font-size:14px; margin-bottom:14px; }
.cart-hint{ font-size:11.5px; color: var(--ink-dim); margin-top:10px; line-height:1.5; }

/* toast */
.toast{
  position:fixed; bottom:24px; left:50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: var(--bg); padding:12px 20px; border-radius: var(--radius);
  font-family: var(--font-mono); font-size:13px; opacity:0; pointer-events:none;
  transition: opacity .2s ease, transform .2s ease; z-index:200;
}
.toast.show{ opacity:1; transform: translateX(-50%) translateY(0); }

/* ============================== Cookie consent ============================== */
.consent-banner{
  position:fixed; left:0; right:0; bottom:0; z-index:190;
  background: var(--panel); border-top:1px solid var(--line);
  padding: 18px var(--gutter);
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
  transform: translateY(110%); transition: transform .25s ease;
}
.consent-banner.show{ transform: translateY(0); }
.consent-banner p{ font-size:13px; color: var(--ink-dim); max-width:62ch; }
.consent-banner a{ color: var(--ink); text-decoration: underline; }
.consent-actions{ display:flex; gap:10px; flex-shrink:0; }

/* ============================== Legal pages ============================== */
.legal-page{ padding: 64px 0 96px; max-width:760px; }
.legal-page h1{ font-size: clamp(28px,4vw,40px); margin-bottom:28px; }
.legal-page h2{ font-size:18px; margin:36px 0 12px; text-transform:none; }
.legal-page p, .legal-page li{ color: var(--ink-dim); font-size:14.5px; line-height:1.8; margin-bottom:12px; }
.legal-page a{ color: var(--ink); text-decoration:underline; }
.legal-page .placeholder{ color: var(--accent); }

/* ============================== Responsive ============================== */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns:1fr; min-height:auto; padding-top:36px; }
  .hero-visual{ order:-1; }
  .manifesto-grid{ grid-template-columns:1fr; gap:28px; }
  .grid{ grid-template-columns: repeat(2,1fr); }
  .channel-grid{ grid-template-columns: repeat(3,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .lookbook-grid{ grid-template-columns: 1fr 1fr; }
  .production-grid{ grid-template-columns: 1fr 1fr; }
  .trust-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px){
  .lookbook-grid{ grid-template-columns: 1fr; }
  .production-grid{ grid-template-columns: 1fr; }
  .main-nav{ display:none; }
  .burger{ display:flex; }
  .stat-row{ grid-template-columns:1fr; gap:10px; }
  .channel-grid{ grid-template-columns: repeat(2,1fr); }
  .trust-grid{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr 1fr; gap:12px; }
  .card-title{ font-size:14px; }
  section{ padding: 56px 0; }
  .subscribe-form{ flex-direction:column; }
  .logo{ font-size:18px; }
  .header-actions{ gap:8px; }
  .currency-toggle button{ padding:7px 9px; font-size:11px; }
  .icon-btn{ width:36px; height:36px; }
}
