/* ─────────────── TOKENS ─────────────── */
:root {
  --color-brand: #97cb7a;
  --color-brand-hover: #86bc69;
  --color-brand-active: #75ad58;
  --color-brand-soft: #eef5e7;
  --color-brand-tint: #f5faf1;

  --color-ink: #1d1d1f;
  --color-ink-pure: #000;
  --color-ink-80: rgba(0,0,0,.80);
  --color-ink-60: rgba(0,0,0,.60);
  --color-slate: #7a7b7c;
  --color-slate-light: #a8a9aa;
  --color-slate-lighter: #d2d3d4;
  --color-line: #ededee;
  --color-surface: #f7f8f6;
  --color-surface-pure: #ffffff;
  --color-surface-sunken: #ededee;

  --color-success: #42a25e;
  --color-warning: #f0a020;
  --color-warning-soft: #fff5e1;
  --color-danger: #d83b3b;
  --color-info: #3b82f6;

  --font-en: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --shadow-card: 0 4px 16px rgba(0,0,0,.06);
  --shadow-float: 0 10px 40px rgba(0,0,0,.10);
  --shadow-modal: 0 24px 80px rgba(0,0,0,.18);
  --shadow-product: 3px 5px 30px rgba(0,0,0,.12);
  --shadow-focus: 0 0 0 4px rgba(151,203,122,.30);

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(.16,1,.3,1);
  --container: 1280px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  font-family: var(--font-en);
  color: var(--color-ink);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

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

/* numeric / price */
.num, .price { font-variant-numeric: tabular-nums; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 600;
  border: 1px solid transparent;
  transition: all .2s var(--ease-out);
  letter-spacing: -.1px;
  white-space: nowrap;
}
.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--color-brand); color: #fff; }
.btn--primary:hover { background: var(--color-brand-hover); }
.btn--primary:active { background: var(--color-brand-active); }
.btn--ghost { background: transparent; color: var(--color-ink); border-color: var(--color-slate-lighter); }
.btn--ghost:hover { background: var(--color-surface); border-color: var(--color-slate); }
.btn--dark { background: var(--color-ink); color: #fff; }
.btn--dark:hover { background: #000; }
.btn--link { background: transparent; color: var(--color-ink); padding: 8px 0; border-radius: 0; }
.btn--link:hover { color: var(--color-brand-hover); }

/* ─── ATOMS ─── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--color-slate);
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
  letter-spacing: 0;
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(151,203,122,.25);
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-brand);
  display: inline-block;
}
.dot--live {
  background: var(--color-success);
  box-shadow: 0 0 0 3px rgba(66,162,94,.25);
}

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-head--has-tabs {
  align-items: flex-end;
}
.section-head--has-tabs .wk-filter-tabs {
  flex: 0 1 auto;
  max-width: 100%;
  margin-left: auto;
}
.section-head__copy { max-width: 720px; flex: 1 1 320px; min-width: 0; }
.section-head__kicker {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  color: var(--color-brand);
  background: var(--color-brand-soft);
  padding: 4px 10px; border-radius: var(--radius-pill);
  margin-bottom: 14px;
  letter-spacing: .2px;
}
.section-head h2 {
  margin: 0 0 10px;
  font-size: 36px; font-weight: 700;
  line-height: 1.10; letter-spacing: -.4px;
}
.section-head p {
  margin: 0;
  font-size: 17px; color: var(--color-slate);
  line-height: 1.55;
  text-wrap: pretty;
}

/* ─────────────── NAV ─────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,248,246,.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  height: 64px;
}
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 18px;
  letter-spacing: -.3px;
  color: var(--color-ink);
}
.nav__brand--logo-only {
  gap: 0;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: none;
  border-radius: 0;
  width: auto;
  height: auto;
  max-height: 48px;
}
.nav__logo-img {
  display: block;
  width: auto;
  height: auto;
  max-height: 48px;
  max-width: min(220px, 42vw);
  object-fit: contain;
}
.nav__wordmark em { font-style: normal; font-weight: 500; color: var(--color-slate); }
.nav__menu {
  display: flex; gap: 28px;
  font-size: 14px; font-weight: 500;
}
.nav__menu a {
  color: var(--color-ink-80);
  padding: 6px 0;
  position: relative;
  transition: color .2s;
}
.nav__menu a:hover { color: var(--color-brand-hover); }
.nav__menu a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--color-brand); border-radius: 2px;
}
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__search {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
  padding: 9px 16px 9px 14px;
  color: var(--color-slate);
  font-size: 14px; font-weight: 400;
  min-width: 240px;
  transition: all .2s;
}
.nav__search:hover { border-color: var(--color-slate-lighter); }
.nav__icon, .nav__cart {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--color-ink);
  position: relative;
  transition: background .2s;
}
.nav__icon:hover, .nav__cart:hover { background: var(--color-line); }
.nav__badge {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 18px; height: 18px;
  background: var(--color-brand);
  color: #fff;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  display: grid; place-items: center;
  padding: 0 5px;
  border: 2px solid var(--color-surface);
}
@media (max-width: 1024px) {
  .nav__menu { display: none; }
  .nav__search { min-width: 0; padding: 9px; }
  .nav__search span { display: none; }
  .nav__inner { gap: 12px; }
}

/* ─────────────── HERO (cinematic, video bg + right CTA) ─────────────── */
.hero {
  position: relative;
  isolation: isolate;
  background: #0d0d0e;
  overflow: hidden;
  color: #fff;
}
.hero--cinema { padding: 0; }

/* Background layers */
.hero__bg {
  position: absolute; inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero__bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .8s var(--ease-out);
  z-index: 2;
}
.hero__bg-video.is-ready { opacity: 1; }
.hero__bg-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero__bg--image-only .hero__bg-video { display: none; }

.hero__bg-scrim {
  position: absolute; inset: 0;
  z-index: 3;
  background:
    /* horizontal: darker on the right for CTA contrast */
    linear-gradient(90deg,
      rgba(13,13,14,.35) 0%,
      rgba(13,13,14,.10) 30%,
      rgba(13,13,14,.45) 70%,
      rgba(13,13,14,.78) 100%),
    /* vertical: top/bottom vignette */
    linear-gradient(180deg,
      rgba(13,13,14,.55) 0%,
      rgba(13,13,14,0)   28%,
      rgba(13,13,14,0)   65%,
      rgba(13,13,14,.65) 100%);
  pointer-events: none;
}
.hero__bg-grain {
  position: absolute; inset: 0;
  z-index: 4;
  opacity: .35;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Foreground layout */
.hero__layout {
  position: relative;
  z-index: 5;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 24px 100px;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
  gap: 48px;
  align-items: stretch;
}

.hero__corner {
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  align-self: start;
  max-width: 520px;
}

/* dark-variant eyebrow + chip */
.eyebrow--dark {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
}
.hero__chip--floating {
  position: static;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.94);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 12px; font-weight: 600;
  color: var(--color-ink);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
}

.hero__tour {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(20,20,22,.55);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-pill);
  padding: 8px 22px 8px 8px;
  color: #fff;
  text-align: left;
  transition: all .25s var(--ease-out);
}
.hero__tour:hover {
  background: rgba(20,20,22,.7);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-1px);
}
.hero__tour-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-brand);
  color: #1d1d1f;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__tour-text { display: flex; flex-direction: column; line-height: 1.2; }
.hero__tour-title { font-size: 13px; font-weight: 600; }
.hero__tour-meta  { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 2px; letter-spacing: .2px; }

/* Right-side CTA card */
.hero__cta {
  align-self: stretch;
  justify-self: end;
  width: 100%;
  background: rgba(18,18,20,.62);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-2xl);
  padding: 36px;
  display: flex; flex-direction: column;
  gap: 20px;
  box-shadow:
    0 30px 80px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.05);
  color: #fff;
}
.hero__cta-kicker {
  display: inline-flex; align-self: flex-start;
  align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: var(--color-brand);
  background: rgba(151,203,122,.12);
  border: 1px solid rgba(151,203,122,.28);
  padding: 6px 12px; border-radius: var(--radius-pill);
}
.hero__cta-kicker .eyebrow__dot { box-shadow: 0 0 0 3px rgba(151,203,122,.30); }
.hero__cta-title {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.1px;
  color: #fff;
}
.hero__cta-title-accent {
  background: linear-gradient(180deg, var(--color-brand) 0%, var(--color-brand-active) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero__cta-sub {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
  text-wrap: pretty;
}
.hero__cta-buttons {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-top: 4px;
}
.btn--block { width: 100%; }
.btn--glass {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  backdrop-filter: blur(10px);
}
.btn--glass:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28);
}

.hero__cta-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 6px;
}
.hero__cta-stat { min-width: 0; }
.hero__cta-num {
  font-size: 26px; font-weight: 700;
  letter-spacing: -.6px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: #fff;
  white-space: nowrap;
}
.hero__cta-num span {
  color: var(--color-brand);
  font-size: 14px;
  font-weight: 600;
  margin-left: 2px;
}
.hero__cta-cap {
  margin-top: 8px;
  font-size: 11.5px;
  color: rgba(255,255,255,.55);
  letter-spacing: .2px;
  text-transform: uppercase;
  font-weight: 500;
}
.hero__cta-divider { width: 1px; background: rgba(255,255,255,.10); }

.hero__cta-trust {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.74);
}
.hero__cta-trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__cta-trust svg { color: var(--color-brand); flex-shrink: 0; }

/* Marquee — sits inside the hero, on its own dark band */
.hero__marquee {
  position: relative;
  z-index: 5;
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.04);
  background: rgba(13,13,14,.85);
  backdrop-filter: blur(12px);
  padding: 20px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.hero__marquee-track {
  display: flex; gap: 40px;
  white-space: nowrap;
  font-size: 18px; font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: -.2px;
  animation: marquee 40s linear infinite;
}
.hero__marquee-track span:nth-child(even) { color: rgba(255,255,255,.25); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 100px 20px 80px;
    min-height: auto;
  }
  .hero__corner { max-width: 100%; }
  .hero__tour { margin-top: 8px; }
  .hero__cta { padding: 28px; justify-self: stretch; }
  .hero__cta-stats { grid-template-columns: 1fr auto 1fr auto 1fr; }
}
@media (max-width: 640px) {
  .hero__layout { padding: 84px 16px 64px; }
  .hero__cta { padding: 24px; gap: 16px; }
  .hero__cta-buttons { grid-template-columns: 1fr; }
  .hero__cta-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
  }
  .hero__cta-divider { display: none; }
  .hero__marquee-track { font-size: 15px; gap: 28px; }
}

/* ─────────────── SECTION SHELL ─────────────── */
.section { padding: 96px 0; }
.section--shop { background: var(--color-surface); }
.section--best { background: var(--color-surface-pure); }

/* ─────────────── CATEGORY GRID ─────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  grid-auto-rows: minmax(280px, auto);
}
.cat {
  position: relative;
  background: var(--cat-bg, var(--color-surface-pure));
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: all .3s var(--ease-out);
  isolation: isolate;
  color: var(--color-ink);
  min-height: 280px;
}
.cat:hover {
  transform: translateY(-3px);
  border-color: var(--color-slate-lighter);
  box-shadow: var(--shadow-card);
}
.cat__art {
  position: absolute;
  right: -10px; bottom: -10px;
  width: 70%; max-width: 220px;
  z-index: -1;
  opacity: .9;
}
.cat__art svg { width: 100%; height: auto; aspect-ratio: 1; }
.cat__art .cat__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}
.cat__body { display: flex; flex-direction: column; justify-content: space-between; height: 100%; gap: 24px; }
/* Equal-size category cards (no featured large tile) */
.cat-grid--equal {
  grid-auto-rows: 1fr;
}
.cat-grid--equal .cat {
  min-height: 280px;
  height: 100%;
}
.cat-grid--equal .cat__label h3 {
  font-size: 22px;
  max-width: 160px;
  letter-spacing: -.3px;
}
.cat-grid--equal .cat__art {
  width: 55%;
  max-width: 200px;
}
.cat-grid--equal .cat--dark .cat__img {
  opacity: .92;
}
.cat__label h3 {
  margin: 4px 0 0;
  font-size: 22px; font-weight: 600;
  letter-spacing: -.3px;
  line-height: 1.15;
  max-width: 160px;
}
.cat__count {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-slate);
  letter-spacing: .2px;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
.cat__btn {
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  font-size: 13px; font-weight: 600;
  color: var(--color-ink);
  padding: 8px 14px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-line);
  transition: all .2s;
}
.cat:hover .cat__btn {
  background: var(--color-brand);
  color: #fff;
  border-color: var(--color-brand);
}
.cat--lg {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 576px;
}
.cat--lg .cat__art { width: 65%; max-width: 380px; }
.cat--lg .cat__label h3 { font-size: 34px; max-width: 280px; letter-spacing: -.6px; }
.cat--dark {
  background: var(--color-ink);
  color: #fff;
  border-color: var(--color-ink);
}
.cat--dark .cat__count { color: var(--color-slate-light); }
.cat--dark .cat__btn { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #fff; }
.cat--dark .cat__art { opacity: .8; }
.cat--dark:hover { box-shadow: 0 10px 40px rgba(0,0,0,.25); }
.cat__btn--brand { background: var(--color-brand) !important; color: #fff !important; border-color: var(--color-brand) !important; }

@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .cat--lg { grid-column: span 3; grid-row: span 1; min-height: 320px; }
}
@media (max-width: 700px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat--lg { grid-column: span 2; }
}

/* ─────────────── TABS ─────────────── */
.tabs {
  display: flex;
  gap: 4px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
  padding: 4px;
}
.tab {
  background: transparent;
  border: none;
  padding: 8px 16px;
  font-size: 13px; font-weight: 600;
  color: var(--color-slate);
  border-radius: var(--radius-pill);
  transition: all .2s;
}
.tab:hover { color: var(--color-ink); }
.tab.is-active {
  background: var(--color-ink);
  color: #fff;
}
.wk-filter-tabs {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.wk-filter-hidden {
  pointer-events: none;
}

/* ─────────────── PRODUCT GRID ─────────────── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.prod {
  background: var(--color-surface-pure);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 14px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: all .25s var(--ease-out);
}
.prod:hover {
  transform: translateY(-2px);
  border-color: var(--color-slate-lighter);
  box-shadow: var(--shadow-card);
}
.prod__media {
  position: relative;
  aspect-ratio: 1;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  overflow: hidden;
}
.prod__svg { width: 72%; height: 72%; }
.prod__body { display: flex; flex-direction: column; gap: 10px; }
.prod__cat {
  font-size: 12px; font-weight: 500;
  color: var(--color-slate);
  letter-spacing: .2px;
  text-transform: uppercase;
}
.prod__name {
  margin: 0;
  font-size: 15px; font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.1px;
  color: var(--color-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 39px;
}
.prod__meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: var(--color-slate);
  flex-wrap: wrap; gap: 6px;
}
.stars { display: inline-flex; align-items: center; gap: 4px; color: var(--color-ink); font-weight: 500; }
.stars svg { color: var(--color-warning); }
.prod__stock { display: inline-flex; align-items: center; gap: 5px; font-weight: 500; color: var(--color-success); }
.prod__priceRow {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 8px;
  border-top: 1px solid var(--color-line);
}
.prod__price {
  font-size: 22px; font-weight: 700;
  letter-spacing: -.4px;
  color: var(--color-ink);
  font-variant-numeric: tabular-nums;
}
.prod__price-sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-slate);
  margin-left: 4px;
}
.prod__qty {
  font-size: 12px; color: var(--color-slate);
  font-weight: 500;
}
.prod__cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  margin-top: 2px;
}
.prod__cta .btn { padding: 11px 14px; font-size: 13px; }
.prod__view {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  color: var(--color-ink);
  transition: all .2s;
  border: 1px solid var(--color-line);
}
.prod__view:hover { background: var(--color-ink); color: #fff; border-color: var(--color-ink); }

/* Product grid — gallery hover */
.wk-product-media--hover .wk-product-media__layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition: opacity .35s var(--ease-out);
}
.wk-product-media--hover .wk-product-media__layer--primary { opacity: 1; z-index: 1; }
.wk-product-media--hover .wk-product-media__layer--hover { opacity: 0; z-index: 2; }
.wk-product-media--hover .wk-product-media__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.prod__media.wk-product-media--hover:hover .wk-product-media__layer--primary,
.used-card__media.wk-product-media--hover:hover .wk-product-media__layer--primary,
.qs__media.wk-product-media--hover:hover .wk-product-media__layer--primary { opacity: 0; }
.prod__media.wk-product-media--hover:hover .wk-product-media__layer--hover,
.used-card__media.wk-product-media--hover:hover .wk-product-media__layer--hover,
.qs__media.wk-product-media--hover:hover .wk-product-media__layer--hover { opacity: 1; }

/* Product grid — carousel */
.wk-product-carousel {
  position: relative;
  margin-top: 4px;
}
.wk-product-carousel__track {
  display: flex !important;
  grid-template-columns: none !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 16px;
  padding: 4px 2px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.wk-product-carousel__track::-webkit-scrollbar { display: none; }
.wk-product-carousel__track > .prod,
.wk-product-carousel__track > .used-card,
.wk-product-carousel__track > .qs {
  flex: 0 0 calc((100% - (var(--wk-carousel-slides, 4) - 1) * 16px) / var(--wk-carousel-slides, 4));
  scroll-snap-align: start;
  min-width: 240px;
  max-width: 100%;
}
.wk-carousel__nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-line);
  background: var(--color-surface-pure);
  color: var(--color-ink);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.wk-carousel__nav:hover {
  background: var(--color-ink);
  border-color: var(--color-ink);
  color: #fff;
}
.wk-carousel__nav--prev { left: -10px; }
.wk-carousel__nav--next { right: -10px; }

@media (max-width: 1024px) {
  .wk-product-carousel__track > .prod,
  .wk-product-carousel__track > .used-card,
  .wk-product-carousel__track > .qs {
    flex-basis: calc((100% - 32px) / 3);
    min-width: 220px;
  }
}
@media (max-width: 700px) {
  .wk-product-carousel__track > .prod,
  .wk-product-carousel__track > .used-card,
  .wk-product-carousel__track > .qs {
    flex-basis: calc((100% - 16px) / 2);
    min-width: 200px;
  }
  .wk-carousel__nav--prev { left: 0; }
  .wk-carousel__nav--next { right: 0; }
}

/* badges */
.badge {
  position: absolute; top: 12px; left: 12px;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 600;
  letter-spacing: .2px;
  white-space: nowrap;
  z-index: 1;
}
.badge--brand { background: var(--color-brand); color: #fff; }
.badge--neutral { background: var(--color-ink); color: #fff; }
.badge--warn { background: var(--color-warning-soft); color: #8a5800; border: 1px solid #f5d691; }
.badge--success { background: var(--color-brand-soft); color: var(--color-success); }
.badge--info { background: #e9f0fb; color: #1f5cc1; }

.best__footer { margin-top: 40px; text-align: center; }

@media (max-width: 1024px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 64px 0; }
  .section-head h2 { font-size: 28px; }
  .section-head--has-tabs .wk-filter-tabs {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
  }
}

/* ─────────────── TOAST ─────────────── */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--color-ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-float);
  opacity: 0;
  pointer-events: none;
  transition: all .3s var(--ease-out);
  z-index: 1000;
}
.toast--show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─────────────── USED FURNITURE ─────────────── */
.section--used {
  background: var(--color-ink);
  color: #fff;
}
.section--used .section-head h2 { color: #fff; }
.section--used .section-head p { color: rgba(255,255,255,.65); }
.section-head__kicker--brand { background: var(--color-brand) !important; color: #fff !important; }

.used__legend {
  display: flex; gap: 18px;
  font-size: 12px; color: rgba(255,255,255,.65);
  font-weight: 500;
  flex-wrap: wrap;
}
.used__legend span { display: inline-flex; align-items: center; gap: 6px; }
.condition {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
}
.condition--likenew { background: var(--color-brand); }
.condition--good { background: #f0a020; }
.condition--fair { background: var(--color-slate-light); }

.used-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.used-card {
  background: #2a2a2c;
  border: 1px solid #3a3a3c;
  border-radius: var(--radius-lg);
  padding: 14px;
  display: flex; flex-direction: column;
  gap: 12px;
  transition: all .25s var(--ease-out);
}
.used-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-brand);
}
.used-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f1f2ef;
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  overflow: hidden;
}
.used-card__media .prod__svg { width: 60%; height: 60%; }
.used-card__body { display: flex; flex-direction: column; gap: 8px; }
.used-card__top {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px;
}
.condition-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  letter-spacing: .2px;
}
.used-card__sku {
  color: rgba(255,255,255,.4);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}
.used-card__name {
  margin: 4px 0 0;
  font-size: 14px; font-weight: 600;
  color: #fff;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
}
.used-card__priceRow {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 4px;
}
.used-card__was {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}
.used-card__price {
  font-size: 24px; font-weight: 700;
  color: var(--color-brand);
  letter-spacing: -.5px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.used-card__qty {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}
.used-card__cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.used-card__cta .btn { padding: 10px 12px; font-size: 13px; }
.used-card__cta .btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.18);
}
.used-card__cta .btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.35); }

.used__footer {
  margin-top: 48px;
  display: flex; justify-content: center; align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.used__footer .btn--dark {
  background: var(--color-brand);
  color: #fff;
}
.used__footer .btn--dark:hover { background: var(--color-brand-hover); }
.used__note {
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

@media (max-width: 1024px) {
  .used-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .used-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─────────────── IN STOCK ─────────────── */
.section--instock { background: var(--color-surface); }
.instock__chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600;
  background: #fff;
  border: 1px solid var(--color-line);
  color: var(--color-ink);
}
.chip--success { color: var(--color-success); }
.chip--warn { color: #8a5800; }
.chip--info { color: var(--color-info); }
.dot--warn { background: var(--color-warning); box-shadow: 0 0 0 3px rgba(240,160,32,.25); }

.instock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.qs {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 14px;
  display: flex;
  gap: 14px;
  transition: all .25s var(--ease-out);
}
.qs:hover {
  transform: translateY(-2px);
  border-color: var(--color-slate-lighter);
  box-shadow: var(--shadow-card);
}
.qs__media {
  position: relative;
  flex: 0 0 130px;
  height: 130px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  display: grid; place-items: center;
}
.qs__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.qs__labels { display: flex; flex-wrap: wrap; gap: 4px; }
.lbl {
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: .2px;
  white-space: nowrap;
}
.lbl--success { background: var(--color-brand-soft); color: #2a7a3e; }
.lbl--warn { background: var(--color-warning-soft); color: #8a5800; }
.lbl--info { background: #e9f0fb; color: #1f5cc1; }
.qs__name {
  margin: 0;
  font-size: 15px; font-weight: 600;
  line-height: 1.3;
  color: var(--color-ink);
  letter-spacing: -.1px;
}
.qs__delivery {
  font-size: 12px;
  color: var(--color-slate);
  display: inline-flex; align-items: center; gap: 6px;
}
.qs__delivery svg { color: var(--color-brand); flex-shrink: 0; }
.qs__delivery strong { color: var(--color-ink); font-weight: 600; }
.qs__foot {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 8px;
  border-top: 1px solid var(--color-line);
}
.qs__price {
  font-size: 20px; font-weight: 700;
  letter-spacing: -.4px;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 1024px) {
  .instock-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .instock-grid { grid-template-columns: 1fr; }
  .qs { flex-direction: column; }
  .qs__media { flex: 0; width: 100%; aspect-ratio: 2/1; height: auto; }
}

/* ─────────────── MORE WAYS ─────────────── */
.section--ways { background: var(--color-surface-pure); }
.section-head--center {
  text-align: center;
  justify-content: center;
}
.section-head--center .section-head__copy { margin: 0 auto; }

.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.way {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 16px;
  color: var(--color-ink);
  transition: all .3s var(--ease-out);
}
.way:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-slate-lighter);
}
.way__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--color-line);
  display: grid; place-items: center;
  color: var(--color-ink);
}
.way__icon--brand { background: var(--color-brand-soft); border-color: transparent; color: var(--color-brand-active); }
.way h3 {
  margin: 0;
  font-size: 22px; font-weight: 600;
  letter-spacing: -.3px;
  line-height: 1.2;
}
.way p {
  margin: 0;
  color: var(--color-slate);
  font-size: 15px; line-height: 1.55;
  text-wrap: pretty;
}
.way__meta {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px;
  color: var(--color-slate);
  border-top: 1px solid var(--color-line);
  padding-top: 16px;
}
.way__meta strong { color: var(--color-ink); font-weight: 600; }
.way__meta--dark { border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.6); }
.way__meta--dark strong { color: #fff; }
.way__cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto;
  padding-top: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--color-brand-active);
  transition: gap .2s;
}
.way__cta--light { color: var(--color-brand); }
.way:hover .way__cta { gap: 10px; }

.way--dark {
  background: var(--color-ink);
  color: #fff;
  border-color: var(--color-ink);
}
.way--dark h3 { color: #fff; }
.way--dark p { color: rgba(255,255,255,.7); }
.way--dark .way__icon { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); color: var(--color-brand); }

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

/* ─────────────── FINANCING ─────────────── */
.section--finance {
  background: var(--color-brand-soft);
  padding: 96px 0;
}
.finance {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.finance__copy h2 {
  margin: 14px 0 12px;
  font-size: 36px; font-weight: 700;
  line-height: 1.10; letter-spacing: -.4px;
  text-wrap: balance;
}
.finance__copy > p {
  margin: 0 0 32px;
  font-size: 17px;
  color: var(--color-ink-80);
  line-height: 1.55;
  text-wrap: pretty;
  max-width: 540px;
}
.finance__bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
  max-width: 520px;
}
.finance__bullets > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.finance__bullets > div:last-child { border-bottom: none; padding-bottom: 0; }
.finance__bullet-num {
  font-size: 36px; font-weight: 700;
  letter-spacing: -.8px;
  color: var(--color-brand-active);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.finance__bullet-num span { font-size: 18px; color: var(--color-slate); margin-left: 2px; }
.finance__bullet-label {
  font-size: 14px;
  color: var(--color-ink);
  line-height: 1.45;
  font-weight: 500;
}
.finance__ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.finance__art {
  display: grid; place-items: center;
}
.finance__card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 32px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(0,0,0,.05);
}
.finance__card-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 12px;
}
.finance__card-label {
  font-size: 12px; font-weight: 600;
  color: var(--color-slate);
  text-transform: uppercase;
  letter-spacing: .3px;
}
.finance__card-meta {
  font-size: 12px;
  color: var(--color-slate);
  font-variant-numeric: tabular-nums;
}
.finance__card-amount {
  font-size: 56px; font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--color-ink);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 20px;
}
.finance__card-period {
  font-size: 18px;
  color: var(--color-slate);
  font-weight: 500;
  margin-left: 4px;
}
.finance__card-row {
  display: flex; justify-content: space-between;
  font-size: 13px;
  color: var(--color-slate);
  padding: 8px 0;
  border-top: 1px dashed var(--color-line);
}
.finance__card-row:first-of-type strong, .finance__card-row span:last-child {
  color: var(--color-ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.finance__card-bar {
  height: 6px;
  background: var(--color-surface);
  border-radius: 999px;
  margin: 16px 0 14px;
  overflow: hidden;
}
.finance__card-bar-fill {
  width: 78%;
  height: 100%;
  background: var(--color-brand);
  border-radius: 999px;
}
.finance__card-foot {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; font-weight: 600;
  color: var(--color-success);
}

@media (max-width: 900px) {
  .finance { grid-template-columns: 1fr; gap: 40px; }
  .finance__copy h2 { font-size: 28px; }
  .finance__card-amount { font-size: 44px; }
}

/* ─────────────── REVIEWS ─────────────── */
.section--reviews { background: var(--color-surface-pure); }
.reviews__summary { display: flex; flex-direction: column; gap: 8px; }
.reviews__big-stars {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 14px;
  color: var(--color-slate);
}
.reviews__big-stars svg { color: var(--color-warning); }
.reviews__big-stars strong { color: var(--color-ink); font-weight: 700; font-size: 16px; margin-right: 4px; }
.reviews__big-stars span { margin-left: 8px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: all .25s var(--ease-out);
}
.review:hover {
  background: #fff;
  border-color: var(--color-slate-lighter);
  box-shadow: var(--shadow-card);
}
.review__stars {
  font-size: 15px;
  color: var(--color-warning);
  letter-spacing: 2px;
}
.review__quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-ink);
  text-wrap: pretty;
  flex: 1;
}
.review__author {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--color-line);
}
.review__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
}
.review__name {
  font-size: 14px; font-weight: 600;
  color: var(--color-ink);
}
.review__role {
  font-size: 12px;
  color: var(--color-slate);
}
.review__source {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-slate);
  padding: 4px 8px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
}

.reviews__footer { margin-top: 40px; text-align: center; }

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

/* ─────────────── FINAL CTA ─────────────── */
.section--final {
  background: var(--color-surface);
}
.final {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
.final__copy {
  padding: 64px 56px;
  display: flex; flex-direction: column;
  gap: 24px;
}
.final__title {
  margin: 0;
  font-size: 44px; font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--color-ink);
  text-wrap: balance;
}
.final__title-accent {
  background: linear-gradient(180deg, var(--color-brand) 0%, var(--color-brand-active) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 700;
}
.final__sub {
  margin: 0;
  font-size: 17px; line-height: 1.55;
  color: var(--color-ink-80);
  text-wrap: pretty;
  max-width: 520px;
}
.final__ctas {
  display: flex; gap: 12px;
  flex-wrap: wrap;
}
.final__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-line);
  margin-top: 16px;
}
.final__info-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-slate);
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: 6px;
}
.final__info-value {
  font-size: 14px;
  line-height: 1.45;
  color: var(--color-ink);
  font-weight: 500;
}
.final__info-meta {
  font-size: 12px;
  color: var(--color-slate);
  font-weight: 400;
}

.final__map { position: relative; min-height: 560px; }
.map {
  position: absolute; inset: 0;
  background: var(--color-surface);
  overflow: hidden;
}
.map svg { width: 100%; height: 100%; }
.map__overlay {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  box-shadow: var(--shadow-float);
}
.map__overlay-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: var(--color-brand-soft);
  color: var(--color-brand-active);
  display: grid; place-items: center;
}
.map__overlay-title {
  font-size: 14px; font-weight: 600;
  color: var(--color-ink);
}
.map__overlay-sub {
  font-size: 12px;
  color: var(--color-slate);
}

@media (max-width: 1024px) {
  .final { grid-template-columns: 1fr; }
  .final__copy { padding: 40px 32px; }
  .final__title { font-size: 32px; }
  .final__map { min-height: 400px; }
  .final__info { grid-template-columns: 1fr 1fr; }
}

/* ─────────────── FOOTER ─────────────── */
.footer {
  background: var(--color-ink);
  color: rgba(255,255,255,.7);
  padding: 72px 0 28px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer .nav__brand { color: #fff; }
.footer .nav__logo { background: none; }
.footer__logo-link {
  display: inline-block;
  margin-bottom: 20px;
}
.footer .nav__logo--footer,
.footer .nav__logo--footer .nav__logo-img {
  width: 200px;
  max-width: 200px;
  height: auto;
  max-height: none;
}
.footer__tag {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.55);
  max-width: 360px;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  max-width: 360px;
}
.footer__contact-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.45);
  margin-bottom: 4px;
}
.footer__contact-value {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.85);
}
.footer__contact-value a {
  color: #fff;
  text-decoration: none;
}
.footer__contact-value a:hover {
  color: var(--color-brand);
}
.footer__contact-meta {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.footer__socials { display: flex; gap: 8px; flex-wrap: wrap; }
.footer__socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  transition: all .2s;
}
.footer__socials a:hover { background: var(--color-brand); color: var(--color-ink); }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__cols h4 {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .2px;
  text-transform: uppercase;
}
.footer__cols ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 10px;
}
.footer__cols a {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer__cols a:hover { color: #fff; }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap; gap: 16px;
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: rgba(255,255,255,.45); }
.footer__legal a:hover { color: #fff; }

@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

/* ─────────────── WHY WELLS KIMICH ─────────────── */
.section--why {
  background: var(--color-brand-soft);
  position: relative;
  overflow: hidden;
}
.section--why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(151,203,122,.25), transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(151,203,122,.20), transparent 50%);
  pointer-events: none;
}
.section--why .container { position: relative; z-index: 1; }

.why-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-bottom: 56px;
}

.why-feature {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  background: #0e0e10;
  color: #fff;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 580px;
  border: 1px solid rgba(255,255,255,.04);
  box-shadow: 0 24px 60px rgba(13,13,14,.18);
}
.why-feature__art {
  flex: 0 0 240px;
  position: relative;
  overflow: hidden;
  background: #0c0c0e;
}
.why-feature__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,14,16,0) 55%, rgba(14,14,16,1) 100%);
  pointer-events: none;
}
.why-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why-feature__body {
  flex: 1;
  padding: 32px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.why-feature__year {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(151,203,122,.12);
  border: 1px solid rgba(151,203,122,.30);
  border-radius: var(--radius-pill);
  font-variant-numeric: tabular-nums;
  align-self: flex-start;
}
.why-feature__year span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.why-feature__year strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-brand);
  letter-spacing: -.2px;
}
.why-feature__title {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.6px;
  text-wrap: balance;
  color: #fff;
}
.why-feature__sub {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.65);
  text-wrap: pretty;
}
.why-feature__facts {
  list-style: none;
  margin: 4px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.why-feature__facts li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.why-feature__facts strong {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.5px;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.why-feature__facts em {
  color: var(--color-brand);
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  margin-left: 1px;
}
.why-feature__facts span {
  font-size: 11.5px;
  line-height: 1.4;
  color: rgba(255,255,255,.5);
}
.why-feature__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 11px 18px;
  background: var(--color-brand);
  color: #1d1d1f;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  transition: all .2s var(--ease-out);
}
.why-feature__cta:hover {
  background: var(--color-brand-hover);
  transform: translateY(-1px);
}

.why-pillar {
  background: var(--color-surface-pure);
  border: 1px solid rgba(0,0,0,.04);
  border-radius: var(--radius-xl);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .25s var(--ease-out);
}
.why-pillar:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(13,13,14,.08);
  border-color: rgba(151,203,122,.30);
}
.why-pillar__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-brand-soft);
  color: var(--color-brand-active);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(151,203,122,.30);
}
.why-pillar__title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.2px;
  color: var(--color-ink);
}
.why-pillar__body {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--color-slate);
  text-wrap: pretty;
  flex: 1;
}
.why-pillar__stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px dashed var(--color-slate-lighter);
}
.why-pillar__stat-num {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.5px;
  color: var(--color-ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.why-pillar__stat-num em {
  font-style: normal;
  color: var(--color-brand-active);
  font-size: 12px;
  font-weight: 600;
  margin-left: 2px;
}
.why-pillar__stat-cap {
  font-size: 11.5px;
  color: var(--color-slate);
  line-height: 1.35;
}

.why-process {
  list-style: none;
  margin: 0;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
  align-items: stretch;
  gap: 12px;
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(151,203,122,.30);
  border-radius: var(--radius-xl);
}
.why-process__step {
  display: flex;
  gap: 14px;
  padding: 10px 14px;
  min-width: 0;
}
.why-process__num {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  color: var(--color-brand-active);
  font-variant-numeric: tabular-nums;
  padding-top: 2px;
}
.why-process__copy { min-width: 0; }
.why-process__copy h4 {
  margin: 0 0 4px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-ink);
}
.why-process__copy p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--color-slate);
}
.why-process__connector {
  align-self: center;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-brand) 50%, transparent);
  opacity: .5;
}

@media (max-width: 1024px) {
  .why-bento { grid-template-columns: 1fr 1fr; }
  .why-feature {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: auto;
  }
  .why-feature__art { flex: 0 0 200px; }
  .why-process {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .why-process__connector { display: none; }
}
@media (max-width: 640px) {
  .why-bento { grid-template-columns: 1fr; }
  .why-feature__body { padding: 24px; }
  .why-feature__facts { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .why-feature__facts strong { font-size: 22px; }
  .why-process { grid-template-columns: 1fr; padding: 16px; }
}

/* ─── WordPress / Elementor scope ─── */
body.wk-page .elementor-widget-wk-hero,
body.wk-page .wk-widget { width: 100%; }
.wk-empty {
  grid-column: 1 / -1;
  padding: 32px;
  text-align: center;
  color: var(--color-slate);
  background: var(--color-surface-pure);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--color-line);
}
.prod__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}
