:root {
  /* Brand palette — GMOTOX "Carbono & Lima": cool graphite base (not green-tinted
     black), lime-green accent from the logo, steel-grey as the secondary/structure
     color for badges and tags. Refacciones y accesorios de moto. */
  --color-bg: #16181A;
  --color-surface: #1D2022;
  --color-surface-2: #262A2C;
  --color-ink: #F1F3F0;
  --color-ink-soft: #9AA39C;
  --color-ink-faint: #6B7378;
  --color-border: #33383B;
  --color-accent: #C7EA46;
  --color-accent-dark: #A9CC2E;
  --color-accent-soft: #23261B;
  --color-secondary: #7C8B93;
  --color-secondary-ink: #0E1416;
  --color-success: #6FCF52;
  --color-danger: #E5484D;
  --color-danger-soft: #2E1414;
  --color-overlay: rgba(0, 0, 0, 0.7);

  /* Reserved exclusively for the purchase action (WhatsApp) — never decorative */
  --color-cta: #25D366;
  --color-cta-dark: #1DA851;
  --color-cta-soft: #123322;

  --font-display: 'Rajdhani', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Rajdhani', 'Manrope', sans-serif;

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 10px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 1px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 28px rgba(0, 0, 0, 0.1);
  --shadow-float: 0 6px 18px rgba(37, 211, 102, 0.28);

  --header-h: 60px;
  --navbar-h: 64px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 160ms;
  --dur-med: 280ms;
  --dur-slow: 420ms;

  --container: 560px;
  --container-wide: 560px;
}

@media (min-width: 900px) {
  :root {
    --container-wide: 1360px;
    --header-h: 72px;
  }
}

/* GMOTOX ships dark-only by design (matches the brand's black/lime identity),
   so no separate light/dark toggle logic is defined here. */
