:root {
  /* Colors - Light Theme (High Fashion / Cosmetic) */
  --color-primary: #000000; /* Deep Black for high contrast */
  --color-primary-hover: #222222;
  --color-secondary: #E1B1A6; /* Rose Gold / Nude */
  --color-secondary-light: #F7EBE8; /* Very soft blush */
  --color-bg: #FFFFFF; /* Pure White */
  --color-surface: #F9F9F9; /* Off white for product cards */
  --color-text: #1A1A1A;
  --color-text-muted: #737373;
  --color-border: #E5E5E5;
  
  /* Accent for Beauty */
  --color-accent: #D32F2F; /* Classic Red Lip */
  
  /* Typography */
  --font-primary: 'Playfair Display', Didot, serif; /* Editorial Serif */
  --font-secondary: 'Inter', system-ui, -apple-system, sans-serif; /* Clean Sans */
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;
  --space-3xl: 10rem;
  
  /* Radius & Shadows - Cosmetics look glossy but clean */
  --radius-sm: 2px; 
  --radius-md: 8px; /* Slightly rounded like compacts */
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.04); 
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(225, 177, 166, 0.2); /* Rose gold tinted shadow */
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Glassmorphism / Header */
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(229, 229, 229, 0.5);
}

[data-theme="dark"] {
  /* Colors - Dark Theme (Night Glamour) */
  --color-primary: #FFFFFF; 
  --color-primary-hover: #E5E5E5;
  --color-secondary: #E1B1A6; 
  --color-secondary-light: #2A1C1A; /* Darkened blush */
  --color-bg: #0C0C0C; /* Rich Black */
  --color-surface: #151515; /* Charcoal */
  --color-text: #F5F5F5;
  --color-text-muted: #A3A3A3;
  --color-border: #262626;
  
  --glass-bg: rgba(12, 12, 12, 0.95);
  --glass-border: rgba(38, 38, 38, 0.5);
  
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.5); 
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.8);
  --shadow-lg: 0 20px 50px rgba(225, 177, 166, 0.1); 
}
