/* 
  Baked By Bostik - Design System 
  Theme: Light, Modern Boutique, Clean
*/

:root {
  /* --- Colors --- */
  /* Primary - Deep Navy (Trust, Premium) */
  --color-primary: #1A2A3A; 
  --color-primary-light: #2C4259;
  
  /* Accent - Blush Pink (Warmth, Boutique) */
  --color-accent: #E8B4B8; 
  --color-accent-hover: #D69CA0;
  
  /* Neutral / Backgrounds */
  --color-bg-body: #FDFBF7; /* Warm Cream/Off-white */
  --color-bg-white: #FFFFFF;
  --color-text-main: #2D2D2D; /* Charcoal, softer than black */
  --color-text-muted: #666666;
  --color-border: #E5E0D8;

  /* --- Typography --- */
  /* Headings: Outfit (Modern Sans) */
  --font-heading: 'Outfit', sans-serif;
  /* Body: Inter (Clean, Readable) */
  --font-body: 'Inter', sans-serif;

  /* Scale */
  --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 */
  --text-3xl: 2rem;     /* 32px */
  --text-4xl: 2.5rem;   /* 40px */
  --text-5xl: 3.5rem;   /* 56px */

  /* --- Spacing --- */
  --space-1: 0.25rem; /* 4px */
  --space-2: 0.5rem;  /* 8px */
  --space-3: 0.75rem; /* 12px */
  --space-4: 1rem;    /* 16px */
  --space-6: 1.5rem;  /* 24px */
  --space-8: 2rem;    /* 32px */
  --space-12: 3rem;   /* 48px */
  --space-16: 4rem;   /* 64px */
  --space-24: 6rem;   /* 96px */

  /* --- Glassmorphism & Shadows --- */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --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);
  
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: 1px solid rgba(255, 255, 255, 0.5);
  --glass-backdrop: blur(12px);

  /* --- Border Radius --- */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
  
  /* --- Transitions --- */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
