:root {
    /* Colors */
    --color-primary: #004D2C; /* Vert Profond Premium (Luxury Green) */
    --color-primary-light: #4CAF50; /* Vert Lumineux Actif */
    --color-secondary: #F57C00; /* Orange Solaire */
    --color-secondary-hover: #E65100;
    --color-accent: #F57C00; /* Same as orange for consistency */
    --color-accent-red: #D32F2F; /* Rouge ROKO */
    --color-text: #1A2420; /* Couleur de Texte Sombre */
    --color-text-dark: #1A2420;
    --color-text-muted: #5A6E65;
    --color-white: #ffffff;
    --color-bg-light: #F8F9F8; /* Gris de Fond */
    --color-bg-dark: #07120E;
    --color-border: #E0E0E0;
    
    --color-gray-100: #F4F6F5;
    --color-gray-200: #E2E6E4;
    --color-gray-300: #ABB5B0;
    --color-gray-700: #4B5551;

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;
    --font-body: var(--font-primary);
    
    /* Spacing & Layout */
    --container-max-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Effects */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-premium: 0 10px 30px rgba(0,0,0,0.12);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Header & Navigation */
    --header-height: 80px;
    --header-height-shrink: 70px;
    
    /* Z-indexes */
    --z-back-to-top: 900;
    --z-header: 1000;
    --z-popup: 2000;
    --z-lightbox: 3000;
    --z-loader: 9999;
}
