:root {
  /* Colors — Light (StatiCart: violet + amber) */
  --color-primary: #6d28d9;
  --color-primary-hover: #5b21b6;
  --color-accent: #f59e0b;
  --color-accent-hover: #d97706;
  --color-success: #059669;
  --color-success-hover: #047857;
  --color-warning: #f59e0b;
  --color-warning-hover: #d97706;
  --color-danger: #e11d48;
  --color-danger-hover: #be123c;
  --color-info: #6d28d9;
  --color-info-hover: #5b21b6;
  --color-text: #292524;
  --color-text-muted: #78716c;
  --color-text-inverse: #fafaf9;
  --color-bg: #fafaf9;
  --color-surface: #fff;
  --color-border: #d6d3d1;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;

  /* Typography */
  --font-sans: system-ui, -apple-system, sans-serif;
  --font-display: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  --font-mono: ui-monospace, monospace;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.5rem;

  /* Borders */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgb(0 0 0 / 5%);
  --shadow-md: 0 4px 6px rgb(0 0 0 / 7%);
}

/* Dark mode */
[data-theme='dark'] {
  --color-primary: #8b5cf6;
  --color-primary-hover: #a78bfa;
  --color-accent: #fbbf24;
  --color-accent-hover: #f59e0b;
  --color-success: #34d399;
  --color-success-hover: #6ee7b7;
  --color-warning: #fbbf24;
  --color-warning-hover: #fcd34d;
  --color-danger: #fb7185;
  --color-danger-hover: #fda4af;
  --color-info: #8b5cf6;
  --color-info-hover: #a78bfa;
  --color-text: #e7e5e4;
  --color-text-muted: #a8a29e;
  --color-text-inverse: #1c1917;
  --color-bg: #1c1917;
  --color-surface: #292524;
  --color-border: #44403c;
  --shadow-sm: 0 1px 3px rgb(0 0 0 / 30%), 0 0 8px rgb(255 255 255 / 12%);
  --shadow-md: 0 4px 8px rgb(0 0 0 / 40%), 0 0 16px rgb(255 255 255 / 10%);
  --shadow-glow: 0 0 8px rgb(255 255 255 / 6%);
}
