/* ===========================================================
   WildWilly storefront — three art directions via CSS variables
   [data-dir="a"]  Pantry    — warm editorial
   [data-dir="b"]  Trailhead — bold & playful
   [data-dir="c"]  Smokehouse— smoky heritage
   =========================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
#root { overflow-x: clip; }
.mobnav-wrap { position: fixed; inset: 0; z-index: 70; overflow: hidden; pointer-events: none; }
.mobnav-wrap.open { pointer-events: auto; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- THEME A · PANTRY (warm editorial) ---------- */
[data-dir="a"] {
  --bg: #f5efe2;
  --surface: #fbf7ee;
  --ink: #2a2420;
  --ink-soft: #6b6157;
  --line: #e2d8c6;
  --accent: oklch(0.62 0.13 45);      /* clay terracotta */
  --accent-2: oklch(0.55 0.08 130);   /* muted olive */
  --accent-ink: #fbf7ee;
  --font-display: 'Spectral', Georgia, serif;
  --font-body: 'Archivo', system-ui, sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --display-weight: 600;
  --display-spacing: -0.01em;
  --display-transform: none;
  --display-italic: italic;
}
/* ---------- THEME B · TRAILHEAD (bold & playful) ---------- */
[data-dir="b"] {
  --bg: #ece4d2;
  --surface: #f4ecdb;
  --ink: #221f1a;
  --ink-soft: #5d574a;
  --line: #ded4be;
  --accent: oklch(0.66 0.19 47);      /* ember orange, saturated */
  --accent-2: oklch(0.82 0.15 90);    /* pop yellow */
  --accent-ink: #1c1a17;
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Space Grotesk', system-ui, sans-serif;
  --radius: 18px;
  --radius-lg: 30px;
  --display-weight: 800;
  --display-spacing: -0.03em;
  --display-transform: none;
  --display-italic: normal;
}
/* ---------- THEME C · SMOKEHOUSE (smoky heritage) ---------- */
[data-dir="c"] {
  --bg: #e9e3d6;
  --surface: #f2ecdf;
  --ink: #24201b;
  --ink-soft: #6a6055;
  --line: #d7cdbb;
  --accent: oklch(0.58 0.16 40);      /* ember */
  --accent-2: oklch(0.45 0.04 60);    /* smoke brown */
  --accent-ink: #f2ecdf;
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Archivo', system-ui, sans-serif;
  --radius: 6px;
  --radius-lg: 10px;
  --display-weight: 400;
  --display-spacing: 0.01em;
  --display-transform: uppercase;
  --display-italic: normal;
  /* dark sections */
  --dark-bg: #211d18;
  --dark-ink: #efe7d7;
}

/* ===================== PRIMITIVES ===================== */
.wrap { width: min(1240px, 92vw); margin-inline: auto; }
.display {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-spacing);
  text-transform: var(--display-transform);
  line-height: 0.98;
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: none;
}

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-weight: 600; font-size: 15px;
  border-radius: 999px;
  background: var(--ink); color: var(--bg);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .2s, box-shadow .25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: var(--accent-ink); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
[data-dir="b"] .btn { border-radius: 14px; box-shadow: 0 4px 0 rgba(0,0,0,.18); }
[data-dir="b"] .btn:hover { transform: translateY(-3px); box-shadow: 0 7px 0 rgba(0,0,0,.18); }
[data-dir="c"] .btn { border-radius: 4px; letter-spacing: .04em; text-transform: uppercase; font-size: 13px; }

/* ===================== HEADER ===================== */
.ticker {
  background: var(--ink); color: var(--bg);
  overflow: hidden; white-space: nowrap;
  font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
}
[data-dir="b"] .ticker { background: var(--accent); color: var(--accent-ink); }
[data-dir="c"] .ticker { background: var(--dark-bg); color: var(--dark-ink); text-transform: uppercase; letter-spacing: .12em; }
.ticker__track { display: flex; align-items: center; padding: 9px 0; width: max-content; animation: ticker 30s linear infinite; }
.ticker__item { display: inline-flex; align-items: center; padding-inline: 24px; }
.ticker__item::after { content: "✦"; opacity: .5; margin-left: 24px; }
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }

.header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.header.is-stuck { border-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; position: relative; z-index: 43; }
.logo { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 23px; letter-spacing: var(--display-spacing); text-transform: var(--display-transform); display: flex; align-items: center; gap: 9px; }
.logo__mark {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center; font-size: 15px; font-weight: 800;
  font-family: var(--font-body);
  flex: none;
}
[data-dir="c"] .logo__mark { border-radius: 4px; }
.nav { display: flex; gap: 30px; }
.nav a { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); position: relative; padding: 4px 0; transition: color .2s; }
.nav a::after { content:""; position:absolute; left:0; bottom:0; height:2px; width:0; background: var(--accent); transition: width .25s ease; }
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: 14px; }

.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 16px; border-radius: 999px;
  background: var(--ink); color: var(--bg); font-weight: 600; font-size: 14px;
  transition: transform .2s;
}
[data-dir="c"] .cart-btn { border-radius: 4px; }
.cart-btn:hover { transform: translateY(-1px); }
.profile-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; color: var(--ink); background: transparent; box-shadow: inset 0 0 0 1.5px var(--ink); transition: background .2s, color .2s, transform .2s; flex: none; }
.profile-btn svg { width: 19px; height: 19px; }
.profile-btn:hover { background: var(--ink); color: var(--bg); transform: translateY(-1px); }
.cart-btn__ico { display: none; width: 19px; height: 19px; }
@media (max-width: 860px) {
  .cart-btn { padding: 10px; }
  .cart-btn__ico { display: block; }
  .cart-btn__txt { display: none; }
}

/* mobile hamburger + slide-in nav */
.nav-burger { display: none; width: 40px; height: 40px; border-radius: 50%; background: var(--ink); flex-direction: column; align-items: center; justify-content: center; gap: 4px; flex: none; }
.nav-burger span { width: 17px; height: 2px; background: var(--bg); border-radius: 2px; transition: transform .28s ease, opacity .2s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobnav__scrim { position: absolute; inset: 0; z-index: 70; background: rgba(20,15,10,.42); opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(2px); }
.mobnav__scrim.open { opacity: 1; pointer-events: auto; }
.mobnav { position: absolute; top: 0; left: 0; bottom: 0; width: min(360px, 86vw); z-index: 71; background: var(--bg); box-shadow: none; transform: translateX(-100%); transition: transform .42s cubic-bezier(.2,.8,.2,1), box-shadow .42s ease; display: flex; flex-direction: column; padding: 18px 22px 32px; overflow-y: auto; overscroll-behavior: contain; pointer-events: auto; }
.mobnav.open { transform: translateX(0); box-shadow: 30px 0 60px -30px rgba(0,0,0,.4); }
.mobnav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mobnav__title { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.mobnav__link { display: block; font-family: var(--font-display); font-weight: var(--display-weight); font-size: 26px; letter-spacing: var(--display-spacing); color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--line); }
.mobnav__tax { padding: 14px 0; display: grid; gap: 16px; }
.mobnav__group-h { display: block; font-size: 15px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 9px; }
.mobnav__sub { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 15px; color: var(--ink); padding: 5px 0; margin-right: 16px; }
.mobnav__arr { font-size: 13px; color: var(--ink); transition: transform .2s ease; }
.mobnav__sub:active .mobnav__arr { transform: translateX(3px); }
.mobnav__sub:active { color: var(--accent); }
.mobnav__row { margin-bottom: 12px; }
.mobnav__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.mobnav__chip { display: inline-flex; align-items: center; gap: 5px; padding: 4px 11px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); font-size: 12.5px; font-weight: 600; color: var(--ink-soft); }
.mobnav__sub .emoji, .mobnav__group-h .emoji { font-size: 1em; margin-right: 1px; }
.mobnav__chip:active { border-color: var(--accent); color: var(--accent); }
.mobnav__divider { height: 1.5px; background: var(--line); margin: 8px 0 4px; }
.mobnav__feature { display: block; flex: none; margin-top: 14px; border: 1.5px solid var(--accent-2); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.mobnav__feature-media { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.mobnav__feature-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.mobnav__feature-tag { position: absolute; top: 10px; left: 10px; font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); }
.mobnav__feature-body { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 14px; }
.mobnav__feature-body h4 { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 18px; margin: 0; letter-spacing: var(--display-spacing); }
.mobnav__feature-desc { margin: 4px 0 0; font-size: 12.5px; color: var(--ink-soft); line-height: 1.4; }
.mobnav__feature-cta { font-weight: 700; font-size: 14px; color: var(--accent); white-space: nowrap; }
.mobnav__small { display: block; font-weight: 600; font-size: 15px; color: var(--ink-soft); padding: 10px 0; }
.mobnav__small:active { color: var(--accent); }
.cart-btn__count {
  min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center; font-size: 12px; font-weight: 800;
  transition: transform .3s cubic-bezier(.2,1.6,.4,1);
}
.cart-btn__count.bump { transform: scale(1.5); }

/* ===================== MEGA MENU ===================== */
.nav__shop { position: relative; display: flex; align-items: center; }
.nav__caret { display: inline-block; font-size: 9px; transition: transform .25s ease; opacity: .6; }
.nav__shop a.is-active { color: var(--ink); }
.nav__shop a.is-active::after { width: 100%; }
.nav__shop a.is-active .nav__caret { transform: rotate(180deg); opacity: 1; }

.mega__scrim {
  position: fixed; inset: 0; z-index: 30; background: rgba(20,15,10,.18);
  opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(1px);
}
.mega__scrim.open { opacity: 1; }

.mega {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 42;
  background: color-mix(in oklab, var(--surface) 42%, white); border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 30px 50px -28px rgba(40,30,20,.4);
  opacity: 0; transform: translateY(-10px); pointer-events: none;
  transition: opacity .26s cubic-bezier(.2,.8,.2,1), transform .26s cubic-bezier(.2,.8,.2,1);
}
.mega.open { opacity: 1; transform: none; pointer-events: auto; }
.mega__inner { display: grid; grid-template-columns: 1fr 290px; gap: 44px; padding: 32px 0 38px; }
.mega__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.mega__h { display: flex; align-items: center; gap: 10px; padding-bottom: 11px; margin-bottom: 18px; border-bottom: 1.5px solid var(--line); }
.mega__h-ic { width: 34px; height: 34px; flex: none; border-radius: 10px; display: grid; place-items: center; color: var(--tint, var(--accent)); background: color-mix(in oklab, var(--tint, var(--accent)) 14%, var(--surface)); }
[data-dir="c"] .mega__h-ic { border-radius: 5px; }
.mega__h-title { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 18px; letter-spacing: var(--display-spacing); }
.mega__h small { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-left: auto; }
.mega__group { margin-bottom: 18px; }
.mega__line { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; color: var(--ink); }
.mega__line-ic { color: var(--accent); flex: none; }
.mega__line span { position: relative; }
.mega__line span::after { content: " →"; opacity: 0; transition: opacity .2s, margin-left .2s; margin-left: 0; }
.mega__line:hover { color: var(--accent); }
.mega__line:hover span::after { opacity: 1; margin-left: 4px; }
.mega__chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 9px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px 5px 9px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--bg);
  font-size: 12.5px; font-weight: 600; color: var(--ink-soft);
  transition: all .2s;
}
.chip svg { color: var(--ink-soft); transition: color .2s; flex: none; }
[data-dir="c"] .chip { border-radius: 4px; }
.chip:hover { border-color: var(--accent); color: var(--accent); background: color-mix(in oklab, var(--accent) 10%, var(--bg)); transform: translateY(-2px); }
.chip:hover svg { color: var(--accent); }
.emoji { display: inline-flex; align-items: center; justify-content: center; line-height: 1; font-style: normal; flex: none; }
.link-more { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 15px; color: var(--accent); text-decoration: none; transition: gap .2s ease, opacity .2s ease; }
.link-more:hover { gap: 11px; opacity: .8; }

/* ===================== COMMUNITY (Wy + WildWilly) ===================== */
.community { background: var(--accent); }
.community .eyebrow { color: var(--accent-ink); }
.community__title { font-size: clamp(40px, 6vw, 84px); line-height: 0.96; margin: 12px 0 0; color: var(--accent-ink); }
.community__sub { color: color-mix(in oklab, var(--accent-ink) 82%, var(--accent)); font-size: clamp(15px, 1.3vw, 18px); line-height: 1.55; margin: 0; }
.community__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.community__tile { position: relative; aspect-ratio: 9/16; border-radius: var(--radius-lg); overflow: hidden; border: 2.5px solid var(--accent-2); }
.community__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.community__tile .ph { transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.community__vid { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.community__tile:hover img, .community__tile:hover .ph, .community__tile:hover .community__vid { transform: scale(1.06); }
.community__ov {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: color-mix(in oklab, var(--accent) 78%, transparent); color: var(--accent-ink);
  opacity: 0; transition: opacity .3s ease; font-weight: 700; font-size: 13px; letter-spacing: .02em;
}
.community__tile:hover .community__ov { opacity: 1; }
.community__cta { text-align: center; margin-top: 36px; }
.community__tile, .community__tile * { cursor: none; }
.com-cursor {
  position: fixed; left: 0; top: 0; z-index: 56; pointer-events: none;
  padding: 9px 34px; border-radius: 50%; background: var(--accent-2); color: var(--ink);
  font-family: var(--font-display); font-weight: var(--display-weight); font-size: 14px;
  text-transform: lowercase; letter-spacing: var(--display-spacing); white-space: nowrap;
  opacity: 0; transform: translate(-50%,-50%) scale(.4) rotate(var(--rot,0deg)); border: 1.5px solid var(--ink);
  transition: opacity .25s ease, transform .32s cubic-bezier(.2,1.5,.4,1);
  box-shadow: 0 10px 22px -10px rgba(40,25,15,.45);
}
.com-cursor.on { opacity: 1; transform: translate(-50%,-50%) scale(1) rotate(var(--rot,0deg)); }

/* ===================== REVIEWS (typewriter social proof) ===================== */
.reviews { background: var(--surface); }
.reviews::before {
  content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: url("img/paper-texture.png") center / cover no-repeat;
  mix-blend-mode: multiply; opacity: 0.62;
}
.reviews__stage { position: relative; max-width: 920px; margin-inline: auto; text-align: center; padding: clamp(44px,5vw,68px) 0; }
.reviews__stage::before, .reviews__stage::after {
  content: ""; position: absolute; left: 0; right: 0; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='16' viewBox='0 0 90 16'%3E%3Cpath d='M0 9 Q22.5 2 45 9 T90 9' fill='none' stroke='%23221f1a' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x;
  background-size: 90px 16px;
}
.reviews__stage::before { top: 0; }
.reviews__stage::after { bottom: 0; }
.reviews__kicker { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: clamp(24px,3vw,40px); flex-wrap: wrap; }
.reviews__kicker .stars { color: var(--accent); letter-spacing: 2px; font-size: 14px; }
.reviews__kicker b { color: var(--ink); }
.reviews__type { font-family: 'Courier Prime', ui-monospace, 'Courier New', monospace; font-weight: 700; font-size: clamp(19px, 2.5vw, 33px); line-height: 1.45; color: var(--ink); margin: 0 auto; max-width: 24ch; min-height: clamp(110px, 15vw, 190px); }
.reviews__caret { display: inline-block; width: .52em; height: 1.05em; background: var(--accent); margin-left: 3px; transform: translateY(4px); animation: caretBlink 1.05s steps(1, end) infinite; }
@keyframes caretBlink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }
.reviews__author { margin-top: clamp(20px,3vw,34px); font-family: var(--font-display); font-weight: var(--display-weight); font-size: clamp(15px,1.3vw,19px); text-transform: uppercase; letter-spacing: var(--display-spacing); color: var(--accent); opacity: 0; }
.reviews__author.show { opacity: 1; }
.reviews__author span { font-family: var(--font-body); font-weight: 600; font-size: 11.5px; letter-spacing: .1em; color: var(--ink-soft); }

@media (max-width: 900px) { .community__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .community__grid { grid-template-columns: repeat(2, 1fr); } }

/* ===================== JERKY TYPES (interactive) ===================== */
.types { background: var(--surface); overflow: hidden; }
.types__stage { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(24px, 4vw, 64px); align-items: center; margin-bottom: 40px; }
.types__display { position: relative; min-height: 460px; display: grid; place-items: center; }
.types__halo { position: absolute; width: 440px; height: 440px; max-width: 100%; border-radius: 50%; filter: blur(18px); opacity: .8; }
.types__meat {
  position: absolute; max-height: 460px; width: auto; max-width: 90%;
  filter: drop-shadow(0 30px 36px rgba(40,25,15,.4));
  opacity: 0; transform: scale(.94) translateY(12px) rotate(-3deg);
  transition: opacity .5s cubic-bezier(.2,.8,.2,1), transform .5s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.types__meat.active { opacity: 1; transform: none; animation: meatSway 7s ease-in-out infinite; pointer-events: auto; cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='46'%3E%3Ctext x='3' y='36' font-size='36'%3E🤩%3C/text%3E%3C/svg%3E") 23 23, auto; }
@keyframes meatSway { 0%,100% { transform: rotate(-2deg) translateY(0); } 50% { transform: rotate(2.5deg) translateY(-12px); } }
.types__index { position: absolute; top: 4px; left: 0; font-family: var(--font-display); font-weight: var(--display-weight); font-size: clamp(48px, 6vw, 84px); color: color-mix(in oklab, var(--accent) 22%, transparent); line-height: 1; letter-spacing: var(--display-spacing); }
.types__index span { font-size: 0.4em; opacity: .7; }

.types__info { background: color-mix(in oklab, var(--accent-2) 20%, white); border: 1.5px solid var(--accent-2); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 42px); }
.types__dots { display: none; }
.types__nav { display: none; }
@media (max-width: 860px) {
  .types__nav { display: grid; place-items: center; position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 38px; height: 38px; border-radius: 50%; background: transparent; color: color-mix(in oklab, var(--accent) 30%, transparent); font-size: 38px; line-height: 1; font-family: var(--font-display); }
  .types__nav--prev { left: 2px; }
  .types__nav--next { right: 2px; }
  .types__nav:active { color: var(--accent); }
  .types__dots { display: flex; gap: 9px; justify-content: center; margin-top: 22px; }
  .types__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); transition: background .25s, transform .25s; }
  .types__dot.on { background: var(--accent); transform: scale(1.25); }
}
.types__tag { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.types__tag::before { content: none; }
.types__name { font-size: clamp(40px, 5.4vw, 76px); line-height: 0.96; margin: 14px 0 0; animation: typeName .5s cubic-bezier(.2,.8,.2,1); }
@keyframes typeName { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.types__desc { font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; color: var(--ink-soft); max-width: 46ch; margin: 18px 0 28px; }

.types__meter { max-width: 460px; }
.types__meter-labels { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 9px; }
.types__meter-track { position: relative; height: 10px; border-radius: 999px; background: var(--line); overflow: visible; }
.types__meter-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, color-mix(in oklab, var(--accent) 45%, var(--accent-2)), var(--accent)); transition: width .55s cubic-bezier(.2,.8,.2,1); }
.types__meter-dot { position: absolute; top: 50%; width: 20px; height: 20px; border-radius: 50%; background: var(--accent); border: 3px solid var(--surface); box-shadow: 0 4px 10px rgba(40,25,15,.35); transform: translate(-50%, -50%); transition: left .55s cubic-bezier(.2,.8,.2,1); }
.types__bite { margin-top: 14px; font-weight: 700; font-size: 15px; color: var(--ink); }

.types__tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.types__tab {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px; text-align: left;
  background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
[data-dir="c"] .types__tab { border-radius: 8px; }
.types__tab:hover { transform: translateY(-3px); }
.types__tab.active { border-color: var(--accent-2); box-shadow: 0 14px 30px -20px rgba(40,25,15,.5); background: color-mix(in oklab, var(--accent-2) 20%, white); }
.types__tab-thumb { width: 46px; height: 56px; flex: none; display: grid; place-items: center; }
.types__tab-thumb img { max-height: 56px; max-width: 100%; width: auto; filter: drop-shadow(0 4px 6px rgba(40,25,15,.3)); transition: transform .25s; }
.types__tab.active .types__tab-thumb img { transform: scale(1.08) rotate(-3deg); }
.types__tab-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.types__tab-name { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 18px; text-transform: var(--display-transform); letter-spacing: var(--display-spacing); white-space: nowrap; color: var(--ink); }
.types__tab-tag { font-size: 12px; color: var(--ink-soft); white-space: nowrap; }

@media (max-width: 860px) {
  .types__stage { grid-template-columns: 1fr; gap: 20px; }
  .types__display { min-height: 320px; }
  .types__meat, .types__halo { max-height: 320px; }
  .types__halo { width: 300px; height: 300px; }
}
@media (max-width: 560px) {
  .types__tabs { grid-template-columns: 1fr; }
}
.mega__note { font-size: 12px; color: var(--ink-soft); line-height: 1.45; margin: 4px 0 0; font-style: italic; }

.mega__feature {
  display: flex; flex-direction: column; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; background: var(--bg);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
}
.mega__feature:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -26px rgba(40,30,20,.5); border-color: color-mix(in oklab, var(--accent) 40%, var(--line)); }
.mega__feature-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.mega__feature-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; transition: transform .4s; }
.mega__feature:hover .mega__feature-media img { transform: scale(1.05); }
.mega__feature-tag { position: absolute; top: 12px; left: 12px; display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; padding: 5px 11px 5px 9px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); }
[data-dir="c"] .mega__feature-tag { border-radius: 3px; }
.mega__feature-body { padding: 16px 18px 18px; }
.mega__feature-body small { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.mega__feature-body h4 { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 21px; margin: 5px 0 7px; text-transform: var(--display-transform); letter-spacing: var(--display-spacing); }
.mega__feature-body p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; margin: 0 0 12px; }
.mega__feature-cta { font-weight: 700; font-size: 14px; color: var(--ink); }
.mega__feature:hover .mega__feature-cta { color: var(--accent); }
@media (max-width: 980px) {
  .mega__inner { grid-template-columns: 1fr; gap: 28px; }
  .mega__feature { flex-direction: row; align-items: stretch; }
  .mega__feature-media { width: 40%; aspect-ratio: auto; }
}

/* ===================== HERO ===================== */
.hero { position: relative; padding: clamp(40px, 7vw, 96px) 0 clamp(96px, 11vw, 168px); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(24px, 4vw, 64px); align-items: center; }
.hero__title { font-size: clamp(46px, 7.4vw, 104px); margin: 18px 0 0; }
.hero__title .swap { color: var(--accent); display: inline-block; }
[data-dir="a"] .hero__title .swap { font-style: italic; }
.hero__lead { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-soft); max-width: 44ch; margin: 22px 0 30px; line-height: 1.55; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__meta { margin-top: 30px; display: flex; gap: 26px; flex-wrap: wrap; }
.hero__meta div { font-size: 13px; color: var(--ink-soft); }
.hero__meta b { display: block; font-family: var(--font-display); font-weight: var(--display-weight); font-size: 26px; color: var(--ink); text-transform: var(--display-transform); letter-spacing: var(--display-spacing); }

.hero__art { position: relative; }
.hero__pack {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  overflow: hidden; z-index: 2;
  box-shadow: 0 40px 80px -30px rgba(40,30,20,.4);
  will-change: transform;
}
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; animation: heroFade .5s ease; }
@keyframes heroFade { from { opacity: 0; transform: scale(1.04); } to { opacity: 1; transform: none; } }
.hero__toggle {
  position: absolute; z-index: 4; left: 14px; bottom: 14px;
  display: flex; align-items: center; gap: 3px; padding: 5px;
  background: color-mix(in oklab, var(--ink) 88%, transparent); color: var(--bg);
  border-radius: 999px; box-shadow: 0 12px 28px -12px rgba(0,0,0,.6); backdrop-filter: blur(8px);
}
[data-dir="c"] .hero__toggle { border-radius: 6px; }
.hero__toggle-label { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; opacity: .65; padding: 0 8px 0 10px; font-weight: 700; }
.hero__toggle button { padding: 7px 14px; border-radius: 999px; color: var(--bg); font-size: 12.5px; font-weight: 600; opacity: .6; transition: all .22s; }
[data-dir="c"] .hero__toggle button { border-radius: 4px; }
.hero__toggle button.active { background: var(--accent); color: var(--accent-ink); opacity: 1; }
.hero__toggle button:not(.active):hover { opacity: 1; background: rgba(255,255,255,.12); }
.hero__blob {
  position: absolute; inset: -8% -6% -6% -8%; z-index: 1;
  background: radial-gradient(60% 60% at 60% 40%, color-mix(in oklab, var(--accent) 35%, transparent), transparent 70%);
  filter: blur(8px);
}
.hero__badge {
  position: absolute; z-index: 3; right: -14px; top: 8%;
  width: 104px; height: 104px; border-radius: 50%;
  background: var(--accent-2); color: var(--ink); border: 1.5px solid var(--ink);
  display: grid; place-items: center; text-align: center;
  font-family: var(--font-display); font-weight: var(--display-weight);
  font-size: 13px; line-height: 1.05; text-transform: uppercase; letter-spacing: .04em;
  box-shadow: 0 14px 30px -10px rgba(40,30,20,.5);
  animation: spinslow 18s linear infinite;
}
[data-dir="c"] .hero__badge { border-radius: 6px; }
.hero__badge span { display: block; }
@keyframes spinslow { to { transform: rotate(360deg); } }

/* ===================== PLACEHOLDER ART ===================== */
.ph {
  position: relative; width: 100%; height: 100%;
  background-color: color-mix(in oklab, var(--tone, var(--accent)) 24%, var(--surface));
  background-image:
    repeating-linear-gradient(45deg,
      color-mix(in oklab, var(--tone, var(--accent)) 22%, transparent) 0 11px,
      transparent 11px 22px);
  display: grid; place-items: center;
  color: color-mix(in oklab, var(--tone, var(--ink)) 60%, var(--ink));
}
.ph__label { font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); background: var(--surface); border: 1px solid var(--line); padding: 6px 12px; border-radius: 6px; box-shadow: 0 6px 16px -8px rgba(40,30,20,.4); }

/* ===================== SECTIONS ===================== */
section { position: relative; }
.section-pad { padding: clamp(56px, 8vw, 120px) 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(32px, 4.2vw, 60px); margin: 12px 0 0; max-width: 16ch; }
.section-head p { color: var(--ink-soft); max-width: 40ch; margin: 0; line-height: 1.55; }

/* trust strip */
.trust { background: var(--ink); color: var(--bg); }
[data-dir="b"] .trust { background: var(--accent); color: var(--accent-ink); }
[data-dir="c"] .trust { background: var(--dark-bg); color: var(--dark-ink); }
.trust__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 40px 0; }
.trust__cell { text-align: center; }
.trust__k { font-family: var(--font-display); font-weight: var(--display-weight); font-size: clamp(34px, 4vw, 56px); text-transform: var(--display-transform); letter-spacing: var(--display-spacing); color: var(--accent-2); }
[data-dir="a"] .trust__k { color: color-mix(in oklab, var(--accent) 55%, white); }
.trust__v { font-size: 16px; font-weight: 500; color: var(--bg); margin-top: 4px; }

/* product grid */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  position: relative; background: var(--surface); border-radius: var(--radius-lg);
  border: 1px solid var(--line); overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s, border-color .3s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 30px 50px -28px rgba(40,30,20,.45); border-color: color-mix(in oklab, var(--accent) 40%, var(--line)); }
.card__media { position: relative; aspect-ratio: 1; overflow: hidden; }
.card__media .ph { transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.card:hover .card__media .ph { transform: scale(1.06); }
.card__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.2,1); }

/* second photo (floating slice) — swap to it: hide photo 1, float the slice on the card surface.
   Desktop: on hover. Mobile/touch: on horizontal swipe (toggles .card__media--swapped). */
.card__photo2 { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 9%; opacity: 0; filter: drop-shadow(0 14px 18px rgba(40,25,15,.45)); }
@media (hover: hover) {
  .card:hover .card__media .card__photo { transform: scale(1.06); }
  .card:hover .card__media--alt .card__photo { opacity: 0; }
  .card:hover .card__media--alt .card__photo2 { opacity: 1; animation: cardSliceFloat 3.2s ease-in-out infinite; }
}
.card__media--swapped .card__photo { opacity: 0; }
.card__media--swapped .card__photo2 { opacity: 1; animation: cardSliceFloat 3.2s ease-in-out infinite; }
@keyframes cardSliceFloat { 0%, 100% { translate: 0 0; rotate: -2deg; } 50% { translate: 0 -8px; rotate: 2deg; } }
@media (prefers-reduced-motion: reduce) { .card:hover .card__photo2, .card__media--swapped .card__photo2 { animation: none; } }
.card__tags {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  max-width: calc(100% - 24px);
}
.card__tag {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink); white-space: nowrap;
}
[data-dir="c"] .card__tag { border-radius: 3px; }
.card__tag--limited { background: var(--ink); color: var(--bg); }
.card__tag--emoji {
  padding: 0; width: 30px; height: 30px; justify-content: center;
  border-radius: 50%; background: var(--surface); color: var(--ink);
  box-shadow: 0 3px 9px -3px rgba(40,30,20,.45); text-transform: none;
}
[data-dir="c"] .card__tag--emoji { border-radius: 5px; }
.card__tag--emoji .emoji { font-size: 15px; line-height: 1; }
/* peek panel slides up on hover */
.card__peek {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  padding: 16px; transform: translateY(101%);
  background: color-mix(in oklab, var(--surface) 92%, transparent);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--line);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  font-size: 13px; color: var(--ink-soft); line-height: 1.45;
}
.card:hover .card__peek { transform: translateY(0); }
.card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card__cut { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.card__name { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 19px; line-height: 1.1; text-transform: var(--display-transform); letter-spacing: var(--display-spacing); margin: 2px 0 0; }
.card__foot { margin-top: auto; padding-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.card__price { font-weight: 700; font-size: 16px; }
.heat { display: inline-flex; gap: 3px; align-items: center; }
.heat i { width: 6px; height: 6px; border-radius: 50%; background: var(--line); }
.heat i.on { background: var(--accent); }
/* soft/dry texture indicator — droplets that merge (gooey) as level rises */
.soft { display: inline-flex; align-items: center; gap: 8px; }
.soft__drops { position: relative; display: inline-flex; align-items: center; gap: 6px; padding: 2px 2px; filter: url(#soft-goo); contain: paint; transform: translateZ(0); backface-visibility: hidden; }
.soft__drops::after { content: ""; position: absolute; left: 6px; top: 50%; height: 9px; width: calc((100% - 12px) * (var(--lvl) / 3)); transform: translateY(-50%); border-radius: 999px; background: var(--accent); transition: width .3s; }
.soft__drops i { position: relative; z-index: 1; width: 9px; height: 9px; border-radius: 50% 50% 50% 0; transform: rotate(45deg); background: var(--line); }
.soft__drops i.on { background: var(--accent); }
.soft__label { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.add__ico { display: none; width: 18px; height: 18px; }
@media (max-width: 560px) {
  .card .soft__label { display: none; }
  .card .add__txt, .card .add__plus { display: none; }
  .card .add__ico { display: block; }
  .card .add { padding: 10px 13px; }
}
.soft--types { margin-top: 18px; gap: 12px; }
.soft--types .soft__drops i { width: 12px; height: 12px; }
.soft--types .soft__drops::after { height: 12px; }
.soft--types .soft__label { font-size: 13px; color: var(--ink); }
/* isolate the filtered indicator onto its own layer so the looping
   meatSway animation in this section doesn't re-rasterize (and jitter) it */
.soft--types .soft__drops { contain: paint; transform: translateZ(0); backface-visibility: hidden; }
.add {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 16px; border-radius: 999px;
  background: var(--ink); color: var(--bg); font-weight: 600; font-size: 13.5px;
  transition: transform .2s, background .2s; white-space: nowrap;
}
[data-dir="c"] .add { border-radius: 4px; }
.add:hover { transform: translateY(-2px); background: var(--accent); color: var(--accent-ink); }
.add:active { transform: scale(.94); }
.add--on { background: var(--accent); color: var(--accent-ink); }

/* process */
.process { background: var(--surface); }
[data-dir="c"] .process { background: var(--dark-bg); color: var(--dark-ink); }
.process__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { position: relative; padding: 30px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--bg); overflow: hidden; transition: transform .35s; }
[data-dir="c"] .step { background: color-mix(in oklab, var(--dark-bg) 80%, black); border-color: rgba(255,255,255,.08); }
.step:hover { transform: translateY(-6px); }
.step__n { font-family: var(--font-display); font-weight: var(--display-weight); font-size: clamp(50px, 6vw, 78px); color: color-mix(in oklab, var(--accent) 30%, transparent); line-height: 1; text-transform: var(--display-transform); }
.step h3 { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 24px; margin: 8px 0 10px; text-transform: var(--display-transform); letter-spacing: var(--display-spacing); }
.step p { color: var(--ink-soft); line-height: 1.55; margin: 0; font-size: 15px; }
[data-dir="c"] .step p { color: color-mix(in oklab, var(--dark-ink) 75%, transparent); }

/* story band */
.story { background: var(--ink); color: var(--bg); overflow: hidden; }
[data-dir="b"] .story { background: var(--accent); color: var(--accent-ink); }
[data-dir="c"] .story { background: var(--dark-bg); color: var(--dark-ink); }
.story__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.story__title { font-size: clamp(34px, 4.6vw, 64px); margin: 16px 0 0; }
.story__body { font-size: 17px; line-height: 1.6; opacity: .9; margin: 22px 0 28px; max-width: 50ch; }
.story__art { position: relative; aspect-ratio: 5/6; }
.story__art img { border-radius: var(--radius-lg); }
.story__badge { position: absolute; right: -38px; top: -14px; z-index: 2; width: 112px; height: 112px; border-radius: 50%; background: var(--ink); border: 1.5px solid #ffffff; display: grid; place-items: center; animation: spinslow 18s linear infinite; }
.story__badge img { width: 64%; height: 64%; object-fit: contain; }
@media (prefers-reduced-motion: reduce) { .story__badge { animation: none; } }
.story .btn--ghost { box-shadow: inset 0 0 0 1.5px var(--ink); color: var(--ink); background: transparent; transition: background .28s ease, color .28s ease, gap .28s ease; }
.story .btn--ghost:hover { transform: none; background: var(--ink); color: var(--bg); box-shadow: inset 0 0 0 1.5px var(--ink); gap: 16px; }

/* big quote / marquee word */
.bigword { padding: clamp(30px,4vw,60px) 0; overflow: hidden; }
.bigword__track { display: flex; gap: 50px; white-space: nowrap; animation: drift 30s linear infinite; }
.bigword__track span { font-family: var(--font-display); font-weight: var(--display-weight); font-size: clamp(60px, 13vw, 190px); text-transform: uppercase; letter-spacing: var(--display-spacing); color: transparent; -webkit-text-stroke: 1.5px color-mix(in oklab, var(--ink) 35%, transparent); }
.bigword__track span:nth-child(even) { color: color-mix(in oklab, var(--accent) 85%, var(--ink)); -webkit-text-stroke: 0; }
@keyframes drift { to { transform: translateX(-50%); } }
@media (max-width: 860px) { .bigword__track { animation-duration: 11s; } }

/* newsletter — vintage ticket stub (SVG outline) */
.ticket { position: relative; min-height: 282px; }
.ticket__fill, .ticket__stroke { position: absolute; inset: 0; width: 100%; height: 100%; display: block; overflow: visible; }
.ticket__stroke { z-index: 3; pointer-events: none; }
.tk-shadow { fill: var(--accent-2); }
.tk-cream { fill: var(--surface); }
.tk-notch-top { fill: var(--bg); }
.tk-notch-bot { fill: var(--accent-2); }
.tk-outline { fill: none; stroke: var(--ink); stroke-width: 1.5; vector-effect: non-scaling-stroke; }
.tk-perf { stroke: var(--ink); stroke-width: 1.5; stroke-dasharray: 7 6; opacity: .45; vector-effect: non-scaling-stroke; }
.ticket__stub {
  position: absolute; left: 0; top: 0; bottom: 0; width: 22.115%; z-index: 2;
  color: var(--accent-ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  transform-origin: right top; will-change: transform;
}
.ticket__sent {
  position: absolute; left: 0; top: 0; bottom: 0; width: 22.115%; z-index: 1;
  display: grid; place-items: center; text-align: center;
  font-family: var(--font-display); font-weight: var(--display-weight);
  font-size: clamp(22px, 2.4vw, 34px); letter-spacing: var(--display-spacing);
  color: oklch(0.55 0.12 150); padding: 0 14px;
}
.ticket__stub-shape { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.ticket__stub-shape path { fill: var(--accent); }
.ticket__perc, .ticket__off, .ticket__stamp { position: relative; z-index: 1; }
.news-sec { position: relative; z-index: 1; }
.ticket__stub.ripping { z-index: 10; animation: ripFall 1.05s cubic-bezier(.45,.05,.75,.4) forwards; }
@keyframes ripFall {
  0% { transform: translate(0,0) rotate(0); }
  12% { transform: translate(3px,-13px) rotate(-3deg); }
  26% { transform: translate(-4px,2px) rotate(2deg); }
  100% { transform: translate(-52px, 125vh) rotate(-30deg); }
}
.ticket__perc { font-family: var(--font-display); font-weight: var(--display-weight); font-size: clamp(48px, 6.5vw, 82px); line-height: .9; letter-spacing: var(--display-spacing); }
.ticket__off { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 22px; text-transform: uppercase; letter-spacing: var(--display-spacing); }
.ticket__stamp { margin-top: 12px; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; border: 1.5px solid var(--accent-ink); border-radius: 999px; padding: 5px 12px; transform: rotate(-7deg); background: var(--accent-2); color: var(--ink); }
.ticket__body { position: absolute; left: 22.115%; right: 0; top: 0; bottom: 0; z-index: 2; padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.ticket__title { font-size: clamp(28px, 3.4vw, 46px); margin: 12px 0 0; }
.ticket__lead { color: var(--ink-soft); line-height: 1.55; margin: 14px 0 24px; max-width: 46ch; }
.ticket__form { display: flex; gap: 10px; max-width: 480px; flex-wrap: wrap; }
.ticket__form input { flex: 1; min-width: 180px; padding: 15px 18px; border-radius: 999px; border: 1.5px solid var(--line); font-family: inherit; font-size: 15px; background: var(--bg); color: var(--ink); transition: border-color .2s; }
.ticket__form input:focus { outline: none; border-color: var(--accent); }
[data-dir="c"] .ticket__form input { border-radius: 4px; }
.tk-v { display: none; }
@media (max-width: 680px) {
  /* vertical ticket: SVG frame stays static (notches stay), only orange stub rips */
  .ticket { position: relative; min-height: 440px; display: block; overflow: visible; }
  .tk-h { display: none; }
  .ticket__fill.tk-v, .ticket__stroke.tk-v { display: block; position: absolute; inset: 0; width: 100%; height: 100%; }
  .ticket__body { position: absolute; left: 0; right: 0; top: 0; height: 77.3%; padding: 30px 26px; display: flex; flex-direction: column; justify-content: center; }
  .ticket__title { font-size: 27px; }
  .ticket__lead { max-width: none; }
  .ticket__stub { position: absolute; left: 0; right: 0; bottom: 0; top: auto; width: 100%; height: 22.7%; z-index: 2; flex-direction: row; justify-content: center; align-items: center; gap: 14px; background: transparent; padding: 0; transform-origin: center top; }
  .ticket__stub-shape.tk-v { display: block; position: absolute; inset: 0; width: 100%; height: 100%; }
  .ticket__perc { font-size: 42px; }
  .ticket__off { font-size: 18px; }
  .ticket__stamp { margin-top: 0; }
  .ticket__sent { position: absolute; left: 0; right: 0; bottom: 0; top: auto; width: 100%; height: 22.7%; z-index: 1; }
  @keyframes ripFall {
    0% { transform: translate(0,0) rotate(0); }
    12% { transform: translate(0,-10px) rotate(1.5deg); }
    100% { transform: translate(20px, 125vh) rotate(14deg); }
  }
}

/* footer */
.footer { position: relative; z-index: 5; background: var(--bg); padding: 64px 0 40px; border-top: 1px solid var(--line); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 50px; }
.footer h4 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14.5px; color: var(--ink); opacity: .8; transition: opacity .2s, color .2s; }
.footer ul a:hover { opacity: 1; color: var(--accent); }
.footer__brand p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; max-width: 32ch; margin: 14px 0 0; }
.footer__pay { display: flex; flex-wrap: wrap; gap: 28px 56px; padding: 26px 0; border-top: 1px solid var(--line); }
.footer__pay-group { display: flex; flex-direction: column; gap: 12px; }
.footer__pay-label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.footer__marks { display: flex; flex-wrap: wrap; gap: 8px; }
.paymark { display: inline-flex; align-items: center; justify-content: center; height: 30px; transition: transform .2s; }
.paymark:hover { transform: translateY(-2px); }
.paymark img { height: 28px; width: auto; display: block; }
.paymark img[alt="dhl"], .paymark img[alt="fedex"] { height: 16px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 26px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-soft); flex-wrap: wrap; }

/* ===================== PROCESS HOVER CURSOR ===================== */
.process .section-head { position: relative; }
.proc-slot {
  position: absolute; left: 50%; top: calc(50% - 10px); z-index: 1;
  width: 312px; height: 150px;
  border: 2.5px dashed color-mix(in oklab, var(--accent) 55%, var(--line));
  border-radius: 50%; display: grid; place-items: center;
  transform: translate(-50%, -50%);
}
.proc-slot__fill {
  position: absolute; inset: 0; border-radius: 50%; overflow: hidden; border: 2px solid var(--accent);
  background: radial-gradient(circle at 50% 35%, color-mix(in oklab, var(--accent) 80%, white), var(--accent));
  opacity: 0; transform: scale(.5);
  transition: opacity .35s ease, transform .45s cubic-bezier(.2, 1.5, .4, 1);
  box-shadow: 0 12px 26px -10px rgba(40, 25, 15, .55);
}
.proc-slot.filled .proc-slot__fill { opacity: 1; transform: scale(1); }
.proc-slot span {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: color-mix(in oklab, var(--accent) 65%, var(--ink-soft));
  opacity: .8;
}
@keyframes slotPulse { 0%,100% { transform: translate(-50%, -50%) scale(1); opacity: .65; } 50% { transform: translate(-50%, -50%) scale(1.025); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .proc-slot { animation: none; } }
@media (max-width: 900px) { .proc-slot { display: none; } .proc-cursor { display: none; } }
/* mobile tap-to-reveal video circle in the headline white space */
.proctap { display: none; }
@media (max-width: 860px) {
  .process .section-head { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 12px; }
  .process .section-head > div { flex: 1 1 auto; }
  .process .section-head > p { flex-basis: 100%; }
  .proctap { display: block; position: relative; flex: 0 0 auto; width: clamp(110px, 30vw, 150px); height: clamp(110px, 30vw, 150px); margin-left: auto; border-radius: 50%; overflow: hidden; border: 2px dashed color-mix(in oklab, var(--accent) 60%, var(--line)); cursor: pointer; }
  .proctap__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 14px; opacity: 0; transform: scale(.6) rotate(-8deg); transition: opacity .4s ease, transform .45s cubic-bezier(.2,1.5,.4,1); }
  .proctap__hint { position: absolute; inset: 0; display: grid; place-items: center; background: transparent; color: color-mix(in oklab, var(--accent) 70%, var(--ink-soft)); font-family: var(--font-body); font-weight: 700; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; transition: opacity .35s ease; }
  .proctap.is-on { border-style: solid; border-color: var(--accent); background: color-mix(in oklab, var(--accent) 14%, var(--surface)); }
  .proctap.is-on .proctap__hint { opacity: 0; pointer-events: none; }
  .proctap.is-on .proctap__img { opacity: 1; transform: none; }
}
.process.cursor-hidden, .process.cursor-hidden * { cursor: none; }
.proc-cursor {
  position: fixed; left: 0; top: 0; z-index: 55; width: 312px; height: 150px;
  pointer-events: none; opacity: 0; transform: translate(-50%, -50%) scale(.3);
  transition: opacity .3s ease, transform .35s cubic-bezier(.2, 1.5, .4, 1);
  will-change: transform, left, top;
}
.proc-cursor.on { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.proc-cursor__ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: procSpin 9s linear infinite; }
.proc-cursor__ring text { font-family: var(--font-body); font-size: 9.5px; font-weight: 700; letter-spacing: .16em; fill: var(--ink); text-transform: uppercase; }
@keyframes procSpin { to { transform: rotate(360deg); } }
.proc-cursor__disc {
  position: absolute; left: 50%; top: 50%; width: 312px; height: 150px;
  transform: translate(-50%, -50%); border-radius: 50%; overflow: hidden; border: 2px solid var(--accent);
  background: radial-gradient(circle at 50% 35%, color-mix(in oklab, var(--accent) 80%, white), var(--accent));
  display: grid; place-items: center; box-shadow: 0 12px 26px -8px rgba(40, 25, 15, .55);
}
.proc-cursor__vid { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (prefers-reduced-motion: reduce) { .proc-cursor__ring { animation: none; } }

/* ===================== CART DRAWER ===================== */
.scrim { position: fixed; inset: 0; background: rgba(20,15,10,.42); z-index: 60; opacity: 0; pointer-events: none; transition: opacity .35s; backdrop-filter: blur(2px); }
.scrim.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 92vw); z-index: 61;
  background: var(--bg); box-shadow: none;
  transform: translateX(100%); transition: transform .42s cubic-bezier(.2,.8,.2,1), box-shadow .42s ease;
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); box-shadow: -30px 0 60px -30px rgba(0,0,0,.4); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 22px; margin: 0; text-transform: var(--display-transform); letter-spacing: var(--display-spacing); }
.drawer__close { width: 36px; height: 36px; border-radius: 50%; background: var(--surface); display: grid; place-items: center; font-size: 18px; color: var(--ink); transition: background .2s, transform .2s; }
.drawer__close:hover { background: var(--line); transform: rotate(90deg); }
.drawer__body { flex: 1; overflow-y: auto; padding: 12px 24px; }
.drawer__empty { text-align: center; color: var(--ink-soft); padding: 60px 20px; font-size: 15px; }
.line { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center; max-height: 240px; overflow: hidden; transition: opacity .26s ease, transform .26s ease, max-height .26s ease, padding .26s ease, margin .26s ease; }
.line.removing { opacity: 0; transform: translateX(34px); max-height: 0; padding-top: 0; padding-bottom: 0; margin-bottom: -1px; border-bottom-color: transparent; pointer-events: none; }
.line__media { width: 62px; height: 62px; border-radius: 12px; overflow: hidden; flex: none; border: 1px solid var(--line); }
[data-dir="c"] .line__media { border-radius: 4px; }
.line__photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.line__info { flex: 1; min-width: 0; }
.line__name { font-weight: 600; font-size: 14px; line-height: 1.2; }
.line__tags { display: flex; align-items: center; flex-wrap: wrap; gap: 5px; margin-top: 5px; }
.line__chip { font-size: 9.5px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; padding: 2px 7px; border-radius: 999px; line-height: 1.4; }
[data-dir="c"] .line__chip { border-radius: 3px; }
.line__chip--pack { color: var(--ink); background: color-mix(in oklab, var(--ink) 10%, var(--surface)); }
.line__chip--deal { color: #fff; background: var(--acct, var(--accent)); }
.line__chip--code { color: #fff; background: oklch(0.62 0.15 150); }
.line__plus { font-size: 11px; font-weight: 800; color: var(--ink-soft); }
.line__meta { font-size: 12.5px; color: var(--ink-soft); margin-top: 3px; }
.line__was { text-decoration: line-through; opacity: .7; }
.line__now { color: var(--accent); font-weight: 700; }
.qty { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
[data-dir="c"] .qty { border-radius: 4px; }
.qty button { width: 28px; height: 28px; display: grid; place-items: center; font-size: 15px; color: var(--ink); transition: background .2s; }
.qty button:hover { background: var(--surface); }
.qty span { min-width: 26px; text-align: center; font-size: 13.5px; font-weight: 600; }
.line__price { font-weight: 700; font-size: 14px; white-space: nowrap; display: flex; flex-direction: column; align-items: flex-end; gap: 1px; }
.line__price-was { font-size: 11.5px; font-weight: 600; color: var(--ink-soft); text-decoration: line-through; }
.drawer__foot { padding: 20px 24px 24px; border-top: 1px solid var(--line); }
.drawer__total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.drawer__total span { color: var(--ink-soft); font-size: 14px; }
.drawer__total b { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 28px; text-transform: var(--display-transform); }
.drawer__checkout { width: 100%; justify-content: center; }

/* per-line remove + actions row */
.line__actions { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.line__remove { width: 28px; height: 28px; flex: none; border-radius: 50%; display: grid; place-items: center; color: var(--ink-soft); transition: color .18s, background .18s; }
[data-dir="c"] .line__remove { border-radius: 4px; }
.line__remove svg { width: 16px; height: 16px; }
.line__remove:hover { color: var(--accent); background: color-mix(in oklab, var(--accent) 12%, var(--bg)); }
.line__fixed + .line__remove { margin-left: 2px; }

/* promo / redeem code */
.promo { margin-bottom: 16px; --pg: oklch(0.62 0.15 150); --pg-dark: oklch(0.46 0.13 150); }
.promo__toggle { display: inline-flex; align-items: center; gap: 8px; padding: 4px 2px; background: none; color: var(--pg-dark); font-size: 13.5px; font-weight: 700; letter-spacing: .01em; cursor: pointer; transition: opacity .15s; }
.promo__toggle svg { width: 16px; height: 16px; flex: none; }
.promo__toggle:hover { text-decoration: underline; text-underline-offset: 3px; }
/* redeem field — inherits the dashed ticket-code frame from the account deal */
.promo__form { display: flex; align-items: center; gap: 8px; height: 46px; padding: 6px 6px 6px 16px; border-radius: 999px; border: 1.6px dashed color-mix(in oklab, var(--pg) 62%, var(--line)); background: color-mix(in oklab, var(--pg) 6%, var(--surface)); transition: border-color .18s, box-shadow .18s, background .18s; }
[data-dir="c"] .promo__form { border-radius: 6px; }
.promo__form:focus-within { border-color: var(--pg); box-shadow: 0 0 0 3px color-mix(in oklab, var(--pg) 18%, transparent); }
.promo__form.err { border-style: solid; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 16%, transparent); }
.promo__input { flex: 1; min-width: 0; height: 100%; padding: 0; border: none; background: transparent; color: var(--ink); font-family: ui-monospace, Menlo, monospace; font-size: 15px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; outline: none; }
.promo__input::placeholder { color: var(--ink-soft); font-weight: 600; letter-spacing: .02em; text-transform: none; font-family: var(--font-body, inherit); }
.promo__btn { --g: var(--pg); --g-dark: var(--pg-dark); flex: none; height: 34px; padding: 0 16px; border-radius: 999px; background: var(--g); color: #fff; font-size: 12.5px; font-weight: 800; letter-spacing: .01em; white-space: nowrap; box-shadow: 0 3px 0 var(--g-dark), 0 4px 6px color-mix(in oklab, var(--g-dark) 55%, transparent); transform: translateY(-1px); transition: transform .1s ease, box-shadow .1s ease, filter .18s; }
[data-dir="c"] .promo__btn { border-radius: 4px; }
.promo__btn:hover:not(:disabled) { filter: brightness(1.05); }
.promo__btn:active:not(:disabled) { transform: translateY(2px); box-shadow: 0 1px 0 var(--g-dark), 0 1px 2px color-mix(in oklab, var(--g-dark) 50%, transparent); }
.promo__btn:disabled { background: color-mix(in oklab, var(--g) 38%, var(--line)); box-shadow: 0 3px 0 color-mix(in oklab, var(--g-dark) 30%, var(--line)); color: color-mix(in oklab, #fff 75%, transparent); cursor: default; }
.promo__err { margin-top: 8px; font-size: 12px; color: var(--accent); font-weight: 600; }
.promo__applied { display: flex; align-items: center; gap: 11px; padding: 10px 12px 10px 14px; border-radius: 14px; border: 1.6px dashed color-mix(in oklab, var(--pg) 55%, var(--line)); background: color-mix(in oklab, var(--pg) 9%, var(--bg)); }
[data-dir="c"] .promo__applied { border-radius: 6px; }
.promo__tick { width: 22px; height: 22px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--pg); color: #fff; font-size: 12px; font-weight: 800; box-shadow: 0 2px 0 var(--pg-dark); }
.promo__meta { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.25; }
.promo__meta b { font-size: 13.5px; letter-spacing: .04em; }
.promo__meta span { font-size: 12px; color: var(--ink-soft); }
.promo__clear { width: 26px; height: 26px; flex: none; border-radius: 50%; display: grid; place-items: center; font-size: 16px; color: var(--ink-soft); transition: color .18s, background .18s, transform .2s; }
.promo__clear:hover { color: var(--ink); background: color-mix(in oklab, var(--ink) 9%, transparent); transform: rotate(90deg); }
.drawer__row { display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 8px; }
.drawer__row--disc { color: oklch(0.46 0.13 150); font-weight: 700; }

/* flying dot */
.fly { position: fixed; z-index: 70; width: 18px; height: 18px; border-radius: 50%; background: var(--accent); pointer-events: none; box-shadow: 0 4px 12px rgba(0,0,0,.3); }
.fly1 { position: fixed; z-index: 70; pointer-events: none; display: grid; place-items: center; min-width: 34px; height: 34px; padding: 0 9px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); font-family: var(--font-display); font-weight: var(--display-weight); font-size: 15px; box-shadow: 0 6px 16px rgba(40,25,15,.4); }

/* toast */
.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px); z-index: 80; background: var(--ink); color: var(--bg); padding: 13px 22px; border-radius: 999px; font-size: 14px; font-weight: 600; opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; display: flex; align-items: center; gap: 10px; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast .dot { width: 8px; height: 8px; border-radius: 50%; background: oklch(0.62 0.13 150); flex: none; }
.toast__short { display: none; }
@media (max-width: 560px) {
  .toast { bottom: 18px; padding: 11px 18px; font-size: 13px; gap: 8px; max-width: calc(100vw - 32px); line-height: 1.2; white-space: nowrap; }
  .toast__full { display: none; }
  .toast__short { display: inline; }
}

/* ===================== DIRECTION SWITCHER ===================== */
.switcher {
  position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 50;
  display: flex; align-items: center; gap: 4px; padding: 6px;
  background: color-mix(in oklab, var(--ink) 92%, transparent); color: var(--bg);
  border-radius: 999px; box-shadow: 0 18px 40px -18px rgba(0,0,0,.6);
  backdrop-filter: blur(10px);
}
.switcher__label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; opacity: .7; padding: 0 10px 0 12px; font-weight: 600; }
.switcher button {
  padding: 8px 15px; border-radius: 999px; color: var(--bg); font-size: 13px; font-weight: 600;
  opacity: .65; transition: all .25s; white-space: nowrap;
}
.switcher button.active { background: var(--accent); color: var(--accent-ink); opacity: 1; }
.switcher button:not(.active):hover { opacity: 1; background: rgba(255,255,255,.1); }

/* ===================== SCROLL REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker__track, .bigword__track, .hero__badge { animation: none; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1080px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .nav-burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 420px; margin-inline: auto; }
  .story__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .trust__row { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .card__peek { display: none; }
  .news__form { flex-direction: column; }
  .footer__top { grid-template-columns: 1fr; }
  .switcher__label { display: none; }
}

/* ===================== DRAWER SHIPPING BAR ===================== */
.ship { padding: 14px 24px; border-bottom: 1px solid var(--line); }
.ship__bar { height: 7px; border-radius: 999px; background: var(--line); overflow: hidden; }
.ship__bar i { display: block; height: 100%; background: var(--accent); border-radius: 999px; transition: width .5s cubic-bezier(.2,.8,.2,1); }
.ship__txt { font-size: 12.5px; color: var(--ink-soft); margin-top: 8px; }
.ship__txt b { color: var(--ink); }
.ship--unlocked .ship__bar i { background: oklch(0.62 0.15 150); }
.ship--unlocked .ship__txt b { color: oklch(0.46 0.13 150); }

/* ===================== PRODUCT PAGE ===================== */
.crumbs { padding: 22px 0 0; font-size: 13px; color: var(--ink-soft); display: flex; gap: 8px; align-items: center; }
.crumbs a:hover { color: var(--accent); }
.crumbs span { opacity: .5; }

.pdp { padding: 26px 0 clamp(56px, 8vw, 110px); }
.pdp__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 4.5vw, 72px); align-items: start; }

/* gallery */
.gallery { position: sticky; top: 92px; }
.gallery__main { position: relative; aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--surface); box-shadow: 0 40px 80px -40px rgba(40,30,20,.4); }
.gallery__main .ph { animation: fadein .4s ease; }
.gmedia { width: 100%; height: 100%; object-fit: cover; display: block; }
.gmedia--float { object-fit: contain; padding: 11% 13%; filter: drop-shadow(0 26px 34px rgba(40,25,15,.4)); animation: meatSway 7s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .gmedia--float { animation: none; } }
.gallery__main .gmedia { animation: fadein .4s ease; }
@keyframes meatSwaySm { 0% { transform: scale(.5) translate(6px,2px) rotate(0deg); } 25% { transform: scale(.5) translate(0,-16px) rotate(-3deg); } 50% { transform: scale(.5) translate(-6px,2px) rotate(0deg); } 75% { transform: scale(.5) translate(0,16px) rotate(3deg); } 100% { transform: scale(.5) translate(6px,2px) rotate(0deg); } }
.gallery__main .gmedia--float.gmedia--sm { animation: fadeop .45s ease, meatSwaySm 9s linear infinite; }
@media (prefers-reduced-motion: reduce) { .gallery__main .gmedia--float.gmedia--sm { animation: fadeop .45s ease; transform: scale(.5); } }
.gmedia--float.gmedia--sm { animation: meatSwaySm 9s linear infinite; }
@media (prefers-reduced-motion: reduce) { .gmedia--float.gmedia--sm { animation: none; transform: scale(.5); } }
/* mobile: make the floating non-meat cutout 25% larger (0.5 -> 0.625) */
@media (max-width: 700px) {
  @keyframes meatSwaySmMob { 0% { transform: scale(.625) translate(6px,2px) rotate(0deg); } 25% { transform: scale(.625) translate(0,-16px) rotate(-3deg); } 50% { transform: scale(.625) translate(-6px,2px) rotate(0deg); } 75% { transform: scale(.625) translate(0,16px) rotate(3deg); } 100% { transform: scale(.625) translate(6px,2px) rotate(0deg); } }
  .gallery__main .gmedia--float.gmedia--sm { animation: fadeop .45s ease, meatSwaySmMob 9s linear infinite; }
}
@media (max-width: 700px) and (prefers-reduced-motion: reduce) { .gallery__main .gmedia--float.gmedia--sm { animation: fadeop .45s ease; transform: scale(.625); } }
/* floating cut-out in the main view: fade in (opacity only) AND keep gently floating */
.gallery__main .gmedia--float { animation: fadeop .45s ease, meatSway 7s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .gallery__main .gmedia--float { animation: fadeop .45s ease; } }
.gallery__cap { position: absolute; z-index: 3; left: 16px; bottom: 16px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--bg); background: color-mix(in oklab, var(--ink) 80%, transparent); backdrop-filter: blur(6px); padding: 7px 13px; border-radius: 999px; }
[data-dir="c"] .gallery__cap { border-radius: 4px; }
@keyframes fadein { from { opacity: 0; transform: scale(1.03); } to { opacity: 1; transform: none; } }
@keyframes fadeop { from { opacity: 0; } to { opacity: 1; } }
.gallery__badge { position: absolute; z-index: 3; right: -16px; top: 16px; width: 104px; height: 104px; border-radius: 50%; background: var(--accent-2); color: var(--ink); border: 1.5px solid var(--ink); display: grid; place-items: center; text-align: center; font-family: var(--font-display); font-weight: var(--display-weight); font-size: 13px; line-height: 1.05; text-transform: uppercase; letter-spacing: .04em; box-shadow: 0 14px 30px -10px rgba(40,30,20,.5); animation: spinslow 18s linear infinite; }
.gallery__badge span { display: block; }
.gallery__badge b { display: block; font-size: 19px; line-height: 1; font-weight: inherit; }
[data-dir="c"] .gallery__badge { border-radius: 6px; }
.thumbs { display: flex; gap: 12px; margin-top: 14px; }
.thumb { position: relative; flex: 1; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; border: 2px solid var(--line); cursor: pointer; transition: border-color .25s, transform .25s; background: none; padding: 0; }
.thumb:hover { transform: translateY(-3px); }
.thumb.active { border-color: var(--accent); }
.thumb__play { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; color: #fff; filter: drop-shadow(0 2px 6px rgba(0,0,0,.55)); }
.thumb__play svg { width: 22px; height: 22px; }

/* info column */
.pinfo__cut { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.pinfo__title { font-family: var(--font-display); font-weight: var(--display-weight); font-size: clamp(34px, 4.4vw, 58px); line-height: 1; text-transform: var(--display-transform); letter-spacing: var(--display-spacing); margin: 12px 0 0; }
.pinfo__rating { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-size: 13.5px; color: var(--ink-soft); }
.stars { display: inline-flex; gap: 2px; color: var(--accent); font-size: 15px; letter-spacing: 1px; }
.pinfo__price { display: flex; align-items: baseline; gap: 12px; margin: 20px 0 0; }
.pinfo__price b { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 34px; text-transform: var(--display-transform); white-space: nowrap; }
.pinfo__price s { color: var(--ink-soft); font-size: 18px; white-space: nowrap; }
.pinfo__lead { color: var(--ink-soft); line-height: 1.6; font-size: 16px; margin: 18px 0 0; max-width: 46ch; }

.pinfo__block { margin-top: 26px; }
.pinfo__block--meter { margin-top: 12px; }
.pinfo__label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 10px; display: flex; justify-content: space-between; }
.pinfo__label--dry { align-items: center; margin-bottom: 0; justify-content: flex-start; gap: 5px; }
.soft--dry { gap: 9px; }
.soft--dry .soft__label { color: var(--ink); }
.pills { display: flex; gap: 10px; flex-wrap: wrap; }
.pill { padding: 11px 18px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--surface); font-weight: 600; font-size: 14px; color: var(--ink); cursor: pointer; transition: all .2s; display: flex; flex-direction: column; align-items: flex-start; gap: 2px; line-height: 1.1; white-space: nowrap; }
[data-dir="c"] .pill { border-radius: 5px; }
.pill small { font-weight: 500; font-size: 11.5px; color: var(--ink-soft); }
.pill:hover { border-color: var(--accent); }
.pill.active { border-color: var(--accent); background: color-mix(in oklab, var(--accent) 12%, var(--surface)); }
.pill.active small { color: var(--accent); }

.heatmeter { display: flex; align-items: center; gap: 12px; }
.heatmeter__track { flex: 1; max-width: 220px; height: 8px; border-radius: 999px; background: var(--line); overflow: hidden; }
@media (min-width: 900px) { .heatmeter__track { max-width: 380px; } }
.heatmeter__cap { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); white-space: nowrap; transition: color .4s; }
.heatmeter__cap--mute { color: var(--ink-soft); opacity: .65; }
.heatmeter__fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent-2), var(--accent)); transition: width .4s; }
.heatmeter__val { font-size: 13px; font-weight: 700; color: var(--accent); white-space: nowrap; }

.buybar { display: flex; gap: 12px; margin-top: 28px; align-items: stretch; }
.stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; }
[data-dir="c"] .stepper { border-radius: 6px; }
.stepper button { width: 46px; align-self: stretch; display: grid; place-items: center; font-size: 20px; color: var(--ink); transition: background .2s; }
.stepper button:hover { background: var(--surface); }
.stepper span { min-width: 40px; text-align: center; font-weight: 700; font-size: 16px; }
.buybar .btn { flex: 1; justify-content: center; font-size: 16px; padding: 16px; }
.ic-cc { width: 15px; height: 15px; }
.assure__marks { gap: 7px; }
.assure__marks .paymark { height: 22px; }
.assure__marks .paymark img { height: 21px; }
.couriers { display: flex; align-items: center; gap: 14px; margin-top: 16px; flex-wrap: wrap; }
.couriers__label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.couriers__marks { gap: 10px; }
.couriers__marks .paymark { height: 26px; }
.couriers__marks .paymark img { height: 25px; }
.couriers__marks .paymark img[alt="dhl"] { height: 17px; }

.assure { display: flex; gap: 22px; margin-top: 22px; flex-wrap: wrap; }
.assure div { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-soft); }
.assure__em { font-weight: 800; color: var(--accent); }
.assure .ic { width: 26px; height: 26px; border-radius: 50%; background: color-mix(in oklab, var(--accent) 16%, var(--surface)); display: grid; place-items: center; color: var(--accent); flex: none; }
[data-dir="c"] .assure .ic { border-radius: 5px; }

/* accordion */
.acc { margin-top: 28px; border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__head { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 2px; font-family: var(--font-display); font-weight: var(--display-weight); font-size: 18px; color: var(--ink); text-align: left; text-transform: var(--display-transform); letter-spacing: var(--display-spacing); }
.acc__sign { font-family: var(--font-body); font-size: 22px; color: var(--accent); transition: transform .3s; flex: none; margin-left: 12px; }
.acc__item.open .acc__sign { transform: rotate(45deg); }
.acc__panel { overflow: hidden; max-height: 0; transition: max-height .4s cubic-bezier(.2,.8,.2,1); }
.acc__item.open .acc__panel { max-height: 320px; }
.acc__inner { padding: 0 2px 20px; color: var(--ink-soft); line-height: 1.6; font-size: 14.5px; }
.acc__inner ul { margin: 0; padding-left: 18px; }
.nutri { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 2px 0 18px; }
.nutri div { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 12px; text-align: center; }
[data-dir="c"] .nutri div { border-radius: 5px; }
.nutri b { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 24px; display: block; text-transform: var(--display-transform); }
.nutri small { font-size: 11px; color: var(--ink-soft); letter-spacing: .04em; text-transform: uppercase; }

/* related */
.related { background: var(--accent); padding: clamp(48px, 6vw, 92px) 0 clamp(56px, 8vw, 110px); }
.related .eyebrow { color: var(--accent-ink); }
.related .display { color: var(--accent-ink); }

@media (max-width: 860px) {
  .pdp__grid { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .gallery__main { max-width: 460px; }
}
@media (max-width: 560px) {
  .nutri { grid-template-columns: repeat(2, 1fr); }
  .buybar { flex-wrap: wrap; }
  .gallery__badge { width: 83px; height: 83px; font-size: 10.4px; right: -8px; }
  .gallery__badge b { font-size: 15px; }
}

/* ===================== WILLY QUOTE ===================== */
.willyq { padding: clamp(38px, 4.5vw, 64px) 0 clamp(74px, 12vw, 168px); border-top: 1px solid var(--line); }
.willyq__wrap { max-width: 1040px; text-align: center; }
.willyq__mark { display: block; font-family: var(--font-display); font-weight: var(--display-weight); font-size: clamp(96px, 13vw, 188px); line-height: .55; color: var(--accent); height: clamp(54px, 7vw, 100px); }
.willyq__text { font-family: var(--font-display); font-weight: var(--display-weight); letter-spacing: var(--display-spacing); text-transform: var(--display-transform); font-size: clamp(30px, 5vw, 66px); line-height: 1.06; margin: 0; text-wrap: balance; color: var(--ink); }
.willyq__text em { font-style: normal; color: var(--accent); white-space: nowrap; }
.willyq__by { margin-top: clamp(30px, 4vw, 52px); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.willyq__sig { height: clamp(74px, 7.5vw, 108px); width: auto; display: block; }
.willyq__role { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.willyq__video { position: relative; margin: 0 0 clamp(48px, 6vw, 84px); border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16 / 7; border: 2px solid var(--ink); box-shadow: 14px 14px 0 0 var(--accent-2); }
.willyq__video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.willyq__mobimg { display: none; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.willyq__sound { position: absolute; top: 14px; right: 14px; z-index: 3; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; border: none; cursor: pointer; color: var(--bg); background: color-mix(in oklab, var(--ink) 74%, transparent); backdrop-filter: blur(6px); transition: background .2s, transform .2s; }
.willyq__sound:hover { background: var(--ink); transform: scale(1.06); }
.willyq__sound svg { width: 20px; height: 20px; }
[data-dir="c"] .willyq__sound { border-radius: 6px; }
@media (max-width: 560px) {
  .willyq { border-top: none; }
  .willyq__video { aspect-ratio: 4 / 3; box-shadow: 9px 9px 0 0 var(--accent-2); }
  .willyq__mobimg { display: block; }
}

/* ===================== PRODUCT LISTING (PLP) ===================== */
.plp__hero { padding: clamp(18px, 3vw, 28px) 0 0; }
.plp__hgrid { display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 4vw, 56px); align-items: end; margin-top: 10px; }
.plp__title { font-size: clamp(46px, 7vw, 92px); margin: 6px 0 0; }
.plp__lead { color: var(--ink-soft); font-size: clamp(15px, 1.3vw, 18px); line-height: 1.6; max-width: 50ch; margin: 0 0 8px; }
.lead-br { display: none; }
@media (min-width: 761px) { .lead-br { display: inline; } }

/* category tabs (the 4 parent categories) */
.cats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(22px, 3vw, 34px); }
.cat-tab { display: inline-flex; align-items: center; gap: 9px; padding: 11px 16px 11px 18px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--surface); font-family: var(--font-display); font-weight: var(--display-weight); font-size: 16px; letter-spacing: var(--display-spacing); text-transform: var(--display-transform); color: var(--ink); transition: transform .2s, border-color .2s, background .2s, color .2s; }
.cat-tab__n { font-family: var(--font-body); font-weight: 700; font-size: 12px; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: var(--bg); color: var(--ink-soft); display: grid; place-items: center; transition: background .2s, color .2s; }
.cat-tab:hover { border-color: var(--tint); transform: translateY(-2px); }
.cat-tab.on { background: var(--tint); color: var(--accent-ink); border-color: var(--tint); }
.cat-tab.on .cat-tab__n { background: color-mix(in oklab, black 14%, var(--tint)); color: var(--accent-ink); }
[data-dir="c"] .cat-tab, [data-dir="c"] .cat-tab__n { border-radius: 4px; }

/* toolbar: count · sort · mobile filter button */
.plp__body { padding: clamp(20px, 3vw, 32px) 0 clamp(56px, 8vw, 110px); }
.plp__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 18px; margin-bottom: 24px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.plp__count { font-size: 14px; color: var(--ink-soft); }
.plp__count b { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 21px; color: var(--ink); margin-right: 3px; }
.plp__single { margin-left: 4px; }
.plp__bar-right { display: flex; align-items: center; gap: 12px; }
.sortsel { position: relative; display: inline-flex; align-items: center; gap: 9px; }
.sortsel > span { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.sortsel select { appearance: none; -webkit-appearance: none; padding: 10px 36px 10px 15px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--surface); font-family: inherit; font-size: 14px; font-weight: 600; color: var(--ink); cursor: pointer; transition: border-color .2s; }
.sortsel select:hover, .sortsel select:focus { outline: none; border-color: var(--accent); }
.sortsel__car { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--ink-soft); }
[data-dir="c"] .sortsel select { border-radius: 5px; }
.filterbtn { display: none; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: var(--ink); color: var(--bg); font-weight: 600; font-size: 14px; }
.filterbtn__n { min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); font-size: 12px; font-weight: 800; display: grid; place-items: center; }
[data-dir="c"] .filterbtn { border-radius: 4px; }

/* mobile grid/list view toggle */
.viewtoggle { display: none; align-items: center; gap: 2px; padding: 3px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--surface); }
[data-dir="c"] .viewtoggle { border-radius: 5px; }
.viewtoggle button { width: 36px; height: 32px; display: grid; place-items: center; border-radius: 999px; color: var(--ink-soft); transition: background .2s, color .2s; }
[data-dir="c"] .viewtoggle button { border-radius: 4px; }
.viewtoggle button svg { width: 18px; height: 18px; }
.viewtoggle button.on { background: var(--ink); color: var(--bg); }
.card__desc { display: none; margin: 5px 0 0; font-size: 13px; color: var(--ink-soft); line-height: 1.45; }

/* layout: sidebar + grid */
.plp__layout { display: grid; grid-template-columns: 266px 1fr; gap: clamp(24px, 3vw, 46px); align-items: start; }
.plp__layout--full { grid-template-columns: 1fr; }
.plp__grid { grid-template-columns: repeat(3, 1fr); }
.plp__layout--full .plp__grid { grid-template-columns: repeat(4, 1fr); }
/* grid cards are always visible — they re-render on every filter change,
   so they must not depend on the scroll-reveal IntersectionObserver */
.plp__grid .reveal { opacity: 1; transform: none; }

/* filter rail */
.filters { position: sticky; top: 86px; align-self: start; }
.filters__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.filters__title { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 21px; letter-spacing: var(--display-spacing); text-transform: var(--display-transform); }
.filters__clear { font-size: 12.5px; font-weight: 700; color: var(--accent); }
.filters__clear:hover { text-decoration: underline; }
.filters__divider { display: flex; align-items: center; gap: 10px; margin: 10px 0 4px; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.filters__divider::before, .filters__divider::after { content: ""; height: 1px; background: var(--line); flex: 1; }
.filters__divider span { white-space: nowrap; }

/* level-1 parent picker */
.parentpick { background: color-mix(in oklab, var(--accent) 7%, var(--surface)); border: 1.5px solid color-mix(in oklab, var(--accent) 24%, var(--line)); border-radius: var(--radius-lg); padding: 15px 15px 17px; margin-bottom: 8px; }
[data-dir="c"] .parentpick { border-radius: 8px; }
.parentpick__tag { font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); display: block; }
.facet__h { display: flex; flex-direction: column; gap: 3px; margin-bottom: 12px; }
.facet__title { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 17px; letter-spacing: var(--display-spacing); text-transform: var(--display-transform); color: var(--ink); }
.facet__cap { font-size: 11px; color: var(--ink-soft); letter-spacing: .01em; }
.parentpick__opts { display: flex; flex-direction: column; gap: 8px; }
.ppick { display: flex; align-items: center; gap: 11px; width: 100%; padding: 10px 13px; border-radius: var(--radius); border: 1.5px solid var(--line); background: var(--bg); font-weight: 600; font-size: 14.5px; color: var(--ink); transition: transform .18s, border-color .18s, background .18s, box-shadow .18s; }
[data-dir="c"] .ppick { border-radius: 5px; }
.ppick__ic { width: 30px; height: 30px; display: grid; place-items: center; color: var(--accent); flex: none; }
.ppick__ic svg { width: 24px; height: 24px; }
.ppick__all { font-weight: 700; }
.ppick:hover { border-color: var(--accent); transform: translateX(2px); }
.ppick.on { border-color: var(--accent); background: color-mix(in oklab, var(--accent) 14%, var(--bg)); box-shadow: inset 0 0 0 1px var(--accent); }

/* yellow ticker variant (product page, above footer) */
.ticker--yellow .ticker { background: var(--accent-2); color: var(--accent-ink); border-top: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink); }
[data-dir="b"] .ticker--yellow .ticker { background: var(--accent-2); color: var(--accent-ink); border-top: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink); }

/* dryness meter (meat line: Biltong ‹ New School ‹ Old School) */
.linemeter { padding: 15px 15px 12px; margin-bottom: 8px; background: color-mix(in oklab, var(--accent) 7%, var(--surface)); border: 1.5px solid color-mix(in oklab, var(--accent) 24%, var(--line)); border-radius: var(--radius-lg); }
[data-dir="c"] .linemeter { border-radius: 8px; }
.linemeter__hd { flex-direction: row; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 18px; }
.linemeter__reset { font-size: 12px; font-weight: 700; color: var(--accent); }
.linemeter__reset:hover { text-decoration: underline; }
.linemeter__track { position: relative; height: 22px; margin: 4px 6px 0; cursor: pointer; touch-action: none; }
.linemeter__track:focus-visible { outline: 2px solid var(--accent); outline-offset: 7px; border-radius: 8px; }
.linemeter__rail { position: absolute; top: 50%; left: 0; right: 0; height: 8px; transform: translateY(-50%); border-radius: 999px; background: var(--line); }
.linemeter__fill { position: absolute; top: 50%; left: 0; height: 8px; transform: translateY(-50%); border-radius: 999px; background: linear-gradient(90deg, color-mix(in oklab, var(--accent) 45%, var(--accent-2)), var(--accent)); transition: width .2s cubic-bezier(.2,.8,.2,1); }
.linemeter__track.off .linemeter__fill { width: 0 !important; }
.linemeter__track.drag .linemeter__fill, .linemeter__track.drag .linemeter__dot { transition: none; }
.linemeter__node { position: absolute; top: 50%; width: 11px; height: 11px; border-radius: 50%; transform: translate(-50%, -50%); background: var(--surface); border: 2px solid var(--line); pointer-events: none; transition: border-color .18s; }
.linemeter__track.off .linemeter__node { border-color: color-mix(in oklab, var(--accent) 35%, var(--line)); }
.linemeter__node.on { border-color: var(--accent); }
.linemeter__dot { position: absolute; top: 50%; width: 22px; height: 22px; border-radius: 50%; transform: translate(-50%, -50%); background: var(--accent); border: 3px solid var(--surface); box-shadow: 0 4px 12px -2px rgba(40,25,15,.45); transition: left .2s cubic-bezier(.2,.8,.2,1); pointer-events: none; }
.linemeter__track.drag .linemeter__dot { transform: translate(-50%, -50%) scale(1.1); }
.linemeter__labels { position: relative; display: flex; justify-content: space-between; margin: 12px 2px 0; }
.linemeter__lab { font-size: 11.5px; font-weight: 600; color: var(--ink-soft); background: none; padding: 2px 0; transition: color .18s; cursor: pointer; }
.linemeter__lab:first-child { text-align: left; }
.linemeter__lab:last-child { text-align: right; }
.linemeter__lab:hover { color: var(--ink); }
.linemeter__lab.on { color: var(--accent); font-weight: 800; }
.linemeter__cap { display: flex; justify-content: space-between; margin: 7px 2px 0; font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); opacity: .7; }

/* level-2 facets */
.facet { padding: 17px 0; border-bottom: 1px solid var(--line); }
.facet:last-child { border-bottom: none; }
.facet__opts { display: flex; flex-wrap: wrap; gap: 8px; }
.opt { display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px 8px 11px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--bg); font-size: 13.5px; font-weight: 600; color: var(--ink-soft); transition: border-color .18s, color .18s, background .18s; }
[data-dir="c"] .opt { border-radius: 4px; }
.opt__box { width: 16px; height: 16px; border: 1.7px solid var(--line); flex: none; display: grid; place-items: center; transition: background .18s, border-color .18s; }
.opt--radio .opt__box { border-radius: 50%; }
.opt--check .opt__box { border-radius: 5px; }
.opt:hover { border-color: var(--accent); color: var(--ink); }
.opt.on { border-color: var(--accent); color: var(--accent); background: color-mix(in oklab, var(--accent) 10%, var(--bg)); }
.opt.on .opt__box { background: var(--accent); border-color: var(--accent); }
.opt--radio.on .opt__box::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-ink); }
.opt--check.on .opt__box::after { content: ""; width: 9px; height: 5px; border: 2px solid var(--accent-ink); border-top: none; border-right: none; transform: translateY(-1px) rotate(-45deg); }

/* active filter chips */
.achips { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 22px; }
.achip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 8px 7px 14px; border-radius: 999px; background: color-mix(in oklab, var(--accent) 14%, var(--surface)); border: 1.5px solid color-mix(in oklab, var(--accent) 34%, var(--line)); font-size: 13px; font-weight: 600; color: var(--ink); transition: background .18s; }
[data-dir="c"] .achip { border-radius: 4px; }
.achip:hover { background: color-mix(in oklab, var(--accent) 22%, var(--surface)); }
.achip__x { display: grid; place-items: center; width: 17px; height: 17px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); font-size: 13px; line-height: 1; }
.achips__clear { font-size: 12.5px; font-weight: 700; color: var(--ink-soft); margin-left: 4px; }
.achips__clear:hover { color: var(--accent); }

/* single-list note (limited / bundles) */
.plp__note { display: flex; align-items: center; gap: 11px; padding: 14px 18px; border-radius: var(--radius); border: 1.5px dashed color-mix(in oklab, var(--accent) 40%, var(--line)); background: color-mix(in oklab, var(--accent) 6%, var(--surface)); color: var(--ink-soft); font-size: 14px; line-height: 1.5; margin-bottom: 24px; }
[data-dir="c"] .plp__note { border-radius: 6px; }
.plp__note-ic { color: var(--accent); flex: none; display: grid; place-items: center; }

/* empty state */
.plp__empty { text-align: center; padding: clamp(40px, 7vw, 90px) 20px; border: 1.5px dashed var(--line); border-radius: var(--radius-lg); }
.plp__empty-big { font-family: var(--font-display); font-weight: var(--display-weight); font-size: clamp(40px, 6vw, 72px); color: color-mix(in oklab, var(--accent) 32%, var(--ink-soft)); letter-spacing: var(--display-spacing); text-transform: var(--display-transform); line-height: 1; }
.plp__empty p { color: var(--ink-soft); max-width: 38ch; margin: 12px auto 24px; line-height: 1.55; }

/* mobile filter drawer */
.fdrawer-wrap { display: none; }

@media (max-width: 1180px) {
  .plp__grid, .plp__layout--full .plp__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .filters { display: none; }
  .plp__layout { grid-template-columns: 1fr; }
  .filterbtn { display: inline-flex; }
  .plp__grid, .plp__layout--full .plp__grid { grid-template-columns: repeat(2, 1fr); }
  .fdrawer-wrap { display: block; position: fixed; inset: 0; z-index: 80; pointer-events: none; }
  .fdrawer-wrap.open { pointer-events: auto; }
  .fdrawer__scrim { position: absolute; inset: 0; background: rgba(20,15,10,.42); opacity: 0; transition: opacity .3s; backdrop-filter: blur(2px); }
  .fdrawer__scrim.open { opacity: 1; }
  .fdrawer { position: absolute; top: 0; bottom: 0; right: 0; width: min(384px, 89vw); background: var(--bg); transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease; display: flex; flex-direction: column; box-shadow: none; }
  .fdrawer.open { transform: none; box-shadow: -30px 0 60px -30px rgba(0,0,0,.4); }
  .fdrawer__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
  .fdrawer__title { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 18px; letter-spacing: var(--display-spacing); }
  .fdrawer__body { flex: 1; overflow-y: auto; padding: 6px 20px 20px; overscroll-behavior: contain; }
  .fdrawer__foot { padding: 16px 20px; border-top: 1px solid var(--line); }
  .fdrawer__apply { width: 100%; justify-content: center; }
}
@media (max-width: 760px) {
  .plp__hgrid { grid-template-columns: 1fr; gap: 14px; align-items: start; }
  .viewtoggle { display: inline-flex; }
  .plp__layout .plp__grid.plp__grid--single { grid-template-columns: 1fr; }
  .plp__grid--single .card__media { aspect-ratio: 7 / 6; }
  .plp__grid--single .card__desc { display: block; }
  .plp__grid--single .card .soft__label { display: inline-block; }
}
@media (max-width: 520px) {
  .plp__grid, .plp__layout--full .plp__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}

/* ===========================================================
   KONTO — auth modal, header account menu, profile page, scratch deal
   =========================================================== */

/* ---------- header account menu ---------- */
.acct { position: relative; flex: none; }
.acct__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-body); font-weight: 800; font-size: 14px; letter-spacing: .02em;
  box-shadow: 0 4px 0 rgba(0,0,0,.16); transition: transform .2s;
}
[data-dir="c"] .acct__avatar { border-radius: 6px; }
.acct__avatar:hover { transform: translateY(-2px); }
.acct__avatar--lg { width: 44px; height: 44px; font-size: 15px; box-shadow: none; }
.acct__menu {
  position: absolute; right: 0; top: calc(100% + 12px); z-index: 60; width: 252px;
  background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: 0 30px 50px -28px rgba(40,30,20,.5); padding: 8px;
  opacity: 0; transform: translateY(-8px) scale(.98); pointer-events: none;
  transition: opacity .2s ease, transform .2s cubic-bezier(.2,.8,.2,1);
}
.acct__menu.open { opacity: 1; transform: none; pointer-events: auto; }
.acct__head { display: flex; align-items: center; gap: 12px; padding: 10px 10px 12px; border-bottom: 1.5px solid var(--line); margin-bottom: 6px; }
.acct__id { min-width: 0; }
.acct__name { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 16px; letter-spacing: var(--display-spacing); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.acct__phone { font-size: 12.5px; color: var(--ink-soft); }
.acct__link { display: block; width: 100%; text-align: left; padding: 10px 12px; border-radius: 12px; font-size: 14.5px; font-weight: 600; color: var(--ink); transition: background .18s, color .18s; }
[data-dir="c"] .acct__link { border-radius: 5px; }
.acct__link:hover { background: color-mix(in oklab, var(--accent) 12%, var(--surface)); color: var(--accent); }
.acct__link--deal { color: var(--accent); }
.acct__link--out { color: var(--ink-soft); border-top: 1.5px solid var(--line); border-radius: 0 0 12px 12px; margin-top: 4px; }
.acct__link--out:hover { background: color-mix(in oklab, var(--ink) 7%, var(--surface)); color: var(--ink); }
@media (max-width: 860px) {
  /* center the dropdown directly under the avatar (it's not at the screen edge) */
  .acct__menu { right: auto; left: 50%; width: min(248px, calc(100vw - 24px)); transform: translateX(-50%) translateY(-8px) scale(.98); transform-origin: top center; }
  .acct__menu.open { transform: translateX(-50%) translateY(0) scale(1); }
}

/* ---------- auth modal ---------- */
.auth { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .28s ease; }
.auth.open { opacity: 1; pointer-events: auto; }
.auth__scrim { position: absolute; inset: 0; background: rgba(22,16,11,.5); backdrop-filter: blur(5px); }
.auth__card {
  position: relative; z-index: 1; width: min(440px, 100%);
  background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 38px); box-shadow: 0 50px 90px -40px rgba(20,12,6,.7);
  transform: translateY(14px) scale(.97); transition: transform .34s cubic-bezier(.2,.9,.3,1);
}
.auth.open .auth__card { transform: none; }
.auth__close { position: absolute; top: 12px; right: 14px; width: 38px; height: 38px; border-radius: 50%; font-size: 24px; line-height: 1; color: var(--ink-soft); display: grid; place-items: center; transition: background .2s, color .2s; }
.auth__close:hover { background: color-mix(in oklab, var(--ink) 8%, var(--surface)); color: var(--ink); }
.auth__brand { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: var(--display-weight); font-size: 19px; letter-spacing: var(--display-spacing); margin-bottom: 22px; }
.auth__step { display: flex; flex-direction: column; }
.auth__title { font-size: clamp(28px, 4vw, 38px); line-height: 1; margin: 0 0 10px; }
.auth__lead { color: var(--ink-soft); line-height: 1.5; font-size: 15px; margin: 0 0 22px; }
.auth__change { display: inline; color: var(--accent); font-weight: 700; font-size: inherit; text-decoration: underline; text-underline-offset: 2px; }
.auth__label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 9px; }
.auth__phone { display: flex; align-items: center; gap: 4px; border: 1.6px solid var(--line); border-radius: 14px; background: var(--bg); padding: 4px 6px 4px 14px; transition: border-color .2s, box-shadow .2s; }
[data-dir="c"] .auth__phone { border-radius: 5px; }
.auth__phone:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 18%, transparent); }
.auth__phone.ok { border-color: color-mix(in oklab, var(--accent) 60%, var(--line)); }
.auth__cc { font-weight: 700; font-size: 16px; color: var(--ink); padding-right: 8px; border-right: 1.5px solid var(--line); }
.auth__phone input { flex: 1; min-width: 0; border: none; background: transparent; font-family: inherit; font-size: 18px; font-weight: 600; letter-spacing: .04em; color: var(--ink); padding: 13px 12px; }
.auth__phone input:focus { outline: none; }
.auth__cta { width: 100%; justify-content: center; margin-top: 18px; font-size: 16px; }
.auth__cta:disabled { opacity: .42; pointer-events: none; box-shadow: 0 4px 0 rgba(0,0,0,.12); }
.auth__fine { font-size: 12px; color: var(--ink-soft); line-height: 1.55; margin: 16px 0 0; text-align: center; }
.auth__fine a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.auth__demo { display: block; margin-top: 6px; font-size: 11px; letter-spacing: .04em; opacity: .8; }
.auth__otp { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 4px 0 6px; }
.auth__otp-box { aspect-ratio: 1; width: 100%; text-align: center; font-family: var(--font-display); font-weight: var(--display-weight); font-size: 30px; color: var(--ink); border: 1.6px solid var(--line); border-radius: 14px; background: var(--bg); transition: border-color .18s, box-shadow .18s, background .18s; }
[data-dir="c"] .auth__otp-box { border-radius: 5px; }
.auth__otp-box:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 18%, transparent); }
.auth__otp-box.filled { background: color-mix(in oklab, var(--accent) 9%, var(--bg)); border-color: color-mix(in oklab, var(--accent) 55%, var(--line)); }

/* ---------- konto page ---------- */
.konto { --acct: var(--accent); min-height: 70vh; padding-bottom: clamp(60px, 9vw, 110px); }
.konto__hero { background: var(--surface); border-bottom: 1.5px solid var(--line); padding: clamp(26px, 4vw, 44px) 0; }
.konto__hero-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.konto__who { display: flex; align-items: center; gap: 18px; }
.konto__avatar { width: clamp(56px, 7vw, 72px); height: clamp(56px, 7vw, 72px); border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--acct); color: var(--accent-ink); font-family: var(--font-display); font-weight: var(--display-weight); font-size: clamp(22px, 2.6vw, 28px); letter-spacing: var(--display-spacing); box-shadow: 0 8px 22px -10px color-mix(in oklab, var(--acct) 70%, black); }
[data-dir="c"] .konto__avatar { border-radius: 8px; }
.konto__hi { font-size: clamp(28px, 4vw, 46px); line-height: 1; margin: 6px 0 6px; }
.konto__meta { font-size: 14px; color: var(--ink-soft); }
.konto__out { padding: 11px 20px; border-radius: 999px; font-weight: 600; font-size: 14px; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); transition: background .2s, color .2s, box-shadow .2s; }
[data-dir="c"] .konto__out { border-radius: 5px; }
.konto__out:hover { background: var(--ink); color: var(--bg); box-shadow: inset 0 0 0 1.5px var(--ink); }

.konto__body { display: grid; grid-template-columns: 210px 1fr; gap: clamp(24px, 3.5vw, 48px); padding-top: clamp(28px, 4vw, 48px); align-items: start; }
.konto__nav { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 4px; }
.konto__nav-link { padding: 11px 16px; border-radius: 12px; font-weight: 600; font-size: 15px; color: var(--ink-soft); transition: background .18s, color .18s; }
[data-dir="c"] .konto__nav-link { border-radius: 5px; }
.konto__nav-link:hover { background: color-mix(in oklab, var(--accent) 10%, var(--surface)); color: var(--ink); }
.konto__nav-link.active { background: var(--ink); color: var(--bg); }
.konto__content { display: flex; flex-direction: column; gap: clamp(20px, 2.6vw, 30px); min-width: 0; }

/* tabs layout variant — single horizontally-scrollable row */
.konto--tabs .konto__body { grid-template-columns: 1fr; }
.konto__nav.konto__nav--tabs {
  position: static; flex-direction: row; flex-wrap: nowrap; gap: 6px;
  overflow-x: auto; overscroll-behavior-x: contain; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; scroll-snap-type: x proximity;
  padding: 6px; background: var(--surface); border: 1.5px solid var(--line); border-radius: 999px;
}
[data-dir="c"] .konto__nav.konto__nav--tabs { border-radius: 8px; }
.konto__nav.konto__nav--tabs::-webkit-scrollbar { display: none; }
.konto__nav.konto__nav--tabs .konto__nav-link { flex: none; white-space: nowrap; scroll-snap-align: center; border-radius: 999px; padding: 10px 20px; }
[data-dir="c"] .konto__nav.konto__nav--tabs .konto__nav-link { border-radius: 5px; }
.konto__nav.konto__nav--tabs .konto__nav-link.active { background: var(--acct); color: var(--accent-ink); }

/* generic account card */
.acard { background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 2.8vw, 34px); scroll-margin-top: 88px; }
.acard__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.acard__h { font-size: clamp(24px, 3vw, 34px); line-height: 1; margin: 8px 0 0; }
.acard__stat { font-size: 13.5px; color: var(--ink-soft); }
.acard__stat b { color: var(--ink); font-weight: 700; }
.acard__note { color: var(--ink-soft); line-height: 1.55; margin: -10px 0 20px; max-width: 52ch; font-size: 14.5px; }

/* ---------- orders ---------- */
.orders { display: flex; flex-direction: column; gap: 16px; }
.order { background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--radius); padding: clamp(16px, 2vw, 22px); transition: border-color .25s, box-shadow .25s; }
.order:hover { border-color: color-mix(in oklab, var(--acct, var(--accent)) 32%, var(--line)); box-shadow: 0 18px 36px -28px rgba(40,30,20,.5); }
.order__top { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.order__meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.order__status { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
[data-dir="c"] .order__status { border-radius: 3px; }
.order__status--ok { background: color-mix(in oklab, oklch(0.6 0.13 150) 20%, var(--bg)); color: oklch(0.46 0.12 150); }
.order__status--go { background: color-mix(in oklab, var(--accent) 20%, var(--bg)); color: color-mix(in oklab, var(--accent) 80%, black); }
.order__status--wait { background: color-mix(in oklab, var(--ink) 12%, var(--bg)); color: var(--ink-soft); }
.order__date { font-weight: 700; font-size: 14.5px; }
.order__id { font-size: 12.5px; color: var(--ink-soft); font-family: ui-monospace, Menlo, monospace; }
.order__total { font-size: 13px; color: var(--ink-soft); display: flex; align-items: baseline; gap: 8px; }
.order__total b { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 19px; color: var(--ink); letter-spacing: var(--display-spacing); }
.order__items { display: flex; flex-wrap: wrap; gap: 16px; padding: 4px 0 4px; }
.order__item { display: flex; flex-direction: column; gap: 7px; width: 92px; position: relative; }
.order__thumb { position: relative; aspect-ratio: 1; border-radius: 12px; overflow: hidden; background: color-mix(in oklab, var(--tone, var(--accent)) 22%, var(--surface)); border: 1px solid var(--line); }
[data-dir="c"] .order__thumb { border-radius: 5px; }
.order__thumb img { width: 100%; height: 100%; object-fit: cover; }
.order__thumb-ph { position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, color-mix(in oklab, var(--tone, var(--accent)) 30%, transparent) 0 8px, transparent 8px 16px); }
.order__itx { display: flex; flex-direction: column; gap: 3px; }
.order__name { font-size: 12.5px; line-height: 1.3; color: var(--ink-soft); font-weight: 600; }
.order__dealtag { align-self: flex-start; font-size: 9.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-ink); background: var(--acct, var(--accent)); padding: 2px 7px; border-radius: 999px; }
[data-dir="c"] .order__dealtag { border-radius: 3px; }
.order__q { position: absolute; top: 0; right: 0; transform: translate(38%, -38%); box-sizing: border-box; min-width: 26px; height: 26px; padding: 0 7px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 12px; line-height: 1; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 2px 7px -1px rgba(0,0,0,.45); z-index: 2; }
[data-dir="c"] .order__q { border-radius: 6px; }
.order__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 16px; padding-top: 16px; border-top: 1.5px solid var(--line); }
.order__ship { font-size: 13px; color: var(--ink-soft); }
.order__repeat { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; background: var(--acct, var(--accent)); color: var(--accent-ink); font-weight: 600; font-size: 14px; white-space: nowrap; transition: transform .2s, background .2s, filter .2s; }
[data-dir="c"] .order__repeat { border-radius: 4px; }
.order__repeat:hover { transform: translateY(-2px); filter: brightness(1.08); }
.order__repeat.done { background: oklch(0.55 0.12 150); color: #fff; pointer-events: none; }

/* ---------- profile form ---------- */
.prof { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--half { flex: 1; min-width: 0; }
.field-row { display: flex; gap: 16px; }
.field__label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.field__input { width: 100%; padding: 13px 16px; border-radius: 12px; border: 1.6px solid var(--line); background: var(--bg); font-family: inherit; font-size: 15.5px; font-weight: 500; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
[data-dir="c"] .field__input { border-radius: 5px; }
.field__input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 16%, transparent); }
.prof__addr-h { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin: 8px 0 -4px; }
.prof__foot { display: flex; align-items: center; gap: 16px; margin-top: 8px; }
.prof__foot .btn.is-quiet { opacity: .5; }
.prof__saved { font-size: 14px; font-weight: 600; color: oklch(0.5 0.12 150); }

/* ---------- consents ---------- */
.consents { display: flex; flex-direction: column; gap: 14px; }
.consent { display: flex; flex-direction: column; border-radius: var(--radius); border: 1.6px solid var(--line); background: var(--bg); overflow: hidden; transition: border-color .22s, background .22s; }
.consent.on { border-color: color-mix(in oklab, var(--acct, var(--accent)) 55%, var(--line)); background: color-mix(in oklab, var(--acct, var(--accent)) 8%, var(--bg)); }
.consent__main { display: flex; align-items: center; gap: 16px; text-align: left; width: 100%; padding: 18px 20px; background: transparent; cursor: pointer; }
.consent__ic { width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center; color: var(--ink-soft); background: var(--surface); border: 1px solid var(--line); transition: color .22s, background .22s; }
[data-dir="c"] .consent__ic { border-radius: 5px; }
.consent.on .consent__ic { color: var(--acct, var(--accent)); background: color-mix(in oklab, var(--acct, var(--accent)) 14%, var(--surface)); border-color: color-mix(in oklab, var(--acct, var(--accent)) 40%, var(--line)); }
.consent__txt { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.consent__title { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 17px; letter-spacing: var(--display-spacing); color: var(--acct, var(--accent)); }
.consent__desc { font-size: 13.5px; color: var(--ink-soft); line-height: 1.45; }
.consent__sw { position: relative; width: 50px; height: 28px; flex: none; border-radius: 999px; background: color-mix(in oklab, var(--ink) 18%, var(--surface)); transition: background .25s; }
.consent.on .consent__sw { background: var(--acct, var(--accent)); }
.consent__sw i { position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,.25); transition: transform .25s cubic-bezier(.2,.9,.3,1.2); }
.consent.on .consent__sw i { transform: translateX(22px); }
.consent__field { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; padding: 0 20px 18px; }
.consent__field-input { flex: 1; min-width: 180px; padding: 11px 14px; border-radius: 12px; border: 1.6px solid var(--line); background: var(--surface); font-family: inherit; font-size: 14.5px; font-weight: 500; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
[data-dir="c"] .consent__field-input { border-radius: 5px; }
.consent__field-input:focus { outline: none; border-color: var(--acct, var(--accent)); box-shadow: 0 0 0 4px color-mix(in oklab, var(--acct, var(--accent)) 16%, transparent); }
.consent__field-save { padding: 11px 16px; border-radius: 12px; background: var(--acct, var(--accent)); color: var(--accent-ink); font-weight: 700; font-size: 14px; white-space: nowrap; transition: filter .2s; }
[data-dir="c"] .consent__field-save { border-radius: 5px; }
.consent__field-save:hover { filter: brightness(1.08); }
.consent__field-save:disabled { opacity: .45; pointer-events: none; }
.consent__field-cancel { padding: 11px 14px; font-weight: 600; font-size: 14px; color: var(--ink-soft); }
.consent__field-cancel:hover { color: var(--ink); }

/* ---------- scratch deal ---------- */
.deal__intro { margin-bottom: 22px; }
.deal__h { font-size: clamp(26px, 3.2vw, 40px); line-height: 1; margin: 8px 0 12px; }
.deal__lead { color: var(--ink-soft); line-height: 1.55; max-width: 56ch; margin: 0; font-size: 15px; }
.deal__lead b { color: var(--ink); }
.deal__ticket {
  position: relative; display: flex; min-height: 210px;
  background: var(--bg); border: 1.6px solid var(--ink); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 24px 44px -30px rgba(40,30,20,.55);
}
.deal__stub { position: relative; z-index: 2; width: 132px; flex: none; background: var(--acct); color: var(--accent-ink); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 16px 10px; text-align: center; }
.deal__stub .logo__mark { width: 38px; height: 38px; font-size: 19px; background: var(--accent-ink); color: var(--acct); }
.deal__stub-cut { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.deal__stub-month { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 20px; text-transform: capitalize; letter-spacing: var(--display-spacing); }
.deal__stub-no { font-size: 10.5px; font-family: ui-monospace, Menlo, monospace; opacity: .8; letter-spacing: .04em; }
.deal__win { position: relative; flex: 1; min-width: 0; min-height: 210px; border-left: 2px dashed color-mix(in oklab, var(--ink) 35%, transparent); }
/* perforation notches */
.deal__ticket::before, .deal__ticket::after { content: ""; position: absolute; left: 132px; width: 18px; height: 18px; border-radius: 50%; background: var(--surface); border: 1.6px solid var(--ink); transform: translateX(-50%); z-index: 3; }
.deal__ticket::before { top: -10px; }
.deal__ticket::after { bottom: -10px; }
.deal__prize { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 20px; text-align: center; background: color-mix(in oklab, var(--prize-tone, var(--accent)) 12%, var(--bg)); overflow: hidden; }
/* burst rays behind the prize */
.deal__rays { position: absolute; left: 50%; top: 50%; width: 320px; height: 320px; transform: translate(-50%, -50%) scale(.4); opacity: 0; pointer-events: none;
  background: repeating-conic-gradient(from 0deg, color-mix(in oklab, var(--prize-tone, var(--accent)) 30%, transparent) 0deg 9deg, transparent 9deg 18deg);
  -webkit-mask: radial-gradient(circle, #000 18%, transparent 62%); mask: radial-gradient(circle, #000 18%, transparent 62%); }
.deal__prize.is-won .deal__rays { opacity: .55; }
.deal__prize.fanfare .deal__rays { animation: rayBurst 2.2s cubic-bezier(.18,.7,.2,1) both, raySpin 9s linear infinite; }
@keyframes rayBurst { 0% { opacity: 0; transform: translate(-50%, -50%) scale(.3); } 22% { opacity: .7; } 100% { opacity: .5; transform: translate(-50%, -50%) scale(1); } }
@keyframes raySpin { to { transform: translate(-50%, -50%) rotate(360deg) scale(1); } }
.deal__prize.fanfare .deal__kind { animation: winDrop .5s .05s cubic-bezier(.2,1.5,.4,1) both; }
.deal__prize.fanfare .deal__sub { animation: winDrop .5s .18s cubic-bezier(.2,1.5,.4,1) both; }
@keyframes winDrop { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.deal__kind { position: relative; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--prize-tone, var(--accent)); margin-bottom: 2px; }
.deal__big { position: relative; font-family: var(--font-display); font-weight: var(--display-weight); font-size: clamp(40px, 6vw, 64px); line-height: .92; letter-spacing: var(--display-spacing); color: var(--ink); background-clip: padding-box; }
.deal__prize.fanfare .deal__big { animation: bigPop 1s cubic-bezier(.2,1.5,.3,1) both; }
@keyframes bigPop {
  0% { opacity: 0; transform: scale(.3) rotate(-7deg); filter: blur(4px); }
  45% { opacity: 1; transform: scale(1.18) rotate(2deg); filter: blur(0); }
  68% { transform: scale(.94) rotate(-1deg); }
  100% { transform: scale(1) rotate(0); text-shadow: 0 0 0 transparent; }
}
.deal__prize.fanfare .deal__big::after { content: ""; position: absolute; inset: -6px -14px; background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.85) 48%, transparent 66%); transform: translateX(-130%) skewX(-18deg); animation: shineSweep 1.1s .42s ease-out both; pointer-events: none; }
@keyframes shineSweep { to { transform: translateX(130%) skewX(-18deg); } }
.deal__sub { font-size: 15px; font-weight: 600; color: var(--ink-soft); }

/* confetti */
.confetti { position: absolute; left: 50%; top: 52%; width: 0; height: 0; z-index: 4; pointer-events: none; }
.confetti__bit { position: absolute; left: 0; top: 0; border-radius: 2px; opacity: 0; transform-origin: center; will-change: transform, opacity;
  animation: confBurst var(--d) var(--delay) cubic-bezier(.15,.7,.35,1) forwards; }
.confetti__bit--round { border-radius: 50%; }
@keyframes confBurst {
  0% { opacity: 0; transform: translate(0,0) rotate(0) scale(.3); }
  12% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--x), calc(var(--y) + 150px)) rotate(var(--r)) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .confetti, .deal__rays { display: none; }
  .deal__prize.fanfare .deal__big, .deal__prize.fanfare .deal__kind, .deal__prize.fanfare .deal__sub { animation: none; }
}
.deal__code { display: inline-flex; align-items: center; gap: 10px; margin-top: 12px; padding: 8px 8px 8px 16px; border-radius: 999px; border: 1.6px dashed var(--prize-tone, var(--accent)); background: var(--surface); transition: transform .18s; animation: dealPop .5s cubic-bezier(.2,1.4,.4,1); }
[data-dir="c"] .deal__code { border-radius: 5px; }
.deal__code:hover { transform: translateY(-1px); }
@keyframes dealPop { from { opacity: 0; transform: scale(.8); } to { opacity: 1; transform: none; } }
.deal__code-k { font-family: ui-monospace, Menlo, monospace; font-weight: 700; font-size: 17px; letter-spacing: .12em; color: var(--ink); }
.deal__code-c { font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; background: var(--prize-tone, var(--accent)); color: #fff; white-space: nowrap; }
[data-dir="c"] .deal__code-c { border-radius: 4px; }
.deal__code.copied .deal__code-c { background: oklch(0.55 0.12 150); }
.scratch { position: absolute; inset: 0; z-index: 2; }
.scratch__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; box-sizing: border-box; touch-action: none; cursor: grab; }
.scratch__canvas:active { cursor: grabbing; }
.scratch__skip { position: absolute; right: 10px; bottom: 8px; z-index: 3; font-size: 11px; font-weight: 700; letter-spacing: .03em; color: rgba(255,255,255,.92); background: rgba(0,0,0,.28); padding: 5px 11px; border-radius: 999px; backdrop-filter: blur(3px); }
.deal__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 18px; }
.deal__hint { font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.deal__count { display: flex; flex-direction: column; gap: 7px; flex: 1; min-width: 220px; }
.deal__count-bar { height: 7px; border-radius: 999px; background: var(--line); overflow: hidden; }
.deal__count-bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, color-mix(in oklab, var(--accent) 50%, var(--accent-2)), var(--accent)); }
.deal__count-txt { font-size: 13.5px; color: var(--ink-soft); }
.deal__count-txt b { color: var(--ink); }
.deal__use { white-space: nowrap; }

/* ---------- reel roll (slot strip) ---------- */
.reel { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 20px; background: color-mix(in oklab, var(--ink) 5%, var(--bg)); }
.reel__strip { position: relative; width: 100%; max-width: 440px; height: 100px; overflow: hidden; border-radius: 16px; border: 1.6px solid var(--ink); background: var(--surface); box-shadow: inset 0 2px 10px -4px rgba(0,0,0,.25); }
[data-dir="c"] .reel__strip { border-radius: 6px; }
.reel__track { position: absolute; top: 0; left: 0; height: 100%; display: flex; gap: 10px; padding: 12px 10px; will-change: transform; }
.reel__tile { flex: none; width: 122px; border-radius: 11px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; background: color-mix(in oklab, var(--t) 14%, var(--surface)); border: 1.5px solid color-mix(in oklab, var(--t) 42%, var(--line)); }
[data-dir="c"] .reel__tile { border-radius: 5px; }
.reel__tile-big { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 23px; line-height: 1; letter-spacing: var(--display-spacing); color: var(--ink); }
.reel__tile-sub { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); }
.reel__marker { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; transform: translateX(-50%); background: var(--accent); z-index: 3; border-radius: 3px; box-shadow: 0 0 14px 1px color-mix(in oklab, var(--accent) 60%, transparent); }
.reel__marker::before, .reel__marker::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); border-left: 7px solid transparent; border-right: 7px solid transparent; }
.reel__marker::before { top: -1px; border-top: 9px solid var(--accent); }
.reel__marker::after { bottom: -1px; border-bottom: 9px solid var(--accent); }
.reel__fade { position: absolute; top: 0; bottom: 0; width: 56px; z-index: 2; pointer-events: none; }
.reel__fade--l { left: 0; background: linear-gradient(90deg, var(--surface), transparent); }
.reel__fade--r { right: 0; background: linear-gradient(270deg, var(--surface), transparent); }
.reel__spin { white-space: nowrap; }
.reel__status { font-weight: 700; font-size: 14px; color: var(--ink-soft); letter-spacing: .02em; }
.reel--settled .reel__strip { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 22%, transparent); transition: border-color .3s, box-shadow .3s; }

/* ---------- product scratch deal ---------- */
.pdeal { --prize-tone: var(--accent); }
.pdeal__card { position: relative; display: grid; grid-template-columns: 230px 1fr; min-height: 250px; background: var(--bg); border: 1.6px solid var(--ink); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 24px 44px -30px rgba(40,30,20,.55); }
.pdeal__media { position: relative; overflow: hidden; background: color-mix(in oklab, var(--tone, var(--accent)) 24%, var(--surface)); }
.pdeal__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pdeal__media-ph { position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, color-mix(in oklab, var(--tone, var(--accent)) 32%, transparent) 0 10px, transparent 10px 20px); }
.pdeal__badge { position: absolute; left: 14px; top: 14px; z-index: 2; font-family: var(--font-display); font-weight: var(--display-weight); font-size: 26px; line-height: 1; letter-spacing: var(--display-spacing); color: #fff; background: var(--prize-tone, var(--accent)); padding: 9px 14px; border-radius: 12px; box-shadow: 0 8px 20px -8px var(--prize-tone, var(--accent)); transform: rotate(-5deg); animation: badgeSlap .5s cubic-bezier(.2,1.6,.35,1) both; }
[data-dir="c"] .pdeal__badge { border-radius: 4px; }
.pdeal__badge--free { font-size: 22px; }
@keyframes badgeSlap { 0% { opacity: 0; transform: rotate(-5deg) scale(2.4); } 60% { opacity: 1; transform: rotate(-5deg) scale(.86); } 100% { transform: rotate(-5deg) scale(1); } }
.pdeal__info { position: relative; display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: clamp(20px, 3vw, 30px); border-left: 2px dashed color-mix(in oklab, var(--ink) 30%, transparent); }
.pdeal__eyebrow { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--prize-tone, var(--accent)); }
.pdeal__name { font-family: var(--font-display); font-weight: var(--display-weight); font-size: clamp(22px, 3vw, 30px); line-height: 1.02; letter-spacing: var(--display-spacing); margin: 2px 0; color: var(--ink); }
.pdeal__cut { font-size: 13px; color: var(--ink-soft); }
.pdeal__prices { display: flex; align-items: baseline; gap: 12px; margin: 8px 0 2px; }
.pdeal__was { font-size: 18px; color: var(--ink-soft); text-decoration: line-through; }
.pdeal__now { font-family: var(--font-display); font-weight: var(--display-weight); font-size: clamp(28px, 4vw, 38px); line-height: 1; letter-spacing: var(--display-spacing); color: var(--prize-tone, var(--accent)); }
.pdeal__perk { font-size: 14px; font-weight: 600; color: var(--ink); margin: 2px 0 12px; }
/* in-info buy controls */
.pdeal__buy { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pdeal__buy--opts { flex-direction: column; align-items: flex-start; gap: 8px; }
.pdeal__buy-label { font-size: 12px; font-weight: 700; letter-spacing: .03em; color: var(--ink-soft); }
.pdeal__buy-note { font-size: 11.5px; color: var(--ink-soft); flex-basis: 100%; }
.pdeal__qty { display: inline-flex; align-items: center; border: 1.6px solid var(--line); border-radius: 999px; overflow: hidden; flex: none; }
[data-dir="c"] .pdeal__qty { border-radius: 5px; }
.pdeal__qty button { width: 34px; height: 40px; font-size: 18px; font-weight: 700; color: var(--ink); display: grid; place-items: center; }
.pdeal__qty button:hover { background: var(--surface); }
.pdeal__qty > span { min-width: 30px; text-align: center; font-size: 15px; font-weight: 700; }
.pdeal__add-inline { white-space: nowrap; }
.pdeal__add-inline.is-added { background: oklch(0.55 0.12 150); color: #fff; pointer-events: none; }
.pdeal__opts { display: flex; flex-wrap: wrap; gap: 8px; }
.pdeal__opt { padding: 10px 18px; border-radius: 999px; font-weight: 700; font-size: 14px; color: var(--ink); background: var(--surface); border: 1.6px solid var(--line); transition: border-color .18s, background .18s, transform .15s; }
[data-dir="c"] .pdeal__opt { border-radius: 5px; }
.pdeal__opt:hover { transform: translateY(-2px); border-color: var(--prize-tone, var(--accent)); background: color-mix(in oklab, var(--prize-tone, var(--accent)) 12%, var(--surface)); }
.pdeal__added-note { font-size: 13px; font-weight: 700; color: oklch(0.5 0.12 150); }
/* multipack picker modal */
.pdpick { position: fixed; inset: 0; z-index: 95; display: grid; place-items: center; padding: 20px; }
.pdpick__scrim { position: absolute; inset: 0; background: rgba(22,16,11,.5); backdrop-filter: blur(4px); animation: pdpickIn .2s ease; }
.pdpick__card { position: relative; z-index: 1; width: min(420px, 100%); background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 30px); box-shadow: 0 40px 80px -36px rgba(20,12,6,.6); animation: pdpickPop .28s cubic-bezier(.2,.9,.3,1.1) both; }
@keyframes pdpickIn { from { opacity: 0; } }
@keyframes pdpickPop { from { opacity: 0; transform: translateY(12px) scale(.97); } }
.pdpick__close { position: absolute; top: 12px; right: 14px; width: 36px; height: 36px; border-radius: 50%; font-size: 22px; line-height: 1; color: var(--ink-soft); display: grid; place-items: center; transition: background .2s, color .2s; }
.pdpick__close:hover { background: color-mix(in oklab, var(--ink) 8%, var(--surface)); color: var(--ink); }
.pdpick__eyebrow { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--prize-tone, var(--accent)); }
.pdpick__title { font-family: var(--font-display); font-weight: var(--display-weight); font-size: clamp(22px, 3vw, 28px); line-height: 1.05; letter-spacing: var(--display-spacing); margin: 6px 0 6px; }
.pdpick__lead { font-size: 14px; color: var(--ink-soft); line-height: 1.5; margin: 0 0 18px; }
.pdpick__opts { display: flex; flex-direction: column; gap: 10px; }
.pdpick__opt { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 18px; border-radius: 14px; border: 1.6px solid var(--line); background: var(--bg); text-align: left; transition: border-color .18s, background .18s, transform .15s; }
[data-dir="c"] .pdpick__opt { border-radius: 6px; }
.pdpick__opt:hover { transform: translateY(-2px); border-color: var(--prize-tone, var(--accent)); background: color-mix(in oklab, var(--prize-tone, var(--accent)) 8%, var(--bg)); }
.pdpick__opt-main { display: flex; flex-direction: column; gap: 2px; }
.pdpick__opt-label { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 17px; letter-spacing: var(--display-spacing); color: var(--ink); display: inline-flex; align-items: baseline; gap: 8px; }
.pdpick__opt-note { font-family: var(--font-body); font-weight: 700; font-size: 10.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--prize-tone, var(--accent)); }
.pdpick__opt-sub { font-size: 12.5px; color: var(--ink-soft); }
.pdpick__opt-stack { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.pdpick__chip { font-size: 10px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; }
[data-dir="c"] .pdpick__chip { border-radius: 3px; }
.pdpick__chip--pack { color: var(--ink); background: color-mix(in oklab, var(--ink) 10%, var(--surface)); }
.pdpick__chip--deal { color: #fff; background: var(--prize-tone, var(--accent)); }
.pdpick__plus { font-size: 12px; font-weight: 800; color: var(--ink-soft); align-self: center; }
.pdpick__opt-price { display: flex; flex-direction: column; align-items: flex-end; gap: 1px; }
.pdpick__opt-was { font-size: 12px; color: var(--ink-soft); text-decoration: line-through; }
.pdpick__opt-now { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 19px; letter-spacing: var(--display-spacing); color: var(--prize-tone, var(--accent)); }
.line__fixed { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); background: color-mix(in oklab, var(--accent) 12%, var(--surface)); padding: 4px 10px; border-radius: 999px; }
[data-dir="c"] .line__fixed { border-radius: 3px; }
.qty button.is-max { opacity: .35; cursor: not-allowed; }
.pdeal__cover { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; min-height: 130px; opacity: .5; }
.pdeal__qmark { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 56px; line-height: 1; color: var(--ink-soft); }
.pdeal__hint-in { font-size: 13px; font-weight: 600; color: var(--ink-soft); letter-spacing: .02em; }
.pdeal .deal__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 18px; }
.pdeal__add { white-space: nowrap; }
.pdeal__add.is-added { background: oklch(0.55 0.12 150); color: #fff; pointer-events: none; }
.pdeal .scratch { border-radius: var(--radius-lg); overflow: hidden; }
.pdeal__card.fanfare { animation: pdealShake .5s ease; }
@keyframes pdealShake { 0%,100% { transform: none; } 25% { transform: translateX(-3px); } 75% { transform: translateX(3px); } }
/* free-delivery (global) variant */
.pdeal__ship-ico { position: absolute; inset: 0; display: grid; place-items: center; color: color-mix(in oklab, var(--tone, var(--accent)) 78%, white); background: color-mix(in oklab, var(--tone, var(--accent)) 20%, var(--surface)); }
.pdeal__ship-ico svg { width: 56%; max-width: 150px; height: auto; animation: shipRoll .6s cubic-bezier(.2,1.4,.4,1) both; }
@keyframes shipRoll { 0% { opacity: 0; transform: translateX(-26px); } 60% { opacity: 1; transform: translateX(4px); } 100% { transform: none; } }
.pdeal--ship .pdeal__media { background: color-mix(in oklab, var(--prize-tone) 16%, var(--surface)); }

/* ---------- deal gate (marketing opt-in required) ---------- */
.dgate { display: grid; grid-template-columns: 300px 1fr; gap: clamp(18px, 2.6vw, 30px); align-items: stretch; }
.dgate__teaser { position: relative; display: grid; place-items: center; min-height: 230px; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(135deg, #d9dde1, #aeb6bd 45%, #cfd5da 55%, #9aa2a9); border: 1.6px solid var(--ink); }
.dgate__teaser-card { display: flex; flex-direction: column; align-items: center; gap: 8px; filter: blur(1px); opacity: .55; }
.dgate__qmark { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 64px; line-height: 1; color: rgba(40,46,52,.85); }
.dgate__teaser-txt { font-size: 13px; font-weight: 700; letter-spacing: .04em; color: rgba(40,46,52,.8); text-transform: capitalize; }
.dgate__lock { position: absolute; display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: var(--ink); color: var(--bg); box-shadow: 0 12px 26px -12px rgba(20,12,6,.7); }
[data-dir="c"] .dgate__lock { border-radius: 12px; }
.dgate__lock svg { width: 30px; height: 30px; }
.dgate__opts { display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.dgate__opts-h { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.dgate__fine { font-size: 13px; color: var(--ink-soft); line-height: 1.5; margin: 4px 0 0; }
.dgate__fine b { color: var(--ink); }
@media (max-width: 640px) {
  .dgate { grid-template-columns: 1fr; }
  .dgate__teaser { min-height: 160px; }
}

/* ---------- deal redeemed (used) state ---------- */
.dused { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(16px, 2.4vw, 26px); }
.dused__ticket { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; min-height: 200px; padding: 26px 24px; border-radius: var(--radius-lg); border: 1.6px dashed color-mix(in oklab, var(--ink) 40%, var(--line)); background: color-mix(in oklab, var(--ink) 5%, var(--bg)); overflow: hidden; }
.dused__won-eyebrow { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--prize-tone, var(--acct, var(--accent))); }
.dused__won-big { font-family: var(--font-display); font-weight: var(--display-weight); font-size: clamp(34px, 5vw, 52px); line-height: 1; letter-spacing: var(--display-spacing); color: var(--ink); }
.dused__won-sub { font-size: 14.5px; font-weight: 600; color: var(--ink-soft); text-align: center; margin-top: 2px; }
.dused__meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin-top: 16px; padding-top: 16px; border-top: 1.5px dashed color-mix(in oklab, var(--ink) 22%, var(--line)); width: 100%; }
.dused__meta-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.dused__meta-item span { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.dused__meta-item b { font-size: 14px; font-weight: 700; color: var(--ink); font-family: ui-monospace, Menlo, monospace; letter-spacing: .02em; }
.dused__stamp { position: absolute; top: 12px; right: 12px; display: inline-flex; align-items: center; gap: 6px; font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-ink); background: var(--acct, var(--accent)); border-radius: 999px; padding: 5px 11px 5px 9px; box-shadow: 0 4px 12px -5px var(--acct, var(--accent)); }
.dused__stamp::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-ink); opacity: .9; }
[data-dir="c"] .dused__stamp { border-radius: 4px; }
.dused__reset { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; padding: clamp(20px, 2.6vw, 28px); border-radius: var(--radius-lg); border: 1.6px solid var(--line); background: var(--bg); }
.dused__reset-ic { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: color-mix(in oklab, var(--acct, var(--accent)) 14%, var(--surface)); color: var(--acct, var(--accent)); margin-bottom: 6px; }
[data-dir="c"] .dused__reset-ic { border-radius: 5px; }
.dused__reset-ic svg { width: 24px; height: 24px; }
.dused__reset-eyebrow { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.dused__reset-big { font-family: var(--font-display); font-weight: var(--display-weight); font-size: clamp(30px, 4vw, 42px); line-height: 1; letter-spacing: var(--display-spacing); color: var(--ink); }
.dused__reset-sub { font-size: 13.5px; color: var(--ink-soft); }
.dused__reset-bar { width: 100%; height: 7px; border-radius: 999px; background: var(--line); overflow: hidden; margin-top: 10px; }
.dused__reset-bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, color-mix(in oklab, var(--acct, var(--accent)) 55%, var(--accent-2, var(--accent))), var(--acct, var(--accent))); }
@media (max-width: 640px) {
  .dused { grid-template-columns: 1fr; }
  .dused__ticket { min-height: 150px; }
}

/* ---------- style: profile theme swatches ---------- */
.swatches { display: grid; grid-template-columns: repeat(auto-fill, minmax(112px, 1fr)); gap: 12px; }
.swatch { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 18px 10px 14px; border-radius: var(--radius); border: 1.6px solid var(--line); background: var(--bg); cursor: pointer; transition: border-color .2s, background .2s, transform .15s; }
.swatch:hover { transform: translateY(-2px); border-color: color-mix(in oklab, var(--sw) 55%, var(--line)); }
.swatch.on { border-color: var(--sw); background: color-mix(in oklab, var(--sw) 9%, var(--bg)); }
.swatch__dot { position: relative; width: 46px; height: 46px; border-radius: 50%; background: var(--sw); display: grid; place-items: center; box-shadow: 0 7px 18px -8px var(--sw); transition: transform .18s; }
[data-dir="c"] .swatch__dot { border-radius: 9px; }
.swatch:hover .swatch__dot { transform: scale(1.05); }
.swatch__check { color: #fff; font-size: 19px; font-weight: 900; line-height: 1; opacity: 0; transform: scale(.4); transition: opacity .2s, transform .25s cubic-bezier(.2,1.5,.4,1); }
.swatch.on .swatch__check { opacity: 1; transform: none; }
.swatch__name { font-size: 13px; font-weight: 600; color: var(--ink); }

/* ---------- gate (signed out) ---------- */
.gate { display: grid; place-items: center; min-height: 64vh; padding: clamp(40px, 8vw, 90px) 0; text-align: center; }
.gate__inner { max-width: 560px; display: flex; flex-direction: column; align-items: center; }
.gate__h { font-size: clamp(32px, 5vw, 54px); line-height: 1; margin: 12px 0 14px; }
.gate__lead { color: var(--ink-soft); line-height: 1.6; font-size: 16px; max-width: 46ch; margin: 0 0 26px; }
.gate__cta { font-size: 16px; }
.gate__perks { list-style: none; margin: 30px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; text-align: left; }
.gate__perks li { position: relative; padding-left: 30px; font-size: 15px; font-weight: 500; color: var(--ink); }
.gate__perks li::before { content: ""; position: absolute; left: 0; top: 2px; width: 19px; height: 19px; border-radius: 50%; background: var(--accent); }
.gate__perks li::after { content: "✓"; position: absolute; left: 5px; top: 1px; font-size: 12px; font-weight: 900; color: var(--accent-ink); }

@media (max-width: 860px) {
  .konto__body { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .konto__nav { border-radius: var(--radius); }
  .deal__ticket { flex-direction: column; }
  .deal__stub { width: 100%; flex-direction: row; gap: 12px; padding: 12px; }
  .deal__win { border-left: none; border-top: 2px dashed color-mix(in oklab, var(--ink) 35%, transparent); }
  .deal__ticket::before { top: auto; left: -10px; top: calc(100% - 0px); }
  .deal__ticket::before, .deal__ticket::after { display: none; }
  .field-row { flex-direction: column; gap: 16px; }
  /* orders → text list, no thumbnails on mobile */
  .order__items { flex-direction: column; gap: 0; }
  .order__item { width: 100%; flex-direction: row; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line); }
  .order__item:last-child { border-bottom: none; }
  .order__thumb { display: none; }
  .order__itx { flex: 1; flex-direction: row; align-items: center; gap: 8px; min-width: 0; }
  .order__name { font-size: 14px; color: var(--ink); }
  .order__q { position: static; transform: none; margin-left: auto; min-width: 0; height: auto; padding: 0; background: transparent; box-shadow: none; border-radius: 0; font-size: 13.5px; font-weight: 700; color: var(--ink-soft); }
  .auth__otp { gap: 9px; }
  .konto__out { order: 3; }
  /* product deal → vertical stack */
  .pdeal__card { grid-template-columns: 1fr; }
  .pdeal__media { aspect-ratio: 16 / 11; }
  .pdeal__info { border-left: none; border-top: 2px dashed color-mix(in oklab, var(--ink) 30%, transparent); text-align: center; align-items: center; }
  .pdeal__prices { justify-content: center; }
  .pdeal__buy { justify-content: center; width: 100%; }
  .pdeal__buy-note { text-align: center; flex-basis: auto; width: 100%; }
  .pdeal .deal__foot { flex-direction: column; align-items: stretch; }
  .pdeal__add { width: 100%; justify-content: center; }
}
