/* ===================================================================
   TOP PEP — Design system
   Clinical monochrome. Black ink, white ground, one muted gray,
   green reserved strictly for the in-stock status dot. Square corners
   everywhere, no drop shadows, monospace labels for a lab-verified feel.
=================================================================== */

:root {
  /* palette — LIGHT throughout (like the partner page), purple as the accent */
  --bg-primary: #FFFFFF;    /* sections that used to be dark are now white */
  --bg-card: #FFFFFF;       /* product card info panels */
  --bg-light: #FAFAFA;      /* alternating light sections */
  --accent-primary: #5E17EB;
  --accent-secondary: #4C0FC7;
  --text-primary: #0A0A0A;   /* primary text (now on light) */
  --text-secondary: #6E6E76; /* muted */
  --text-on-light: #0A0A0A;
  --border-dark: rgba(10, 10, 10, 0.10);
  --border-light: rgba(10, 10, 10, 0.10);

  /* legacy aliases mapped onto the palette so existing rules resolve correctly */
  --brand: #5E17EB;         /* accent — buttons, prices, hovers, small icons, badges */
  --brand-hover: #4C0FC7;
  --brand-dark: #0A0A0A;    /* dark backdrops / the floating bottom search bar */
  --ink-section: #FAFAFA;
  --ink: #0A0A0A;
  --ink-90: #17171b;
  --white: #FFFFFF;
  --paper: #FFFFFF;         /* page/content background */
  --wash: #F5F5F6;          /* neutral fill behind product photos */
  --muted: #6E6E76;
  --line: rgba(10, 10, 10, 0.10);
  --line-strong: rgba(10, 10, 10, 0.16);
  --line-dark: rgba(10, 10, 10, 0.10);
  --muted-dark: #6E6E76;
  --status: #1FA971;        /* stock dot ONLY */

  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Sora', 'Segoe UI', sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  --container: 1280px;
  --ticker-h: 36px;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
}
h1 { font-size: clamp(2.25rem, 4.2vw + 1rem, 2.9rem); }
h2 { font-size: clamp(1.6rem, 2.4vw + 0.8rem, 2.25rem); }
h3 { font-size: 1.15rem; line-height: 1.25; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; color: inherit; -webkit-appearance: none; appearance: none; }
img, svg { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.eyebrow, .label, .mono {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  line-height: 1.4;
}

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.text-muted { color: var(--muted); }
.center { text-align: center; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: var(--white);
  padding: 12px 20px; z-index: 1000;
  font-family: var(--font-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.skip-link:focus { left: 12px; top: 12px; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.dark :focus-visible, .search-modal :focus-visible, .cart-drawer :focus-visible { outline-color: var(--white); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 0; padding: 15px 28px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  border: 1px solid var(--brand); background: var(--brand); color: var(--white);
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, opacity 0.16s ease;
  min-height: 48px; white-space: nowrap;
}
.btn:hover { background: var(--brand-hover); border-color: var(--brand-hover); }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: var(--white); }
.btn-on-dark { background: var(--white); color: var(--brand); border-color: var(--white); }
.btn-on-dark:hover { background: transparent; color: var(--white); }
.btn-ghost-dark { background: transparent; color: var(--white); border-color: var(--line-dark); }
.btn-ghost-dark:hover { border-color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; min-height: 40px; font-size: 13px; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn .arrow { transition: transform 0.16s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px; border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}
.link-arrow .arrow { transition: transform 0.16s ease; }
.link-arrow:hover .arrow { transform: translateX(3px); }

/* ---------- TICKER ---------- */
.ticker {
  background: var(--brand); color: #fff;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  overflow: hidden; white-space: nowrap; height: var(--ticker-h);
  display: flex; align-items: center;
}
.ticker-track { display: inline-flex; animation: ticker 34s linear infinite; }
/* each half never shrinks and always spans at least the full viewport, so the
   loop stays gapless even on ultra-wide (2560px+) screens */
.ticker-track > span { display: inline-flex; align-items: center; flex-shrink: 0; min-width: 100vw; }
.ticker-item { display: inline-flex; align-items: center; gap: 20px; padding: 0 20px; }
.ticker-item::after { content: '\25C6'; font-size: 7px; opacity: 0.55; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white); border-bottom: 1px solid var(--line);
}
.header-inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 24px; height: var(--header-h); padding: 0 40px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; justify-self: start; }
.brand img { height: 58px; width: auto; object-fit: contain; }
.primary-nav { display: flex; gap: 34px; justify-self: center; }
.primary-nav a {
  font-size: 14px; font-weight: 500; color: var(--ink);
  padding: 6px 0; border-bottom: 2px solid transparent; transition: border-color 0.15s ease;
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { border-color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 6px; justify-self: end; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: none; border: none; color: var(--ink);
}
.icon-btn svg { width: 20px; height: 20px; }

/* cart pill: icon only when empty, expands to "qty · total" pill when filled */
.cart-pill {
  display: inline-flex; align-items: center; gap: 8px; height: 44px;
  padding: 0 10px; background: none; border: none; color: var(--ink);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em;
  transition: background 0.16s ease, color 0.16s ease, padding 0.16s ease;
}
.cart-pill svg { width: 20px; height: 20px; }
.cart-pill .cart-meta { display: none; }
.cart-pill.filled {
  background: var(--ink); color: var(--white); padding: 0 16px;
}
.cart-pill.filled .cart-meta { display: inline; }
.cart-pill.bump { animation: bump 0.34s ease; }
@keyframes bump { 40% { transform: scale(1.12); } }

.menu-toggle { display: none; }

/* mobile inline dropdown panel */
.mobile-panel {
  display: none; position: absolute; left: 0; right: 0; top: 100%;
  background: var(--white); color: var(--ink); z-index: 199;
  border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px rgba(10,10,10,0.10);
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.mobile-panel.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-panel nav { display: flex; flex-direction: column; padding: 4px 22px 14px; }
.mobile-panel nav a {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--ink);
}
.mobile-panel nav a:last-child { border-bottom: none; }
.mobile-panel .panel-foot { padding: 20px 24px; display: flex; gap: 12px; }

/* ---------- SEARCH (centered white panel, like reference) ---------- */
.search-modal {
  position: fixed; inset: 0; z-index: 400; background: rgba(10, 10, 10, 0.55);
  display: none; padding: 84px 20px 24px; overflow-y: auto;
}
.search-modal.open { display: block; }
.search-panel {
  max-width: 820px; margin: 0 auto; background: var(--white); color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}
.search-top { border-bottom: 1px solid var(--line); padding: 0 24px; }
.search-top-inner { display: flex; align-items: center; gap: 14px; height: 72px; }
.search-top svg { width: 22px; height: 22px; color: var(--muted); flex-shrink: 0; }
.search-input {
  flex: 1; min-width: 0; background: none; border: none; color: var(--ink);
  font-family: var(--font-display); font-size: clamp(1.2rem, 2.6vw, 1.7rem); font-weight: 500;
}
.search-input::placeholder { color: var(--muted); }
.search-input:focus { outline: none; }
.search-close {
  background: none; border: 1px solid var(--line-strong); color: var(--muted);
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 8px 14px; flex-shrink: 0; border-radius: 8px;
}
.search-body { overflow-y: auto; max-height: min(56vh, 520px); padding: 18px 24px 24px; }
.search-body h2 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 4px; }
.search-result {
  display: grid; grid-template-columns: 48px 1fr auto auto; align-items: center; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--line); width: 100%;
  background: none; border-left: 0; border-right: 0; border-top: 0; color: var(--ink); text-align: left; cursor: pointer;
}
.search-result:last-child { border-bottom: none; }
.search-result:hover { background: var(--wash); }
.search-result .thumb { width: 48px; height: 48px; background: var(--wash); overflow: hidden; }
.search-result .thumb img { width: 100%; height: 100%; object-fit: cover; }
.search-result .r-name { font-weight: 600; }
.search-result .r-cat { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.search-result .r-price { font-family: var(--font-display); font-weight: 600; color: var(--accent-primary); }
.search-result .r-arrow svg { width: 18px; height: 18px; color: var(--muted); }
.search-empty { color: var(--muted); padding: 20px 0; }

/* inline results above the sticky bottom search bar */
.sticky-search-results { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
.sticky-search-results .ssr-inner { background: var(--white); color: var(--ink); border: 1px solid var(--line); margin-bottom: 10px; max-height: 46vh; overflow-y: auto; display: none; padding: 0 18px; }
.sticky-search-results .ssr-inner.open { display: block; }

/* ---------- CART DRAWER ---------- */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 380; background: rgba(11,11,13,0.5);
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 390;
  width: min(420px, 100vw); background: var(--white);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.28s ease;
  border-left: 1px solid var(--line);
}
.cart-drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px 18px; border-bottom: 1px solid var(--line); }
.drawer-head h2 { font-size: 1.1rem; }
.drawer-close { background: none; border: none; width: 40px; height: 40px; }
.drawer-close svg { width: 22px; height: 22px; }

.ship-progress { padding: 18px 24px; border-bottom: 1px solid var(--line); }
.ship-progress .ship-msg { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.ship-progress .ship-msg b { color: var(--ink); }
.ship-track { position: relative; height: 2px; background: repeating-linear-gradient(90deg, var(--line-strong) 0 4px, transparent 4px 8px); }
.ship-fill { position: absolute; left: 0; top: 0; height: 2px; background: var(--ink); transition: width 0.35s ease; }
.ship-track .ship-dot { position: absolute; right: 0; top: -3px; width: 8px; height: 8px; background: var(--ink); border-radius: 50%; }

.drawer-items { flex: 1; overflow-y: auto; padding: 8px 24px; }
.drawer-line { display: grid; grid-template-columns: 64px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.drawer-line .thumb { width: 64px; height: 64px; background: var(--wash); }
.drawer-line .dl-name { font-weight: 600; font-size: 14px; }
.drawer-line .dl-cat { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-top: 2px; }
.drawer-line .dl-row { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.drawer-line .dl-price { font-family: var(--font-display); font-weight: 600; }

.stepper { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); }
.stepper button { width: 34px; height: 34px; background: none; border: none; font-size: 15px; color: var(--ink); }
.stepper button:hover { background: var(--wash); }
.stepper .qty { min-width: 34px; text-align: center; font-family: var(--font-mono); font-size: 13px; }
.dl-remove { background: none; border: none; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); text-decoration: underline; }
.dl-remove:hover { color: var(--ink); }

.drawer-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 32px; gap: 16px; }
.drawer-empty svg { width: 44px; height: 44px; color: var(--muted); }
.drawer-empty p { color: var(--muted); }

.drawer-promo { display: flex; align-items: center; gap: 10px; padding: 14px 24px; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.drawer-foot { padding: 20px 24px 24px; border-top: 1px solid var(--line); }
.drawer-subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.drawer-subtotal .label { color: var(--muted); }
.drawer-subtotal .amt { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.drawer-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }

/* ---------- PRODUCT CARD ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.product-card { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--white); display: flex; flex-direction: column; transition: border-color 0.15s ease, transform 0.15s ease; }
.product-card:hover { border-color: var(--brand); transform: translateY(-2px); }
.card-media { position: relative; aspect-ratio: 1 / 1; background: var(--white); display: flex; align-items: center; justify-content: center; overflow: hidden; border-bottom: 1px solid var(--line); border-radius: 13px 13px 0 0; clip-path: inset(0 0 1px 0 round 13px 13px 0 0); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.product-card:hover .card-media img { transform: scale(1.07); }
.card-badges { position: absolute; top: 0; left: 0; z-index: 2; }
.badge { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; }
.badge-cat { display: inline-block; background: rgba(18,18,20,0.9); color: #fff; padding: 8px 14px; border-radius: 0 0 14px 0; letter-spacing: 0.06em; }
.corner-badge { position: absolute; top: 0; right: 0; z-index: 2; font-family: var(--font-body); font-weight: 700; font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: #fff; padding: 8px 14px; border-radius: 0 0 0 14px; }
.corner-badge.badge-best { background: var(--accent-primary); }
.corner-badge.badge-sale { background: var(--accent-primary); }
.badge-sale { background: var(--brand); color: var(--white); }
.badge-best { background: var(--ink); color: var(--white); }
.card-info { background: var(--bg-card); color: var(--text-primary); padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-info .c-name { font-weight: 600; font-size: 15px; line-height: 1.25; }
.card-info .c-size { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-dark); }
.card-info .c-price { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin: 6px 0 12px; }
.card-info .c-price .old { color: var(--muted-dark); text-decoration: line-through; font-size: 13px; font-weight: 400; margin-right: 6px; }
.card-add { margin-top: auto; display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: var(--brand); color: #fff; border: none; border-radius: 12px; font-family: var(--font-body); font-weight: 600; font-size: 14px; padding: 12px; min-height: 44px; transition: background 0.15s ease; }
.card-add svg { width: 16px; height: 16px; }
.card-add:hover { background: var(--brand-hover); }
.badge-cat { text-transform: none; }

/* ---------- HOME ---------- */
.hero { background: var(--bg-primary); color: var(--text-primary); overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; padding: 80px 40px; }
.hero .eyebrow { color: var(--muted-dark); margin-bottom: 20px; display: block; }
.hero h1 { color: var(--ink); font-size: clamp(2.5rem, 5vw + 1rem, 3.6rem); margin-bottom: 22px; }
.hero h1 .outline { -webkit-text-stroke: 1.4px var(--accent-primary); color: transparent; }
.hero .lede { color: var(--muted); font-size: 17px; max-width: 480px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 44px; border-top: 1px solid var(--line-dark); padding-top: 26px; flex-wrap: wrap; }
.hero-stats .v { font-family: var(--font-display); font-size: 26px; font-weight: 600; }
.hero-stats .l { color: var(--muted-dark); font-size: 13px; margin-top: 4px; }
.hero-art { display: flex; align-items: center; justify-content: center; }
.hero-art svg { width: 100%; max-width: 440px; }
.hero-art img { width: 100%; max-width: 360px; height: auto; filter: drop-shadow(0 24px 50px rgba(10,10,10,0.14)); }
.hero-art video {
  width: 100%; height: auto; display: block;
  /* feather all four edges so the clip blends into the white page */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent), linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent), linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
  mask-composite: intersect;
}
.hero-art-video { align-self: stretch; }
.hero-art-video video { height: 100%; object-fit: cover; }

.carousel-block { padding: 68px 0; border-top: 1px solid var(--line); }
.carousel-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 28px; }
.carousel-head .eyebrow { color: var(--muted); display: block; margin-bottom: 10px; }
.carousel { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 1fr); gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: thin; }
.carousel > * { scroll-snap-align: start; }

.promise-band { background: var(--wash); border-top: 1px solid var(--line); }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.promise { padding: 56px 40px; border-right: 1px solid var(--line); }
.promise:last-child { border-right: none; }
.promise .num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--muted); }
.promise svg { width: 26px; height: 26px; margin: 18px 0 16px; color: var(--brand); }
.promise h3 { margin-bottom: 8px; }
.promise p { color: var(--muted); font-size: 14px; }

.faq-teaser { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; align-items: start; }

/* ---------- SHOP ---------- */
.shop-head { padding: 48px 0 28px; }
.filter-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-bottom: 22px; border-bottom: 1px solid var(--line); margin-bottom: 30px; position: sticky; top: var(--header-h); background: var(--white); z-index: 90; }
.pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; padding: 9px 14px; border: 1px solid var(--line-strong); background: var(--white); color: var(--ink); }
.pill[aria-pressed="true"] { background: var(--brand); color: var(--white); border-color: var(--brand); }
.filter-right { display: flex; align-items: center; gap: 14px; }
.sale-toggle { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.sale-toggle input { width: 40px; height: 22px; -webkit-appearance: none; appearance: none; background: var(--line-strong); position: relative; cursor: pointer; transition: background 0.15s ease; }
.sale-toggle input::after { content: ''; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; background: var(--white); transition: transform 0.15s ease; }
.sale-toggle input:checked { background: var(--ink); }
.sale-toggle input:checked::after { transform: translateX(18px); }
.sort-select { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; padding: 9px 30px 9px 12px; border: 1px solid var(--line-strong); background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230B0B0D' fill='none' stroke-width='1.4'/%3E%3C/svg%3E") no-repeat right 12px center; -webkit-appearance: none; appearance: none; }
.shop-count { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 20px; }
.shop-empty { padding: 60px 0; text-align: center; color: var(--muted); }

.sticky-search { position: fixed; left: 50%; bottom: 24px; z-index: 120; width: min(760px, calc(100% - 36px)); background: var(--white); color: var(--ink); transform: translate(-50%, 220%); transition: transform 0.32s ease; box-shadow: 0 16px 44px rgba(10,10,10,0.16); border: 1px solid var(--line); }
.sticky-search.visible { transform: translate(-50%, 0); }
.sticky-search-inner { display: flex; align-items: center; gap: 14px; padding: 15px 20px; }
.sticky-search svg { width: 18px; height: 18px; color: var(--muted); flex-shrink: 0; }
.sticky-search input { flex: 1; background: none; border: none; color: var(--ink); font-family: var(--font-body); font-size: 15px; }
.sticky-search input::placeholder { color: var(--muted); }
.sticky-search input:focus { outline: none; }

/* ---------- PRODUCT DETAIL ---------- */
.pd { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; padding: 48px 0 20px; }
.pd-media { position: sticky; top: calc(var(--header-h) + 24px); }
.pd-media .main-img { aspect-ratio: 1/1; background: var(--white); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; padding: 0; }
.pd-media .main-img svg { width: 70%; height: 70%; }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.pd-thumb { aspect-ratio: 1/1; background: var(--wash); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; padding: 14px; }
.pd-thumb[aria-pressed="true"] { border-color: var(--ink); }
.pd-thumb svg { width: 70%; height: 70%; }
.pd-info .eyebrow { color: var(--muted); display: block; margin-bottom: 12px; }
.pd-info h1 { margin-bottom: 16px; }
.pd-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.pd-price .cur { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--brand); }
.pd-price .old { color: var(--muted); text-decoration: line-through; font-size: 16px; }
.pd-desc { color: var(--muted); max-width: 52ch; margin-bottom: 26px; }
.pd-options { margin-bottom: 24px; }
.pd-options .opt-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 10px; }
.swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch { padding: 11px 18px; border: 1px solid var(--line-strong); background: var(--white); color: var(--ink); border-radius: 10px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; min-height: 44px; }
.swatch[aria-pressed="true"] { background: var(--brand); color: var(--white); border-color: var(--brand); }
.pd-buy-simple { display: flex; gap: 12px; margin-bottom: 26px; }
.pd-buy-variable .stepper { width: 100%; justify-content: space-between; margin-bottom: 12px; }
.pd-buy-variable .stepper button { flex: 1; height: 50px; }
.pd-buy-variable { margin-bottom: 26px; }
.pd-stepper-lg { height: 50px; }
.pd-stepper-lg button { width: 50px; height: 50px; font-size: 18px; }
.pd-stepper-lg .qty { min-width: 44px; }
.pd-meta { display: flex; gap: 24px; flex-wrap: wrap; font-size: 13px; color: var(--muted); padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.status-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--status); margin-right: 6px; vertical-align: middle; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.info-grid .cell { padding: 18px; text-align: center; border-right: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.info-grid .cell:last-child { border-right: none; }
.info-grid svg { width: 22px; height: 22px; color: var(--brand); }

.pd-tabs { background: var(--bg-primary); color: var(--text-primary); margin-top: 56px; display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 52px 44px; }
.tab-nav { display: flex; flex-direction: column; gap: 2px; }
.tab-nav button { background: none; border: none; text-align: left; padding: 14px 0; font-size: 14px; font-family: var(--font-body); color: var(--muted-dark); border-bottom: 1px solid var(--line-dark); min-height: 44px; }
.tab-nav button[aria-selected="true"] { color: var(--ink); font-weight: 600; border-color: var(--ink); }
.tab-panel { display: none; padding-left: 40px; color: var(--ink); font-size: 15px; line-height: 1.75; }
.tab-panel.active { display: block; }
.tab-panel dl { display: grid; grid-template-columns: max-content 1fr; gap: 10px 30px; margin: 0; }
.tab-panel dt { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-dark); }
.tab-panel dd { margin: 0; }

.sticky-buy { position: fixed; left: 0; right: 0; bottom: 0; z-index: 120; background: var(--white); border-top: 1px solid var(--line); display: none; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 20px; }
.sticky-buy.visible { display: flex; }
.sticky-buy .sb-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.sticky-buy .thumb { width: 42px; height: 42px; background: var(--wash); flex-shrink: 0; }
.sticky-buy .sb-name { font-weight: 600; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-buy .sb-price { font-family: var(--font-display); font-weight: 600; }

/* ---------- CART PAGE ---------- */
.cart-empty { text-align: center; padding: 100px 0; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.cart-empty svg { width: 56px; height: 56px; color: var(--muted); }
.cart-empty h1 { font-size: 2rem; }
.cart-empty p { color: var(--muted); max-width: 40ch; }
.cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; padding: 48px 0 90px; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); text-align: left; padding: 0 0 14px; border-bottom: 1px solid var(--line); font-weight: 400; }
.cart-table th.right, .cart-table td.right { text-align: right; }
.cart-row td { padding: 20px 0; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cart-prod { display: flex; gap: 16px; align-items: center; }
.cart-prod .thumb { width: 72px; height: 72px; background: var(--wash); flex-shrink: 0; }
.cart-prod .cp-name { font-weight: 600; }
.cart-prod .cp-cat { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-top: 3px; }
.cart-summary { border: 1px solid var(--brand); padding: 28px; position: sticky; top: calc(var(--header-h) + 24px); }
.cart-summary h2 { font-size: 1.15rem; margin-bottom: 20px; }
.sum-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; }
.sum-row.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 16px; font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.sum-row .muted { color: var(--muted); }

/* ---------- CHECKOUT ---------- */
.checkout-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: start; padding: 40px 0 90px; }
.step { border-top: 1px solid var(--line); padding: 32px 0; }
.step:first-child { border-top: none; padding-top: 8px; }
.step-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.step-num { width: 30px; height: 30px; border: 1px solid var(--brand); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 13px; flex-shrink: 0; }
.step-head h2 { font-size: 1.2rem; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line-strong); background: var(--white); font-family: var(--font-body); font-size: 15px; color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.radio-card { display: flex; align-items: center; gap: 14px; border: 1px solid var(--line-strong); padding: 16px 18px; margin-bottom: 12px; cursor: pointer; transition: border-color 0.15s ease; }
.radio-card:hover { border-color: var(--ink); }
.radio-card.selected { border-color: var(--brand); box-shadow: inset 0 0 0 1px var(--brand); }
.radio-card input { accent-color: var(--brand); width: 18px; height: 18px; }
.radio-card .rc-body { flex: 1; }
.radio-card .rc-title { font-weight: 600; font-size: 14px; }
.radio-card .rc-sub { font-size: 13px; color: var(--muted); }
.radio-card .rc-price { font-family: var(--font-display); font-weight: 600; }
.upsell-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.upsell { border: 1px solid var(--line-strong); padding: 14px; display: flex; gap: 12px; align-items: center; }
.upsell .thumb { width: 44px; height: 44px; background: var(--wash); flex-shrink: 0; }
.upsell .u-name { font-weight: 600; font-size: 13px; }
.upsell .u-price { font-family: var(--font-display); font-size: 13px; color: var(--muted); }
.upsell .u-add { margin-left: auto; }
.accordion-item { border: 1px solid var(--line-strong); margin-bottom: 12px; }
.accordion-head { display: flex; align-items: center; gap: 14px; width: 100%; background: none; border: none; padding: 16px 18px; text-align: left; font-weight: 600; font-size: 14px; }
.accordion-head .acc-icon { margin-left: auto; transition: transform 0.2s ease; }
.accordion-item.open .accordion-head .acc-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding: 0 18px 18px; color: var(--muted); font-size: 14px; }
.accordion-item.open .accordion-body { display: block; }
.promo-block { margin: 14px 0; border-top: 1px solid var(--line); padding-top: 14px; }
.promo-head { display: flex; align-items: center; gap: 10px; width: 100%; background: none; border: none; padding: 6px 0; font-weight: 600; font-size: 14px; color: var(--ink); }
.promo-head > svg { width: 18px; height: 18px; }
.promo-chev { margin-left: auto; width: 18px; height: 18px; transition: transform 0.2s ease; transform: rotate(180deg); }
.promo-block.open .promo-chev { transform: rotate(0deg); }
.promo-body { display: none; margin-top: 12px; }
.promo-block.open .promo-body { display: block; }
.promo-inline { display: flex; gap: 0; margin: 0; }
.promo-inline input { flex: 1; padding: 12px 14px; border: 1px solid var(--line-strong); border-right: none; font-family: var(--font-body); }
.promo-inline input:focus { outline: none; }
.order-summary { border: 1px solid var(--brand); padding: 26px; position: sticky; top: calc(var(--header-h) + 24px); }
.order-summary h2 { font-size: 1.1rem; margin-bottom: 18px; }
.os-line { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.os-line .thumb { width: 48px; height: 48px; background: var(--wash); flex-shrink: 0; }
.os-line .os-name { font-size: 13px; font-weight: 600; }
.os-line .os-qty { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.os-line .os-price { margin-left: auto; font-family: var(--font-display); font-weight: 600; font-size: 14px; }

/* ---------- ACCOUNT ---------- */
.auth-wrap { min-height: calc(100vh - var(--ticker-h) - var(--header-h)); display: flex; align-items: center; justify-content: center; padding: 60px 24px; background: var(--wash); }
.auth-card { width: 100%; max-width: 420px; background: var(--white); border: 1px solid var(--brand); padding: 40px; }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 28px; border: 1px solid var(--line-strong); }
.auth-tab { padding: 12px; background: none; border: none; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.auth-tab[aria-selected="true"] { background: var(--brand); color: var(--white); }
.oauth-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 13px; border: 1px solid var(--line-strong); background: var(--white); font-weight: 600; font-size: 14px; margin-bottom: 20px; }
.oauth-btn:hover { border-color: var(--ink); }
.oauth-btn:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.oauth-btn:disabled { opacity: .65; cursor: wait; }
.oauth-btn svg { width: 18px; height: 18px; }
.auth-divider { display: flex; align-items: center; gap: 14px; color: var(--muted); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.auth-row { display: flex; align-items: center; justify-content: space-between; margin: 4px 0 20px; font-size: 13px; }
.remember { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); }
.remember input { accent-color: var(--ink); }
.auth-forgot { color: var(--ink); text-decoration: underline; }

/* ---------- CONTENT PAGE ---------- */
.page-hero { background: var(--bg-primary); color: var(--text-primary); }
.page-hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; padding: 72px 40px; }
.page-hero .eyebrow { color: var(--muted-dark); display: block; margin-bottom: 18px; }
.page-hero h1 { color: var(--ink); margin-bottom: 18px; }
.page-hero p { color: var(--muted); max-width: 46ch; }
.page-hero-stats { display: flex; gap: 40px; margin-top: 30px; flex-wrap: wrap; }
.page-hero-stats .v { font-family: var(--font-display); font-size: 24px; font-weight: 600; }
.page-hero-stats .l { color: var(--muted-dark); font-size: 12px; margin-top: 4px; }
.page-hero-art { aspect-ratio: 4/3; background: var(--wash); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.page-hero-art svg { width: 55%; color: var(--muted); }
.alt-section { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 72px 0; border-top: 1px solid var(--line); }
.alt-section.reverse .alt-media { order: -1; }
.alt-media { aspect-ratio: 4/3; background: var(--wash); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.alt-media svg { width: 44%; color: var(--ink); }
.icon-list { display: flex; flex-direction: column; gap: 22px; margin-top: 8px; }
.icon-list li { display: grid; grid-template-columns: 26px 1fr; gap: 16px; }
.icon-list svg { width: 24px; height: 24px; color: var(--brand); }
.icon-list h3 { font-size: 1rem; margin-bottom: 4px; }
.icon-list p { color: var(--muted); font-size: 14px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 72px 0; border-top: 1px solid var(--line); }
.process-step .num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--brand); padding-bottom: 14px; border-bottom: 1px solid var(--brand); margin-bottom: 16px; display: block; }
.process-step h3 { margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: 14px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; align-items: center; gap: 18px; width: 100%; background: none; border: none; text-align: left; padding: 24px 0; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.faq-q .faq-icon { margin-left: auto; flex-shrink: 0; width: 20px; height: 20px; transition: transform 0.22s ease; }
.faq-item.open .faq-q .faq-icon { transform: rotate(135deg); }
.faq-a { display: none; padding: 0 38px 26px 0; color: var(--muted); max-width: 66ch; }
.faq-item.open .faq-a { display: block; }

/* ---------- COA (skobeispiel-style dashed cards) ---------- */
.coa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; padding: 40px 0 100px; }
.coa-card { background: none; text-align: center; }
.coa-card.verified { cursor: pointer; }
.coa-frame { border: 1px dashed var(--line-strong); border-radius: 16px; padding: 14px; background: var(--white); aspect-ratio: 3 / 4; overflow: hidden; position: relative; transition: border-color 0.16s ease, box-shadow 0.16s ease; }
.coa-card.verified:hover .coa-frame { border-color: var(--accent-primary); box-shadow: 0 12px 30px rgba(10,10,10,0.08); }
.coa-frame .coa-cert { width: 100%; height: 100%; object-fit: cover; object-position: top; border: 1px solid var(--line); background: #fff; }
.coa-frame .coa-cert.blur { filter: blur(7px); opacity: 0.6; }
.coa-frame > svg { width: 40%; margin: 30% auto; color: var(--muted); display: block; }
.coa-soon { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--muted); font-weight: 600; font-size: 1.05rem; }
.coa-soon svg { width: 40px; height: 40px; }
.coa-sizes { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 12px; }
.coa-size { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.03em; padding: 5px 11px; border: 1px solid var(--line-strong); border-radius: 999px; background: var(--white); color: var(--muted); min-height: 30px; transition: border-color 0.14s ease, color 0.14s ease, background 0.14s ease; }
.coa-size:hover { border-color: var(--accent-primary); color: var(--accent-primary); }
.coa-size.active { background: var(--accent-primary); border-color: var(--accent-primary); color: #fff; }
.coa-card .coa-name { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; margin-top: 10px; color: var(--text-on-light); }
.coa-card .coa-sizes + .coa-name { margin-top: 10px; }

/* COA lightbox */
.coa-lightbox { position: fixed; inset: 0; z-index: 430; background: rgba(10,10,10,0.72); display: none; padding: 32px 18px; overflow-y: auto; }
.coa-lightbox.open { display: flex; align-items: flex-start; justify-content: center; }
.coa-lb-panel { background: var(--white); color: var(--ink); max-width: 700px; width: 100%; }
.coa-lb-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.coa-lb-title { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.coa-lb-close { background: none; border: 1px solid var(--line-strong); width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; }
.coa-lb-close svg { width: 20px; height: 20px; }
.coa-lb-tabs { display: none; gap: 8px; padding: 14px 18px 0; flex-wrap: wrap; }
.coa-lb-tab { border: 1px solid var(--line-strong); background: var(--white); color: var(--muted); font-family: var(--font-mono); font-size: 12px; padding: 7px 14px; }
.coa-lb-tab.active { border-color: var(--accent-primary); color: var(--accent-primary); }
.coa-lb-img { padding: 16px; background: var(--wash); max-height: 66vh; overflow-y: auto; }
.coa-lb-img img { width: 100%; display: block; }
.coa-lb-foot { padding: 16px 18px; border-top: 1px solid var(--line); }
.coa-lb-link { width: 100%; }
.coa-multi { position: absolute; bottom: 8px; right: 8px; background: var(--accent-primary); color: #fff; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 8px; }

/* ---------- LEGAL ---------- */
.legal { max-width: 720px; margin: 0 auto; padding: 64px 0 90px; }
.legal h1 { margin-bottom: 12px; }
.legal .updated { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.legal hr { border: 0; height: 1px; background: var(--line); margin: 28px 0 36px; }
.legal h2 { font-size: 1.2rem; margin: 36px 0 12px; }
.legal h2 .n { font-family: var(--font-mono); font-size: 0.8em; color: var(--muted); margin-right: 10px; }
.legal p { color: var(--muted); margin-bottom: 14px; }
.impressum-list { display: grid; grid-template-columns: minmax(160px, auto) 1fr; gap: 12px 28px; margin-top: 8px; }
.impressum-list dt { font-weight: 600; color: var(--ink); }
.impressum-list dd { margin: 0; color: var(--muted); }
.impressum-list dd a { color: var(--accent-primary); font-weight: 600; }
@media (max-width: 560px) { .impressum-list { grid-template-columns: 1fr; gap: 4px 0; } .impressum-list dd { margin-bottom: 12px; } }

/* ---------- BANK-TRANSFER CONFIRMATION ---------- */
.pay-confirm { max-width: 640px; margin: 0 auto; padding: 56px 0 90px; }
.pay-eyebrow { display: inline-block; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-primary); border: 1px solid var(--accent-primary); border-radius: 999px; padding: 5px 12px; margin-bottom: 18px; }
.pay-confirm h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 12px; }
.pay-intro { color: var(--muted); font-size: 15px; line-height: 1.6; margin-bottom: 26px; }
.pay-card { border: 1px solid var(--line-strong); border-radius: 16px; overflow: hidden; }
.pay-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 18px; border-bottom: 1px solid var(--line); }
.pay-row:last-child { border-bottom: none; }
.pay-row-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); flex-shrink: 0; }
.pay-row-val { display: flex; align-items: center; gap: 12px; min-width: 0; }
.pay-val { font-family: var(--font-display); font-weight: 600; font-size: 15px; word-break: break-all; text-align: right; }
.pay-copy { flex-shrink: 0; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; padding: 7px 12px; border: 1px solid var(--line-strong); border-radius: 8px; background: var(--white); color: var(--ink); transition: all 0.14s ease; }
.pay-copy:hover { border-color: var(--accent-primary); color: var(--accent-primary); }
.pay-copy.copied { background: var(--accent-primary); border-color: var(--accent-primary); color: #fff; }
.pay-ref-hint { display: flex; align-items: flex-start; gap: 10px; color: var(--ink); font-size: 14px; margin-top: 18px; }
.pay-ref-hint svg { width: 18px; height: 18px; color: var(--accent-primary); flex-shrink: 0; margin-top: 1px; }
.pay-meta { margin-top: 18px; font-size: 13px; color: var(--muted); }
.pay-note-keep { margin-top: 14px; font-size: 13px; color: var(--muted); line-height: 1.6; }
.pay-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
@media (max-width: 560px) {
  .pay-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pay-row-val { width: 100%; justify-content: space-between; }
  .pay-val { text-align: left; }
}

/* ---------- PAYMENT-METHOD CHOOSER (card / cash on delivery) ---------- */
.pay-methods { margin-bottom: 16px; }
.pay-choose-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 10px; }
.pay-opt { display: flex; align-items: flex-start; gap: 12px; border: 1px solid var(--line-strong); border-radius: 12px; padding: 14px 16px; margin-bottom: 10px; cursor: pointer; transition: border-color 0.15s ease, box-shadow 0.15s ease; }
.pay-opt:hover { border-color: var(--ink); }
.pay-opt.selected { border-color: var(--brand); box-shadow: inset 0 0 0 1px var(--brand); }
.pay-opt input { accent-color: var(--brand); width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }
.pay-opt-title { font-weight: 600; font-size: 14px; }
.pay-opt-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.pay-opt.disabled { cursor: not-allowed; opacity: 0.6; background: var(--wash); }
.pay-opt.disabled:hover { border-color: var(--line-strong); }
.pay-opt-hint { font-size: 12px; color: #b5651d; margin-top: 8px; line-height: 1.5; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--bg-primary); color: var(--text-secondary); padding: 64px 0 26px; border-top: 1px solid var(--border-dark); }
.newsletter-bar { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; border-bottom: 1px solid var(--line-dark); padding-bottom: 40px; margin-bottom: 44px; }
.newsletter-bar h2 { color: var(--white); font-size: 1.5rem; }
.newsletter-bar p { color: var(--muted-dark); font-size: 14px; margin-top: 6px; max-width: 340px; }
.newsletter-form { display: flex; }
.newsletter-form label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.newsletter-form input { background: transparent; border: 1px solid var(--line-dark); border-right: none; padding: 14px 16px; color: var(--white); font-family: var(--font-body); width: 260px; }
.newsletter-form input::placeholder { color: var(--muted-dark); }
.newsletter-form input:focus { outline: none; border-color: var(--white); }
.footer-cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-cols .f-brand { display: flex; align-items: center; gap: 10px; }
.footer-cols .f-brand img { height: 40px; width: auto; }
.footer-cols .f-brand span { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.footer-desc { color: var(--muted-dark); font-size: 14px; margin: 16px 0; max-width: 300px; }
.footer-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-pill { display: inline-block; border: 1px solid var(--line-dark); padding: 6px 12px; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-cols h3 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; color: var(--muted-dark); }
.footer-cols ul { display: flex; flex-direction: column; gap: 11px; font-size: 14px; }
.footer-cols ul a:hover { color: var(--accent-primary); }
.footer-disclaimer { color: var(--muted-dark); font-size: 12px; line-height: 1.7; padding: 22px 0; border-top: 1px solid var(--line-dark); max-width: 760px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--line-dark); font-size: 12px; color: var(--muted-dark); }
.footer-bottom .legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--accent-primary); }

/* ---------- PRODUCT PHOTOS (fill thumbs / media) ---------- */
.pd-media .main-img { background: var(--white); overflow: hidden; }
.pd-media .main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.pd-media .main-img:hover img { transform: scale(1.12); }
.drawer-line .thumb img, .cart-prod .thumb img, .os-line .thumb img, .search-result .thumb img,
.sheet-thumb img, .sticky-buy .thumb img, .upsell .thumb img { width: 100%; height: 100%; object-fit: cover; }
.drawer-line .thumb, .cart-prod .thumb, .os-line .thumb, .search-result .thumb, .sheet-thumb, .sticky-buy .thumb, .upsell .thumb { overflow: hidden; padding: 0; }

/* ---------- LANGUAGE SWITCH ---------- */
.lang-switch { position: relative; }
.lang-btn { display: inline-flex; align-items: center; gap: 6px; height: 40px; padding: 0 10px; background: none; border: none; color: var(--ink); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; }
.lang-btn svg { width: 18px; height: 18px; }
.lang-menu { position: absolute; top: 46px; right: 0; background: var(--white); border: 1px solid var(--line-strong); display: none; flex-direction: column; min-width: 84px; z-index: 210; }
.lang-menu.open { display: flex; }
.lang-btn .flag { font-size: 16px; line-height: 1; }
.lang-menu { min-width: 150px; }
.lang-opt { display: flex; align-items: center; gap: 10px; background: none; border: none; text-align: left; padding: 11px 16px; font-family: var(--font-body); font-size: 14px; color: var(--ink); border-bottom: 1px solid var(--line); white-space: nowrap; }
.lang-opt .flag { font-size: 16px; }
.lang-opt:last-child { border-bottom: none; }
.lang-opt:hover { background: var(--wash); }
.lang-opt.active { background: var(--brand); color: var(--white); }

/* ---------- SIZE SHEET (add-to-cart) ---------- */
.sheet-backdrop { position: fixed; inset: 0; z-index: 410; background: rgba(11,11,13,0.5); opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.sheet-backdrop.open { opacity: 1; pointer-events: auto; }
.size-sheet { position: fixed; left: 50%; bottom: 0; transform: translate(-50%, 100%); width: min(560px, 100%); background: var(--white); z-index: 420; padding: 10px 22px 26px; transition: transform 0.3s ease; }
.size-sheet.open { transform: translate(-50%, 0); }
.sheet-grip { width: 44px; height: 4px; background: var(--line-strong); margin: 6px auto 16px; }
.sheet-head { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.sheet-thumb { width: 52px; height: 52px; background: var(--wash); flex-shrink: 0; padding: 6px; }
.sheet-title { flex: 1; }
.sheet-title .st-name { font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.sheet-title .st-price { color: var(--muted); font-size: 14px; margin-top: 2px; }
.sheet-close { background: none; border: 1px solid var(--line-strong); width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; }
.sheet-close svg { width: 20px; height: 20px; }
.sheet-hint { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin: 18px 0 12px; }
.sheet-options { display: flex; flex-direction: column; gap: 10px; }
.sheet-opt { display: flex; align-items: center; gap: 14px; width: 100%; background: var(--white); border: 1px solid var(--line-strong); padding: 16px 18px; text-align: left; transition: border-color 0.15s ease; }
.sheet-opt:hover { border-color: var(--brand); }
.sheet-opt .so-labelwrap { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.sheet-opt .so-label { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.sheet-opt .so-state { font-size: 10px; letter-spacing: .05em; text-transform: uppercase; font-weight: 700; }
.sheet-opt .so-state.so-in { color: #16a34a; }
.sheet-opt .so-state.so-pre { color: #b5651d; }
.sheet-opt .so-state.so-out { color: #9ca3af; }
.sheet-opt .so-price { font-size: 15px; }
.sheet-opt .so-price .old { color: var(--muted); text-decoration: line-through; font-size: 13px; }
.sheet-opt .so-add { width: 34px; height: 34px; border: 1px solid var(--brand); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; }
.sheet-opt .so-add svg { width: 16px; height: 16px; }
.sheet-opt:hover .so-add { background: var(--brand); color: var(--white); }
.dl-note, .drawer-line .dl-cat.auto { color: var(--brand); }

/* ---------- PRODUCT PAGE (extended) ---------- */
.pd-select-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 10px; }
.pd-select-head .opt-label { margin: 0; }
.pd-clear { background: none; border: none; font-size: 13px; color: var(--muted); text-decoration: underline; padding: 0; }
.pd-clear:hover { color: var(--ink); }
.pd-sel-price { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--brand); margin: 4px 0 20px; min-height: 30px; }
.pd-cats { font-size: 14px; color: var(--muted); margin: 22px 0; }
.pd-cats a { color: var(--ink); text-decoration: underline; }
.pd-ship { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.pd-ship .ship-line { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.pd-ship .ship-line svg { width: 20px; height: 20px; color: var(--ink); flex-shrink: 0; }
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); margin-bottom: 22px; }
.spec-grid .cell { padding: 16px 18px; border-right: 1px solid var(--line); }
.spec-grid .cell:last-child { border-right: none; }
.spec-grid .k { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 6px; }
.spec-grid .v { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.trust-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.trust-checks li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.trust-checks li svg { width: 17px; height: 17px; color: var(--brand); flex-shrink: 0; }
.trust-checks li .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--status); margin: 0 4px; flex-shrink: 0; }

/* ---------- MARKETING SPLIT SECTIONS (wholesale / shipping) — light ---------- */
.dark-split { background: var(--bg-light); color: var(--ink); display: grid; grid-template-columns: 45% 55%; align-items: stretch; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dark-split + .dark-split { margin-top: 44px; }
.dark-split .ds-copy { padding: 84px clamp(24px, 6vw, 120px); display: flex; flex-direction: column; justify-content: center; }
.dark-split .ds-eyebrow { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-bottom: 20px; }
.dark-split h2 { color: var(--ink); font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.04; margin-bottom: 20px; }
.dark-split p { color: var(--muted); max-width: 480px; margin-bottom: 30px; }
.dark-split .ds-media { background: var(--wash); display: flex; align-items: center; justify-content: center; color: var(--muted); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; min-height: 440px; background-size: cover; background-position: center; }
.ds-stats { display: flex; gap: 44px; flex-wrap: wrap; }
.ds-stats .v { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--accent-primary); }
.ds-stats .l { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-top: 6px; }
.ds-cta { margin-top: 34px; }
.btn-accent-ghost { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-accent-ghost:hover { background: var(--brand-hover); border-color: var(--brand-hover); }
.ds-checklist { display: flex; flex-direction: column; margin-top: 8px; }
.ds-checklist li { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.ds-checklist li:first-child { border-top: 1px solid var(--line); }
.ds-checklist svg { width: 20px; height: 20px; color: var(--accent-primary); flex-shrink: 0; margin-top: 1px; }
.ds-checklist b { color: var(--ink); font-weight: 600; }
.ds-checklist span { color: var(--muted); }
.wholesale-form-section { background: var(--bg-light); border-top: 1px solid var(--line); padding: 84px 24px; }
.wf-card { max-width: 900px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); padding: clamp(28px, 5vw, 56px); text-align: center; }
.wf-card .ds-eyebrow { margin-bottom: 16px; }
.wf-card h2 { color: var(--ink); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 14px; }
.wf-card > p { color: var(--muted); max-width: 560px; margin: 0 auto 32px; }
.wf-form { text-align: left; display: flex; flex-direction: column; gap: 16px; }
.wf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wf-form input, .wf-form textarea { width: 100%; background: #fff; border: 1px solid var(--line-strong); padding: 14px 16px; font-family: var(--font-body); font-size: 15px; color: var(--ink); }
.wf-form input::placeholder, .wf-form textarea::placeholder { color: var(--muted); }
.wf-form input:focus, .wf-form textarea:focus { outline: none; border-color: var(--brand); }
.wf-submit { width: 100%; background: var(--brand); color: #fff; border: 1px solid var(--brand); padding: 15px; font-weight: 600; font-size: 15px; min-height: 50px; transition: background 0.16s ease; }
.wf-submit:hover { background: var(--brand-hover); border-color: var(--brand-hover); }
.wf-status { color: var(--status); font-size: 14px; min-height: 18px; text-align: center; }
.wf-error { border-color: #e0533d !important; }

/* ---------- PARTNER PROGRAM ---------- */
.partner-hero { background: var(--bg-light); border-bottom: 1px solid var(--line); }
.partner-hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; padding: 80px 0; }
.partner-hero .eyebrow { color: var(--muted); display: block; margin-bottom: 18px; }
.partner-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.03; margin-bottom: 20px; }
.accent { color: var(--accent-primary); }
.partner-hero .lede { color: var(--muted); font-size: 17px; max-width: 470px; margin-bottom: 30px; }
.partner-hero-actions { margin-bottom: 40px; }
.partner-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 40px; max-width: 440px; }
.partner-stats .v { font-family: var(--font-display); font-weight: 700; font-size: 28px; }
.partner-stats .l { color: var(--muted); font-size: 14px; margin-top: 2px; }
.partner-hero-art { position: relative; min-height: 440px; display: flex; align-items: center; justify-content: center; }
.partner-hero-art .art-imgs { position: absolute; inset: 0; }
.partner-hero-art .art-imgs img { position: absolute; width: 140px; height: auto; filter: drop-shadow(0 18px 30px rgba(10,10,10,0.18)); }
.partner-hero-art .art-imgs img.float { animation: floaty 4.6s ease-in-out infinite; }
.partner-hero-art .art-imgs img:nth-child(1) { top: 28%; left: 0; animation-delay: 0s; }
.partner-hero-art .art-imgs img:nth-child(2) { top: 0; right: 0; width: 126px; animation-delay: 0.9s; }
.partner-hero-art .art-imgs img:nth-child(3) { bottom: 0; right: 0; width: 126px; animation-delay: 1.7s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.partner-earn-card { position: relative; z-index: 2; background: var(--white); border: 1px solid var(--line); box-shadow: 0 20px 50px rgba(10,10,10,0.12); padding: 24px; width: 300px; }
.partner-earn-card h3 { text-align: center; font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.partner-earn-card .big { text-align: center; font-family: var(--font-display); font-size: 40px; font-weight: 700; margin-bottom: 14px; }
.partner-earn-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14px; color: var(--muted); }
.partner-earn-row .amt { color: var(--accent-primary); font-weight: 600; }

.partner-why { padding: 84px 0; text-align: center; }
.partner-pill { display: inline-block; border: 1px solid var(--line-strong); border-radius: 999px; padding: 7px 16px; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-primary); margin-bottom: 22px; }
.partner-why h2, .partner-steps h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.partner-why .sub, .partner-steps .sub { color: var(--muted); margin-bottom: 46px; }
.partner-statrow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 56px; }
.partner-statrow .v { font-family: var(--font-display); font-weight: 700; font-size: 38px; }
.partner-statrow .l { color: var(--muted); font-size: 14px; }
.partner-statrow .l b { display: block; color: var(--ink); }
.partner-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; text-align: left; }
.partner-feature svg { width: 26px; height: 26px; color: var(--accent-primary); margin-bottom: 14px; }
.partner-feature h3 { margin-bottom: 8px; }
.partner-feature p { color: var(--muted); font-size: 14px; }

.partner-steps { padding: 84px 0; background: var(--wash); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.partner-step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: left; }
.partner-step .num { font-family: var(--font-display); font-weight: 700; font-size: 40px; margin-bottom: 10px; }
.partner-step h3 { margin-bottom: 6px; }
.partner-step p { color: var(--muted); font-size: 14px; }

.partner-example { padding: 84px 0 40px; text-align: center; }
.partner-example-card { max-width: 640px; margin: 0 auto 32px; background: var(--white); border: 1px solid var(--line); padding: 30px; }
.partner-example-card h3 { margin-bottom: 18px; }
.partner-example-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-top: 1px solid var(--line); font-size: 15px; }
.partner-example-row:first-of-type { border-top: none; }
.partner-example-row.big { font-weight: 700; }
.partner-example-row .amt { font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.partner-example-note { color: var(--muted); font-size: 13px; margin-top: 12px; }
.partner-signup { padding: 20px 0 100px; }
.partner-signup .wf-card { background: var(--white); color: var(--ink); border-color: var(--line); }
.partner-signup .wf-card h2 { color: var(--ink); }
.partner-signup .wf-card > p, .partner-signup .ds-eyebrow { color: var(--muted); }
.partner-signup .wf-form input, .partner-signup .wf-form textarea { border-color: var(--line-strong); }

/* ---------- CONTENT-PAGE PHOTOS + METHODS ---------- */
.page-hero-art img { width: 100%; height: 100%; object-fit: cover; }
.section-img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; border: 1px solid var(--line); margin-bottom: 44px; display: block; }
.alt-media img { width: 100%; height: 100%; object-fit: cover; }
.alt-media.doc { background: #fff; }
.alt-media.doc img { object-fit: contain; padding: 20px; }
.methods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 34px; }
.method .m-icon { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid var(--line-strong); color: var(--accent-primary); margin-bottom: 14px; }
.method .m-icon svg { width: 22px; height: 22px; }
.method h3 { margin-bottom: 8px; font-size: 1.05rem; }
.method p { color: var(--muted); font-size: 14px; }
.cert-checks { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.cert-checks li { display: flex; align-items: flex-start; gap: 12px; }
.cert-checks li svg { width: 20px; height: 20px; color: var(--accent-primary); flex-shrink: 0; margin-top: 1px; }
.cert-checks li span { color: var(--ink); }
.alt-section .methods-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 24px; }
.alt-section .process-steps { grid-template-columns: repeat(2, 1fr); padding: 0; border-top: none; gap: 22px; }
.methods-section { align-items: stretch; }
.methods-section .alt-media { aspect-ratio: auto; }
.coa-plain-head { padding: 64px 0 8px; }
.coa-plain-head h1 { font-size: clamp(2.2rem, 5vw, 3rem); margin-bottom: 8px; }
.coa-plain-head p { color: var(--muted); font-size: 16px; }

/* ===================================================================
   RESPONSIVE
=================================================================== */
@media (max-width: 1080px) {
  .wrap { padding: 0 28px; }
  .header-inner, .hero-inner, .page-hero-inner, .pd-tabs { padding-left: 28px; padding-right: 28px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-cols .f-brand-col { grid-column: 1 / -1; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .primary-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-panel { display: block; }
  .header-inner { grid-template-columns: 1fr auto; gap: 12px; }
  .header-actions { gap: 2px; }
  .header-actions .hide-mobile { display: none; }
  /* mobile action order: search · language · cart · menu */
  .header-actions #openSearch { order: 1; }
  .header-actions .lang-switch { order: 2; }
  .header-actions .cart-pill { order: 3; }
  .header-actions .menu-toggle { order: 4; }
  /* only the cart, no running total */
  .cart-pill .cart-sum { display: none; }
  /* pin the language dropdown to the right edge so it never overflows left */
  .lang-menu { position: fixed; top: calc(var(--ticker-h) + var(--header-h) - 6px); right: 12px; left: auto; }
  .hero-inner, .page-hero-inner, .faq-teaser, .pd, .cart-layout, .checkout-layout, .alt-section { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-art svg { max-width: 320px; }
  .pd-media { position: static; }
  .cart-summary, .order-summary { position: static; }
  .alt-section.reverse .alt-media { order: 0; }
  .pd-tabs { grid-template-columns: 1fr; padding: 40px 28px; }
  .tab-nav { flex-direction: row; overflow-x: auto; }
  .tab-nav button { white-space: nowrap; padding: 12px 18px 12px 0; }
  .tab-panel { padding-left: 0; margin-top: 20px; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise { border-right: none; border-bottom: 1px solid var(--line); }
  .promise:last-child { border-bottom: none; }
  .coa-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-bar { position: static; }
  .dark-split { grid-template-columns: 1fr; }
  .dark-split .ds-media { order: -1; min-height: 260px; }
  .dark-split .ds-copy { padding: 56px 24px; }
  .partner-hero-inner { grid-template-columns: 1fr; }
  .partner-hero-art { order: -1; min-height: 300px; }
  .partner-statrow { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .partner-features { grid-template-columns: 1fr; }
  .partner-step-grid { grid-template-columns: repeat(2, 1fr); }
  .methods-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .header-inner, .hero-inner, .page-hero-inner, .pd-tabs { padding-left: 18px; padding-right: 18px; }
  .section { padding: 56px 0; }
  .hero-inner, .page-hero-inner { padding-top: 44px; padding-bottom: 44px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .card-info { padding: 12px; }
  .card-info .c-name { font-size: 13px; }
  .hero-stats { gap: 24px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .upsell-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .coa-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .newsletter-bar { flex-direction: column; align-items: flex-start; }
  .newsletter-form { width: 100%; }
  .newsletter-form input { width: 100%; flex: 1; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .auth-card { padding: 28px 22px; }
  .cart-prod .thumb { width: 56px; height: 56px; }
  .pd-buy-simple { flex-direction: column; }
  .wf-row { grid-template-columns: 1fr; }
  .trust-checks { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .spec-grid .cell { border-right: none; border-bottom: 1px solid var(--line); }
  .spec-grid .cell:last-child { border-bottom: none; }
  .ds-stats { gap: 26px; }
  .lang-code { display: none; }
  .lang-btn { padding: 0 6px; }
  .partner-stats { grid-template-columns: 1fr 1fr; }
  .partner-step-grid { grid-template-columns: 1fr; }
  .partner-example-row { font-size: 13px; }
  .methods-grid { grid-template-columns: 1fr; }
  .section-img { aspect-ratio: 3 / 2; margin-bottom: 28px; }
  /* shop filters: more breathing room on phones so the pills/rows aren't cramped */
  .shop-head { padding: 26px 0 16px; }
  .shop-head h1 { line-height: 1.16; }
  .filter-bar { gap: 14px; padding-bottom: 18px; margin-bottom: 22px; }
  .pills { gap: 10px; }
  .pill { padding: 11px 16px; }
  .filter-right { width: 100%; gap: 12px; }
  .filter-right .sort-select { flex: 1; }
  .shop-count { margin: 6px 0 18px; }
}

/* ===================================================================
   SOFT CORNERS — gentle radius on controls, media and panels
=================================================================== */
.btn, .wf-submit { border-radius: 12px; }
.pill, .sort-select { border-radius: 10px; }
.icon-btn, .cart-pill, .lang-btn { border-radius: 10px; }
.field input, .field select, .field textarea,
.wf-form input, .wf-form textarea,
.promo-inline input, .auth-card input { border-radius: 10px; }
.promo-inline input { border-radius: 10px 0 0 10px; }
.promo-inline .btn, .promo-inline button { border-radius: 0 10px 10px 0; }
.sheet-opt { border-radius: 12px; }
.sheet-opt .so-add { border-radius: 8px; }
.size-sheet { border-radius: 18px 18px 0 0; }
.sticky-search { border-radius: 14px; }
.search-panel { border-radius: 16px; }
.alt-media { border-radius: 16px; overflow: hidden; }
.section-img { border-radius: 16px; }
.page-hero-art { border-radius: 16px; overflow: hidden; }
.dark-split { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); margin-left: 24px; margin-right: 24px; }
.cart-summary, .order-summary, .auth-card, .wf-card { border-radius: 16px; }
.partner-earn-card, .partner-example-card { border-radius: 18px; }
.coa-lb-panel { border-radius: 16px; overflow: hidden; }
.coa-lb-tab { border-radius: 8px; }
.method .m-icon { border-radius: 10px; }
.coa-frame .coa-cert { border-radius: 8px; }
.cart-prod .thumb, .line-thumb, .sheet-thumb { border-radius: 10px; overflow: hidden; }
.footer-pill { border-radius: 8px; }

/* ---------- 18+ AGE GATE ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(10, 10, 10, 0.62); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 20px; overflow-y: auto;
}
.age-panel {
  background: var(--white); color: var(--ink); border-radius: 20px;
  max-width: 480px; width: 100%; padding: 38px 32px 26px; text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.age-logo { height: 54px; width: auto; margin: 0 auto 18px; display: block; }
.age-eyebrow { display: block; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent-primary); margin-bottom: 12px; }
.age-panel h2 { font-size: 1.5rem; margin-bottom: 12px; }
.age-panel p { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
.age-panel p a { color: var(--accent-primary); font-weight: 600; text-decoration: underline; }
.age-actions { display: flex; flex-direction: column; gap: 10px; }
.age-actions .btn { width: 100%; }
.age-foot { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }

/* .section's padding shorthand wipes .wrap's side padding when both classes
   sit on one element — restore it (matches .wrap at every breakpoint) */
.wrap.section { padding-left: 40px; padding-right: 40px; }
@media (max-width: 1080px) { .wrap.section { padding-left: 28px; padding-right: 28px; } }
@media (max-width: 640px) { .wrap.section { padding-left: 18px; padding-right: 18px; } }

/* ---- checkout: street + house number, card errors ---- */
.field-row:has(.field-house) { grid-template-columns: 3fr 1fr; }
.pay-card-err:empty { display: none; }
.pay-card-err { margin-top: 10px; font-size: 14px; }

/* ---- live address validation (checkout) ---- */
.field input.wf-error, .field select.wf-error { border: 2px solid #dc2626 !important; }
.field input.wf-ok { border-color: #16a34a !important; }
.field-err { color: #dc2626; font-size: 13px; margin-top: 6px; line-height: 1.4; }
.field-warn { color: #b45309; font-size: 13px; margin-top: 6px; line-height: 1.4; }
.field-warn button { background: none; border: 0; padding: 0; margin-left: 6px;
  color: var(--accent, #5E17EB); text-decoration: underline; cursor: pointer; font: inherit; }
.field-checking { color: var(--muted, #6b7280); font-size: 13px; margin-top: 6px; }

/* ---- pre-order notice (no badge, just the box) ---- */
.preorder-note { border: 1px solid #f0b429; background: rgba(240,180,41,.08);
  border-radius: 12px; padding: 14px 16px; margin: 0 0 14px; font-size: 14.5px; line-height: 1.5; }
.preorder-note b { font-weight: 600; }

/* ---- availability system (delivery-expectation communication) ---- */
/* product-page size chip: on-backorder short label sits where the promise goes */
.sw-back { color: #b5651d; }
/* availability badge on cards + product page */
.avail-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px;
  font-weight: 600; line-height: 1.35; padding: 6px 10px; border-radius: 8px;
  border: 1px solid transparent; margin: 8px 0 2px; }
.avail-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: currentColor; flex: 0 0 auto; }
.avail-badge.avail-in { color: #1a7f37; background: rgba(26,127,55,.09); border-color: rgba(26,127,55,.22); }
.avail-badge.avail-back { color: #b5651d; background: rgba(181,101,29,.09); border-color: rgba(181,101,29,.24); }
.card-info .avail-badge { font-size: 11px; padding: 5px 9px; margin: 6px 0 2px; }
/* backorder freshness reassurance under the product-page badge */
.pd-avail { margin: 4px 0 2px; }
.avail-note { font-size: 13px; line-height: 1.5; color: var(--muted); margin: 8px 0 2px; max-width: 46ch; }
/* prominent checkout warning box (chargeback protection) */
.co-backorder-warn { border: 1px solid #e0952a; background: rgba(224,149,42,.10);
  color: #8a4b12; border-radius: 12px; padding: 14px 16px; margin: 16px 0 4px;
  font-size: 14px; line-height: 1.55; font-weight: 500; }
/* order-summary discount line + promo feedback */
.os-discount { color: #1a7f37; font-weight: 600; }
.promo-msg { margin: 8px 0 0; font-size: 13px; line-height: 1.4; }
.promo-msg.ok { color: #1a7f37; }
.promo-msg.err { color: #e0533d; }

/* ---- cookie consent banner ---- */
.cookie-bar { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 500;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  max-width: 920px; margin: 0 auto; padding: 16px 20px;
  background: var(--white); border: 1px solid var(--line-strong); border-radius: 14px;
  box-shadow: 0 12px 40px rgba(10,10,10,.16); }
.cookie-bar .cookie-text { flex: 1 1 320px; margin: 0; font-size: 14px; line-height: 1.5; color: var(--ink); }
.cookie-bar .cookie-text a { color: var(--brand); text-decoration: underline; }
.cookie-bar .cookie-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-bar .btn-sm { padding: 9px 16px; font-size: 13px; white-space: nowrap; }
@media (max-width: 560px) {
  .cookie-bar { left: 10px; right: 10px; bottom: 10px; padding: 14px 16px; gap: 12px; }
  .cookie-bar .cookie-actions { width: 100%; }
  .cookie-bar .cookie-actions .btn { flex: 1; }
}

/* ---- sold out (cannot be bought, unlike pre-order) ---- */
.swatch.is-sold-out, .sheet-opt.is-sold-out { opacity: .45; cursor: not-allowed; text-decoration: line-through; }
.swatch.is-sold-out:hover, .sheet-opt.is-sold-out:hover { background: none; }
.sold-out-note { border: 1px solid var(--line-strong, #d8d8de); background: rgba(0,0,0,.03);
  border-radius: 12px; padding: 14px 16px; margin: 0 0 14px; font-size: 14.5px; }
.so-soldout { color: #6b7280; font-size: 12px; margin-left: 6px; }

/* ---- availability label sits ABOVE the size bubble, not inside it ---- */
.swatch-wrap { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; }
.sw-state { font-size: 9px; letter-spacing: .05em; text-transform: uppercase; font-weight: 700; min-height: 11px; }
.sw-in { color: #16a34a; }
.sw-out { color: #9ca3af; }
.sw-none { visibility: hidden; }   /* keeps the bubbles on one line */
.swatch.is-sold-out { text-decoration: line-through; }
