/* ==============================================
   BuyNow Design Tokens — Indigo Theme
   ============================================== */

:root {
  /* ——— Primary ——— */
  --primary: #4F46E5;
  --primary-hover: #6366F1;
  --primary-dark: #4338CA;
  --primary-darker: #3730A3;
  --primary-light: #EEF2FF;
  --primary-alpha-20: rgba(79, 70, 229, 0.2);
  --primary-alpha-25: rgba(79, 70, 229, 0.25);

  /* ——— Foreground / Text ——— */
  --foreground: #111827;
  --foreground-overlay: rgba(17, 24, 39, 0.91);
  --text-secondary: #4B5563;
  --text-muted: #6B7280;
  --text-subtle: #64748B;
  --text-light: #94A3B8;
  --text-lighter: #CBD5E1;
  --text-on-dark: #F8FAFC;
  --text-white: #FFFFFF;
  --text-white-muted: rgba(255, 255, 255, 0.6);

  /* ——— Backgrounds ——— */
  --bg-white: #FFFFFF;
  --bg-alt: #F6F6F6;
  --bg-dark: #111827;
  --bg-dark-secondary: #1F2937;
  --overlay-dark: rgba(0, 0, 0, 0.4);
  --white-alpha-low: rgba(255, 255, 255, 0.13);
  --white-alpha-mid: rgba(255, 255, 255, 0.2);

  /* ——— Semantic ——— */
  --success: #22C55E;
  --success-dark: #16A34A;
  --success-text: #14532D;
  --success-muted: #DCFCE7;
  --error: #EF4444;
  --info: #2563EB;

  /* ——— Border ——— */
  --border: #E2E8F0;
  --border-dark: #1F2937;

  /* ——— Radius ——— */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-pill: 9999px;

  /* ——— Typography ——— */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs: 0.6875rem;   /* 11px */
  --text-sm: 0.75rem;     /* 12px */
  --text-caption: 0.8125rem; /* 13px */
  --text-base: 0.875rem;  /* 14px */
  --text-md: 0.9375rem;   /* 15px */
  --text-body: 1rem;      /* 16px */
  --text-lg: 1.0625rem;   /* 17px */
  --text-xl: 1.125rem;    /* 18px */
  --text-2xl: 1.25rem;    /* 20px */
  --text-3xl: 1.375rem;   /* 22px */
  --text-4xl: 1.5rem;     /* 24px */
  --text-5xl: 2.25rem;    /* 36px */
  --text-6xl: 2.375rem;   /* 38px */
  --text-7xl: 2.5rem;     /* 40px */
  --text-8xl: 2.75rem;    /* 44px */
  --text-hero: 4rem;      /* 64px */

  /* ——— Spacing ——— */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-14: 56px;
  --space-16: 64px;
  --space-20: 80px;

  /* ——— Container ——— */
  --container-max: 1440px;
  --container-padding: 80px;
}

@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
    --text-hero: 2.25rem;
    --text-7xl: 1.75rem;
    --text-5xl: 1.5rem;
  }
}
