/* ========================================
   XS Autoparts — Design Tokens
   "Industrial Premium" aesthetic
   ======================================== */

:root {
  /* Primary — Deep automotive navy */
  --color-primary: #0c1a2e;
  --color-primary-light: #162740;
  --color-primary-mid: #1e3352;
  --color-primary-dark: #060e1a;

  /* Accent — Vivid automotive orange */
  --color-accent: #ff5e00;
  --color-accent-hover: #e65400;
  --color-accent-glow: rgba(255, 94, 0, 0.25);
  --color-accent-light: rgba(255, 94, 0, 0.08);

  /* Secondary accent — Electric amber for highlights */
  --color-amber: #ffb800;

  /* WhatsApp Green */
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #20bd5a;

  /* Neutrals */
  --color-white: #ffffff;
  --color-bg: #fafafa;
  --color-bg-alt: #f0f1f3;
  --color-bg-dark: #0c1a2e;
  --color-text: #111827;
  --color-text-secondary: #4b5563;
  --color-text-light: #6b7280;
  --color-text-on-dark: #f1f5f9;
  --color-border: #e2e5ea;
  --color-border-light: #f0f1f3;

  /* Status */
  --color-success: #10b981;
  --color-star: #f59e0b;

  /* Typography — Distinctive automotive fonts */
  --font-display: 'Bebas Neue', sans-serif;       /* Big hero headlines */
  --font-heading: 'Rajdhani', sans-serif;          /* Section headings */
  --font-body: 'DM Sans', sans-serif;              /* Body text */

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.75rem;
  --fs-5xl: 4rem;
  --fs-6xl: 5.5rem;

  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1220px;
  --container-padding: 0 28px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows — layered depth system */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.06), 0 2px 16px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08), 0 4px 40px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.1), 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-accent: 0 8px 32px rgba(255, 94, 0, 0.2);

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
