/* ============================================
   SV — taste-skill compliant
   DESIGN_VARIANCE: 8  |  MOTION: 6  |  DENSITY: 4
   No Inter, no #000, no purple, no 3-column slop
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700;800;900&family=Geist+Mono:wght@400;500;600&family=Space+Grotesk:wght@400;500;600&display=swap');

:root, :root[data-theme="dark"] {
  /* DARK THEME — Zinc-tinted off-black */
  --c-ink: #FAFAF8;          /* high-contrast surface / inverted */
  --c-ink-soft: #E5E5E2;
  --c-text: #EDEDF0;
  --c-text-mute: #A1A1AA;
  --c-text-faint: #6B6B73;

  /* surfaces (elevation: bg < bg-pure < surface) */
  --c-bg: #0A0A0C;            /* deepest page bg */
  --c-bg-pure: #111116;       /* elevated card bg */
  --c-surface: #17171D;       /* button/hover surface */
  --c-line: #26262C;
  --c-line-soft: #1A1A1F;
  --c-night: #060608;         /* deeper-than-bg for footer/topstrip */

  --c-glass-header: rgba(10, 10, 12, 0.72);
  --c-on-ink: var(--c-bg);    /* text color on top of ink surfaces */
  --c-overlay-strong: rgba(0,0,0,0.55);

  /* singular accent — brand pink (inflatable SV) */
  --c-accent: #E94591;
  --c-accent-deep: #C2306F;
  --c-accent-tint: rgba(233, 69, 145, 0.12);

  --c-shadow-card: 0 1px 0 rgba(0,0,0,0.04);

  /* radii — gallery scale */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

  /* diffusion shadows (tinted to background hue) */
  --sh-1: 0 1px 0 rgba(14,14,16,0.04);
  --sh-2: 0 20px 40px -20px rgba(14,14,16,0.10);
  --sh-3: 0 40px 80px -30px rgba(14,14,16,0.14);

  /* premium easing */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.25s var(--ease);
  --t-med: 0.45s var(--ease);
  --t-slow: 0.7s var(--ease);

  --w-page: 1320px;
}

:root[data-theme="light"] {
  /* LIGHT THEME — clean off-white gallery */
  --c-ink: #0E0E10;
  --c-ink-soft: #1F1F23;
  --c-text: #18181B;
  --c-text-mute: #52525B;
  --c-text-faint: #A1A1AA;

  --c-bg: #FAFAF8;
  --c-bg-pure: #FFFFFF;
  --c-surface: #F4F4F2;
  --c-line: #E7E5E1;
  --c-line-soft: #EFEDEA;
  --c-night: #0E0E10;

  --c-glass-header: rgba(250, 250, 248, 0.78);
  --c-on-ink: #FFFFFF;
  --c-overlay-strong: rgba(255,255,255,0.55);

  --c-accent: #E94591;
  --c-accent-deep: #C2306F;
  --c-accent-tint: rgba(233, 69, 145, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }

html, body { overflow-x: hidden; max-width: 100%; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  padding: 0;
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, "Helvetica Neue", system-ui, sans-serif;
  color: var(--c-text);
  background: var(--c-bg);
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

::selection { background: var(--c-ink); color: var(--c-bg); }

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 0 32px;
}

.mono { font-family: 'Geist Mono', ui-monospace, "JetBrains Mono", monospace; font-feature-settings: "ss02"; }

/* ============================================
   SHIMMER (skeleton loaders for content stage)
   ============================================ */
@keyframes shimmer {
  0%   { background-position: 0% 0; }
  100% { background-position: -200% 0; }
}
.ph {
  background: linear-gradient(90deg, var(--c-surface) 0%, var(--c-line) 50%, var(--c-surface) 100%);
  background-size: 200% 100%;
  animation: shimmer 2.4s linear infinite;
  border-radius: 4px;
}
.ph--light {
  background: linear-gradient(90deg, var(--c-ink-soft) 0%, var(--c-ink) 50%, var(--c-ink-soft) 100%);
  background-size: 200% 100%;
  animation: shimmer 2.4s linear infinite;
}

/* ============================================
   TOPSTRIP — thin info ribbon
   ============================================ */
.topstrip {
  background: var(--c-night);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--c-line);
}
.topstrip a { color: #fff; opacity: 0.85; }
.topstrip a:hover { opacity: 1; }
.topstrip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 34px;
}
.topstrip__group { display: flex; gap: 24px; align-items: center; }
.topstrip__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #58D68D;
  box-shadow: 0 0 0 0 rgba(88,214,141,0.6);
  animation: pulse 2.4s var(--ease) infinite;
  display: inline-block; margin-right: 8px;
  vertical-align: middle;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(88,214,141,0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(88,214,141,0); }
}
.topstrip a { transition: color var(--t-fast); }

/* ============================================
   HEADER — sticky, glass-edge
   ============================================ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--c-glass-header);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--c-line);
}
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  height: 76px;
}

.logo {
  display: inline-flex; align-items: center; gap: 12px;
}
.logo__mark {
  width: 56px; height: 56px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(233, 69, 145, 0.30));
  transition: transform var(--t-med), filter var(--t-med);
}
.logo__mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.logo:hover .logo__mark {
  transform: scale(1.05) rotate(-3deg);
  filter: drop-shadow(0 6px 14px rgba(233, 69, 145, 0.55));
}
.logo__type {
  display: flex; flex-direction: column; line-height: 1;
}
.logo__type-main {
  font-weight: 700; font-size: 20px; letter-spacing: -0.02em;
  color: var(--c-ink);
}
.logo__type-sub {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-text-faint); margin-top: 5px;
}

/* search — pill, no fill */
.search {
  justify-self: center; width: 100%; max-width: 480px;
  position: relative;
}
.search__input {
  width: 100%; height: 44px;
  background: var(--c-bg-pure);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 0 16px 0 44px;
  font-family: inherit; font-size: 14px;
  color: var(--c-text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.search__input::placeholder { color: var(--c-text-faint); }
.search__input:focus {
  outline: none;
  border-color: var(--c-ink);
  box-shadow: 0 0 0 4px rgba(14,14,16,0.06);
}
.search__icon {
  position: absolute; left: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--c-text-mute);
  pointer-events: none;
}

.header__actions { display: flex; align-items: center; gap: 4px; }
.iconbtn {
  position: relative;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 999px;
  color: var(--c-ink);
  transition: background var(--t-fast), transform var(--t-fast);
}
.iconbtn:hover { background: var(--c-surface); }
.iconbtn:active { transform: scale(0.95); }

.theme-toggle { background: transparent; border: none; cursor: pointer; }
.theme-toggle__sun, .theme-toggle__moon { transition: transform var(--t-med); }
.theme-toggle:hover .theme-toggle__sun,
.theme-toggle:hover .theme-toggle__moon { transform: rotate(20deg); }
:root[data-theme="dark"] .theme-toggle__moon { display: none; }
:root[data-theme="light"] .theme-toggle__sun { display: none; }
.iconbtn__count {
  position: absolute; top: 4px; right: 4px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  background: var(--c-accent);
  color: #fff;
  font-family: 'Geist Mono', monospace;
  font-size: 10px; font-weight: 500;
  border-radius: 999px;
  display: grid; place-items: center;
  border: 2px solid var(--c-bg);
}

.burger { display: none; width: 44px; height: 44px; border: none; background: transparent; }
.burger__lines { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.burger__lines span {
  width: 18px; height: 1.5px; background: var(--c-ink);
  transition: transform var(--t-fast);
}

/* ============================================
   PILL NAV — under header
   ============================================ */
.nav {
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-line);
}
.nav__inner {
  display: flex; align-items: center;
  gap: 4px; height: 56px;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav__inner::-webkit-scrollbar { display: none; }
.nav__link {
  position: relative;
  padding: 8px 18px;
  font-size: 13.5px; font-weight: 500;
  color: var(--c-text-mute);
  border-radius: 999px;
  white-space: nowrap;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__link:hover { color: var(--c-ink); background: var(--c-surface); }
.nav__link.is-active {
  background: var(--c-ink); color: var(--c-bg);
}
.nav__link--cta {
  background: transparent; color: var(--c-ink);
  border: 1px solid var(--c-line);
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
}
.nav__link--cta:hover { background: var(--c-ink); color: var(--c-on-ink); border-color: var(--c-ink); }

/* ============================================
   BUTTONS — tactile, no glow
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  border: none;
  font-family: inherit; font-size: 14.5px; font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(0.985); }
.btn--ink { background: var(--c-ink); color: var(--c-bg); }
.btn--ink:hover { background: var(--c-ink-soft); }
.btn--ghost {
  background: transparent; color: var(--c-ink);
  border: 1px solid var(--c-line);
}
.btn--ghost:hover { border-color: var(--c-ink); background: var(--c-bg-pure); }
.btn--accent { background: var(--c-accent); color: #fff; }
.btn--accent:hover { background: var(--c-accent-deep); }
.btn--sm { height: 38px; padding: 0 16px; font-size: 13px; }

.btn__arrow {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  transition: transform var(--t-fast);
}
.btn--ink .btn__arrow { background: rgba(14,14,16,0.10); }
:root[data-theme="light"] .btn--ink .btn__arrow { background: rgba(255,255,255,0.18); }
.btn--ghost .btn__arrow { background: var(--c-surface); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ============================================
   HERO — full-bleed video background, dimmed
   ============================================ */
.hero {
  position: relative;
  min-height: 86vh;
  padding: 96px 0 80px;
  overflow: hidden;
  background: var(--c-bg);
  isolation: isolate;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(140% 100% at 0% 50%, rgba(14,14,16,0.86) 0%, rgba(14,14,16,0.55) 50%, rgba(14,14,16,0.25) 100%),
    linear-gradient(180deg, rgba(14,14,16,0.30) 0%, rgba(14,14,16,0.55) 100%);
}
.hero__overlay::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top left, transparent 60%, rgba(14,14,16,0.4) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  min-height: 64vh;
  align-items: center;
}
.hero__collage {
  position: relative;
  height: 420px;
}
.hero__collage-card {
  position: absolute;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.hero__collage-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero__collage-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hero__collage-card--1 {
  width: 200px; height: 200px;
  top: 0; left: 30px;
  transform: rotate(-4deg);
  z-index: 3;
}
.hero__collage-card--2 {
  width: 220px; height: 220px;
  top: 20px; right: 0;
  transform: rotate(3deg);
  z-index: 2;
}
.hero__collage-card--3 {
  width: 200px; height: 200px;
  bottom: 0; left: 80px;
  transform: rotate(2deg);
  z-index: 1;
}
.hero__collage-card:hover {
  transform: rotate(0deg) scale(1.04) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
  z-index: 10;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-text-mute);
  font-weight: 500;
  padding: 8px 14px;
  background: var(--c-bg-pure);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  margin-bottom: 28px;
  width: max-content;
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 12px var(--c-accent);
}
.hero__title {
  font-size: clamp(40px, 6.8vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 0 0 28px;
  color: var(--c-ink);
}
.hero__title .ph {
  height: 1.1em; width: 88%;
  display: block;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--c-surface) 0%, var(--c-line) 50%, var(--c-surface) 100%);
  background-size: 200% 100%;
  animation: shimmer 2.4s linear infinite;
}
.hero__title .ph + .ph { width: 64%; margin-top: 14px; }
.hero__lede {
  font-size: 17px; line-height: 1.55;
  color: var(--c-text-mute);
  max-width: 52ch;
  margin: 0 0 40px;
}
.hero__lede .ph {
  height: 0.95em; display: block; border-radius: 4px;
  background: linear-gradient(90deg, var(--c-surface) 0%, var(--c-line) 50%, var(--c-surface) 100%);
  background-size: 200% 100%;
  animation: shimmer 2.4s linear infinite;
}
.hero__lede .ph:nth-child(1) { width: 100%; }
.hero__lede .ph:nth-child(2) { width: 88%; margin-top: 10px; }
.hero__lede .ph:nth-child(3) { width: 72%; margin-top: 10px; }

.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__meta {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, max-content));
  gap: 36px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--c-line);
}
.hero__metric { display: flex; flex-direction: column; gap: 6px; }
.hero__metric-num {
  font-family: 'Geist Mono', monospace;
  font-size: 32px; font-weight: 500; letter-spacing: -0.02em;
  color: var(--c-ink);
}
.hero__metric-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-text-faint);
}

/* hero asset — tall video frame */
.hero__asset {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-ink);
  box-shadow: var(--sh-3), 0 24px 60px -20px rgba(233, 69, 145, 0.30);
  animation: float 8s var(--ease) infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.hero__asset video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.hero__asset::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.45));
  pointer-events: none;
  z-index: 1;
}
.hero__asset-badge, .hero__asset-foot { z-index: 2; }
.hero__asset-badge {
  position: absolute; top: 24px; left: 24px;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  border-radius: 999px;
  color: #fff;
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
}
.hero__asset-foot {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  color: rgba(255,255,255,0.92);
  display: flex; justify-content: space-between; align-items: end;
  gap: 16px;
}
.hero__asset-line {
  height: 14px; background: rgba(255,255,255,0.16);
  border-radius: 4px;
}
.hero__asset-foot > div:first-child { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.hero__asset-foot .hero__asset-line:nth-child(1) { width: 60%; }
.hero__asset-foot .hero__asset-line:nth-child(2) { width: 90%; height: 22px; }
.hero__asset-cta {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--c-bg);
  color: var(--c-ink);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform var(--t-fast);
}
.hero__asset-cta:hover { transform: rotate(-45deg); }

/* ============================================
   KINETIC MARQUEE — endless brand strip
   ============================================ */
.marquee {
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  background: var(--c-bg-pure);
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track {
  display: flex; gap: 56px;
  width: max-content;
  animation: track 38s linear infinite;
  align-items: center;
}
@keyframes track {
  to { transform: translateX(-50%); }
}
.marquee__item {
  display: inline-flex; align-items: center; gap: 56px;
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--c-text-mute);
  white-space: nowrap;
}
.marquee__star {
  width: 18px; height: 18px;
  display: inline-block;
  color: var(--c-accent);
}

/* ============================================
   SECTION FRAME
   ============================================ */
.section { padding: 120px 0; }
.section--bare { padding: 80px 0; }
.section__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.section__kicker {
  font-family: inherit;
  font-size: 17px; font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-accent);
  text-transform: none;
  display: inline-flex; align-items: center; gap: 12px;
}
.section__kicker::before {
  content: ""; width: 26px; height: 2px; background: var(--c-accent);
  border-radius: 2px;
  display: inline-block;
}
.section__title {
  font-size: clamp(28px, 3.6vw, 52px);
  letter-spacing: -0.032em;
  line-height: 1;
  font-weight: 600;
  margin: 16px 0 0;
  color: var(--c-ink);
  max-width: 18ch;
}
.section__link {
  align-self: end;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 500;
  color: var(--c-text-mute);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.section__link:hover { color: var(--c-ink); border-color: var(--c-ink); background: var(--c-bg-pure); }

/* ============================================
   BENTO — categories (asymmetric, image-driven)
   ============================================ */
.bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.bento__tile {
  position: relative;
  border-radius: var(--r-lg);
  background: var(--c-night);
  border: 1px solid var(--c-line);
  overflow: hidden;
  padding: 24px;
  display: block;
  text-decoration: none;
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
  isolation: isolate;
  aspect-ratio: 1;
}
.bento__tile:hover {
  transform: translateY(-3px);
  border-color: var(--c-ink);
  box-shadow: var(--sh-2);
}
.bento__tile--full { grid-column: span 3; aspect-ratio: unset; min-height: 200px; }

/* product image — full bleed */
.bento__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform var(--t-slow);
}
.bento__tile:hover .bento__img { transform: scale(1.04); }

/* gradient overlay: cohesive across all tiles — image always visible */
.bento__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.55) 65%, rgba(0,0,0,0.88) 100%);
}

/* body always on top of overlay */
.bento__body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 24px;
  gap: 6px;
  color: #fff;
}
.bento__tag {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.bento__heading {
  font-size: 36px; line-height: 1;
  letter-spacing: -0.03em; font-weight: 700;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.bento__desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 32ch;
}

/* arrow */
.bento__arrow {
  position: absolute; top: 24px; right: 24px;
  z-index: 3;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  display: grid; place-items: center;
  color: #fff;
  transition: transform var(--t-fast), background var(--t-fast);
}
.bento__tile:hover .bento__arrow { transform: rotate(-45deg); background: #fff; color: var(--c-night); border-color: #fff; }

/* promo tile — colorful animated stage */
.bento__tile--promo {
  background: linear-gradient(125deg, #FF6FAA 0%, #E94591 35%, #C2306F 70%, #6B1A4A 100%);
  background-size: 220% 220%;
  border-color: transparent;
  animation: promo-shift 9s var(--ease) infinite;
  overflow: hidden;
}
@keyframes promo-shift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.bento__tile--promo:hover { animation-duration: 4s; }
.bento__tile--promo .bento__overlay { display: none; }
.bento__tile--promo .bento__body {
  color: #fff;
  position: relative;
  z-index: 2;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  height: 100%; gap: 10px;
}
.bento__tile--promo .bento__heading { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,0.25); }
.bento__tile--promo .bento__desc { color: rgba(255,255,255,0.92); max-width: 36ch; }
.bento__tile--promo .bento__arrow {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border-color: rgba(255,255,255,0.32);
}
.bento__tile--promo:hover .bento__arrow {
  background: #fff;
  color: var(--c-accent-deep);
}

/* decorative blobs (floating colored light) */
.bento__promo-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.bento__promo-blob--1 {
  width: 260px; height: 260px;
  top: -80px; left: -40px;
  background: rgba(255, 200, 230, 0.55);
  animation: promo-blob1 14s var(--ease) infinite;
}
.bento__promo-blob--2 {
  width: 200px; height: 200px;
  bottom: -50px; right: 12%;
  background: rgba(255, 90, 160, 0.65);
  animation: promo-blob2 11s var(--ease) infinite;
}
.bento__promo-blob--3 {
  width: 160px; height: 160px;
  top: 30%; right: -40px;
  background: rgba(120, 30, 90, 0.55);
  animation: promo-blob3 16s var(--ease) infinite;
}
@keyframes promo-blob1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(60px, 40px) scale(1.15); }
}
@keyframes promo-blob2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-40px, -60px) scale(1.1); }
}
@keyframes promo-blob3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-30px, 30px) scale(0.85); }
}

/* huge faint Telegram logo as decoration */
.bento__promo-logo {
  position: absolute;
  right: -50px; bottom: -50px;
  width: 280px; height: 280px;
  color: rgba(255,255,255,0.08);
  z-index: 1;
  pointer-events: none;
  transition: transform var(--t-slow);
}
.bento__tile--promo:hover .bento__promo-logo {
  transform: rotate(-12deg) scale(1.05);
  color: rgba(255,255,255,0.14);
}

/* sparkle stars */
.bento__promo-spark {
  position: absolute;
  color: rgba(255,255,255,0.9);
  z-index: 2;
  pointer-events: none;
  animation: spark-twinkle 3s var(--ease) infinite;
}
.bento__promo-spark--1 {
  top: 22%; left: 38%;
  width: 18px; height: 18px;
  animation-delay: 0s;
}
.bento__promo-spark--2 {
  top: 65%; right: 26%;
  width: 12px; height: 12px;
  animation-delay: 0.8s;
}
.bento__promo-spark--3 {
  top: 38%; right: 38%;
  width: 8px; height: 8px;
  animation-delay: 1.6s;
}
@keyframes spark-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.6) rotate(0deg); }
  40%      { opacity: 1; transform: scale(1) rotate(45deg); }
  60%      { opacity: 1; transform: scale(1) rotate(45deg); }
}

/* live tag with pulsing dot */
.bento__tag--live {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px 5px 8px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: #fff !important;
  font-weight: 500;
  width: max-content;
}
.bento__tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #58F0A0;
  box-shadow: 0 0 0 3px rgba(88, 240, 160, 0.25), 0 0 8px rgba(88, 240, 160, 0.7);
  animation: live-pulse 2s var(--ease) infinite;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(88, 240, 160, 0.25), 0 0 6px rgba(88, 240, 160, 0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(88, 240, 160, 0.10), 0 0 14px rgba(88, 240, 160, 0.8); }
}

/* mini CTA pill inside promo */
.bento__promo-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: #fff;
  color: var(--c-accent-deep);
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
  width: max-content;
  margin-top: 4px;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.3);
  transition: transform var(--t-fast), box-shadow var(--t-med);
}
.bento__tile--promo:hover .bento__promo-cta {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.4);
}

/* ============================================
   PRODUCT GALLERY — no card box, gallery style
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px 18px;
}
.product {
  position: relative;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: transform var(--t-med);
}
.product:hover { transform: translateY(-2px); }
.product__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--c-bg-pure);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-line);
  display: grid; place-items: center;
  isolation: isolate;
}
.product__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform var(--t-med);
}
.product:hover .product__img { transform: scale(1.04); }
.product__media-art {
  width: 60%; height: 60%;
  background: linear-gradient(135deg, var(--c-line-soft), var(--c-surface));
  border-radius: 50%;
  opacity: 0.7;
}
.product__badge {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 12px;
  background: var(--c-ink);
  color: var(--c-bg);
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 999px;
}
.product__badge--sale { background: var(--c-accent); }
.product__fav {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--c-bg-pure);
  border: 1px solid var(--c-line);
  display: grid; place-items: center;
  color: var(--c-text);
  transition: transform var(--t-fast), color var(--t-fast), background var(--t-fast);
  opacity: 0;
}
.product:hover .product__fav { opacity: 1; transform: translateY(0); }
.product__fav { transform: translateY(-4px); }
.product__fav:hover { color: var(--c-accent); }

.product__cta-form {
  margin: 0;
  flex-shrink: 0;
}

.product__info {
  display: flex; flex-direction: column; gap: 2px;
  padding: 0 4px;
}
.product__cat {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-text-faint);
}
.product__title {
  font-size: 17.5px; line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--c-ink); font-weight: 600;
  text-decoration: none;
  transition: color var(--t-fast);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.3em;
  margin: 0;
}
.product__title:hover { color: var(--c-accent); }

.product__price-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: 2px;
  gap: 10px;
}
.product__price-block {
  display: flex; flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.product__stock {
  display: inline-flex; align-items: center; gap: 6px;
}
.product__stock-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2BC57D;
  box-shadow: 0 0 0 3px rgba(43, 197, 125, 0.18), 0 0 8px rgba(43, 197, 125, 0.55);
  animation: stock-pulse 2.4s var(--ease) infinite;
  flex-shrink: 0;
}
@keyframes stock-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(43, 197, 125, 0.18), 0 0 6px rgba(43, 197, 125, 0.4); }
  50%      { box-shadow: 0 0 0 5px rgba(43, 197, 125, 0.10), 0 0 12px rgba(43, 197, 125, 0.7); }
}
.product__stock-text {
  font-family: 'Geist', sans-serif;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2BC57D;
  font-weight: 800;
  line-height: 1;
}
.product__price-line {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  line-height: 1;
}
.product__price {
  font-family: inherit;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--c-ink);
  line-height: 1;
  white-space: nowrap;
  font-feature-settings: "tnum" 1, "ss01" 1;
}
.product__price-cur {
  font-family: inherit;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--c-ink);
}
.product__price-old {
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  color: var(--c-text-faint);
  text-decoration: line-through;
  line-height: 1;
}

.product__actions {
  display: inline-flex; gap: 4px;
  flex-shrink: 0;
}
.product__detailsbtn,
.product__addbtn {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border: 1px solid var(--c-line);
  background: var(--c-bg);
  color: var(--c-ink);
  border-radius: 999px;
  display: grid; place-items: center;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.product__detailsbtn:hover {
  background: var(--c-bg-pure);
  color: var(--c-accent);
  border-color: var(--c-accent);
}
.product__detailsbtn:active { transform: scale(0.92); }
.product__addbtn:hover {
  background: var(--c-ink);
  color: var(--c-on-ink);
  border-color: var(--c-ink);
}
.product__addbtn:active { transform: scale(0.92); }

/* ============================================
   FEATURE BAND — anti 3-column slop: 2 col zig-zag
   ============================================ */
.zig {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  align-items: center;
}
.zig + .zig { margin-top: 120px; }
.zig--flip { direction: rtl; }
.zig--flip > * { direction: ltr; }
.zig__visual {
  aspect-ratio: 6 / 5;
  border-radius: var(--r-lg);
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  position: relative;
  overflow: hidden;
}
.zig__visual::before {
  content: "";
  position: absolute; inset: 24px;
  background: linear-gradient(135deg, var(--c-bg-pure), var(--c-surface));
  border-radius: var(--r-md);
  box-shadow: var(--sh-2);
}
.zig__visual--accent {
  background:
    linear-gradient(135deg, rgba(14,14,16,0.35) 0%, rgba(194,48,111,0.35) 100%),
    var(--c-night) url('/media/categories/krossovki.jpg') center/cover no-repeat;
  border-color: transparent;
}
.zig__visual--accent::before {
  inset: 0;
  border-radius: 0;
  box-shadow: none;
  background:
    radial-gradient(60% 50% at 20% 80%, rgba(0,0,0,0.45), transparent 60%),
    radial-gradient(50% 40% at 80% 20%, rgba(233, 69, 145, 0.20), transparent 60%);
}

/* hero variant — slideshow for "Доставка без комиссии" block */
.zig__visual--hero {
  background: var(--c-night);
  position: relative;
  overflow: hidden;
}
.zig__visual--hero::before { display: none; }

.zig__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: zig-slide-cycle 20s ease-in-out infinite;
  z-index: 0;
  transform: scale(1.04);
}
.zig__slide:nth-child(1) { animation-delay: 0s; }
.zig__slide:nth-child(2) { animation-delay: 5s; }
.zig__slide:nth-child(3) { animation-delay: 10s; }
.zig__slide:nth-child(4) { animation-delay: 15s; }
@keyframes zig-slide-cycle {
  0%,  2%  { opacity: 0; transform: scale(1.04); }
  6%       { opacity: 1; transform: scale(1.0); }
  24%      { opacity: 1; transform: scale(1.02); }
  30%      { opacity: 0; transform: scale(1.04); }
  100%     { opacity: 0; transform: scale(1.04); }
}

.zig__hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(80% 80% at 30% 30%, rgba(233, 69, 145, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(14,14,16,0) 0%, rgba(14,14,16,0.45) 70%, rgba(14,14,16,0.85) 100%);
}

.zig__visual--hero::after {
  content: 'Свежие дропы каждую неделю';
  position: absolute;
  left: 28px; bottom: 28px;
  z-index: 2;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
  padding: 8px 14px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
}

@media (prefers-reduced-motion: reduce) {
  .zig__slide { animation: none; opacity: 1; transform: none; }
  .zig__slide:not(:first-child) { display: none; }
}
.zig__num {
  font-family: 'Geist Mono', monospace;
  font-size: 12px; color: var(--c-text-mute);
  letter-spacing: 0.06em;
}
.zig__title {
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 600;
  margin: 16px 0 20px;
  color: var(--c-ink);
}
.zig__title .ph { display: block; height: 32px; border-radius: 6px; }
.zig__title .ph + .ph { margin-top: 10px; width: 60%; }
.zig__lede {
  color: var(--c-text-mute); font-size: 16px; line-height: 1.55;
  max-width: 48ch;
  margin: 0;
}
.zig__lede .ph { display: block; height: 12px; }
.zig__lede .ph + .ph { margin-top: 8px; }
.zig__lede .ph:nth-child(3) { width: 70%; }
.zig__list { margin: 28px 0 36px; padding: 0; list-style: none; }
.zig__list li {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--c-line);
  font-size: 14.5px;
  color: var(--c-text);
}
.zig__list li:last-child { border-bottom: 1px solid var(--c-line); }
.zig__list-num {
  font-family: 'Geist Mono', monospace;
  color: var(--c-text-faint); font-size: 12px;
}
.zig__list-text { flex: 1; color: var(--c-ink); }
.zig__list-text .ph { display: inline-block; height: 12px; width: 65%; vertical-align: middle; }

/* ============================================
   CATALOG — anti-card filters (divide-y)
   ============================================ */
.cat-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  padding: 48px 0 120px;
}
.crumbs {
  display: flex; gap: 8px; align-items: center;
  font-family: 'Geist Mono', monospace;
  font-size: 12px; color: var(--c-text-mute);
  padding: 28px 0 0;
  letter-spacing: 0.04em;
}
.crumbs a { color: var(--c-text-mute); transition: color var(--t-fast); }
.crumbs a:hover { color: var(--c-ink); }
.crumbs__sep { color: var(--c-text-faint); }
.crumbs__current { color: var(--c-ink); }

/* filters — NO card box */
.filters {
  position: sticky; top: 156px;
  align-self: start;
  padding: 8px 0;
}
.filters__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.filters__title {
  font-size: 16px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--c-ink); margin: 0;
}
.filters__clear {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; color: var(--c-text-mute);
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: color var(--t-fast);
}
.filters__clear:hover { color: var(--c-accent); }

.fgroup {
  padding: 22px 0;
  border-top: 1px solid var(--c-line);
}
.fgroup__title {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--c-text-mute);
  margin: 0 0 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.fgroup__count {
  background: var(--c-surface);
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 10px;
}
.fgroup__list {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 2px;
}
.fgroup__list li {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13.5px; color: var(--c-text);
}
.fgroup__list li .ph { width: 60%; height: 11px; display: inline-block; }
.fgroup__list li .mono { color: var(--c-text-faint); font-size: 11.5px; }

.fgroup__list--cats li { padding: 0; }
.fgroup__list--cats input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}
.fgroup__list--cats label {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  color: var(--c-text);
  font-size: 13.5px;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}
.fgroup__list--cats label:hover { background: var(--c-surface); color: var(--c-ink); }
.fgroup__list--cats input[type="radio"]:checked + label {
  background: var(--c-ink);
  color: var(--c-on-ink);
}
.fgroup__list--cats input[type="radio"]:checked + label .mono { color: rgba(255,255,255,0.55); }
:root[data-theme="light"] .fgroup__list--cats input[type="radio"]:checked + label .mono { color: rgba(255,255,255,0.65); }
.fgroup__list--cats input[type="radio"]:focus-visible + label {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}

.range {
  display: flex; gap: 8px;
}
.range input {
  flex: 1; min-width: 0;
  height: 38px;
  background: var(--c-bg-pure);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xs);
  padding: 0 12px;
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  color: var(--c-text);
}
.range input:focus { outline: none; border-color: var(--c-ink); }

/* catalog right side */
.cat-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 28px;
  gap: 16px; flex-wrap: wrap;
}
.cat-head__left { display: flex; flex-direction: column; gap: 12px; }
.cat-title {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.032em;
  line-height: 1;
  font-weight: 600;
  margin: 0;
  color: var(--c-ink);
}
.cat-sub {
  font-family: 'Geist Mono', monospace;
  font-size: 12px; color: var(--c-text-mute);
  letter-spacing: 0.06em;
}
.cat-sub__num { color: var(--c-ink); }
.cat-sort {
  display: flex;
  gap: 4px;
  align-items: center;
}
.cat-sort__btn {
  height: 36px;
  padding: 0 14px;
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-family: inherit; font-size: 12.5px;
  color: var(--c-text-mute);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
}
.cat-sort__btn:hover { background: var(--c-surface); color: var(--c-ink); border-color: var(--c-line); }
.cat-sort__btn.is-active { background: var(--c-ink); color: var(--c-on-ink); border-color: var(--c-ink); }

.pager {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--c-line);
}
.pager__info { font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--c-text-mute); letter-spacing: 0.06em; }
.pager__nav { display: flex; gap: 6px; }
.pager__btn {
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  background: transparent;
  font-family: 'Geist Mono', monospace; font-size: 13px;
  color: var(--c-text); cursor: pointer;
  display: grid; place-items: center;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.pager__btn:hover { border-color: var(--c-ink); }
.pager__btn.is-on { background: var(--c-ink); color: var(--c-bg); border-color: var(--c-ink); }
.pager__btn.is-disabled { opacity: 0.4; cursor: not-allowed; }

/* ============================================
   GENERIC PAGE (about / delivery / contacts)
   ============================================ */
.docpage { padding: 64px 0 120px; }
.docpage__head {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 64px; align-items: end;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--c-line);
}
.docpage__title {
  font-size: clamp(40px, 5vw, 80px);
  letter-spacing: -0.035em; line-height: 0.95;
  font-weight: 600; margin: 16px 0 0; color: var(--c-ink);
}
.docpage__title .ph { display: block; height: 0.9em; border-radius: 8px; }
.docpage__title .ph + .ph { width: 60%; margin-top: 14px; }
.docpage__lede .ph { display: block; height: 12px; }
.docpage__lede .ph + .ph { margin-top: 8px; }
.docpage__lede .ph:nth-child(3) { width: 70%; }
.docpage__body {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-top: 56px;
}
.docpage__body--single { grid-template-columns: 1fr; }
.docpage__toc {
  position: sticky; top: 156px;
  align-self: start;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--c-text-mute);
  letter-spacing: 0.06em;
}
.docpage__toc-item {
  padding: 10px 0;
  border-top: 1px solid var(--c-line);
  display: flex; gap: 12px;
  cursor: pointer;
  transition: color var(--t-fast);
}
.docpage__toc-item:hover { color: var(--c-ink); }
.docpage__toc-item:first-child { border-top: none; }
.docpage__toc-num { color: var(--c-text-faint); }
.docpage__content { display: flex; flex-direction: column; gap: 48px; }
.docpage__block { display: flex; flex-direction: column; gap: 20px; }
.docpage__block-title {
  font-size: 24px; letter-spacing: -0.025em; font-weight: 600;
  color: var(--c-ink); margin: 0;
}
.docpage__block-text { display: flex; flex-direction: column; gap: 14px; }
.docpage__block-text p {
  font-size: 16px; line-height: 1.6;
  color: var(--c-text);
  margin: 0;
  max-width: 60ch;
}
.docpage__block-text .ph { display: block; height: 12px; }
.docpage__block-text .ph + .ph { margin-top: 10px; }
.docpage__block-text .ph:nth-child(2n) { width: 90%; }
.docpage__block-text .ph:nth-child(4n) { width: 70%; }

/* ============================================
   SHOWROOM PHOTO GRID — about page
   ============================================ */
.showroom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 40px 0 56px;
}
.showroom-grid__item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}
.showroom-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.showroom-grid__item:hover img {
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .showroom-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ============================================
   TG CHANNELS — contacts page cards
   ============================================ */
.tg-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 8px;
}
.tg-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--c-bg-pure);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--c-text);
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}
.tg-channel:hover {
  transform: translateY(-3px);
  border-color: var(--c-accent);
  box-shadow: 0 18px 40px -18px rgba(233, 69, 145, 0.40);
}
.tg-channel__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.tg-channel--bot .tg-channel__icon {
  background: var(--c-ink);
  color: var(--c-on-ink);
}
.tg-channel__body { flex: 1; min-width: 0; }
.tg-channel__kicker {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  margin-bottom: 4px;
}
.tg-channel__title {
  font-size: 17px; font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  margin-bottom: 3px;
}
.tg-channel__sub {
  font-size: 12.5px;
  color: var(--c-text-mute);
  line-height: 1.35;
}
.tg-channel__arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--c-surface);
  color: var(--c-ink);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast);
}
.tg-channel:hover .tg-channel__arrow {
  transform: rotate(-45deg);
  background: var(--c-accent);
  color: #fff;
}

@media (max-width: 900px) {
  .tg-channels { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER — split, with marquee tape
   ============================================ */
.footer { background: var(--c-night); color: rgba(255,255,255,0.78); margin-top: 80px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer__tape {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  padding: 26px 0;
}
.footer__tape-track {
  display: flex; gap: 64px;
  width: max-content;
  animation: track 30s linear infinite;
  align-items: center;
}
.footer__tape-item {
  display: inline-flex; align-items: center; gap: 64px;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.03em; font-weight: 600;
  white-space: nowrap;
  color: #fff;
}
.footer__tape-item--accent { color: #fff; }
.footer__tape-dot { color: var(--c-accent); }

.footer__main {
  padding: 80px 0 32px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__brand-line {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__brand-mark {
  width: 120px; height: 120px;
  margin-bottom: 24px;
  filter: drop-shadow(0 10px 24px rgba(233, 69, 145, 0.45));
}
.footer__brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.footer__brand-name {
  font-size: 36px; letter-spacing: -0.03em; font-weight: 600;
  margin: 0 0 16px;
  color: #fff;
}
.footer__tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  margin: 0 0 16px;
  max-width: 320px;
}
.footer__tagline b { color: var(--c-accent); font-weight: 600; }
.footer__hours {
  display: flex; flex-direction: column;
  gap: 2px;
  padding: 12px 0;
  margin-bottom: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__hours-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.footer__hours-val {
  font-size: 18px; font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.footer__addr {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  margin: 0;
  max-width: 280px;
}
.footer__brand-place {
  height: 12px; background: rgba(255,255,255,0.08);
  width: 70%; border-radius: 4px;
  margin-bottom: 8px;
}
.footer__brand-place:last-of-type { width: 55%; }

.footer__col h4 {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin: 0 0 20px;
}
.footer__link {
  display: block;
  font-size: 14.5px;
  color: rgba(255,255,255,0.78);
  padding: 6px 0;
  transition: color var(--t-fast), transform var(--t-fast);
}
.footer__link:hover { color: #fff; transform: translateX(3px); }

.footer__bottom {
  padding: 28px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-family: 'Geist Mono', monospace;
  font-size: 11.5px; color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}
.socials { display: flex; gap: 8px; }
.social {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.social:hover { background: var(--c-accent); color: #fff; transform: translateY(-2px); }

/* ============================================
   RESPONSIVE — mobile collapse (taste-skill mandatory)
   ============================================ */
@media (max-width: 1200px) {
  .gallery { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1100px) {
  .bento { grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 240px auto; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__collage { display: none; }
}
@media (max-width: 900px) {
  /* harder mobile reset — guarantee single column for bento */
  .bento {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    gap: 12px;
  }
  .bento__tile,
  .bento__tile--full {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100%;
  }
  .bento__tile--full { aspect-ratio: unset; min-height: 180px; }
  .bento__tile--promo { padding: 24px; }
  .bento__tile--promo .bento__heading { font-size: 26px; }

  /* hero on mobile */
  .hero__title { font-size: clamp(34px, 9vw, 56px) !important; }
}

@media (max-width: 860px) {
  .topstrip { display: none; }
  .header__inner { grid-template-columns: auto auto; height: 64px; gap: 12px; }
  .search { display: none; }
  .header__actions { justify-self: end; }
  .burger { display: grid; place-items: center; }

  /* nav: only show CTA by default; rest in burger drawer */
  .nav { position: relative; }
  .nav__inner {
    gap: 2px;
    overflow: visible;
  }
  .nav__link { padding: 8px 14px; font-size: 13px; }
  .nav__inner > .nav__link:not(.nav__link--cta) { display: none; }
  .nav__inner.is-open {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-line);
    height: auto;
    padding: 10px;
    gap: 6px;
    z-index: 55;
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  }
  .nav__inner.is-open > .nav__link {
    display: flex !important;
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 14px;
  }
  .nav__inner.is-open > .nav__link--cta {
    background: var(--c-ink);
    color: var(--c-on-ink);
  }

  .container { padding: 0 20px; }

  .section { padding: 72px 0; }
  .section__head { grid-template-columns: 1fr; gap: 20px; }
  .section__title { max-width: none; }
  .section__link { justify-self: start; }

  .hero { min-height: auto; padding: 48px 0 32px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
  .hero__asset { aspect-ratio: 4/4; max-height: 60vh; }
  .hero__meta { grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; padding-top: 24px; }

  .bento { grid-template-columns: 1fr; grid-template-rows: auto; gap: 12px; }

  .gallery { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }

  .zig { grid-template-columns: 1fr; gap: 32px; }
  .zig + .zig { margin-top: 64px; }
  .zig--flip { direction: ltr; }

  .cat-layout { grid-template-columns: 1fr; gap: 24px; padding: 24px 0 64px; }
  .filters { position: static; }

  .docpage__head { grid-template-columns: 1fr; gap: 32px; }
  .docpage__body { grid-template-columns: 1fr; gap: 32px; }
  .docpage__toc { position: static; }

  .footer__main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 56px 0 24px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; gap: 24px; }
  .product { max-width: none; }
  .footer__main { grid-template-columns: 1fr; }
  .hero__meta { grid-template-columns: 1fr; }
  .pager { flex-direction: column; gap: 20px; }
}

/* ============================================
   PDP — product detail page
   ============================================ */
.pdp {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 56px;
  padding: 32px 0 64px;
  align-items: start;
}
.pdp__gallery { position: sticky; top: 156px; }
.pdp__main {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--c-bg-pure);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.pdp__main-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.pdp__badge {
  position: absolute; top: 18px; left: 18px;
}
.pdp__thumbs {
  display: flex; gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.pdp__thumb {
  width: 62px; height: 62px;
  background: var(--c-bg-pure);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  transition: border-color var(--t-fast), transform var(--t-fast);
  position: relative;
}
.pdp__thumb:hover { border-color: var(--c-text-mute); transform: translateY(-1px); }
.pdp__thumb.is-active { border-color: var(--c-accent); }
.pdp__thumb img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pdp__info { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }
.pdp__cat {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-text-mute);
}
.pdp__title {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.032em;
  font-weight: 600;
  color: var(--c-ink);
  margin: 0;
}
.pdp__price-row {
  display: flex; align-items: baseline; gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.pdp__price {
  font-size: 32px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--c-ink);
}
.pdp__price-old {
  font-size: 18px; color: var(--c-text-faint);
  text-decoration: line-through;
}
.pdp__desc {
  font-size: 16px; line-height: 1.55;
  color: var(--c-text);
  margin: 0;
  max-width: 56ch;
}
.pdp__desc-full {
  font-size: 15px; line-height: 1.6;
  color: var(--c-text-mute);
  max-width: 56ch;
}
.pdp__actions {
  display: flex; gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.pdp__features {
  margin: 12px 0 0; padding: 0;
  list-style: none;
}
.pdp__features li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--c-line);
  font-size: 14.5px; color: var(--c-text);
}
.pdp__features li:last-child { border-bottom: 1px solid var(--c-line); }
.pdp__features li .mono { color: var(--c-text-faint); font-size: 12px; }

@media (max-width: 900px) {
  .pdp { grid-template-columns: 1fr; gap: 32px; padding: 16px 0 48px; }
  .pdp__gallery { position: static; }
}

/* ============================================
   TG CHANNEL BLOCK — phone mockup (real Telegram UI)
   ============================================ */
.tgblock__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 72px;
  align-items: center;
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(233, 69, 145, 0.08), transparent 60%),
    var(--c-bg-pure);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
}
.tgblock__phone {
  display: flex; justify-content: center;
}
.tgblock__copy {
  display: flex; flex-direction: column; gap: 18px;
  max-width: 480px;
}
.tgblock__title {
  font-size: clamp(28px, 3.8vw, 48px);
  letter-spacing: -0.032em;
  line-height: 1.05;
  font-weight: 600;
  margin: 8px 0 0;
  color: var(--c-ink);
}
.tgblock__lede {
  color: var(--c-text-mute);
  font-size: 16px; line-height: 1.55;
  margin: 0; max-width: 44ch;
}
.tgblock__cta {
  display: flex; align-items: center; gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.tgblock__handle {
  font-size: 13.5px;
  color: var(--c-text-mute);
  padding: 8px 12px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  letter-spacing: 0.04em;
}
/* ===== Mockup image — real screenshot ===== */
.tgblock__phone {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  isolation: isolate;
}
.tgblock__mockup {
  position: relative;
  z-index: 1;
  max-width: 360px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 80px rgba(0,0,0,0.55))
          drop-shadow(0 10px 30px rgba(233, 69, 145, 0.18));
  animation: tg-float 8s var(--ease) infinite;
}
@keyframes tg-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.tgblock__glow {
  position: absolute;
  inset: -40px;
  z-index: 0;
  background:
    radial-gradient(45% 45% at 30% 30%, rgba(233, 69, 145, 0.35), transparent 70%),
    radial-gradient(40% 40% at 80% 70%, rgba(107, 169, 232, 0.20), transparent 70%);
  pointer-events: none;
  filter: blur(20px);
}

/* ===== Real Telegram channel UI ===== */
.tg {
  background: #0E1621;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0;
}
.tg__topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 38px 10px 10px;
  background: #17212B;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.tg__topbar-left {
  display: flex; align-items: center; gap: 8px;
  flex: 1; min-width: 0;
}
.tg__topbar-right {
  display: flex; align-items: center; gap: 2px;
  flex-shrink: 0;
}
.tg__icon-btn {
  width: 32px; height: 32px;
  border: none; background: transparent;
  color: rgba(255,255,255,0.7);
  display: grid; place-items: center;
  border-radius: 50%;
  padding: 0;
}
.tg__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  flex-shrink: 0;
}
.tg__title {
  display: flex; flex-direction: column;
  min-width: 0;
}
.tg__name {
  font-size: 14px; font-weight: 600;
  color: #fff;
  letter-spacing: -0.005em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  line-height: 1.15;
}
.tg__sub {
  font-size: 11.5px;
  color: #6E8AA6;
  line-height: 1.15;
  margin-top: 1px;
}

.tg__chat {
  flex: 1;
  background: #0E1621;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.015) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,0.01) 0%, transparent 50%);
  padding: 10px 10px 12px;
  display: flex; flex-direction: column; gap: 8px;
  overflow: hidden;
}
.tg__date-divider {
  display: flex; justify-content: center;
  margin: 4px 0 6px;
}
.tg__date-divider span {
  display: inline-block;
  font-size: 10.5px;
  color: rgba(255,255,255,0.85);
  background: rgba(43, 65, 87, 0.6);
  backdrop-filter: blur(6px);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 500;
}

.tg__post {
  background: #182533;
  border-radius: 12px;
  overflow: hidden;
  margin-right: 28px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.2);
}
.tg__post--text {
  padding: 4px 0;
}
.tg__post-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #0e1621 center/cover no-repeat;
  border-radius: 12px 12px 0 0;
}
.tg__post-badge {
  position: absolute; top: 8px; left: 8px;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 4px 8px;
  border-radius: 999px;
}
.tg__post-badge--alt { background: rgba(233, 69, 145, 0.85); }
.tg__post-body {
  padding: 8px 12px 6px;
  font-size: 12.5px;
  line-height: 1.4;
  color: #fff;
}
.tg__post-body strong {
  display: block;
  font-weight: 600;
  margin-bottom: 3px;
}
.tg__post-body b {
  color: #FF99C5;
  font-weight: 600;
}
.tg__post-meta {
  display: flex; justify-content: flex-end; align-items: center;
  gap: 8px;
  padding: 2px 12px 8px;
  font-size: 10.5px;
  color: #6E8AA6;
}
.tg__post-views {
  display: inline-flex; align-items: center; gap: 4px;
}

.tg__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: #17212B;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.tg__bottom-mute {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500;
  color: #6BA9E8;
}
.tg__bottom-divider {
  width: 1px; height: 22px;
  background: rgba(255,255,255,0.08);
}
.tg__bottom-join {
  font-size: 13px; font-weight: 600;
  color: #6BA9E8;
  text-transform: none;
}

@media (max-width: 900px) {
  .tgblock__inner { grid-template-columns: 1fr; padding: 40px 24px; gap: 40px; justify-items: center; }
  .tgblock__copy { max-width: none; }
  .tgblock__mockup { max-width: 280px; }
}

/* ============================================
   CART PAGE
   ============================================ */
.cart-page { padding: 32px 0 96px; }
.cart-page__head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 40px; gap: 24px; flex-wrap: wrap;
}
.cart-page__title {
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.032em; line-height: 1;
  font-weight: 600; margin: 12px 0 0; color: var(--c-ink);
}
.cart-page__count {
  font-size: 12px; letter-spacing: 0.06em; color: var(--c-text-mute);
}

.cart-page__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.cart-page__items { display: flex; flex-direction: column; gap: 12px; }

.cart-row {
  display: grid;
  grid-template-columns: 100px 1fr auto auto auto;
  gap: 20px;
  align-items: center;
  padding: 16px;
  background: var(--c-bg-pure);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast);
}
.cart-row:hover { border-color: var(--c-text-mute); }
.cart-row__media {
  width: 100px; height: 100px;
  background: var(--c-bg-pure);
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  overflow: hidden;
  display: block;
}
.cart-row__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.cart-row__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cart-row__cat {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--c-text-faint);
}
.cart-row__title { color: var(--c-ink); font-weight: 500; font-size: 15px; }
.cart-row__price { display: flex; align-items: baseline; gap: 8px; font-size: 14px; color: var(--c-text-mute); }
.cart-row__price-old { color: var(--c-text-faint); font-size: 12px; }

.qty {
  display: inline-flex; align-items: center;
  background: var(--c-surface);
  border-radius: 999px;
  padding: 4px;
  margin: 0;
}
.qty__btn {
  width: 30px; height: 30px;
  border: none; background: transparent;
  color: var(--c-text); font-size: 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}
.qty__btn:hover { background: var(--c-bg-pure); color: var(--c-ink); }
.qty__val { padding: 0 12px; min-width: 28px; text-align: center; font-size: 14px; color: var(--c-ink); }

.cart-row__line {
  font-size: 17px; font-weight: 500; color: var(--c-ink);
  min-width: 80px; text-align: right;
}

.cart-row__del {
  width: 36px; height: 36px;
  border: 1px solid var(--c-line);
  background: transparent;
  color: var(--c-text-mute);
  border-radius: 999px;
  display: grid; place-items: center;
  cursor: pointer;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.cart-row__del:hover { color: var(--c-accent); border-color: var(--c-accent); }

.cart-page__clear { margin-top: 8px; display: flex; justify-content: flex-end; }

.cart-page__summary {
  background: var(--c-bg-pure);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 28px;
  position: sticky; top: 156px;
}
.cart-page__summary-title {
  font-size: 20px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--c-ink); margin: 0 0 20px;
}
.cart-page__summary-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--c-line);
  font-size: 14px; color: var(--c-text);
}
.cart-page__summary-line:first-of-type { border-top: none; padding-top: 0; }
.cart-page__summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid var(--c-line);
  margin-top: 4px;
}
.cart-page__summary-total > :first-child {
  font-size: 14px; color: var(--c-text-mute);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.cart-page__summary-total > :last-child {
  font-size: 28px; font-weight: 600; color: var(--c-ink);
  letter-spacing: -0.02em;
}
/* order form */
.order-form { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.order-form__field { display: flex; flex-direction: column; gap: 4px; }
.order-form__label {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-text-mute); font-family: 'Geist Mono', monospace;
}
.order-form__input {
  background: var(--c-surface);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 14px; color: var(--c-ink);
  font-family: 'Geist', sans-serif;
  outline: none;
  transition: border-color var(--t-fast);
}
.order-form__input::placeholder { color: var(--c-text-faint); }
.order-form__input:focus { border-color: var(--c-accent); }

/* order success */
.order-success {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 80px 0 120px;
  gap: 16px;
}
.order-success__icon { color: #2BC57D; }
.order-success__title { font-size: 32px; font-weight: 700; letter-spacing: -0.02em; }
.order-success__text { color: var(--c-text-mute); font-size: 15px; line-height: 1.6; }

@media (max-width: 900px) {
  .cart-page__grid { grid-template-columns: 1fr; gap: 32px; }
  .cart-page__summary { position: static; }
  .cart-row { grid-template-columns: 80px 1fr auto; grid-template-rows: auto auto; row-gap: 12px; }
  .cart-row__media { width: 80px; height: 80px; }
  .qty { grid-column: 2; grid-row: 2; justify-self: start; }
  .cart-row__line { grid-column: 3; grid-row: 1; }
  .cart-row__del { grid-column: 3; grid-row: 2; }
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
  grid-column: 1 / -1;
  padding: 64px 32px;
  text-align: center;
  background: var(--c-bg-pure);
  border: 1px dashed var(--c-line);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.empty-state p { color: var(--c-text-mute); margin: 0; font-size: 15px; }

/* ============================================
   REVIEWS — testimonial grid + TG channel CTA
   ============================================ */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.review {
  background: var(--c-bg-pure);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}
.review:hover {
  transform: translateY(-4px);
  border-color: var(--c-ink);
  box-shadow: var(--sh-2);
}
.review__stars {
  display: inline-flex; gap: 2px;
  color: #F5B70A;
}
.review__text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--c-text);
  margin: 0;
  flex: 1;
}
.review__author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--c-line);
}
.review__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-deep));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 15px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.review__name {
  font-size: 13.5px; font-weight: 600;
  color: var(--c-ink);
  line-height: 1.15;
}
.review__meta {
  font-size: 11px;
  color: var(--c-text-faint);
  letter-spacing: 0.04em;
  margin-top: 3px;
}

.reviews__cta {
  display: flex; align-items: center;
  gap: 18px;
  padding: 22px 28px;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-deep) 100%);
  color: #fff;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: transform var(--t-fast), box-shadow var(--t-med);
}
.reviews__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -15px rgba(233, 69, 145, 0.55);
}
.reviews__cta-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.reviews__cta-body { flex: 1; min-width: 0; }
.reviews__cta-title {
  font-size: 17px; font-weight: 600;
  letter-spacing: -0.01em;
}
.reviews__cta-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  margin-top: 3px;
}
.reviews__cta-arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform var(--t-fast);
}
.reviews__cta:hover .reviews__cta-arrow { transform: rotate(-45deg); background: rgba(255,255,255,0.28); }

@media (max-width: 1100px) {
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__cta { flex-wrap: wrap; padding: 18px 22px; }
}

/* ============================================
   TOAST + AJAX flash
   ============================================ */
.toast-wrap {
  position: fixed;
  left: 50%; bottom: 96px;
  transform: translateX(-50%);
  z-index: 80;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
  pointer-events: none;
}
.toast {
  background: var(--c-ink);
  color: var(--c-on-ink);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 500;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity .32s var(--ease), transform .32s var(--ease);
  max-width: 92vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.toast.is-on { opacity: 1; transform: translateY(0) scale(1); }

.product__addbtn.is-flash {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}

.iconbtn--pulse .iconbtn__count {
  animation: badge-pulse 0.6s var(--ease);
}
@keyframes badge-pulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

@media (max-width: 520px) {
  .toast-wrap { bottom: 80px; }
}

/* ============================================
   TG FAB — Telegram bot quick action
   ============================================ */
.tg-fab {
  position: fixed;
  right: 28px; bottom: 28px;
  z-index: 60;
  display: inline-flex; align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 22px 0 18px;
  background: var(--c-bg-pure);
  color: var(--c-text);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-family: inherit; font-size: 14px; font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  box-shadow:
    0 14px 40px -10px rgba(0,0,0,0.55),
    0 0 0 4px rgba(233, 69, 145, 0.0);
  transition: transform var(--t-fast), box-shadow var(--t-med), background var(--t-fast), border-color var(--t-fast);
  will-change: transform;
}
.tg-fab:hover {
  transform: translateY(-2px) scale(1.02);
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #fff;
  box-shadow:
    0 18px 50px -10px rgba(233, 69, 145, 0.55),
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 0 0 6px rgba(233, 69, 145, 0.14);
}
.tg-fab:active { transform: translateY(0) scale(0.99); }
.tg-fab__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-accent);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background var(--t-fast);
}
.tg-fab:hover .tg-fab__icon { background: rgba(255,255,255,0.18); }
.tg-fab__sub {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-faint);
  display: block; margin-top: 2px;
  transition: color var(--t-fast);
}
.tg-fab:hover .tg-fab__sub { color: rgba(255,255,255,0.65); }
.tg-fab__txt { display: flex; flex-direction: column; line-height: 1; }

@media (max-width: 520px) {
  .tg-fab { right: 16px; bottom: 16px; padding: 0 16px 0 14px; height: 52px; }
  .tg-fab__sub { display: none; }
}

/* ============================================
   Pill TG inline CTA (used in hero)
   ============================================ */
.btn--tg {
  background: var(--c-accent);
  color: #fff;
}
.btn--tg:hover { background: var(--c-accent-deep); }
.btn--tg .btn__arrow { background: rgba(255,255,255,0.18); }

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero__asset video { animation: none; }
}

/* ============================================
   SEARCH FIELD in filters
   ============================================ */
.search-field {
  display: flex;
  gap: 0;
  border: 1px solid var(--c-line);
  border-radius: var(--r-xs);
  overflow: hidden;
  background: var(--c-bg-pure);
}
.search-field input {
  flex: 1; min-width: 0;
  height: 38px;
  background: transparent;
  border: none;
  padding: 0 12px;
  font-family: inherit; font-size: 13px;
  color: var(--c-text);
}
.search-field input::placeholder { color: var(--c-text-faint); }
.search-field input:focus { outline: none; }
.search-field button {
  width: 38px; flex-shrink: 0;
  background: transparent;
  border: none; border-left: 1px solid var(--c-line);
  color: var(--c-text-mute);
  cursor: pointer;
  display: grid; place-items: center;
  transition: color var(--t-fast), background var(--t-fast);
}
.search-field button:hover { color: var(--c-ink); background: var(--c-surface); }

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 4px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--c-line);
}
.pagination__btn,
.pagination__page {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px;
  padding: 0 6px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-xs);
  font-family: 'Geist Mono', monospace; font-size: 13px;
  color: var(--c-text-mute);
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.pagination__btn:hover,
.pagination__page:hover { background: var(--c-surface); color: var(--c-ink); border-color: var(--c-line); }
.pagination__page.is-active { background: var(--c-ink); color: var(--c-on-ink); border-color: var(--c-ink); font-weight: 600; }
.pagination__btn.is-disabled { opacity: 0.3; pointer-events: none; }
.pagination__ellipsis { color: var(--c-text-faint); padding: 0 4px; font-size: 13px; }

/* ============================================
   SHARE BUTTON on PDP
   ============================================ */
.share-wrap {
  position: relative;
}
.share-wrap__trigger {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-bg-pure);
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  color: var(--c-text-mute);
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.share-wrap__trigger:hover { background: var(--c-surface); color: var(--c-ink); }
.share-menu {
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: var(--c-bg-pure);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 50;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
}
.share-menu.is-open { display: flex; }
.share-menu__item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  font-size: 13.5px; font-weight: 500;
  color: var(--c-text);
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
  text-align: left;
}
.share-menu__item:hover { background: var(--c-surface); color: var(--c-ink); }
.share-menu__item svg { flex-shrink: 0; color: var(--c-text-mute); }
.share-menu__item:hover svg { color: var(--c-ink); }

@media (max-width: 600px) {
  .cat-sort { flex-wrap: wrap; }
  .share-menu { right: auto; left: 0; }
}

/* ============================================
   PROMO STRIP (announcement bar)
   ============================================ */
.promo-strip {
  background: var(--c-accent);
  color: #fff;
}
.promo-strip__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  height: 32px;
  font-size: 12px;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.promo-strip__icon { flex-shrink: 0; opacity: 0.85; }
.promo-strip__text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

@media (max-width: 720px) {
  .promo-strip__inner { font-size: 11px; height: 30px; }
}

/* ============================================
   BRAND FILTER scrollable list
   ============================================ */
.fgroup__list--scroll {
  max-height: 280px;
  overflow-y: auto;
  padding-right: 4px;
}
.fgroup__list--scroll::-webkit-scrollbar { width: 6px; }
.fgroup__list--scroll::-webkit-scrollbar-track { background: transparent; }
.fgroup__list--scroll::-webkit-scrollbar-thumb {
  background: var(--c-line);
  border-radius: 3px;
}
.fgroup__list--scroll::-webkit-scrollbar-thumb:hover { background: var(--c-text-faint); }
