@charset "UTF-8";
/* ═══════════════════════════════════════════════════════════════
   SOLIDSKATES.no — Solid Skates AS
   Acid Brutalism / cyber-sports design system
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. TOKENS ─────────────────────────────────────────────── */
:root {
  /* brand */
  --acid: #9EFF00;
  --acid-deep: #7ACC00;
  --ink: #000000;

  /* dark theme (default) */
  --bg: #060606;
  --bg-alt: #0C0C0C;
  --surface: #101010;
  --surface-2: #171717;
  --line: #2B2B2B;
  --line-strong: #3D3D3D;
  --text: #F5F5F5;
  --text-dim: #9A9A9A;
  --accent: var(--acid);          /* accent as background */
  --accent-text: var(--acid);     /* accent as foreground text */
  --on-accent: #000000;
  --hard-shadow: rgba(158, 255, 0, .34);
  --danger: #FF4438;
  --danger-text: #FF6B60;
  --warn: #FFC02E;
  --warn-text: #FFC02E;
  --grid-line: rgba(158, 255, 0, .07);
  --overlay: rgba(0, 0, 0, .78);

  /* type */
  --f-display: "Genos", "Arial Narrow", sans-serif;
  --f-body: "Kanit", "Segoe UI", system-ui, sans-serif;
  --lh-body: 1.62;
  --ls-body: 0;

  /* metrics */
  --wrap: 1360px;
  --gut: clamp(16px, 4vw, 48px);
  --r: 2px;
  --dur: .42s;
  --ease: cubic-bezier(.16, .84, .32, 1);
  --header-h: 74px;
}

/* light theme = "inverted colours" */
[data-theme="light"] {
  --bg: #F2F2EF;
  --bg-alt: #E7E7E2;
  --surface: #FFFFFF;
  --surface-2: #F6F6F2;
  --line: #16161600;
  --line: #1A1A1A26;
  --line-strong: #1A1A1A;
  --text: #0A0A0A;
  --text-dim: #4A4A4A;
  --accent: var(--acid);
  --accent-text: #3F6B00;         /* AA contrast on light surfaces */
  --on-accent: #000000;
  --hard-shadow: #0A0A0A;
  --danger: #C4180C;
  --danger-text: #B0150A;
  --warn: #8A5C00;
  --warn-text: #7A5100;
  --grid-line: rgba(0, 0, 0, .08);
  --overlay: rgba(20, 20, 18, .62);
}

/* dyslexia-friendly typography (logo keeps Genos) */
[data-font="dyslexia"] {
  --f-body: "Lexend", "Segoe UI", system-ui, sans-serif;
  --f-display: "Lexend", "Segoe UI", system-ui, sans-serif;
  --lh-body: 1.85;
  --ls-body: .012em;
}
[data-font="dyslexia"] h1,
[data-font="dyslexia"] h2,
[data-font="dyslexia"] h3,
[data-font="dyslexia"] .hero__title,
[data-font="dyslexia"] .section__head h2 {
  font-style: normal;
  letter-spacing: -.01em;
  line-height: 1.18;
}
[data-font="dyslexia"] p { max-width: 62ch; }

/* ── 2. RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-weight: 400;
  font-size: clamp(15px, .35vw + 14px, 17px);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
table { border-collapse: collapse; width: 100%; }
:target { scroll-margin-top: calc(var(--header-h) + 24px); }

/* ── 3. FOCUS & A11Y UTILITIES ─────────────────────────────── */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
  border-radius: var(--r);
  box-shadow: 0 0 0 6px var(--ink), 0 0 0 8px var(--acid);
}
[data-theme="light"] :focus-visible { box-shadow: 0 0 0 6px #fff, 0 0 0 8px #0A0A0A; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed;
  top: -200px; left: 12px;
  z-index: 999;
  background: var(--acid);
  color: #000;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 20px;
  border: 3px solid #000;
  box-shadow: 6px 6px 0 #000;
  transition: top .22s var(--ease);
}
.skip-link:focus-visible { top: 12px; box-shadow: 6px 6px 0 #000, 0 0 0 6px #fff; }
.skip-link:nth-of-type(2):focus-visible { top: 68px; }
.skip-link:nth-of-type(3):focus-visible { top: 124px; }

/* ── 4. LOGO ───────────────────────────────────────────────── */
/* 3 stacked layers → green outer outline, black band, green fill */
.logo {
  display: inline-grid;
  font-family: "Genos", "Arial Narrow", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: var(--logo-size, 40px);
  line-height: .82;
  letter-spacing: -.012em;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
}
.logo__layer {
  grid-area: 1 / 1;
  paint-order: stroke fill;
}
.logo__layer em { font-style: italic; }
.logo__layer--outer {
  color: var(--acid);
  -webkit-text-stroke: .21em var(--acid);
}
.logo__layer--mid {
  color: #000;
  -webkit-text-stroke: .105em #000;
}
.logo__layer--top { color: var(--acid); }
.logo--sm { --logo-size: 28px; }

.logo-link { display: inline-flex; align-items: center; padding: 6px 2px; }
.logo-link .logo { transition: transform .3s var(--ease), filter .3s var(--ease); }
.logo-link:hover .logo { transform: skewX(-5deg) scale(1.02); filter: drop-shadow(0 0 14px rgba(158,255,0,.55)); }
.logo-link:hover .logo__layer--top { animation: glitch .42s steps(2) 1; }
@keyframes glitch {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-2px, 1px); }
  50%  { transform: translate(2px, -1px); }
  75%  { transform: translate(-1px, -1px); }
  100% { transform: translate(0, 0); }
}

/* ── 5. LAYOUT PRIMITIVES ──────────────────────────────────── */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 8vw, 120px); position: relative; }
.section--alt { background: var(--bg-alt); border-block: 2px solid var(--line); }

.section__head { margin-bottom: clamp(28px, 4vw, 52px); max-width: 780px; }
.section__head--row {
  max-width: none;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.kicker {
  font-family: var(--f-body);
  font-weight: 600; font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-text);
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.kicker::before { content: ""; width: 28px; height: 3px; background: var(--accent); flex: none; }

h1, h2, h3, h4, .h {
  font-family: var(--f-display);
  font-weight: 900;
  font-style: italic;
  line-height: .92;
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.section__head h2 { font-size: clamp(38px, 6vw, 76px); }
.section__lead {
  margin-top: 16px; color: var(--text-dim); font-size: clamp(15px, 1.1vw, 18px);
  max-width: 62ch; font-style: normal;
}

/* ── 6. BUTTONS ────────────────────────────────────────────── */
.btn {
  --btn-pad: 13px 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--btn-pad);
  font-family: var(--f-body);
  font-weight: 700; font-size: 14px; letter-spacing: .05em; text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--r);
  position: relative;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s, color .18s, border-color .18s;
  text-align: center;
}
.btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2.2; fill: none; stroke-linecap: square; flex: none; }
.btn--lg { --btn-pad: 17px 30px; font-size: 15px; }
.btn--sm { --btn-pad: 9px 14px; font-size: 12.5px; }
.btn--block { width: 100%; }

.btn--acid {
  background: var(--accent); color: var(--on-accent);
  border-color: var(--accent);
  box-shadow: 5px 5px 0 var(--hard-shadow);
}
.btn--acid:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--hard-shadow); }
.btn--acid:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--hard-shadow); }

.btn--ghost {
  background: transparent; color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-text); transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--hard-shadow); }
.btn--dark { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn--dark:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--hard-shadow); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }

.link {
  color: var(--accent-text); text-decoration: underline; text-underline-offset: 3px;
  text-decoration-thickness: 2px; font-weight: 600; cursor: pointer; background: none; border: 0;
  padding: 4px 2px; /* keeps the tap target ≥24px tall */
}
.link:hover { text-decoration-thickness: 4px; }
.link--sm { font-size: 13px; }

/* ── 7. SCROLL PROGRESS + MARQUEE ──────────────────────────── */
.scroll-progress { position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 120; background: transparent; pointer-events: none; }
.scroll-progress i { display: block; height: 100%; width: 0; background: var(--acid); box-shadow: 0 0 12px rgba(158,255,0,.9); }

.announce {
  background: var(--acid); color: #000;
  border-bottom: 3px solid #000;
  overflow: hidden;
  position: relative; z-index: 60;
}
.marquee { display: flex; overflow: hidden; }
.marquee__track {
  display: flex; flex: none; gap: 0;
  animation: marquee 42s linear infinite;
  white-space: nowrap;
}
.marquee__track span {
  font-family: var(--f-body); font-weight: 700; font-size: 12.5px;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 8px 0; display: inline-flex; align-items: center; gap: 26px;
}
.marquee__track span::after { content: "◆"; font-size: 9px; opacity: .55; }
.marquee__track > span { padding-right: 26px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.announce:hover .marquee__track { animation-play-state: paused; }

/* ── 8. HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 2px solid var(--line);
  transition: border-color .3s, background-color .3s, transform .3s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--accent); }
.header__inner {
  height: var(--header-h);
  display: flex; align-items: center; gap: clamp(12px, 2vw, 32px);
}
.logo-link { --logo-size: clamp(26px, 2.6vw, 36px); margin-right: auto; }

.nav__list { display: flex; align-items: center; gap: clamp(4px, 1.4vw, 22px); }
.nav__list a {
  display: block; padding: 10px 8px;
  font-weight: 600; font-size: 13.5px; letter-spacing: .07em; text-transform: uppercase;
  position: relative; color: var(--text);
}
.nav__list a::after {
  content: ""; position: absolute; left: 8px; right: 8px; bottom: 4px; height: 3px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__list a:hover::after, .nav__list a:focus-visible::after { transform: scaleX(1); }

.header__tools { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  position: relative;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  width: 46px; height: 46px;
  border: 2px solid transparent; border-radius: var(--r);
  color: var(--text);
  transition: background-color .2s, border-color .2s, color .2s, transform .2s var(--ease);
}
.icon-btn svg { width: 21px; height: 21px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.icon-btn__tip { font-size: 8.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); }
.icon-btn:hover { border-color: var(--accent); color: var(--accent-text); transform: translateY(-2px); }
.icon-btn:hover .icon-btn__tip { color: var(--accent-text); }
.icon-btn--settings[aria-expanded="true"] { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.icon-btn--settings[aria-expanded="true"] .icon-btn__tip { color: var(--on-accent); }
.icon-btn--close { width: 44px; height: 44px; border-color: var(--line-strong); }

.cart-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 16px;
  background: var(--accent); color: var(--on-accent);
  border: 2px solid var(--accent); border-radius: var(--r);
  font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
  box-shadow: 4px 4px 0 var(--hard-shadow);
}
.cart-btn svg { width: 19px; height: 19px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.cart-btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--hard-shadow); }

.badge {
  min-width: 21px; height: 21px; padding: 0 5px;
  display: inline-grid; place-items: center;
  background: #000; color: var(--acid);
  border-radius: 999px;
  font-size: 11.5px; font-weight: 700; line-height: 1;
  font-variant-numeric: tabular-nums;
}
#favBadge { position: absolute; top: 2px; right: 2px; background: var(--acid); color: #000; border: 1.5px solid var(--bg); }
.badge.is-bump { animation: bump .45s var(--ease); }
@keyframes bump { 0%,100% { transform: scale(1); } 35% { transform: scale(1.55) rotate(-8deg); } }

.burger { display: none; }

/* ── 9. HERO ───────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding-block: clamp(48px, 7vw, 96px) clamp(56px, 8vw, 110px); }
.hero__grid-bg {
  position: absolute; inset: -2px;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 30% 40%, #000 25%, transparent 78%);
  animation: gridDrift 26s linear infinite;
}
@keyframes gridDrift { to { background-position: 56px 56px; } }
.hero__scan {
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(to bottom, transparent 0 3px, rgba(158,255,0,.028) 3px 4px);
  mix-blend-mode: screen;
}
[data-theme="light"] .hero__scan { mix-blend-mode: multiply; background: repeating-linear-gradient(to bottom, transparent 0 3px, rgba(0,0,0,.03) 3px 4px); }

.hero__inner {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(28px, 5vw, 72px); align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-text);
  border: 2px solid var(--line-strong); padding: 7px 14px; border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.7); } }

.hero__title { font-size: clamp(52px, 11.5vw, 148px); line-height: .82; margin-bottom: 26px; }
.hero__title .line { display: block; }
.hero__title .line--acid {
  color: var(--accent-text);
  -webkit-text-stroke: 0;
}
[data-theme="dark"] .hero__title .line--acid { text-shadow: 0 0 42px rgba(158,255,0,.28); }

.hero__lead { color: var(--text-dim); max-width: 54ch; font-size: clamp(15px, 1.15vw, 18.5px); margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero__facts { display: flex; flex-wrap: wrap; gap: clamp(18px, 3vw, 46px); border-top: 2px solid var(--line); padding-top: 24px; }
.hero__facts li { display: flex; flex-direction: column; }
.hero__facts strong {
  font-family: var(--f-display); font-style: italic; font-weight: 900;
  font-size: clamp(30px, 3.6vw, 46px); line-height: 1; color: var(--accent-text);
  font-variant-numeric: tabular-nums;
}
.hero__facts span { font-size: 12.5px; color: var(--text-dim); letter-spacing: .04em; max-width: 20ch; }

.hero__visual { position: relative; }
.hero__badge {
  position: absolute; top: -6px; right: 4px; z-index: 3;
  background: var(--accent); color: var(--on-accent);
  font-family: var(--f-display); font-weight: 900; font-style: italic; font-size: 20px;
  padding: 8px 18px; border: 3px solid #000;
  transform: rotate(7deg);
  box-shadow: 5px 5px 0 #000;
  animation: badgeFloat 4s ease-in-out infinite;
}
@keyframes badgeFloat { 0%,100% { transform: rotate(7deg) translateY(0); } 50% { transform: rotate(4deg) translateY(-8px); } }

.hero__skate { position: relative; }
.hero__skate svg { width: 100%; height: auto; filter: drop-shadow(0 24px 46px rgba(0,0,0,.55)); }
[data-theme="light"] .hero__skate svg { filter: drop-shadow(0 20px 34px rgba(0,0,0,.22)); }
.hero__caption { margin-top: 14px; font-size: 13px; color: var(--text-dim); text-align: center; }
.hero__caption strong { color: var(--text); }

/* rolling wheels */
.wheel-spin { transform-box: fill-box; transform-origin: center; animation: spin 2.4s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── 10. USP STRIP ─────────────────────────────────────────── */
.usp { background: var(--acid); color: #000; border-block: 3px solid #000; padding-block: clamp(30px, 4vw, 48px); }
.usp__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(18px, 3vw, 40px); }
.usp__item { position: relative; padding-left: 0; }
.usp__item svg { width: 30px; height: 30px; stroke: #000; stroke-width: 2; fill: none; stroke-linecap: square; margin-bottom: 12px; }
.usp__item h3 { font-size: 22px; margin-bottom: 6px; }
.usp__item p { font-size: 13.5px; line-height: 1.5; opacity: .82; }

/* ── 11. CATEGORY GRID ─────────────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.cat-card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 2px solid var(--line);
  padding: 26px 24px 24px; border-radius: var(--r);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s var(--ease);
  text-align: left; width: 100%;
}
.cat-card::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 4px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.cat-card:hover, .cat-card:focus-visible { transform: translate(-4px, -4px); border-color: var(--accent); box-shadow: 9px 9px 0 var(--hard-shadow); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card__viz { height: 108px; display: grid; place-items: center; }
.cat-card__viz svg { height: 100%; width: auto; }
.cat-card__mm { font-family: var(--f-display); font-style: italic; font-weight: 900; font-size: 15px; color: var(--accent-text); letter-spacing: .04em; }
.cat-card h3 { font-size: 27px; }
.cat-card p { font-size: 13.5px; color: var(--text-dim); line-height: 1.5; }
.cat-card__go { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-text); }
.cat-card__go svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2.4; fill: none; transition: transform .3s var(--ease); }
.cat-card:hover .cat-card__go svg { transform: translateX(6px); }

/* ── 12. PRODUCT CARDS ─────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: 16px; }
.rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 1fr);
  gap: 16px; overflow-x: auto; padding-bottom: 14px; scroll-snap-type: x mandatory;
  scrollbar-color: var(--accent) var(--surface-2);
}
.rail > * { scroll-snap-align: start; }
.rail::-webkit-scrollbar { height: 10px; }
.rail::-webkit-scrollbar-track { background: var(--surface-2); }
.rail::-webkit-scrollbar-thumb { background: var(--accent); }

.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 2px solid var(--line); border-radius: var(--r);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s var(--ease);
}
.card:hover, .card:focus-within { transform: translate(-4px, -4px); border-color: var(--accent); box-shadow: 9px 9px 0 var(--hard-shadow); }

.card__media {
  position: relative; aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, var(--surface-2), var(--surface));
  display: grid; place-items: center; padding: 14px;
  border-bottom: 2px solid var(--line);
  overflow: hidden;
}
.card__media::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .8; pointer-events: none;
}
.card__media svg { position: relative; z-index: 1; width: 100%; height: 100%; transition: transform .45s var(--ease); }
.card:hover .card__media svg { transform: scale(1.07) rotate(-1.5deg); }

.card__flags { position: absolute; top: 10px; left: 10px; z-index: 2; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.flag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 9px; border: 2px solid #000; border-radius: var(--r);
}
.flag svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2.6; fill: none; }
.flag--sale { background: var(--acid); color: #000; }
.flag--new { background: #000; color: var(--acid); border-color: var(--acid); }
.flag--low { background: var(--warn); color: #000; border-color: #000; }
.flag--out { background: var(--surface-2); color: var(--text); border-color: var(--line-strong); }

.card__fav {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  width: 38px; height: 38px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  border: 2px solid var(--line); border-radius: var(--r);
  transition: border-color .2s, color .2s, transform .2s var(--ease);
}
.card__fav svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }
.card__fav:hover { border-color: var(--accent); transform: scale(1.1); }
.card__fav[aria-pressed="true"] { color: var(--accent-text); border-color: var(--accent); }
.card__fav[aria-pressed="true"] svg { fill: var(--accent); }

.card__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__cat { font-size: 10.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-text); }
.card__title { font-family: var(--f-display); font-weight: 900; font-style: italic; font-size: 23px; line-height: .96; text-transform: uppercase; }
/* whole-card click target, while the accessible name stays on the button */
.card__link { font: inherit; color: inherit; text-align: left; text-transform: inherit; padding: 0; }
.card__link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.card__link:focus-visible { outline: none; }
.card:has(.card__link:focus-visible) { outline: 3px solid var(--acid); outline-offset: 3px; box-shadow: 0 0 0 6px var(--ink), 0 0 0 8px var(--acid); }
[data-theme="light"] .card:has(.card__link:focus-visible) { box-shadow: 0 0 0 6px #fff, 0 0 0 8px #0A0A0A; }
.card__spec { font-size: 12.5px; color: var(--text-dim); line-height: 1.45; }
.card__rating { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--text-dim); }
.stars { display: inline-flex; gap: 1px; }
.stars svg { width: 13px; height: 13px; stroke: var(--accent-text); stroke-width: 1.6; fill: none; }
.stars svg.is-on { fill: var(--accent); stroke: var(--accent); }

.card__stock { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; }
.card__stock svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2.4; fill: none; flex: none; }
.stock--in { color: var(--accent-text); }
.stock--low { color: var(--warn-text); }
.stock--out { color: var(--danger-text); }

.card__foot { margin-top: auto; padding-top: 12px; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.price { display: flex; flex-direction: column; line-height: 1.1; }
.price__now { font-family: var(--f-display); font-weight: 900; font-style: italic; font-size: 27px; font-variant-numeric: tabular-nums; }
.price__was { font-size: 12px; color: var(--text-dim); text-decoration: line-through; }
.price__save { font-size: 11px; font-weight: 700; color: var(--accent-text); letter-spacing: .04em; }
.card__add { position: relative; z-index: 2; }

/* ── 13. BUILDER ───────────────────────────────────────────── */
.builder__layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(22px, 3.4vw, 52px); align-items: start; }
.builder__preview { position: sticky; top: calc(var(--header-h) + 20px); display: flex; flex-direction: column; gap: 20px; }
.builder__stage {
  position: relative; background: var(--surface); border: 2px solid var(--line); border-radius: var(--r);
  padding: 28px 24px; min-height: 330px; display: grid; place-items: center; overflow: hidden;
}
.builder__stage::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 34px 34px; pointer-events: none;
}
.builder__glow {
  position: absolute; width: 62%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(158,255,0,.22), transparent 65%);
  filter: blur(26px); animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100% { transform: scale(1); opacity: .75; } 50% { transform: scale(1.18); opacity: 1; } }
.builder__skate { position: relative; z-index: 1; width: 100%; }
.builder__skate svg { width: 100%; height: auto; max-height: 300px; }

.builder__meters { background: var(--surface); border: 2px solid var(--line); border-radius: var(--r); padding: 22px; }
.builder__meters-title { font-size: 20px; margin-bottom: 16px; }
.meters { display: flex; flex-direction: column; gap: 13px; }
.meter__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 5px; }
.meter__label { font-size: 12.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.meter__val { font-size: 12px; font-weight: 700; color: var(--accent-text); font-variant-numeric: tabular-nums; }
.meter__track { height: 12px; background: var(--surface-2); border: 2px solid var(--line); position: relative; overflow: hidden; }
.meter__fill {
  height: 100%; background: var(--accent); width: 0;
  transition: width .55s var(--ease);
  background-image: repeating-linear-gradient(45deg, rgba(0,0,0,.22) 0 4px, transparent 4px 8px);
}
.builder__note { margin-top: 16px; padding-top: 14px; border-top: 2px solid var(--line); font-size: 13px; color: var(--text-dim); line-height: 1.55; }

.builder__form { display: flex; flex-direction: column; gap: 26px; }
.bfield { border: 0; padding: 0; }
.bfield legend {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--f-display); font-weight: 900; font-style: italic; font-size: 25px; text-transform: uppercase;
  margin-bottom: 8px;
}
.bfield__n {
  width: 30px; height: 30px; display: grid; place-items: center; flex: none;
  background: var(--accent); color: var(--on-accent);
  font-family: var(--f-body); font-style: normal; font-weight: 700; font-size: 14px;
  border-radius: var(--r);
}
.bfield__help { font-size: 13px; color: var(--text-dim); margin-bottom: 12px; }

.opt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 9px; }
.opt-grid--size { grid-template-columns: repeat(auto-fill, minmax(74px, 1fr)); }
.opt-grid--color { grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); }

.opt {
  position: relative; text-align: left;
  background: var(--surface); border: 2px solid var(--line); border-radius: var(--r);
  padding: 12px 13px; cursor: pointer;
  display: flex; flex-direction: column; gap: 3px;
  transition: border-color .2s, transform .2s var(--ease), background-color .2s, box-shadow .2s var(--ease);
}
.opt:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.opt__name { font-weight: 700; font-size: 13.5px; line-height: 1.25; }
.opt__meta { font-size: 11.5px; color: var(--text-dim); line-height: 1.35; }
.opt__price { font-size: 11.5px; font-weight: 700; color: var(--accent-text); font-variant-numeric: tabular-nums; }
.opt__tick {
  position: absolute; top: 7px; right: 7px; width: 19px; height: 19px;
  border: 2px solid var(--line-strong); border-radius: 50%;
  display: grid; place-items: center; opacity: 0; transform: scale(.5);
  transition: opacity .2s, transform .2s var(--ease);
}
.opt__tick svg { width: 11px; height: 11px; stroke: var(--on-accent); stroke-width: 3.4; fill: none; }
.opt[aria-checked="true"] {
  border-color: var(--accent); background: color-mix(in srgb, var(--accent) 11%, var(--surface));
  box-shadow: 4px 4px 0 var(--hard-shadow);
}
.opt[aria-checked="true"] .opt__tick { opacity: 1; transform: scale(1); background: var(--accent); border-color: var(--accent); }
.opt[aria-checked="true"] .opt__name { color: var(--accent-text); }
.opt--sz { align-items: center; text-align: center; padding: 12px 6px; }
.opt--sz .opt__name { font-family: var(--f-display); font-style: italic; font-weight: 900; font-size: 21px; }
.opt--sz .opt__tick { top: 4px; right: 4px; width: 15px; height: 15px; }
.opt--color { align-items: center; text-align: center; }
.opt__swatch { width: 40px; height: 40px; border: 2px solid var(--line-strong); border-radius: 50%; margin-bottom: 5px; }
.opt--unavailable { opacity: .38; pointer-events: none; }

.opt-list { display: flex; flex-direction: column; gap: 9px; }
.opt-check {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--surface); border: 2px solid var(--line); border-radius: var(--r); padding: 13px;
  cursor: pointer; transition: border-color .2s, background-color .2s;
}
.opt-check:hover { border-color: var(--line-strong); }
.opt-check:has(input:checked) { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 9%, var(--surface)); }
.opt-check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.opt-check__box {
  width: 22px; height: 22px; flex: none; margin-top: 1px;
  border: 2px solid var(--line-strong); border-radius: var(--r);
  display: grid; place-items: center; background: var(--bg);
}
.opt-check__box svg { width: 13px; height: 13px; stroke: var(--on-accent); stroke-width: 3.4; fill: none; opacity: 0; transform: scale(.4); transition: opacity .18s, transform .18s var(--ease); }
.opt-check:has(input:checked) .opt-check__box { background: var(--accent); border-color: var(--accent); }
.opt-check:has(input:checked) .opt-check__box svg { opacity: 1; transform: scale(1); }
.opt-check:has(input:focus-visible) .opt-check__box { outline: 3px solid var(--acid); outline-offset: 3px; }
.opt-check__txt { display: flex; flex-direction: column; gap: 2px; }
.opt-check__txt strong { font-size: 13.5px; font-weight: 700; }
.opt-check__txt span { font-size: 12px; color: var(--text-dim); line-height: 1.4; }
.opt-check__price { margin-left: auto; font-weight: 700; font-size: 13px; color: var(--accent-text); white-space: nowrap; font-variant-numeric: tabular-nums; }

.builder__summary {
  background: var(--surface-2); border: 2px solid var(--line); border-left: 5px solid var(--accent);
  padding: 18px; border-radius: var(--r);
}
.builder__summary h4 { font-size: 19px; margin-bottom: 10px; }
.bsum { display: flex; flex-direction: column; gap: 4px; font-size: 13px; }
.bsum__row { display: flex; justify-content: space-between; gap: 14px; }
.bsum__row dt { color: var(--text-dim); }
.bsum__row dd { font-weight: 600; text-align: right; }
.bsum__total {
  margin-top: 12px; padding-top: 12px; border-top: 2px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
}
.bsum__total span { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.bsum__total strong { font-family: var(--f-display); font-style: italic; font-weight: 900; font-size: 34px; color: var(--accent-text); font-variant-numeric: tabular-nums; }
.builder__actions { display: flex; flex-direction: column; gap: 10px; }

/* ── 14. GUIDE ─────────────────────────────────────────────── */
.guide__classes { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 16px; margin-bottom: clamp(36px, 5vw, 64px); }
.gcard { background: var(--surface); border: 2px solid var(--line); border-radius: var(--r); padding: 22px; display: flex; flex-direction: column; gap: 12px; transition: border-color .3s, transform .3s var(--ease), box-shadow .3s var(--ease); }
.gcard:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 10px 0 var(--hard-shadow); }
.gcard__range {
  align-self: flex-start;
  font-family: var(--f-display); font-style: italic; font-weight: 900; font-size: 30px;
  background: var(--accent); color: var(--on-accent); padding: 3px 12px; border-radius: var(--r);
}
.gcard h3 { font-size: 24px; }
.gcard p { font-size: 13.5px; color: var(--text-dim); line-height: 1.55; }
.gcard__viz { height: 74px; display: flex; align-items: flex-end; gap: 5px; }
.gcard__viz svg { height: 100%; width: auto; }
.gcard__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.tag { font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border: 2px solid var(--line-strong); padding: 3px 8px; border-radius: var(--r); color: var(--text-dim); }

.guide__grip {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(24px, 4vw, 56px);
  align-items: center; background: var(--surface); border: 2px solid var(--line); border-radius: var(--r);
  padding: clamp(24px, 3.4vw, 44px); margin-bottom: clamp(32px, 4vw, 56px);
}
.guide__grip h3 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 14px; }
.guide__grip p { color: var(--text-dim); font-size: 15px; margin-bottom: 26px; }
.guide__slider label { display: block; font-size: 12.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; }
.guide__slider-ends { display: flex; justify-content: space-between; font-size: 11.5px; font-weight: 600; color: var(--text-dim); margin-top: 7px; letter-spacing: .05em; }
.guide__readout {
  display: block; margin-top: 18px; padding: 14px 16px;
  background: var(--surface-2); border: 2px solid var(--line); border-left: 5px solid var(--accent); border-radius: var(--r);
  font-size: 13.5px; line-height: 1.55;
}
.guide__readout strong { color: var(--accent-text); }
.guide__grip-visual svg { width: 100%; height: auto; }

input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 14px; background: var(--surface-2);
  border: 2px solid var(--line-strong); border-radius: var(--r); cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; background: var(--accent); border: 3px solid var(--ink);
  border-radius: var(--r); cursor: grab; box-shadow: 0 0 0 2px var(--accent);
}
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; background: var(--accent); border: 3px solid var(--ink);
  border-radius: var(--r); cursor: grab; box-shadow: 0 0 0 2px var(--accent);
}

.table-scroll { overflow-x: auto; border: 2px solid var(--line); border-radius: var(--r); }
.dtable { font-size: 13.5px; min-width: 620px; background: var(--surface); }
.dtable caption { text-align: left; padding: 14px 16px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); border-bottom: 2px solid var(--line); }
.dtable th, .dtable td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.dtable thead th { background: var(--surface-2); font-family: var(--f-body); font-style: normal; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-text); border-bottom: 2px solid var(--line); }
.dtable tbody tr:hover { background: color-mix(in srgb, var(--accent) 7%, transparent); }
.dtable tbody tr:last-child td { border-bottom: 0; }
.dtable--sm { min-width: 380px; font-size: 13px; }
.dtable--sm th, .dtable--sm td { padding: 8px 12px; }

/* ── 15. SHOP ──────────────────────────────────────────────── */
.shop__layout { display: grid; grid-template-columns: 262px minmax(0, 1fr); gap: clamp(20px, 3vw, 40px); align-items: start; }
.shop__count { font-size: 13px; color: var(--text-dim); font-variant-numeric: tabular-nums; }

.filters {
  position: sticky; top: calc(var(--header-h) + 20px);
  background: var(--surface); border: 2px solid var(--line); border-radius: var(--r);
  padding: 20px; display: flex; flex-direction: column; gap: 22px;
}
.filters__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.filters__head h3 { font-size: 22px; }
.filter-group h4 { font-size: 12px; font-family: var(--f-body); font-style: normal; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 11px; }
.filter-readout { font-size: 12.5px; color: var(--text-dim); margin-top: 9px; font-variant-numeric: tabular-nums; }

.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600;
  padding: 7px 12px; border: 2px solid var(--line); border-radius: 999px;
  background: var(--bg); color: var(--text);
  transition: border-color .2s, background-color .2s, color .2s, transform .15s var(--ease);
}
.chip:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.chip[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.chip__tick { width: 13px; height: 13px; stroke: currentColor; stroke-width: 3; fill: none; display: none; }
.chip[aria-pressed="true"] .chip__tick { display: block; }

.check { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 13.5px; padding: 5px 0; }
.check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.check__box {
  width: 21px; height: 21px; flex: none;
  border: 2px solid var(--line-strong); border-radius: var(--r); background: var(--bg);
  position: relative;
}
.check__box::after {
  content: ""; position: absolute; inset: 3px;
  background: var(--accent); clip-path: polygon(14% 46%, 0 60%, 40% 100%, 100% 22%, 86% 8%, 38% 72%);
  opacity: 0; transform: scale(.4); transition: opacity .18s, transform .18s var(--ease);
}
.check input:checked + .check__box { border-color: var(--accent); }
.check input:checked + .check__box::after { opacity: 1; transform: scale(1); }
.check input:focus-visible + .check__box { outline: 3px solid var(--acid); outline-offset: 3px; box-shadow: 0 0 0 6px var(--ink); }
.check--lg { align-items: flex-start; font-size: 14px; margin-block: 20px; }

.shop__bar { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 16px; }
.shop__search { position: relative; flex: 1 1 260px; }
.shop__search svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; stroke: var(--text-dim); stroke-width: 2; fill: none; pointer-events: none; }
.shop__search input {
  width: 100%; padding: 13px 14px 13px 42px;
  background: var(--surface); border: 2px solid var(--line); border-radius: var(--r); color: var(--text);
  transition: border-color .2s;
}
.shop__search input:hover { border-color: var(--line-strong); }
.shop__sort { display: flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); }
select {
  padding: 12px 34px 12px 13px;
  background: var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239EFF00' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center / 15px;
  border: 2px solid var(--line); border-radius: var(--r); color: var(--text);
  -webkit-appearance: none; appearance: none; cursor: pointer; font-size: 13.5px; font-weight: 500;
  text-transform: none; letter-spacing: 0;
}
select:hover { border-color: var(--line-strong); }

.active-filters { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.active-filters:empty { display: none; }
.afilter {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600;
  background: var(--surface-2); border: 2px solid var(--accent); border-radius: 999px; padding: 5px 8px 5px 12px;
}
.afilter svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2.8; fill: none; }
.afilter button { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--line-strong); }
.afilter button:hover { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }

.empty { text-align: center; padding: 60px 20px; border: 2px dashed var(--line-strong); border-radius: var(--r); }
.empty svg { width: 48px; height: 48px; stroke: var(--text-dim); stroke-width: 1.6; fill: none; margin: 0 auto 16px; }
.empty h3 { font-size: 28px; margin-bottom: 8px; }
.empty p { color: var(--text-dim); font-size: 14px; max-width: 42ch; margin: 0 auto 20px; }

/* ── 16. REVIEWS ───────────────────────────────────────────── */
.rev-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.rev {
  background: var(--surface); border: 2px solid var(--line); border-radius: var(--r); padding: 24px;
  display: flex; flex-direction: column; gap: 13px;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s var(--ease);
}
.rev:hover { transform: translate(-4px, -4px); border-color: var(--accent); box-shadow: 9px 9px 0 var(--hard-shadow); }
.rev__q { font-size: 15px; line-height: 1.6; }
.rev__q::before { content: "«"; color: var(--accent-text); font-weight: 700; }
.rev__q::after { content: "»"; color: var(--accent-text); font-weight: 700; }
.rev__who { margin-top: auto; display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 2px solid var(--line); }
.rev__ava {
  width: 42px; height: 42px; flex: none; display: grid; place-items: center;
  background: var(--accent); color: var(--on-accent); border-radius: var(--r);
  font-family: var(--f-display); font-style: italic; font-weight: 900; font-size: 19px;
}
.rev__name { font-weight: 700; font-size: 13.5px; }
.rev__meta { font-size: 12px; color: var(--text-dim); }
.rev__verified { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; color: var(--accent-text); }
.rev__verified svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 3; fill: none; }

/* ── 17. ABOUT ─────────────────────────────────────────────── */
.about__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(28px, 4vw, 64px); align-items: center; }
.about p { color: var(--text-dim); margin-bottom: 15px; max-width: 58ch; }
.about__facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; margin-top: 28px; border-top: 2px solid var(--line); padding-top: 24px; }
.about__facts dt { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 3px; }
.about__facts dd { font-family: var(--f-display); font-style: italic; font-weight: 900; font-size: 21px; text-transform: uppercase; color: var(--accent-text); }
.about__map svg { width: 100%; height: auto; }

/* ── 18. SUPPORT / FAQ ─────────────────────────────────────── */
.sup-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 16px; margin-bottom: clamp(36px, 5vw, 60px); }
.sup-card { background: var(--surface); border: 2px solid var(--line); border-radius: var(--r); padding: 26px; }
.sup-card h3 { font-size: 25px; margin-bottom: 14px; }
.sup-card > p { font-size: 13.5px; color: var(--text-dim); margin-bottom: 16px; }
.sup-card__note { margin-top: 16px; font-size: 13px; color: var(--text-dim); }
.sup-card__note strong { color: var(--text); display: block; }

.ticklist { display: flex; flex-direction: column; gap: 12px; }
.ticklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; }
.ticklist svg { width: 18px; height: 18px; flex: none; margin-top: 3px; stroke: var(--accent-text); stroke-width: 2.4; fill: none; }
.ticklist strong { display: block; }
.ticklist span { color: var(--text-dim); font-size: 12.5px; }
.ticklist b { color: var(--accent-text); font-variant-numeric: tabular-nums; }

.contact-list { display: flex; flex-direction: column; gap: 13px; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.contact-list svg { width: 19px; height: 19px; flex: none; stroke: var(--accent-text); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.contact-list a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 2px; }
.contact-list a:hover { color: var(--accent-text); }
.contact-list address { font-style: normal; }

.faq h3 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 20px; }
.accordion { display: flex; flex-direction: column; gap: 8px; }
.acc { border: 2px solid var(--line); border-radius: var(--r); background: var(--surface); overflow: hidden; transition: border-color .25s; }
.acc:has([aria-expanded="true"]) { border-color: var(--accent); }
.acc__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 17px 20px; text-align: left;
  font-family: var(--f-body); font-weight: 600; font-size: 15px;
  transition: background-color .2s;
}
.acc__btn:hover { background: var(--surface-2); }
.acc__ico { width: 26px; height: 26px; flex: none; display: grid; place-items: center; border: 2px solid var(--line-strong); border-radius: var(--r); transition: transform .3s var(--ease), background-color .25s, border-color .25s, color .25s; }
.acc__ico svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 3; fill: none; }
.acc__btn[aria-expanded="true"] .acc__ico { transform: rotate(135deg); background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .38s var(--ease); }
.acc__panel[data-open="true"] { grid-template-rows: 1fr; }
.acc__panel > div { overflow: hidden; }
.acc__panel p { padding: 0 20px 20px; font-size: 14px; color: var(--text-dim); line-height: 1.65; max-width: 78ch; }

/* ── 19. NEWSLETTER ────────────────────────────────────────── */
.news { background: var(--acid); color: #000; border-block: 3px solid #000; padding-block: clamp(44px, 6vw, 76px); position: relative; overflow: hidden; }
.news::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(0,0,0,.055) 0 12px, transparent 12px 24px);
}
.news__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .95fr); gap: clamp(24px, 4vw, 56px); align-items: center; }
.news h2 { font-size: clamp(34px, 5vw, 62px); margin-bottom: 10px; }
.news p { font-size: 15px; opacity: .82; max-width: 48ch; }
.news__form { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; }
.news__form .field { flex: 1 1 240px; }
.news__form label { color: #000; }
.news__form input { background: #fff; border-color: #000; color: #000; }
.news__form .btn--acid { background: #000; color: var(--acid); border-color: #000; box-shadow: 5px 5px 0 rgba(0,0,0,.28); }
.news__form .field__error { color: #7A0B02; }
.news__form .field__error svg { stroke: #7A0B02; }

/* ── 20. FORM FIELDS ───────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-dim); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 14px;
  background: var(--surface); border: 2px solid var(--line); border-radius: var(--r); color: var(--text);
  transition: border-color .2s, background-color .2s;
}
.field input:hover, .field textarea:hover { border-color: var(--line-strong); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); opacity: .65; }
.field textarea { resize: vertical; min-height: 84px; }
.field__hint { font-size: 12px; color: var(--text-dim); }
.field__error {
  display: flex; align-items: flex-start; gap: 7px;
  font-size: 12.5px; font-weight: 600; color: var(--danger-text);
}
.field__error svg { width: 15px; height: 15px; flex: none; margin-top: 2px; stroke: currentColor; stroke-width: 2.6; fill: none; }
.field.is-invalid input, .field.is-invalid textarea, .field.is-invalid select {
  border-color: var(--danger);
  background-image: repeating-linear-gradient(45deg, color-mix(in srgb, var(--danger) 8%, transparent) 0 6px, transparent 6px 12px);
}
.grid2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0 16px; }
.promo-row { display: flex; gap: 8px; }
.promo-row input { flex: 1; }
.field__ok { color: var(--accent-text); }
.field__ok svg { stroke: currentColor; }

/* ── 21. OVERLAY + DIALOGS ─────────────────────────────────── */
.overlay {
  position: fixed; inset: 0; z-index: 100;
  background: var(--overlay); backdrop-filter: blur(6px);
  animation: fadeIn .28s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Settings */
.settings-panel {
  position: fixed; z-index: 101;
  top: calc(var(--header-h) + 14px); right: clamp(10px, 3vw, 28px);
  width: min(420px, calc(100vw - 20px));
  max-height: calc(100dvh - var(--header-h) - 32px); overflow-y: auto;
  background: var(--surface); border: 3px solid var(--accent); border-radius: var(--r);
  box-shadow: 12px 12px 0 var(--hard-shadow);
  animation: popIn .3s var(--ease);
}
@keyframes popIn { from { opacity: 0; transform: translateY(-14px) scale(.96); } to { opacity: 1; transform: none; } }
.settings__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px; border-bottom: 2px solid var(--line); position: sticky; top: 0; background: var(--surface); z-index: 2; }
.settings__head h2 { font-size: 27px; }
.settings__body { padding: 20px; display: flex; flex-direction: column; gap: 26px; }
.settings__group > h3 { display: flex; align-items: center; gap: 9px; font-size: 13px; font-family: var(--f-body); font-style: normal; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 13px; }
.settings__group > h3 svg { width: 18px; height: 18px; stroke: var(--accent-text); stroke-width: 2; fill: none; }
.settings__foot { font-size: 12px; color: var(--text-dim); border-top: 2px solid var(--line); padding-top: 14px; }

.seg { display: flex; flex-direction: column; gap: 8px; }
.seg__btn {
  display: flex; align-items: center; gap: 11px;
  padding: 13px 15px; text-align: left;
  background: var(--bg); border: 2px solid var(--line); border-radius: var(--r);
  transition: border-color .2s, background-color .2s;
}
.seg__btn:hover { border-color: var(--line-strong); }
.seg__check { width: 22px; height: 22px; flex: none; display: grid; place-items: center; border: 2px solid var(--line-strong); border-radius: 50%; }
.seg__check svg { width: 12px; height: 12px; stroke: var(--on-accent); stroke-width: 3.4; fill: none; opacity: 0; transform: scale(.4); transition: opacity .2s, transform .2s var(--ease); }
.seg__label { font-weight: 600; font-size: 14.5px; }
.seg__state { margin-left: auto; font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-text); opacity: 0; }
.seg__btn[aria-checked="true"] { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, var(--bg)); }
.seg__btn[aria-checked="true"] .seg__check { background: var(--accent); border-color: var(--accent); }
.seg__btn[aria-checked="true"] .seg__check svg { opacity: 1; transform: scale(1); }
.seg__btn[aria-checked="true"] .seg__state { opacity: 1; }

.switch-row { display: flex; align-items: flex-start; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.switch-row:last-of-type { border-bottom: 0; }
.switch-row__text { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.switch-row__title { font-weight: 600; font-size: 14px; line-height: 1.35; }
.switch-row__desc { font-size: 12px; color: var(--text-dim); line-height: 1.45; }
.switch__ctl { flex: none; padding: 3px; border-radius: 999px; }
.switch__track {
  display: block; width: 54px; height: 30px; border-radius: 999px;
  background: var(--surface-2); border: 2px solid var(--line-strong);
  position: relative; transition: background-color .26s var(--ease), border-color .26s;
}
.switch__knob {
  position: absolute; top: 2px; left: 2px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--text-dim); transition: transform .3s var(--ease), background-color .26s;
}
.switch__ctl[aria-checked="true"] .switch__track { background: var(--accent); border-color: var(--accent); }
.switch__ctl[aria-checked="true"] .switch__knob { transform: translateX(24px); background: var(--on-accent); }
.state-pill {
  flex: none; align-self: center;
  min-width: 42px; text-align: center;
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em;
  padding: 4px 8px; border: 2px solid var(--line-strong); border-radius: var(--r); color: var(--text-dim);
}
.state-pill.is-on { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }

/* Search overlay */
.search-overlay {
  position: fixed; inset: 0; z-index: 105;
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  backdrop-filter: blur(10px);
  overflow-y: auto; padding: clamp(16px, 6vh, 80px) var(--gut) 60px;
  animation: fadeIn .24s var(--ease);
}
.search-overlay__inner { max-width: 880px; margin-inline: auto; }
.search-overlay__head { display: flex; align-items: center; gap: 12px; border: 3px solid var(--accent); border-radius: var(--r); background: var(--surface); padding: 8px 8px 8px 18px; box-shadow: 8px 8px 0 var(--hard-shadow); }
.search-overlay__icon { width: 24px; height: 24px; flex: none; stroke: var(--accent-text); stroke-width: 2.2; fill: none; }
.search-overlay__head input { flex: 1; border: 0; background: none; padding: 14px 0; font-size: clamp(18px, 2.6vw, 28px); font-family: var(--f-display); font-style: italic; font-weight: 900; text-transform: uppercase; }
.search-overlay__head input::placeholder { color: var(--text-dim); opacity: .6; }
.search-overlay__hint { margin-top: 14px; font-size: 13px; color: var(--text-dim); }
.search-results { margin-top: 22px; display: flex; flex-direction: column; gap: 8px; }
.sresult {
  display: flex; align-items: center; gap: 14px; width: 100%; text-align: left;
  padding: 11px 14px; background: var(--surface); border: 2px solid var(--line); border-radius: var(--r);
  transition: border-color .2s, transform .2s var(--ease), box-shadow .2s var(--ease);
}
.sresult:hover, .sresult:focus-visible { border-color: var(--accent); transform: translateX(5px); box-shadow: -5px 0 0 var(--accent); }
.sresult__viz { width: 62px; height: 48px; flex: none; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; padding: 3px; }
.sresult__viz svg { width: 100%; height: 100%; }
.sresult__txt { flex: 1; min-width: 0; }
.sresult__name { font-weight: 700; font-size: 14.5px; }
.sresult__meta { font-size: 12px; color: var(--text-dim); }
.sresult__price { font-family: var(--f-display); font-style: italic; font-weight: 900; font-size: 20px; color: var(--accent-text); white-space: nowrap; }
.sresult mark { background: var(--accent); color: var(--on-accent); padding: 0 2px; }

/* ── 22. CART DRAWER ───────────────────────────────────────── */
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 101;
  width: min(460px, 100vw);
  background: var(--bg); border-left: 3px solid var(--accent);
  display: flex; flex-direction: column;
  animation: slideIn .38s var(--ease);
  box-shadow: -18px 0 60px rgba(0,0,0,.5);
}
.cart-drawer[hidden] { display: none; }
@keyframes slideIn { from { transform: translateX(100%); } to { transform: none; } }
.cart__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px; border-bottom: 2px solid var(--line); flex: none; }
.cart__head h2 { font-size: 28px; display: flex; align-items: baseline; gap: 8px; }
.cart__count { font-family: var(--f-body); font-style: normal; font-size: 14px; color: var(--text-dim); font-variant-numeric: tabular-nums; }

.freeship { padding: 14px 20px; border-bottom: 2px solid var(--line); background: var(--surface); flex: none; }
.freeship__txt { font-size: 12.5px; margin-bottom: 8px; display: flex; align-items: center; gap: 7px; line-height: 1.4; }
.freeship__txt svg { width: 16px; height: 16px; flex: none; stroke: var(--accent-text); stroke-width: 2.4; fill: none; }
.freeship__txt b { color: var(--accent-text); font-variant-numeric: tabular-nums; }
.freeship__bar { height: 9px; background: var(--surface-2); border: 2px solid var(--line); overflow: hidden; }
.freeship__fill { height: 100%; background: var(--accent); width: 0; transition: width .5s var(--ease); background-image: repeating-linear-gradient(45deg, rgba(0,0,0,.2) 0 4px, transparent 4px 8px); }

.cart__body { flex: 1; overflow-y: auto; padding: 8px 20px; }
.citem { display: grid; grid-template-columns: 78px minmax(0, 1fr); gap: 14px; padding: 16px 0; border-bottom: 2px solid var(--line); animation: itemIn .35s var(--ease); }
@keyframes itemIn { from { opacity: 0; transform: translateX(22px); } to { opacity: 1; transform: none; } }
.citem.is-leaving { animation: itemOut .28s var(--ease) forwards; }
@keyframes itemOut { to { opacity: 0; transform: translateX(40px); height: 0; padding: 0; margin: 0; border: 0; } }
.citem__viz { background: var(--surface); border: 2px solid var(--line); aspect-ratio: 1; display: grid; place-items: center; padding: 5px; }
.citem__viz svg { width: 100%; height: 100%; }
.citem__main { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.citem__name { font-weight: 700; font-size: 14.5px; line-height: 1.28; }
.citem__opts { font-size: 12px; color: var(--text-dim); line-height: 1.45; }
.citem__opts span { display: inline-block; margin-right: 8px; }
.citem__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 4px; }
.qty { display: inline-flex; align-items: center; border: 2px solid var(--line); border-radius: var(--r); }
.qty button { width: 32px; height: 32px; display: grid; place-items: center; color: var(--text); transition: background-color .18s, color .18s; }
.qty button:hover { background: var(--accent); color: var(--on-accent); }
.qty button svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 3; fill: none; }
.qty__n { min-width: 34px; text-align: center; font-weight: 700; font-size: 14px; font-variant-numeric: tabular-nums; }
.citem__price { font-family: var(--f-display); font-style: italic; font-weight: 900; font-size: 20px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.citem__rm { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 600; color: var(--text-dim); align-self: flex-start; }
.citem__rm svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2.4; fill: none; }
.citem__rm:hover { color: var(--danger-text); }

.cart-empty { text-align: center; padding: 56px 16px; }
.cart-empty svg { width: 56px; height: 56px; stroke: var(--text-dim); stroke-width: 1.6; fill: none; margin: 0 auto 18px; }
.cart-empty h3 { font-size: 26px; margin-bottom: 8px; }
.cart-empty p { font-size: 14px; color: var(--text-dim); margin-bottom: 22px; }

.cart__upsell { flex: none; border-top: 2px solid var(--line); background: var(--surface); padding: 16px 20px; max-height: 40vh; overflow-y: auto; }
.cart__upsell h3 { display: flex; align-items: center; gap: 8px; font-size: 12px; font-family: var(--f-body); font-style: normal; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 12px; }
.cart__upsell h3 svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 3; fill: none; }
.upsell-list { display: flex; flex-direction: column; gap: 8px; }
.upsell {
  display: flex; align-items: center; gap: 11px;
  border: 2px solid var(--line); border-radius: var(--r); padding: 8px; background: var(--bg);
  transition: border-color .2s;
}
.upsell:hover { border-color: var(--accent); }
.upsell__viz { width: 46px; height: 46px; flex: none; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; padding: 3px; }
.upsell__viz svg { width: 100%; height: 100%; }
.upsell__txt { flex: 1; min-width: 0; }
.upsell__name { font-weight: 700; font-size: 12.8px; line-height: 1.25; }
.upsell__why { font-size: 11px; color: var(--text-dim); }
.upsell__price { font-weight: 700; font-size: 13px; color: var(--accent-text); font-variant-numeric: tabular-nums; white-space: nowrap; }
.upsell__add { width: 34px; height: 34px; flex: none; display: grid; place-items: center; background: var(--accent); color: var(--on-accent); border-radius: var(--r); }
.upsell__add svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 3; fill: none; }
.upsell__add:hover { transform: scale(1.1); }

.cart__foot { flex: none; border-top: 3px solid var(--accent); background: var(--surface); padding: 18px 20px; }
.totals { display: flex; flex-direction: column; gap: 7px; margin-bottom: 15px; }
.totals__row { display: flex; justify-content: space-between; gap: 14px; font-size: 13.5px; }
.totals__row dt { color: var(--text-dim); display: flex; align-items: center; gap: 6px; }
.totals__row dd { font-weight: 600; font-variant-numeric: tabular-nums; }
.totals__row--free dd { color: var(--accent-text); font-weight: 700; }
.totals__row--disc dd { color: var(--accent-text); }
.totals__row--grand { border-top: 2px solid var(--line); padding-top: 11px; margin-top: 5px; align-items: baseline; }
.totals__row--grand dt { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text); }
.totals__row--grand dd { font-family: var(--f-display); font-style: italic; font-weight: 900; font-size: 33px; color: var(--accent-text); }
.totals__vat { font-size: 11.5px; color: var(--text-dim); }
.cart__foot .btn + .btn { margin-top: 9px; }
.cart__trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 13px; font-size: 11px; color: var(--text-dim); }
.cart__trust span { display: inline-flex; align-items: center; gap: 5px; }
.cart__trust svg { width: 13px; height: 13px; stroke: var(--accent-text); stroke-width: 2.6; fill: none; }

/* ── 23. PDP MODAL ─────────────────────────────────────────── */
.pdp {
  position: fixed; z-index: 101;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(1000px, calc(100vw - 24px)); max-height: calc(100dvh - 40px); overflow-y: auto;
  background: var(--bg); border: 3px solid var(--accent); border-radius: var(--r);
  box-shadow: 16px 16px 0 var(--hard-shadow);
  animation: modalIn .32s var(--ease);
}
@keyframes modalIn { from { opacity: 0; transform: translate(-50%, -46%) scale(.94); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
.pdp__close { position: absolute; top: 12px; right: 12px; z-index: 3; background: var(--bg); }
.pdp__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.pdp__media { position: relative; background: var(--surface); border-right: 2px solid var(--line); padding: 34px; display: grid; place-items: center; min-height: 300px; }
.pdp__media::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px); background-size: 32px 32px; pointer-events: none; }
.pdp__media svg { position: relative; z-index: 1; width: 100%; height: auto; }
.pdp__body { padding: clamp(22px, 3vw, 36px); }
.pdp__cat { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 7px; }
.pdp__body h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 10px; }
.pdp__rating { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text-dim); margin-bottom: 16px; }
.pdp__desc { font-size: 14.5px; color: var(--text-dim); margin-bottom: 18px; line-height: 1.65; }
.pdp__price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.pdp__price .price__now { font-size: 42px; }
.pdp__vat { font-size: 12px; color: var(--text-dim); margin-bottom: 18px; }
.pdp__specs { border: 2px solid var(--line); border-radius: var(--r); margin-bottom: 20px; }
.pdp__specs div { display: flex; justify-content: space-between; gap: 14px; padding: 9px 14px; font-size: 13px; border-bottom: 1px solid var(--line); }
.pdp__specs div:last-child { border-bottom: 0; }
.pdp__specs dt { color: var(--text-dim); }
.pdp__specs dd { font-weight: 600; text-align: right; }
.pdp__sizes { margin-bottom: 18px; }
.pdp__sizes h3 { font-size: 12px; font-family: var(--f-body); font-style: normal; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 9px; }
.pdp__actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.pdp__actions .btn { flex: 1 1 200px; }
.pdp__ship { margin-top: 18px; padding-top: 16px; border-top: 2px solid var(--line); display: flex; flex-direction: column; gap: 9px; font-size: 12.5px; color: var(--text-dim); }
.pdp__ship span { display: flex; align-items: flex-start; gap: 8px; }
.pdp__ship svg { width: 15px; height: 15px; flex: none; margin-top: 2px; stroke: var(--accent-text); stroke-width: 2.4; fill: none; }

/* ── 24. CHECKOUT ──────────────────────────────────────────── */
.checkout { position: fixed; inset: 0; z-index: 110; background: var(--bg); overflow-y: auto; animation: fadeIn .3s var(--ease); }
.checkout__head {
  position: sticky; top: 0; z-index: 5;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px var(--gut); border-bottom: 2px solid var(--line);
  background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(12px);
}
.checkout__body {
  max-width: 1160px; margin-inline: auto; padding: clamp(24px, 4vw, 48px) var(--gut) 80px;
  display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr); gap: clamp(24px, 4vw, 52px); align-items: start;
}
.demo-note {
  display: flex; gap: 11px; align-items: flex-start;
  background: color-mix(in srgb, var(--warn) 14%, var(--surface));
  border: 2px solid var(--warn); border-radius: var(--r);
  padding: 13px 15px; font-size: 13px; margin-bottom: 26px; line-height: 1.5;
}
.demo-note svg { width: 19px; height: 19px; flex: none; margin-top: 1px; stroke: var(--warn-text); stroke-width: 2.2; fill: none; }

.steps { display: flex; gap: 6px; margin-bottom: 30px; flex-wrap: wrap; }
.steps li {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 15px; border: 2px solid var(--line); border-radius: var(--r);
  font-size: 12.5px; font-weight: 600; color: var(--text-dim); flex: 1 1 auto;
  transition: border-color .3s, color .3s, background-color .3s;
}
.steps__n { width: 24px; height: 24px; flex: none; display: grid; place-items: center; border: 2px solid currentColor; border-radius: 50%; font-size: 12px; font-weight: 700; }
.steps li.is-active { border-color: var(--accent); color: var(--accent-text); }
.steps li.is-done { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.steps li.is-done .steps__n { background: var(--on-accent); color: var(--accent); border-color: var(--on-accent); }

.costep { animation: stepIn .34s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }
.costep h3 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 20px; }
.costep__nav { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

.radio-cards { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.rcard {
  display: flex; align-items: center; gap: 14px; text-align: left; width: 100%;
  padding: 15px 16px; background: var(--surface); border: 2px solid var(--line); border-radius: var(--r);
  transition: border-color .2s, background-color .2s, transform .2s var(--ease);
}
.rcard:hover { border-color: var(--line-strong); transform: translateX(3px); }
.rcard__dot { width: 22px; height: 22px; flex: none; border: 2px solid var(--line-strong); border-radius: 50%; display: grid; place-items: center; }
.rcard__dot::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); opacity: 0; transform: scale(.3); transition: opacity .2s, transform .2s var(--ease); }
.rcard[aria-checked="true"] { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, var(--surface)); }
.rcard[aria-checked="true"] .rcard__dot { border-color: var(--accent); }
.rcard[aria-checked="true"] .rcard__dot::after { opacity: 1; transform: scale(1); }
.rcard__txt { flex: 1; min-width: 0; }
.rcard__name { font-weight: 700; font-size: 14.5px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rcard__meta { font-size: 12.5px; color: var(--text-dim); line-height: 1.4; }
.rcard__price { font-weight: 700; font-size: 15px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.rcard__price.is-free { color: var(--accent-text); }
.rcard__badge { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--accent); color: var(--on-accent); padding: 2px 7px; border-radius: var(--r); }

.checkout__side {
  position: sticky; top: 92px;
  background: var(--surface); border: 2px solid var(--line); border-radius: var(--r); padding: 22px;
}
.checkout__side h3 { font-size: 23px; margin-bottom: 16px; }
.coitem { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.coitem__viz { width: 50px; height: 50px; flex: none; background: var(--bg); border: 1px solid var(--line); display: grid; place-items: center; padding: 3px; position: relative; }
.coitem__viz svg { width: 100%; height: 100%; }
.coitem__q { position: absolute; top: -8px; right: -8px; min-width: 21px; height: 21px; padding: 0 5px; display: grid; place-items: center; background: var(--accent); color: var(--on-accent); border-radius: 999px; font-size: 11px; font-weight: 700; }
.coitem__txt { flex: 1; min-width: 0; font-size: 13px; }
.coitem__txt strong { display: block; font-size: 13.5px; line-height: 1.3; }
.coitem__txt span { font-size: 11.5px; color: var(--text-dim); }
.coitem__price { font-weight: 700; font-size: 13.5px; white-space: nowrap; font-variant-numeric: tabular-nums; }

.done { text-align: center; padding: 30px 0; }
.done__mark {
  width: 88px; height: 88px; margin: 0 auto 24px;
  display: grid; place-items: center;
  background: var(--accent); border-radius: 50%;
  animation: pop .5s var(--ease);
}
.done__mark svg { width: 44px; height: 44px; stroke: var(--on-accent); stroke-width: 3.2; fill: none; stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw .55s .22s var(--ease) forwards; }
@keyframes pop { 0% { transform: scale(0); } 65% { transform: scale(1.18); } 100% { transform: scale(1); } }
@keyframes draw { to { stroke-dashoffset: 0; } }
.done h3 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 14px; }
.done__order { font-size: 15px; margin-bottom: 12px; }
.done__order strong { display: block; font-family: var(--f-display); font-style: italic; font-weight: 900; font-size: 34px; color: var(--accent-text); letter-spacing: .02em; }
.done p { color: var(--text-dim); font-size: 14.5px; max-width: 52ch; margin: 0 auto 26px; line-height: 1.6; }

/* ── 25. TOASTS + FLY ──────────────────────────────────────── */
.toasts { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 130; display: flex; flex-direction: column-reverse; gap: 9px; width: min(430px, calc(100vw - 24px)); pointer-events: none; }
.toast {
  display: flex; align-items: flex-start; gap: 11px;
  background: var(--surface); border: 2px solid var(--accent); border-left-width: 6px; border-radius: var(--r);
  padding: 13px 15px; box-shadow: 7px 7px 0 var(--hard-shadow);
  animation: toastIn .34s var(--ease); pointer-events: auto;
}
.toast.is-out { animation: toastOut .3s var(--ease) forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateY(26px) scale(.94); } to { opacity: 1; transform: none; } }
@keyframes toastOut { to { opacity: 0; transform: translateY(16px) scale(.96); } }
.toast svg { width: 19px; height: 19px; flex: none; margin-top: 1px; stroke: var(--accent-text); stroke-width: 2.6; fill: none; }
.toast--error { border-color: var(--danger); }
.toast--error svg { stroke: var(--danger-text); }
.toast__txt { flex: 1; font-size: 13.5px; line-height: 1.4; }
.toast__txt strong { display: block; font-weight: 700; }
.toast__txt span { color: var(--text-dim); font-size: 12.5px; }
.toast__x { flex: none; width: 26px; height: 26px; display: grid; place-items: center; color: var(--text-dim); }
.toast__x svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2.6; }
.toast__x:hover { color: var(--text); }

.fly { position: fixed; z-index: 140; width: 26px; height: 26px; border-radius: 50%; background: var(--acid); border: 2px solid #000; pointer-events: none; }

/* ── 26. FOOTER ────────────────────────────────────────────── */
.site-footer { background: var(--bg-alt); border-top: 3px solid var(--accent); padding-top: clamp(44px, 5vw, 72px); }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3vw, 48px); padding-bottom: clamp(32px, 4vw, 56px); }
.footer__brand .logo { --logo-size: clamp(26px, 3vw, 36px); margin-bottom: 16px; }
.footer__motto { font-family: var(--f-display); font-style: italic; font-weight: 900; font-size: 21px; text-transform: uppercase; color: var(--accent-text); margin-bottom: 16px; }
.footer__org { font-size: 12.5px; color: var(--text-dim); line-height: 1.7; }
.footer__col h3 { font-size: 12px; font-family: var(--f-body); font-style: normal; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 14px; }
.footer__col ul { display: flex; flex-direction: column; gap: 9px; }
.footer__col a { font-size: 13.5px; color: var(--text-dim); position: relative; display: inline-block; }
.footer__col a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--accent); transition: right .3s var(--ease); }
.footer__col a:hover { color: var(--text); }
.footer__col a:hover::after { right: 0; }
.footer__pay-t { margin-top: 26px; }
.track { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.track .field { margin-bottom: 8px; width: 100%; }
.paylist { display: flex; flex-wrap: wrap; gap: 7px; }
.paylist li { font-size: 11px; font-weight: 700; letter-spacing: .06em; border: 2px solid var(--line-strong); border-radius: var(--r); padding: 5px 9px; color: var(--text-dim); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 20px; border-top: 2px solid var(--line); font-size: 12.5px; color: var(--text-dim); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__legal a { text-decoration: underline; text-underline-offset: 3px; }
.footer__legal a:hover { color: var(--accent-text); }

/* ── 27. REVEAL ANIMATIONS ─────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal]:nth-child(2) { transition-delay: .06s; }
[data-reveal]:nth-child(3) { transition-delay: .12s; }
[data-reveal]:nth-child(4) { transition-delay: .18s; }
.hero__title .line { transition-delay: calc(var(--i, 0) * .07s); }
.card-in { animation: cardIn .5s var(--ease) both; }
@keyframes cardIn { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: none; } }

/* ── 28. RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1080px) {
  .shop__layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .builder__layout { grid-template-columns: 1fr; }
  .builder__preview { position: static; }
  .checkout__body { grid-template-columns: 1fr; }
  .checkout__side { position: static; order: -1; }
}
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 480px; margin-inline: auto; }
  .guide__grip, .about__grid, .news__inner { grid-template-columns: 1fr; }
  .pdp__inner { grid-template-columns: 1fr; }
  .pdp__media { border-right: 0; border-bottom: 2px solid var(--line); }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .burger { display: inline-flex; }
  .icon-btn__tip { display: none; }
  .icon-btn { width: 42px; height: 42px; }
  .cart-btn span:not(.badge) { display: none; }
  .cart-btn { padding: 11px 13px; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--bg); border-bottom: 3px solid var(--accent);
    padding: 12px var(--gut) 22px;
    transform: translateY(-14px); opacity: 0;
    /* visibility steps at the end of the fade rather than being interpolated,
       so the closed menu is never focusable even if a frame is dropped */
    visibility: hidden; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease), visibility 0s linear .3s;
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open {
    transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    transition: transform .3s var(--ease), opacity .3s var(--ease), visibility 0s linear 0s;
  }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list a { padding: 15px 4px; border-bottom: 2px solid var(--line); font-size: 17px; }
  .nav__list a::after { display: none; }
}
@media (max-width: 560px) {
  :root { --header-h: 64px; }
  .hero__title { font-size: clamp(42px, 15vw, 72px); }
  .footer__grid { grid-template-columns: 1fr; }
  .settings-panel { top: auto; bottom: 0; right: 0; left: 0; width: 100%; max-height: 88dvh; border-width: 3px 0 0; animation: sheetIn .34s var(--ease); }
  @keyframes sheetIn { from { transform: translateY(100%); } to { transform: none; } }
  .cart-drawer { border-left: 0; border-top: 3px solid var(--accent); }
  .toasts { bottom: 12px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .card__title { font-size: 19px; }
  .price__now { font-size: 22px; }
  .steps li { flex: 1 1 100%; }
}

/* ── 29. REDUCED MOTION ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
[data-motion="reduced"] { scroll-behavior: auto; }
[data-motion="reduced"] *, [data-motion="reduced"] *::before, [data-motion="reduced"] *::after {
  animation-duration: .001ms !important; animation-iteration-count: 1 !important;
  transition-duration: .001ms !important;
}
[data-motion="reduced"] [data-reveal] { opacity: 1 !important; transform: none !important; }
[data-motion="reduced"] .marquee__track { animation: none !important; }
[data-motion="reduced"] .wheel-spin { animation: none !important; }

/* ── 30. PRINT ─────────────────────────────────────────────── */
@media print {
  .site-header, .announce, .cart-drawer, .overlay, .toasts, .settings-panel, .news, .scroll-progress { display: none !important; }
  body { background: #fff; color: #000; }
}
