/* ===========================================
   MSL Mega Menu - Design Tokens
   =========================================== */

:root {
  /* Colors - Primary */
  --color-header-bg: #ffffff;
  --color-header-text: #1a1a1a;
  --color-utility-bg: #4a4a38;
  --color-utility-text: #ffffff;
  --color-accent: #8b2635;
  --color-accent-hover: #a62d40;

  /* Colors - Backgrounds */
  --color-bg-light: #f5f0e6;
  --color-bg-white: #ffffff;
  --color-bg-tint: #f9f7f3;
  --color-bg-featured: #faf8f4;

  /* Colors - Text */
  --color-text-primary: #1a1a1a;
  --color-text-secondary: #4a4a4a;
  --color-text-muted: #777777;
  --color-text-light: #999999;

  /* Colors - Borders & Dividers */
  --color-border: #e5e0d5;
  --color-border-light: #f0ebe3;
  --color-divider: #d9d4c9;

  /* Typography - Font Families */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Helvetica Neue', sans-serif;
  --font-nav: 'Work Sans', 'Helvetica Neue', sans-serif;

  /* Typography - Font Sizes */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */

  /* Typography - Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;

  /* Typography - Line Heights */
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;

  /* Spacing - Base unit: 8px */
  --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 */

  /* Layout */
  --nav-height: 72px;
  --nav-height-mobile: 60px;
  --container-max: 1200px;
  --mega-menu-max: 1000px;

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

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Z-index layers */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
}
