:root {
    /* Color Palette */
    --color-primary: #111111;
    --color-secondary: #fdfdfd;
    --color-accent: #c09d5c; /* Elegant gold tone */
    
    --color-text-main: #1a1a1a;
    --color-text-muted: #666666;
    --color-text-light: #999999;
    
    --color-bg-main: #ffffff;
    --color-bg-alt: #f7f7f7;
    --color-border: #e0e0e0;
    --color-border-dark: #cccccc;
    
    --color-error: #e53e3e;
    --color-success: #38a169;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacings */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 5rem;
    
    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* 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-hover: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark mode overrides (optional fallback if needed, but primary is clean light) */
@media (prefers-color-scheme: dark) {
    :root {
        /* Subtle dark mode support to ensure it doesn't break, though we favor light mode for fashion */
    }
}
