:root {
    /* Color Palette matching exact hues of Lunelle brand stylebook */
    --color-bg-light: #FFF8F6;
    --color-bg-card: #FFFFFF;
    --color-brand-primary: #E96B88;
    --color-brand-secondary: #F68B94;
    --color-accent-pink: #E85A82;
    --color-accent-orange: #F99F73;
    --color-accent-blue: #7FBBE6;
    --color-text-dark: #2D2325;
    --color-text-muted: #6B5E61;
    --color-border: #F1E5E2;
    
    /* Typography Definitions */
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    /* Shadows & Elevation Profiles */
    --shadow-soft: 0 10px 40px rgba(233, 107, 136, 0.05);
    --shadow-card: 0 20px 50px rgba(45, 35, 37, 0.04);
    --shadow-floating: 0 30px 60px rgba(45, 35, 37, 0.07);
    
    /* Border Radius Definitions */
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --radius-pill: 100px;
    
    /* Standard Layout Timing Definitions */
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}