/* SWii Design System - CSS Variables */
:root {
  /* Primary Colors */
  --navy: #0F172A;
  --navy-light: #1E293B;
  --navy-lighter: #334155;
  --blue: #2563EB;
  --blue-light: #3B82F6;
  --blue-lighter: #60A5FA;
  --blue-dark: #1D4ED8;
  --blue-bg: #EFF6FF;

  /* Accent Colors */
  --cyan: #06B6D4;
  --cyan-light: #22D3EE;
  --cyan-dark: #0891B2;
  --cyan-bg: #ECFEFF;

  /* Eco Colors (green = eco/validation ONLY) */
  --green: #22C55E;
  --green-light: #4ADE80;
  --green-dark: #16A34A;
  --green-bg: #F0FDF4;

  /* Status Colors */
  --red: #EF4444;
  --red-light: #FCA5A5;
  --red-dark: #DC2626;
  --red-bg: #FEF2F2;
  --orange: #F97316;
  --orange-bg: #FFF7ED;
  --yellow: #EAB308;
  --yellow-bg: #FEFCE8;

  /* DPE Energy Rating Colors */
  --dpe-a: #15803D;
  --dpe-b: #22C55E;
  --dpe-c: #84CC16;
  --dpe-d: #EAB308;
  --dpe-e: #F97316;
  --dpe-f: #EF4444;
  --dpe-g: #DC2626;

  /* Surfaces */
  --surface: #FFFFFF;
  --surface-alt: #F7F8FC;
  --surface-hover: #F1F5F9;
  --surface-active: #E2E8F0;

  /* Text */
  --text: #0F172A;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
  --text-inverse: #FFFFFF;

  /* Borders */
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --border-focus: #2563EB;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  /* Font Weights */
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  /* Spacing (8px grid) */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Z-Index Scale */
  --z-base: 0;
  --z-dropdown: 60;
  --z-sticky: 70;
  --z-modal: 80;
  --z-toast: 90;
  --z-tooltip: 100;

  /* Transitions */
  --transition-fast: 150ms ease-out;
  --transition-normal: 300ms ease-out;
  --transition-slow: 500ms ease-out;

  /* Layout */
  --header-height: 64px;
  --sidebar-width: 260px;
  --sidebar-collapsed: 72px;
  --mobile-nav-height: 64px;
  --content-max-width: 1280px;
}
