/**
 * CSS Variables - High Mimic Toys"R"Us Singapore
 *
 * @package ToyParadis
 * @since 1.0.2
 */

:root {
    /* Brand Colors */
    --primary-blue: #0057A0;
    --primary-blue-dark: #003d7a;
    --primary-green: #00A651;
    --primary-red: #E31E24;
    --accent-yellow: #FFD700;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #000000;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #f9f9f9;
    --bg-gray: #f5f5f5;
    --border-gray: #e5e5e5;
    
    /* Typography */
    --font-family-base: Arial, Helvetica, sans-serif;
    --font-family-heading: 'Arial Black', Arial, sans-serif;
    
    --font-size-xs: 11px;
    --font-size-sm: 13px;
    --font-size-base: 15px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    --font-size-2xl: 32px;
    --font-size-3xl: 48px;
    
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 30px;
    --spacing-2xl: 40px;
    --spacing-3xl: 50px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 15px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 15px 40px rgba(0,0,0,0.2);
    
    /* Z-Index */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 1000;
    --z-modal: 9999;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Layout */
    --container-max-width: 1400px;
    --header-height: 80px;
    --banner-height: 40px;
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    :root {
        /* Override colors for dark mode if needed */
        /* Currently not implemented to match target site */
    }
}
