/* ==========================================================================
   LifeMotion — sport / lifestyle / motion design system.
   Mobile-first. Bold compressed display type, diagonal accents,
   electric orange/cyan/neon palette. Mid-energy with breathing room.
   ========================================================================== */

:root {
  /* — surfaces — */
  --bg: #ffffff;
  --bg-soft: #f5f5f4;
  --bg-mute: #e9e9e7;
  --bg-dark: #0a0a0a;
  --bg-dark-2: #15161a;

  /* — text — */
  --ink: #0a0a0a;
  --ink-2: #2a2d33;
  --ink-3: #6e7079;
  --ink-on-dark: #ffffff;

  /* — lines — */
  --line: #e7e6e3;
  --line-2: #f1f0ed;
  --line-strong: #c5c4c1;

  /* — accents — */
  --accent: #ff5b1f;           /* electric-orange — "move energy" */
  --accent-hover: #e64a14;
  --accent-soft: #fff1eb;
  --accent-ink: #ffffff;

  --electric: #00d1ff;         /* cyan for HIT categories */
  --electric-soft: #e0f9ff;
  --neon: #d4ff3a;             /* neon-lime for CTA / sale */
  --neon-ink: #0a0a0a;

  --warn: #cf1e1e;
  --warn-soft: #fde8e8;
  --ok: #1f8a3a;
  --ok-soft: #e6f4ea;

  /* — typography — */
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Anton", "Bebas Neue", "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, "SF Mono", monospace;

  /* — radii / shadows — */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.06);
  --shadow: 0 6px 22px rgba(10, 10, 10, 0.10);
  --shadow-lg: 0 22px 60px rgba(10, 10, 10, 0.18);
  --shadow-glow-cyan: 0 0 0 1px rgba(0, 209, 255, 0.35), 0 12px 36px rgba(0, 209, 255, 0.22);
  --shadow-glow-orange: 0 0 0 1px rgba(255, 91, 31, 0.35), 0 12px 36px rgba(255, 91, 31, 0.22);

  /* — layout — */
  --wrap: min(1320px, 100% - 32px);
  --wrap-narrow: min(960px, 100% - 32px);
  --header-h: 64px;

  /* — transitions — */
  --ease: cubic-bezier(0.22, 0.68, 0.18, 1);
}

/* — reset — */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--accent); color: white; }

/* — typography — */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.005em;
  color: var(--ink);
  text-transform: uppercase;
}
h1 { font-size: clamp(40px, 8vw, 96px); letter-spacing: 0.005em; }
h2 { font-size: clamp(28px, 4.5vw, 52px); }
h3 { font-size: clamp(18px, 2vw, 22px); letter-spacing: 0.02em; }
h4 { font-size: 14px; letter-spacing: 0.04em; }
p { margin: 0 0 1em; font-family: var(--font-body); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.muted { color: var(--ink-3); }

/* — containers — */
.container { width: var(--wrap); margin-inline: auto; }
.container-narrow { width: var(--wrap-narrow); margin-inline: auto; }

/* — buttons — */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13.5px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease), color 0.15s var(--ease), transform 0.15s var(--ease);
  white-space: nowrap;
  position: relative;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: white; }
.btn-dark { background: var(--ink); color: var(--ink-on-dark); }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-1px); }
.btn-warn { background: var(--warn); color: white; }
.btn-warn:hover { filter: brightness(0.95); }
.btn-neon { background: var(--neon); color: var(--neon-ink); }
.btn-neon:hover { filter: brightness(0.95); transform: translateY(-1px); }
.btn-electric { background: var(--electric); color: var(--ink); }
.btn-electric:hover { filter: brightness(0.95); }
.btn-link { padding: 0; background: none; color: var(--accent); border: 0; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px; }
.btn-link:hover { text-decoration: underline; }
.btn-sm { padding: 9px 14px; font-size: 12px; letter-spacing: 0.06em; }
.btn-lg { padding: 17px 30px; font-size: 14px; }
.btn-xl { padding: 20px 36px; font-size: 16px; letter-spacing: 0.1em; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }

/* — inputs — */
.input, .select, .textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 15px;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 38px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%230a0a0a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 91, 31, 0.16);
}
.textarea { min-height: 96px; resize: vertical; }
.field { display: block; margin-bottom: 14px; }
.field-label { display: block; font-size: 13px; color: var(--ink-2); margin-bottom: 6px; font-weight: 500; }
.field-error { color: var(--warn); font-size: 12.5px; margin-top: 4px; }
.field-help { color: var(--ink-3); font-size: 12.5px; margin-top: 4px; }

.radio-row, .checkbox-row { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer; margin-bottom: 8px; transition: border-color 0.15s, background 0.15s; }
.radio-row:hover, .checkbox-row:hover { border-color: var(--ink); }
.radio-row input, .checkbox-row input { accent-color: var(--accent); width: 18px; height: 18px; }
.radio-row.checked, .checkbox-row.checked { border-color: var(--accent); background: var(--accent-soft); }

/* — installment sub-selectors (term + bank) — */
.installment-sub { margin: -2px 0 12px; padding: 14px 16px; border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: var(--radius); background: var(--bg-soft); }
.installment-sub-title { font-size: 12px; font-weight: 700; color: var(--ink-2); margin: 0 0 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.installment-sub-title:not(:first-child) { margin-top: 14px; }
.pay-chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--bg, #fff); color: var(--ink); font-size: 14px; font-weight: 500; cursor: pointer; transition: border-color 0.15s, background 0.15s, color 0.15s; font-family: inherit; line-height: 1.2; }
.pay-chip:hover { border-color: var(--ink); }
.pay-chip.active { border-color: var(--accent); background: var(--accent); color: #fff; }
.pay-chip.bank-pay-chip { padding: 4px 14px 4px 4px; }
.pay-chip.bank-pay-chip img,
.bank-icon { display: block; width: 28px; height: 28px; border-radius: 6px; object-fit: contain; flex-shrink: 0; background: transparent; }
.pay-chip.bank-pay-chip img[src*="mono"],
.bank-icon[src*="mono"] { border-radius: 50%; }

/* — chips/badges — */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-family: var(--font-body);
}
.chip-warn { background: var(--neon); color: var(--ink); border-color: transparent; }
.chip-ok { background: var(--ok-soft); color: var(--ok); border-color: transparent; }
.chip-accent { background: var(--accent); color: white; border-color: transparent; }
.chip-ink { background: var(--ink); color: var(--ink-on-dark); border-color: transparent; }
.chip-electric { background: var(--electric); color: var(--ink); border-color: transparent; font-weight: 700; }
.chip-hit {
  background: var(--accent);
  color: white;
  border-color: transparent;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.14em;
  padding: 5px 11px;
  text-transform: uppercase;
  box-shadow: 0 0 0 2px rgba(255, 91, 31, 0.2);
}

/* — cards / placeholders — */
.card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; }
.card-flat { background: var(--bg-soft); border-radius: var(--radius-lg); padding: 22px; }

.ph {
  background: linear-gradient(135deg, var(--bg-mute) 25%, var(--bg-soft) 50%, var(--bg-mute) 75%);
  background-size: 200% 200%;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ph::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.04));
}
.ph-aspect-1 { aspect-ratio: 1 / 1; }
.ph-aspect-43 { aspect-ratio: 4 / 3; }
.ph-aspect-169 { aspect-ratio: 16 / 9; }

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.header-utility {
  background: var(--bg-dark);
  color: var(--ink-on-dark);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.header-utility-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 34px;
}
.header-utility .left, .header-utility .right { display: flex; align-items: center; gap: 22px; }
.header-utility a { opacity: 0.78; transition: opacity 0.15s, color 0.15s; }
.header-utility a:hover { opacity: 1; color: var(--accent); }
.phone-link { display: inline-flex; align-items: center; gap: 6px; }
.phone-link svg { flex-shrink: 0; }
.header-utility .phone-link { font-weight: 600; opacity: 1; color: white; }
.header-utility .phone-link:hover { color: var(--accent); }
@media (max-width: 640px) { .header-utility .right { display: none; } }

.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
}
.brand-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-transform: uppercase;
}
.brand-mark {
  width: 38px; height: 38px;
  background: var(--ink);
  color: white;
  border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 400;
  font-size: 22px;
  font-family: var(--font-display);
  position: relative;
  overflow: hidden;
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, var(--accent) 50%);
  z-index: 0;
}
.brand-mark span { position: relative; z-index: 1; }

.header-search {
  position: relative;
  max-width: 520px;
  width: 100%;
  justify-self: center;
}
.header-search input {
  width: 100%;
  height: 44px;
  padding: 0 48px 0 16px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-size: 14px;
}
.header-search input:focus { background: var(--bg); border-color: var(--accent); outline: none; }
.header-search-btn {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 44px;
  background: var(--ink);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.header-search-btn:hover { background: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  position: relative;
  width: 44px; height: 44px;
  border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.icon-btn:hover { background: var(--bg-soft); color: var(--ink); }
.icon-btn .badge {
  position: absolute; top: 4px; right: 4px;
  min-width: 18px; height: 18px;
  background: var(--accent); color: white;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px;
}
.icon-btn-label { display: none; }
@media (min-width: 1024px) {
  .icon-btn { width: auto; padding: 8px 12px; gap: 8px; }
  .icon-btn-label { display: inline; font-size: 13px; font-weight: 500; }
}

.callback-cta { display: none; }
@media (min-width: 768px) {
  .callback-cta { display: inline-flex; }
}

.header-nav {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.header-nav-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.header-nav-inner::-webkit-scrollbar { display: none; }
.header-nav a {
  padding: 14px 18px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap;
  position: relative;
  transition: color 0.15s, background 0.15s;
}
.header-nav a:hover { color: var(--accent); }
.header-nav a.active { color: var(--ink); background: var(--bg-soft); }
.header-nav a.active::after {
  content: ""; position: absolute; left: 18px; right: 18px; bottom: 0;
  height: 3px; background: var(--accent);
}
.header-nav a.is-hit::before {
  content: ""; position: absolute; top: 10px; right: 10px;
  width: 6px; height: 6px;
  background: var(--electric);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--electric);
}

/* mobile burger */
.mobile-toggle { display: inline-flex; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-drawer {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10, 10, 10, 0.6);
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.mobile-drawer.open { opacity: 1; pointer-events: auto; }
.mobile-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(360px, 86vw);
  background: var(--bg);
  padding: 22px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s var(--ease);
  overflow-y: auto;
}
.mobile-drawer.open .mobile-drawer-panel { transform: translateX(0); }
.mobile-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mobile-nav-link { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; display: block; }
.mobile-nav-link.is-hit::after { content: "ХIT"; margin-left: 8px; font-size: 10px; padding: 2px 6px; background: var(--electric); color: var(--ink); border-radius: 3px; letter-spacing: 0.1em; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  margin-top: 100px;
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 380px; height: 380px;
  background: var(--accent);
  transform: rotate(45deg);
  opacity: 0.06;
  pointer-events: none;
}
.site-footer h4 { color: white; margin-bottom: 16px; font-size: 12px; letter-spacing: 0.2em; font-family: var(--font-mono); font-weight: 600; text-transform: uppercase; }
.site-footer a { color: rgba(255, 255, 255, 0.72); transition: color 0.15s; }
.site-footer a:hover { color: var(--accent); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; font-size: 14px; }
.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 64px 0 36px;
  position: relative;
}
@media (min-width: 768px) { .footer-cols { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-cols { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer-brand .footer-wordmark {
  font-family: var(--font-display);
  font-size: 44px;
  color: white;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.footer-brand .footer-wordmark .em { color: var(--accent); }
.footer-brand p { color: rgba(255, 255, 255, 0.6); font-size: 13.5px; line-height: 1.65; max-width: 38ch; }
.footer-contact a { display: block; padding: 4px 0; font-weight: 500; color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
}
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 18px; }
.payment-icons { display: flex; gap: 8px; }
.payment-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 4px 10px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: white;
}

/* ==========================================================================
   HOME — HERO
   ========================================================================== */

.hero {
  background: var(--bg-dark);
  color: white;
  border-radius: var(--radius-lg);
  padding: 56px 32px;
  margin: 28px 0 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* diagonal accent block on hero */
.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 180%;
  background: linear-gradient(135deg, var(--accent) 0%, #ff8a3d 100%);
  transform: skewX(-14deg);
  z-index: -1;
  opacity: 0.92;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--electric) 50%, var(--neon) 100%);
}
.hero .speed-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: repeating-linear-gradient(
    -14deg,
    transparent 0px, transparent 70px,
    rgba(255,255,255,0.6) 70px, rgba(255,255,255,0.6) 71px
  );
  z-index: -1;
}

@media (min-width: 1024px) {
  .hero { grid-template-columns: 1.25fr 1fr; padding: 80px 56px; gap: 44px; }
}

.hero h1 {
  color: white;
  font-size: clamp(48px, 10vw, 124px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  max-width: 12ch;
}
.hero h1 .em { color: var(--neon); display: inline-block; }
.hero .lede {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.6vw, 17px);
  max-width: 46ch;
  line-height: 1.55;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--neon);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-ctas .btn-neon { box-shadow: 0 12px 30px rgba(212, 255, 58, 0.3); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 480px;
}
.hero-stat .n {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: white;
  line-height: 1;
  letter-spacing: 0.01em;
}
.hero-stat .n .em { color: var(--electric); }
.hero-stat .l {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
  font-family: var(--font-mono);
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: center;
  position: relative;
}
.hero-tile {
  background: white;
  border-radius: var(--radius);
  padding: 14px;
  aspect-ratio: 1 / 1;
  display: flex; flex-direction: column; align-items: stretch; justify-content: space-between;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.hero-tile:nth-child(odd) { transform: translateY(12px); }
.hero-tile:hover { transform: translateY(-4px); }
.hero-tile:nth-child(odd):hover { transform: translateY(8px); }
.hero-tile img {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: contain;
}
.hero-tile .tile-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}
.hero-tile .tile-name {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-tile .tile-price {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.hero-tile .tile-tag {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--ink);
  color: white;
  padding: 3px 7px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.12em;
  border-radius: 3px;
}
.hero-tile .tile-tag.electric { background: var(--electric); color: var(--ink); }
@media (min-width: 1024px) {
  .hero-visual { gap: 18px; }
  .hero-tile { padding: 18px; }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section { margin: 72px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; border-bottom: 1px solid var(--ink); padding-bottom: 14px; }
.section-head .titles { display: flex; flex-direction: column; gap: 6px; }
.section-head .titles h2 { margin: 0; }
.section-head .titles .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}

/* ==========================================================================
   HIT BLOCK — special, very visible
   ========================================================================== */

.hit-section {
  margin: 56px 0 72px;
  position: relative;
}
.hit-section-head {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.hit-section-head .label-hit {
  background: var(--ink);
  color: var(--electric);
  padding: 8px 16px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.18em;
  box-shadow: 0 0 0 2px var(--electric);
}
.hit-section-head h2 {
  font-size: clamp(28px, 5vw, 52px);
  margin: 0;
}
.hit-section-head .arrow-track {
  flex: 1; height: 2px; background: var(--ink); position: relative;
  display: none;
}
@media (min-width: 768px) { .hit-section-head .arrow-track { display: block; } }
.hit-section-head .arrow-track::after {
  content: ""; position: absolute; right: 0; top: 50%; width: 14px; height: 14px;
  border-top: 2px solid var(--ink); border-right: 2px solid var(--ink);
  transform: translateY(-50%) rotate(45deg);
}

.hit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .hit-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }

.hit-card {
  position: relative;
  background: var(--bg-dark);
  color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  border: 0;
  font-family: inherit;
  isolation: isolate;
}
.hit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow-cyan); }
.hit-card::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 160%;
  background: linear-gradient(135deg, var(--electric) 0%, var(--accent) 100%);
  transform: skewX(-14deg);
  opacity: 0.85;
  z-index: -1;
}
.hit-card .hit-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  background: var(--ink);
  color: var(--electric);
  padding: 5px 10px;
  border-radius: 3px;
  width: fit-content;
  border: 1px solid var(--electric);
}
.hit-card h3 {
  font-size: clamp(28px, 4.5vw, 44px);
  color: white;
  margin: 14px 0 6px;
  line-height: 0.95;
}
.hit-card p {
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  max-width: 36ch;
  margin: 0 0 18px;
  line-height: 1.5;
}
.hit-card .hit-meta {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
}
.hit-card .hit-meta .arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--neon);
  font-weight: 600;
}
.hit-card .hit-image {
  position: absolute;
  right: -10px; bottom: -10px;
  width: 60%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  z-index: -1;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.4));
}

/* ==========================================================================
   CATEGORY GRID
   ========================================================================== */

.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (min-width: 640px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
.cat-card {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--bg);
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cat-card .ph { aspect-ratio: 4 / 3; }
.cat-card h3 {
  font-size: 18px;
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.cat-card .meta { font-size: 11px; color: var(--ink-3); font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; }
.cat-card.is-hit { border-color: var(--ink); }
.cat-card.is-hit::before {
  content: "ХIT";
  position: absolute;
  top: 0; right: 0;
  padding: 6px 12px;
  background: var(--electric);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.16em;
  z-index: 2;
  border-bottom-left-radius: var(--radius);
}

/* ==========================================================================
   BENEFITS
   ========================================================================== */

.benefit-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 768px) { .benefit-row { grid-template-columns: repeat(4, 1fr); } }
.benefit { display: flex; gap: 14px; align-items: flex-start; padding: 22px; border: 1px solid var(--ink); border-radius: var(--radius); background: var(--bg); }
.benefit .icon-wrap { width: 40px; height: 40px; border-radius: 4px; background: var(--ink); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit h4 { font-size: 14px; margin: 0 0 6px; }
.benefit p { font-size: 12.5px; color: var(--ink-3); margin: 0; line-height: 1.45; }

/* ==========================================================================
   PRODUCT CARD
   ========================================================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; } }

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
}
.product-card:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow); }
.product-card .ph,
.product-card .product-image {
  aspect-ratio: 1 / 1;
  margin-bottom: 12px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.product-card img.product-image { width: 100%; object-fit: contain; padding: 8px; }
.product-card .brand {
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--ink-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.product-card .name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 10px;
  flex: 1;
}
.product-card .name a { color: var(--ink); }
.product-card .name a:hover { color: var(--accent); }
.product-card .price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.product-card .price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.product-card .price-old { font-size: 12.5px; color: var(--ink-3); text-decoration: line-through; }
.product-card .card-actions { display: flex; gap: 6px; }
.product-card .card-actions .btn { flex: 1; }
.card-badges {
  position: absolute;
  top: 14px; left: 14px;
  display: flex; flex-direction: column;
  gap: 5px;
  z-index: 2;
}

/* HIT product-card — distinctive aggressive styling */
.product-card-hit {
  border-color: var(--ink);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.product-card-hit:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow-orange);
}
.product-card-hit::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--electric) 100%);
  z-index: 2;
}
.product-card-hit .price { color: var(--accent); }

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */

.breadcrumbs {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 22px auto;
}
.breadcrumbs a { color: var(--ink-3); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { opacity: 0.5; }
.breadcrumbs .current { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   PLP
   ========================================================================== */

.plp-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) {
  .plp-layout { grid-template-columns: 260px 1fr; gap: 36px; }
}
.plp-filters { display: flex; flex-direction: column; gap: 22px; }
.filter-group { border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.filter-group:last-child { border-bottom: 0; }
.filter-group h4 { font-size: 12px; letter-spacing: 0.18em; color: var(--ink); margin-bottom: 12px; font-family: var(--font-display); font-weight: 400; }
.filter-group label { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-2); padding: 4px 0; cursor: pointer; }
.filter-group label input { accent-color: var(--accent); }
.filter-group .price-inputs { display: flex; gap: 8px; }
.filter-group .price-inputs input { padding: 8px 10px; font-size: 13px; }

.plp-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.plp-head .count { color: var(--ink-3); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-mono); }
.plp-empty { padding: 56px; text-align: center; color: var(--ink-3); border: 1px dashed var(--line-strong); border-radius: var(--radius-lg); }

/* mobile filter drawer */
.filter-toggle-mobile { display: inline-flex; }
@media (min-width: 1024px) { .filter-toggle-mobile { display: none; } }
.filter-drawer { position: fixed; inset: 0; z-index: 60; background: rgba(10, 10, 10, 0.6); opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.filter-drawer.open { opacity: 1; pointer-events: auto; }
.filter-drawer .panel { position: absolute; left: 0; top: 0; bottom: 0; width: min(360px, 86vw); background: var(--bg); padding: 22px; transform: translateX(-100%); transition: transform 0.25s; overflow-y: auto; }
.filter-drawer.open .panel { transform: translateX(0); }

/* ==========================================================================
   PDP
   ========================================================================== */

.pdp-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) { .pdp-layout { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pdp-layout { grid-template-columns: 1.1fr 1fr; gap: 56px; } }

.pdp-gallery { display: flex; flex-direction: column; gap: 12px; }
.pdp-gallery .main { aspect-ratio: 1 / 1; }
.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.pdp-thumbs .ph { aspect-ratio: 1 / 1; cursor: pointer; transition: outline 0.15s; }
.pdp-thumbs .ph.active { outline: 2px solid var(--accent); outline-offset: 2px; }

.pdp-info h1 { font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 10px; line-height: 1.05; letter-spacing: 0.005em; }
.pdp-info .brand {
  font-family: var(--font-mono);
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  margin-bottom: 8px;
}
.pdp-price-row { display: flex; align-items: baseline; gap: 14px; margin: 14px 0; flex-wrap: wrap; }
.pdp-price {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 46px);
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.01em;
}
.pdp-price-old { font-size: 17px; color: var(--ink-3); text-decoration: line-through; }
.pdp-price-save { background: var(--neon); color: var(--ink); border-radius: var(--radius-sm); padding: 4px 10px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.pdp-stock { display: inline-flex; align-items: center; gap: 6px; color: var(--ok); font-size: 13.5px; font-weight: 600; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.06em; }
.pdp-stock-dot { width: 8px; height: 8px; background: var(--ok); border-radius: 50%; box-shadow: 0 0 0 4px rgba(31, 138, 58, 0.18); }
.pdp-actions { display: flex; gap: 10px; margin: 18px 0 22px; flex-wrap: wrap; }
.pdp-actions .btn { flex: 1; min-width: 160px; }

.pdp-shipping {
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 22px;
}
.pdp-shipping ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.pdp-shipping li { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: var(--ink-2); }
.pdp-shipping .icon-wrap { color: var(--accent); flex-shrink: 0; }

.specs-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.specs-table th, .specs-table td { padding: 12px 0; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.specs-table th { color: var(--ink-3); font-weight: 500; width: 42%; }

.qty-control { display: inline-flex; align-items: center; border: 1px solid var(--ink); border-radius: var(--radius-sm); overflow: hidden; }
.qty-control button { padding: 10px 14px; transition: background 0.15s; font-weight: 600; }
.qty-control button:hover { background: var(--ink); color: white; }
.qty-control input { width: 44px; text-align: center; border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line); padding: 10px 4px; font-weight: 600; }

/* ==========================================================================
   CART + CHECKOUT
   ========================================================================== */

.cart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 1024px) { .cart-layout { grid-template-columns: 1fr 360px; gap: 40px; align-items: start; } }

.cart-line {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
@media (min-width: 640px) { .cart-line { grid-template-columns: 100px 1fr auto auto; } }
.cart-line .ph { aspect-ratio: 1 / 1; width: 80px; }
@media (min-width: 640px) { .cart-line .ph { width: 100px; } }
.cart-line .name { font-size: 14.5px; font-weight: 600; margin-bottom: 4px; }
.cart-line .meta { font-size: 12.5px; color: var(--ink-3); font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; }
.cart-line .price-each { font-weight: 400; font-family: var(--font-display); font-size: 22px; min-width: 110px; text-align: right; }
.cart-line .remove-btn { color: var(--ink-3); font-size: 12.5px; padding: 4px; }
.cart-line .remove-btn:hover { color: var(--warn); }

.cart-summary {
  background: var(--bg-dark);
  color: white;
  border-radius: var(--radius-lg);
  padding: 26px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.cart-summary h3 { font-size: 18px; margin-bottom: 18px; color: white; letter-spacing: 0.02em; }
.cart-summary .row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: rgba(255,255,255,0.78); }
.cart-summary .row.total { border-top: 1px solid rgba(255,255,255,0.15); margin-top: 10px; padding-top: 16px; font-size: 22px; font-family: var(--font-display); color: var(--neon); letter-spacing: 0.02em; }
.cart-summary .btn-primary { width: 100%; margin-top: 16px; }

.checkout-form { display: flex; flex-direction: column; gap: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }

/* — confirmation screen — */
.order-confirm {
  text-align: center;
  padding: 44px 24px;
  background: var(--bg-dark);
  color: white;
  border-radius: var(--radius-lg);
  margin: 24px 0;
  position: relative;
  overflow: hidden;
}
.order-confirm::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 50%; height: 180%;
  background: var(--accent);
  transform: skewX(-14deg);
  opacity: 0.18;
}
.order-confirm h1, .order-confirm h2 { color: white; }
.order-confirm .check {
  width: 72px; height: 72px;
  background: var(--neon);
  color: var(--ink);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.order-confirm .num {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 400;
  color: var(--accent);
  margin: 10px 0;
  letter-spacing: 0.01em;
  position: relative; z-index: 1;
}
.order-confirm .callback-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  padding: 11px 20px;
  font-weight: 500;
  margin: 14px 0 6px;
  font-size: 14px;
  position: relative; z-index: 1;
}
.order-confirm .callback-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--neon);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
}
.order-confirm .next-steps { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; position: relative; z-index: 1; }

/* ==========================================================================
   LIVE CHAT WIDGET
   ========================================================================== */

.chat-bubble {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px rgba(255, 91, 31, 0.4);
  z-index: 40;
  transition: transform 0.18s var(--ease);
}
.chat-bubble:hover { transform: scale(1.06); background: var(--accent-hover); }
.chat-bubble .dot {
  position: absolute; top: 6px; right: 6px;
  width: 12px; height: 12px;
  background: var(--neon); border: 2px solid white;
  border-radius: 50%;
}
.chat-window {
  position: fixed;
  right: 20px;
  bottom: 92px;
  width: min(380px, calc(100vw - 32px));
  height: min(520px, calc(100vh - 132px));
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  z-index: 41;
  overflow: hidden;
  border: 1px solid var(--line);
}
.chat-head { padding: 14px 16px; background: var(--ink); color: white; display: flex; justify-content: space-between; align-items: center; }
.chat-head .title { font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; }
.chat-head .sub { font-size: 11.5px; color: rgba(255, 255, 255, 0.7); }
.chat-close { color: rgba(255, 255, 255, 0.7); width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.chat-close:hover { color: white; background: rgba(255, 255, 255, 0.1); }
.chat-msgs { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.chat-msg { max-width: 80%; padding: 9px 13px; border-radius: 14px; font-size: 14px; line-height: 1.4; }
.chat-msg.from-visitor { align-self: flex-end; background: var(--accent); color: white; border-bottom-right-radius: 4px; }
.chat-msg.from-operator { align-self: flex-start; background: var(--bg-soft); color: var(--ink); border-bottom-left-radius: 4px; }
.chat-msg.from-bot { align-self: flex-start; background: var(--bg-soft); color: var(--ink-2); font-style: italic; font-size: 13px; }
.chat-input { display: flex; padding: 10px; border-top: 1px solid var(--line); gap: 8px; }
.chat-input input { flex: 1; border: 1px solid var(--line-strong); border-radius: var(--radius-pill); padding: 10px 14px; font-size: 14px; }
.chat-input input:focus { outline: none; border-color: var(--accent); }
.chat-input button { background: var(--accent); color: white; border-radius: 50%; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; }

/* ==========================================================================
   TOASTS
   ========================================================================== */

.toast-host {
  position: fixed; left: 0; right: 0; bottom: 90px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  pointer-events: none;
  z-index: 70;
}
.toast {
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  box-shadow: var(--shadow);
  pointer-events: auto;
  display: inline-flex; align-items: center; gap: 12px;
  max-width: calc(100vw - 32px);
  animation: toast-in 0.25s var(--ease) both;
}
.toast a, .toast .toast-action { color: var(--neon); text-decoration: underline; font-weight: 600; cursor: pointer; text-transform: uppercase; letter-spacing: 0.05em; font-size: 12px; }
@keyframes toast-in {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   COOKIE BANNER (placeholder)
   ========================================================================== */

.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  background: var(--bg);
  border: 1px solid var(--ink);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 16px;
  z-index: 80;
  display: grid;
  gap: 14px;
}
@media (min-width: 768px) { .cookie-banner { grid-template-columns: 1fr auto; align-items: center; } }
.cookie-banner .text { font-size: 13.5px; color: var(--ink-2); }
.cookie-banner .actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.flex { display: flex; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.text-center { text-align: center; }
.hidden { display: none; }
@media (max-width: 767px) { .hidden-mobile { display: none; } }
@media (min-width: 768px) { .hidden-desktop { display: none; } }

/* ==========================================================================
   LEGAL PAGES — спокійна, послідовна типографіка для Terms / Privacy / Cookies
   Не використовуємо Anton/uppercase — звичайний body-шрифт для читабельності.
   ========================================================================== */

.legal-page h1 {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  margin: 0 0 4px;
  line-height: 1.25;
}
.legal-page h2 {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  margin: 28px 0 10px;
  line-height: 1.35;
  color: var(--ink);
}
.legal-page h3 {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  margin: 18px 0 8px;
  line-height: 1.4;
  color: var(--ink-2);
}
.legal-body {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-2);
}
.legal-body p { margin: 0 0 12px; }
.legal-body ul, .legal-body ol { margin: 0 0 14px; padding-left: 20px; }
.legal-body li { margin-bottom: 6px; }
