/**
 * Design tokens — ecommerce frontend
 * Primary: #6C63FF | Secondary: #FF6584
 */

:root {
  /* ─── Brand / primary ─── */
  --color-primary: #6c63ff;
  --color-primary-dark: #5548d9;
  --color-primary-light: #8b84ff;

  /* ─── Secondary ─── */
  --color-secondary: #ff6584;
  --color-secondary-dark: #e04d6b;

  /* ─── Semantic ─── */
  --color-success: #22c55e;
  --color-danger: #ef4444;
  --color-warning: #f59e0b;
  --color-info: #3b82f6;

  /* ─── Text ─── */
  --color-text-primary: #1a1a24;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;

  /* ─── Surfaces ─── */
  --color-bg: #ffffff;
  --color-bg-secondary: #f8f9fc;
  --color-bg-card: #ffffff;

  /* ─── Borders ─── */
  --color-border: #e5e7eb;
  --color-border-light: #f3f4f6;

  /* ─── Shadows ─── */
  --shadow-sm: 0 1px 2px rgba(26, 26, 36, 0.06);
  --shadow-md: 0 4px 12px rgba(26, 26, 36, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 26, 36, 0.12);

  /* ─── Radius ─── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* ─── Typography ─── */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, sans-serif;

  --font-size-xs: 0.75rem; /* 12px */
  --font-size-sm: 0.875rem; /* 14px */
  --font-size-base: 1rem; /* 16px */
  --font-size-md: 1.125rem; /* 18px */
  --font-size-lg: 1.25rem; /* 20px */
  --font-size-xl: 1.5rem; /* 24px */
  --font-size-2xl: 1.875rem; /* 30px */
  --font-size-3xl: 2rem; /* 32px */
  --font-size-4xl: 2.25rem; /* 36px */

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;

  /* ─── Spacing (4px scale: n × 4px) ─── */
  --spacing-1: 0.25rem; /* 4px */
  --spacing-2: 0.5rem; /* 8px */
  --spacing-3: 0.75rem; /* 12px */
  --spacing-4: 1rem; /* 16px */
  --spacing-5: 1.25rem; /* 20px */
  --spacing-6: 1.5rem; /* 24px */
  --spacing-7: 1.75rem; /* 28px */
  --spacing-8: 2rem; /* 32px */
  --spacing-9: 2.25rem; /* 36px */
  --spacing-10: 2.5rem; /* 40px */
  --spacing-11: 2.75rem; /* 44px */
  --spacing-12: 3rem; /* 48px */
  --spacing-13: 3.25rem; /* 52px */
  --spacing-14: 3.5rem; /* 56px */
  --spacing-15: 3.75rem; /* 60px */
  --spacing-16: 4rem; /* 64px */

  /* ─── Motion ─── */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* ─── Z-index scale ─── */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-toast: 400;
}
