/* ═══════════════════════════════════════════════
   SendaFit front page styles
   Extracted from sendafit-home-EN.html design.
   Loaded only on the front page.
   ═══════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --bg:             oklch(1.000 0.000 0);
  --surface:        oklch(0.974 0.009 278);
  --surface2:       oklch(0.958 0.014 275);
  --ink:            oklch(0.18  0.012 270);
  --muted:          oklch(0.46  0.010 270);
  --subtle:         oklch(0.70  0.008 270);
  --line:           oklch(0.90  0.010 278);

  --primary:        oklch(0.50 0.19 278);
  --primary-light:  oklch(0.94 0.04 278);
  --primary-mid:    oklch(0.74 0.11 278);
  --primary-dark:   oklch(0.34 0.20 278);
  --primary-bg:     oklch(0.97 0.02 278);

  --accent:         oklch(0.58 0.17 245);
  --accent-light:   oklch(0.94 0.04 245);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 4px oklch(0.18 0.012 270 / 0.08);
  --shadow-md: 0 4px 18px oklch(0.18 0.012 270 / 0.10);
  --shadow-lg: 0 12px 40px oklch(0.18 0.012 270 / 0.13);

  --bottom-nav-h: 64px;

  --font: "Inter", system-ui, -apple-system, sans-serif;
  --max-w: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--bottom-nav-h);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Utilities ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 16px; }
.section     { padding: 40px 0; }
.section-title {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.2;
  text-wrap: balance; color: var(--ink);
}
.section-sub {
  font-size: 14px; color: var(--muted);
  line-height: 1.65; margin-top: 6px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 13px 22px; border-radius: var(--r-lg);
  font-size: 15px; font-weight: 700;
  border: none; cursor: pointer;
  transition: all 0.16s ease;
  min-height: 48px;
  white-space: nowrap;
}
.btn--primary {
  background: var(--primary); color: white;
  box-shadow: 0 3px 12px oklch(0.50 0.19 278 / 0.38);
}
.btn--primary:active { transform: scale(0.97); }
.btn--ghost {
  background: var(--bg); color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:active { background: var(--surface); }
.btn--full { width: 100%; }
.btn--outline-white {
  background: transparent; color: white;
  border: 1.5px solid oklch(1 0 0 / 0.38);
}

/* ── LIQUID GLASS ── */
:root {
  --glass-bg:       oklch(1 0 0 / 0.62);
  --glass-border:   oklch(1 0 0 / 0.55);
  --glass-shine:    oklch(1 0 0 / 0.80);
  --glass-blur:     20px;
  --glass-shadow:   0 2px 24px oklch(0.50 0.19 278 / 0.10),
                    0 1px 0 oklch(1 0 0 / 0.70) inset,
                    0 -1px 0 oklch(0.70 0.08 278 / 0.18) inset;
}

/* ── TOP NAV ── */
.top-nav {
  position: sticky; top: 0; z-index: 200;
  height: 56px;
  display: flex; align-items: center;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.8) brightness(1.05);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.8) brightness(1.05);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}
.top-nav::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--glass-shine) 30%,
    oklch(0.90 0.06 278 / 0.60) 60%,
    transparent 100%);
  pointer-events: none;
}
.top-nav::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, oklch(0.96 0.04 278 / 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 85% 50%, oklch(0.94 0.06 245 / 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.top-nav__inner {
  position: relative; z-index: 1;
  width: 100%; padding: 0 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.top-nav__logo {
  font-size: 19px; font-weight: 800;
  letter-spacing: -0.03em; color: var(--primary-dark);
}
.top-nav__logo span { color: var(--primary-dark); }
.top-nav__right { display: flex; align-items: center; gap: 10px; }
.top-nav__icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: oklch(1 0 0 / 0.50);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid oklch(1 0 0 / 0.60);
  box-shadow: 0 1px 4px oklch(0.50 0.19 278 / 0.12),
              0 1px 0 oklch(1 0 0 / 0.80) inset;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background 0.15s, box-shadow 0.15s;
}
.top-nav__icon-btn:active {
  background: oklch(1 0 0 / 0.35);
  box-shadow: 0 0 2px oklch(0.50 0.19 278 / 0.10);
}
.cart-badge { position: relative; }
.cart-badge::after {
  content: "0";
  position: absolute; top: 2px; right: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--primary); color: white;
  font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
}

/* ── BOTTOM NAV ── */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  height: var(--bottom-nav-h);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.8) brightness(1.05);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.8) brightness(1.05);
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -2px 24px oklch(0.50 0.19 278 / 0.08),
              0 -1px 0 oklch(1 0 0 / 0.70) inset;
  display: flex; align-items: stretch;
  padding-bottom: env(safe-area-inset-bottom);
}
.bottom-nav::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--glass-shine) 25%,
    oklch(0.90 0.06 278 / 0.50) 50%,
    var(--glass-shine) 75%,
    transparent 100%);
  pointer-events: none;
}
.bottom-nav::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 100% at 20% 100%, oklch(0.94 0.06 278 / 0.20) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 80% 100%, oklch(0.94 0.06 245 / 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.bottom-nav__item {
  position: relative; z-index: 1;
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3px; cursor: pointer; border: none;
  background: transparent; padding: 6px 0;
  color: var(--muted); font-size: 10px; font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}
.bottom-nav__item.active { color: var(--primary); }
.bottom-nav__icon { font-size: 22px; line-height: 1; }
.bottom-nav__item--order { flex: 1.4; }
.bottom-nav__order-btn {
  background: var(--primary);
  color: white;
  border-radius: var(--r-lg);
  padding: 8px 16px;
  font-size: 13px; font-weight: 700;
  border: none; cursor: pointer;
  display: flex; align-items: center; gap: 4px;
  box-shadow: 0 2px 10px oklch(0.50 0.19 278 / 0.40);
}

/* ── HERO ── */
.hero {
  background:
    radial-gradient(ellipse 90% 50% at 50% -5%, oklch(0.72 0.14 278 / 0.20) 0%, transparent 65%),
    linear-gradient(175deg, oklch(0.962 0.016 278) 0%, var(--bg) 55%);
  padding: 24px 0 32px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  background: var(--primary-light);
  border: 1px solid oklch(0.84 0.08 278);
  font-size: 11px; font-weight: 700;
  color: var(--primary-dark); letter-spacing: 0.01em;
  margin-bottom: 14px;
}
.hero__badge::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: var(--primary);
}
.hero__title {
  font-size: clamp(1.9rem, 7vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.04em;
  line-height: 1.12; text-wrap: balance;
  color: var(--ink); margin-bottom: 12px;
}
.hero__title em { font-style: normal; color: var(--primary); }
.hero__sub {
  font-size: 14px; color: var(--muted);
  line-height: 1.65; margin-bottom: 22px;
}
.hero__actions { display: flex; flex-direction: column; gap: 10px; }

/* Scrolling product strip */
.hero__strip {
  display: flex; gap: 10px;
  overflow-x: auto; padding: 20px 16px 4px;
  margin: 0 -16px;
  scrollbar-width: none;
}
.hero__strip::-webkit-scrollbar { display: none; }
.hero__pill {
  flex-shrink: 0;
  border-radius: var(--r-lg);
  width: 100px; height: 130px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 10px 8px;
  box-shadow: var(--shadow-md);
}
.hero__pill-label {
  background: oklch(1 0 0 / 0.90);
  border-radius: 6px; padding: 3px 7px;
  font-size: 9px; font-weight: 700;
  color: var(--ink); letter-spacing: 0.02em;
}
.p1 { background: linear-gradient(145deg, oklch(0.88 0.08 278), oklch(0.72 0.16 278)); }
.p2 { background: linear-gradient(145deg, oklch(0.26 0.02 270), oklch(0.16 0.01 270)); }
.p2 .hero__pill-label { background: oklch(0 0 0 / 0.50); color: white; }
.p3 { background: linear-gradient(145deg, oklch(0.56 0.16 278), oklch(0.42 0.19 265)); }
.p4 { background: linear-gradient(145deg, oklch(0.66 0.15 245), oklch(0.50 0.17 238)); }
.p5 { background: linear-gradient(145deg, oklch(0.42 0.10 25), oklch(0.28 0.08 20)); }
.p5 .hero__pill-label { background: oklch(0 0 0 / 0.50); color: white; }
.p6 { background: linear-gradient(145deg, oklch(0.86 0.06 320), oklch(0.72 0.14 330)); }
.p7 { background: linear-gradient(145deg, oklch(0.70 0.12 150), oklch(0.54 0.16 158)); }
.p8 { background: linear-gradient(145deg, oklch(0.90 0.05 60),  oklch(0.76 0.11 52));  }

/* Stats row */
.hero__stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 10px; margin-top: 24px;
}
.hero__stat {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px;
}
.hero__stat-num {
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.03em; color: var(--ink);
}
.hero__stat-label { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── CATEGORY CHIPS ── */
.cats {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cats__scroll {
  display: flex; gap: 8px; overflow-x: auto;
  padding: 12px 16px; scrollbar-width: none;
}
.cats__scroll::-webkit-scrollbar { display: none; }
.cat-chip {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--line);
  background: var(--bg); color: var(--muted);
  cursor: default; min-height: 40px;
  user-select: none;
}
.cat-chip.active {
  background: var(--primary-light);
  border-color: oklch(0.82 0.09 278);
  color: var(--primary-dark);
}
.cat-dot { width: 8px; height: 8px; border-radius: 50%; }

/* ── PRODUCT GRID ── */
.products__header {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 16px;
}
.view-all {
  font-size: 13px; font-weight: 700;
  color: var(--primary); white-space: nowrap;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.product-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.product-card:active { transform: scale(0.98); }
.product-card__img {
  aspect-ratio: 1/1;
  display: flex; align-items: flex-start;
  justify-content: flex-start;
  padding: 8px; position: relative;
  overflow: hidden;
}
.product-card__badge {
  background: white; color: var(--ink);
  border-radius: 6px; padding: 3px 8px;
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.03em;
}
.product-card__body { padding: 12px; }
.product-card__name {
  font-size: 13px; font-weight: 700;
  color: var(--ink); margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.product-card__compat { font-size: 11px; color: var(--muted); margin-bottom: 10px; }
.product-card__footer {
  display: flex; align-items: center; justify-content: space-between;
}
.product-card__price {
  font-size: 16px; font-weight: 800;
  color: var(--primary-dark); letter-spacing: -0.02em;
}
.product-card__price sub {
  font-size: 9px; font-weight: 500;
  color: var(--muted); vertical-align: baseline;
}
.swatches { display: flex; gap: 3px; }
.swatch {
  width: 12px; height: 12px; border-radius: 50%;
  border: 1.5px solid var(--line);
}
.bg-tpu   { background: linear-gradient(145deg, oklch(0.88 0.06 278), oklch(0.96 0.02 278)); }
.bg-matte { background: linear-gradient(145deg, oklch(0.30 0.02 270), oklch(0.18 0.01 270)); }
.bg-mag   { background: linear-gradient(145deg, oklch(0.54 0.16 278), oklch(0.42 0.19 265)); }
.bg-stand { background: linear-gradient(145deg, oklch(0.66 0.15 245), oklch(0.50 0.17 238)); }
.bg-shock { background: linear-gradient(145deg, oklch(0.40 0.10 25),  oklch(0.28 0.08 20));  }
.bg-kev   { background: linear-gradient(145deg, #1c1c1e, #2d2d2f); position:relative; overflow:hidden; }
.bg-kev::after { content:''; position:absolute; inset:0;
  background: repeating-linear-gradient(45deg, transparent, transparent 4px, oklch(1 0 0 / 0.04) 4px, oklch(1 0 0 / 0.04) 5px),
              repeating-linear-gradient(-45deg, transparent, transparent 4px, oklch(1 0 0 / 0.04) 4px, oklch(1 0 0 / 0.04) 5px); }
.product-card__badge--gold { background: linear-gradient(135deg, #b8860b, #daa520); color: #fff; }

/* ── WHOLESALE BANNER ── */
.wholesale {
  background: linear-gradient(145deg, oklch(0.45 0.18 278), oklch(0.36 0.19 263));
  border-radius: var(--r-xl);
  margin: 0 0; padding: 28px 20px;
  position: relative; overflow: hidden;
}
.wholesale::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 90% 20%, oklch(0.58 0.17 245 / 0.18) 0%, transparent 55%);
  pointer-events: none;
}
.wholesale__title {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.03em; color: white;
  line-height: 1.15; margin-bottom: 8px;
  text-wrap: balance;
}
.wholesale__sub {
  font-size: 13px; color: oklch(1 0 0 / 0.68);
  line-height: 1.6; margin-bottom: 20px;
}
.wholesale__pillars {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px; margin-bottom: 22px;
}
.pillar {
  display: flex; align-items: flex-start; gap: 8px;
}
.pillar__icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: oklch(1 0 0 / 0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.pillar__label { font-size: 12px; font-weight: 700; color: white; }
.pillar__desc  { font-size: 11px; color: oklch(1 0 0 / 0.55); margin-top: 1px; }
.wholesale__price {
  background: oklch(1 0 0 / 0.10);
  border: 1px solid oklch(1 0 0 / 0.18);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.wholesale__price .label { font-size: 11px; color: oklch(1 0 0 / 0.55); }
.wholesale__price .amount { font-size: 28px; font-weight: 800; color: white; letter-spacing: -0.04em; }
.wholesale__price .note   { font-size: 10px; color: oklch(1 0 0 / 0.45); margin-top: 1px; }

/* ── HOW IT WORKS ── */
.hiw__steps {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 20px;
}
.hiw__step {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px;
}
.hiw__num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hiw__step-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.hiw__step-desc  { font-size: 12px; color: var(--muted); line-height: 1.55; }

/* ── TRUST ── */
.trust { background: var(--surface); }
.trust__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.trust-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 14px;
}
.trust-item__icon  { font-size: 24px; margin-bottom: 8px; }
.trust-item__title { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.trust-item__desc  { font-size: 11px; color: var(--muted); line-height: 1.5; }

/* ── SHIPPING TABLE ── */
.shipping__tabs {
  display: flex; gap: 8px; margin-bottom: 16px;
}
.shipping__tab {
  flex: 1; padding: 10px; border-radius: var(--r-md);
  border: 1.5px solid var(--line); background: var(--bg);
  font-size: 13px; font-weight: 700; color: var(--muted);
  cursor: pointer; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.shipping__tab.active {
  background: var(--primary-light);
  border-color: oklch(0.82 0.09 278);
  color: var(--primary-dark);
}
.shipping__tab-flag { font-size: 20px; }
.shipping-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 20px;
  max-width: 520px;
}
.shipping-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.shipping-row:last-child { border-bottom: none; }
.shipping-row__label { color: var(--muted); }
.shipping-row__val   { font-weight: 700; color: var(--ink); }
.shipping-row__val--hi { color: var(--primary-dark); }

/* ── POLICIES ── */
.policies__grid {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 20px;
}
.policy-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px;
  display: flex; align-items: flex-start; gap: 12px;
}
.policy-card__icon {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.policy-card__title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.policy-card__body  { font-size: 12px; color: var(--muted); line-height: 1.6; }
.policy-card__body strong { color: var(--ink); font-weight: 600; }

/* ── CTA ── */
.cta-block {
  background: linear-gradient(145deg, oklch(0.962 0.018 278), oklch(0.970 0.014 245));
  border: 1px solid oklch(0.88 0.022 278);
  border-radius: var(--r-xl);
  padding: 32px 20px; text-align: center;
}
.cta-block__title {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.03em; color: var(--ink);
  text-wrap: balance; margin-bottom: 8px;
}
.cta-block__sub {
  font-size: 14px; color: var(--muted);
  line-height: 1.65; margin-bottom: 22px;
}
.cta-block__actions { display: flex; flex-direction: column; gap: 10px; }
.cta-block__note { font-size: 11px; color: var(--subtle); margin-top: 12px; }

/* ── FOOTER ── */
.footer {
  background: oklch(0.13 0.016 270);
  color: oklch(0.68 0.010 270);
  padding: 40px 0 24px;
}
.footer__logo { font-size: 17px; font-weight: 800; color: white; letter-spacing: -0.03em; margin-bottom: 8px; }
.footer__logo span { color: white; }
.footer__tagline { font-size: 12px; line-height: 1.6; margin-bottom: 20px; }
.footer__links-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-bottom: 28px;
}
.footer__col-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: oklch(0.86 0.008 270);
  margin-bottom: 10px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: 13px; }
.footer__links a:active { color: white; }
.footer__pays { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.pay-badge {
  background: oklch(0.22 0.012 270);
  border: 1px solid oklch(0.30 0.008 270);
  border-radius: 6px; padding: 4px 10px;
  font-size: 11px; font-weight: 600;
  color: oklch(0.78 0.010 270);
}
.footer__bottom {
  border-top: 1px solid oklch(0.26 0.010 270);
  padding-top: 20px;
  font-size: 11px; line-height: 1.7;
}

/* ═══════════════════════════════
   TABLET  ≥ 768px
═══════════════════════════════ */
@media (max-width: 767px) {
  .hero__stats { display: none; }
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .bottom-nav { display: none; }

  .top-nav { height: 64px; }
  .top-nav__inner { padding: 0 24px; }
  .top-nav__logo { font-size: 21px; }

  .top-nav__desktop-links {
    display: flex; align-items: center; gap: 24px; list-style: none;
    margin-left: 32px;
  }
  .top-nav__desktop-links a {
    font-size: 14px; font-weight: 500; color: var(--muted);
  }
  .top-nav__desktop-links a:hover { color: var(--ink); }

  .container { padding: 0 24px; }
  .section { padding: 56px 0; }
  .section-title { font-size: 28px; }

  .hero { padding: 48px 0 56px; }
  .hero__actions { flex-direction: row; }
  .hero__stats { grid-template-columns: repeat(4, 1fr); }
  .hero__strip { padding: 24px 24px 4px; margin: 0 -24px; }
  .hero__pill  { width: 120px; height: 155px; }

  .products__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .product-card__name { font-size: 14px; }
  .product-card__price { font-size: 18px; }

  .wholesale__pillars { grid-template-columns: repeat(4, 1fr); }
  .wholesale { border-radius: var(--r-xl); padding: 36px 32px; }

  .hiw__steps {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .trust__grid { grid-template-columns: repeat(3, 1fr); }

  .shipping__tabs { max-width: 360px; }

  .policies__grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
  }

  .cta-block { padding: 48px 40px; }
  .cta-block__title { font-size: 28px; }
  .cta-block__actions { flex-direction: row; justify-content: center; }

  .footer__links-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════════
   DESKTOP  ≥ 1024px
═══════════════════════════════ */
@media (min-width: 1024px) {
  .container { padding: 0 32px; }
  .section { padding: 72px 0; }
  .section-title { font-size: 34px; }

  .hero { padding: 72px 0 80px; }
  .hero__inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
  }
  .hero__title { font-size: clamp(2.2rem, 3.5vw, 3.2rem); }
  .hero__sub { font-size: 17px; }
  .hero__strip { display: none; }
  .hero__stats { margin-top: 36px; }

  .hero__visual { display: block; }
  .hero__visual-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
    position: relative;
  }
  .hero__vcase {
    border-radius: var(--r-lg);
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-md);
    display: flex; align-items: flex-end;
    padding: 12px; position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .hero__vcase:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
  .hero__vcase:nth-child(2) { margin-top: 22px; }
  .hero__vcase:nth-child(6) { margin-top: -22px; }
  .hero__vcase-tag {
    background: oklch(1 0 0 / 0.88); backdrop-filter: blur(6px);
    border-radius: 6px; padding: 4px 9px;
    font-size: 10px; font-weight: 700; color: var(--ink);
    letter-spacing: 0.02em;
  }
  .vc1 { background: linear-gradient(145deg, oklch(0.88 0.08 278), oklch(0.72 0.16 278)); }
  .vc2 { background: linear-gradient(145deg, oklch(0.26 0.02 270), oklch(0.14 0.01 270)); }
  .vc2 .hero__vcase-tag { background: oklch(0 0 0 / 0.55); color: white; }
  .vc3 { background: linear-gradient(145deg, oklch(0.56 0.16 278), oklch(0.42 0.19 265)); }
  .vc4 { background: linear-gradient(145deg, oklch(0.94 0.03 0),   oklch(0.86 0.07 15));  }
  .vc5 { background: linear-gradient(145deg, oklch(0.42 0.10 25),  oklch(0.28 0.08 20));  }
  .vc5 .hero__vcase-tag { background: oklch(0 0 0 / 0.55); color: white; }
  .vc6 { background: linear-gradient(145deg, oklch(0.88 0.07 150), oklch(0.66 0.15 162)); }

  .hero__float-price {
    position: absolute; top: -14px; right: -14px;
    background: white; border-radius: var(--r-lg); padding: 14px 18px;
    box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  }
  .hero__float-price .from  { font-size: 11px; color: var(--muted); }
  .hero__float-price .price { font-size: 24px; font-weight: 800; color: var(--primary-dark); letter-spacing: -0.03em; }
  .hero__float-price .per   { font-size: 11px; color: var(--muted); }
  .hero__float-moq {
    position: absolute; bottom: -10px; left: -14px;
    background: var(--primary); color: white;
    border-radius: var(--r-md); padding: 10px 16px;
    box-shadow: 0 4px 16px oklch(0.50 0.19 278 / 0.42);
    font-size: 12px; font-weight: 700;
  }
  .hero__float-moq span { display: block; font-size: 10px; font-weight: 400; opacity: 0.78; margin-top: 1px; }

  .products__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }

  .wholesale {
    display: grid; grid-template-columns: 1fr auto;
    gap: 48px; align-items: center;
    padding: 56px 48px;
  }
  .wholesale__pillars { grid-template-columns: repeat(4, 1fr); margin-bottom: 0; }
  .wholesale__cta-col { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; min-width: 240px; }

  .hiw__steps { grid-template-columns: repeat(4, 1fr); }

  .trust__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .shipping__cards { display: block; }
  .shipping__tabs { display: flex; }

  .policies__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .footer__links-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: no-preference) {
  .hero__pill, .product-card {
    animation: fadeUp 0.45s ease both;
  }
  .hero__pill:nth-child(2) { animation-delay: 0.05s; }
  .hero__pill:nth-child(3) { animation-delay: 0.10s; }
  .hero__pill:nth-child(4) { animation-delay: 0.15s; }
  .hero__pill:nth-child(5) { animation-delay: 0.20s; }
  .hero__pill:nth-child(6) { animation-delay: 0.25s; }
  .hero__pill:nth-child(7) { animation-delay: 0.30s; }
  .hero__pill:nth-child(8) { animation-delay: 0.35s; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* ── Product Detail Modal ── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 900;
  background: oklch(0.10 0.02 270 / 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: flex-end;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-sheet {
  background: var(--bg);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  width: 100%; max-width: 760px;
  max-height: 90dvh;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 -8px 48px oklch(0.18 0.012 270 / 0.22);
  animation: slideUp 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.modal-handle {
  width: 36px; height: 4px;
  background: var(--line); border-radius: 2px;
  margin: 10px auto 0;
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px 12px;
  border-bottom: 1px solid var(--line);
}
.modal-title { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; }
.modal-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface2); border: none; cursor: pointer;
  font-size: 16px; display: flex; align-items: center; justify-content: center;
}
.modal-body { overflow-y: auto; padding: 0 16px 24px; flex: 1; }
.modal-price-tag {
  display: inline-block;
  font-size: 18px; font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  margin: 12px 0 4px;
}
.modal-section-title {
  font-size: 11px; font-weight: 700;
  color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase;
  margin: 16px 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.model-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px;
}
.model-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px;
  background: var(--surface);
  border-radius: var(--r-sm);
  font-size: 12px;
}
.model-item__name { font-weight: 600; color: var(--ink); }
.model-item__price { font-weight: 800; color: var(--primary-dark); font-size: 13px; }
.model-item__badge {
  font-size: 9px; font-weight: 700; padding: 1px 5px; border-radius: 4px;
  background: oklch(0.95 0.04 278); color: var(--primary-dark);
  margin-left: 4px;
}
.model-item--coming { opacity: 0.55; }
.modal-note {
  font-size: 11px; color: var(--muted); margin-top: 16px;
  padding: 10px 12px;
  background: oklch(0.97 0.01 278);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--primary-mid);
}
.expand-btn {
  width: 100%; margin-top: 10px;
  padding: 9px; border-radius: var(--r-md);
  background: var(--primary-light);
  border: 1.5px solid oklch(0.82 0.09 278);
  color: var(--primary-dark);
  font-size: 12px; font-weight: 700;
  cursor: pointer; letter-spacing: 0.01em;
  transition: background 0.15s;
}
.expand-btn:active { background: oklch(0.88 0.07 278); }

/* ═══════════════════════════════
   WP / KADENCE OVERRIDES (front page only)
═══════════════════════════════ */
/* Hide Kadence parent header & footer — the design ships its own */
#masthead, #colophon { display: none !important; }

/* Neutralise Kadence element-level margins so the design reset holds */
h1, h2, h3, h4, h5, h6, p, ul, ol, figure { margin: 0; padding: 0; }
.hero__title { margin-bottom: 12px; }
.wholesale__title { margin-bottom: 8px; }
.cta-block__title { margin-bottom: 8px; }
