:root {
    /* Brand Colors */
    --color-primary: #e5175b;
    --color-primary-hover: #C4104B;
    --color-primary-disabled: #e294ae;
    --color-dark: #372747;
    --color-gray-light: #ebe9ed;
    --color-gray-lighter: #f6f5f7;
    --color-purple-light: #f8f3fc;
    --color-gray-medium: #9684a7;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-border: #e1e1e1;
    
    /* Typography */
    --font-primary: "URW Geometric", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-heading: "COCOGOOSE", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-accent: "Config Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Font Sizes */
    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 21px;
    --text-2xl: 26px;
    --text-3xl: 30px;
    --text-4xl: 36px;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-full: 30px;
    --radius-circle: 50%;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* Container */
    --container-max: 1410px;
    --container-padding: 15px;
    
    /* Header */
    --header-height: 140px;
    --header-height-mobile: 60px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 1000;
    --z-tooltip: 1100;
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    :root {
        /* Can be customized for dark mode if needed */
    }
}
