/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary-color: #161173;
    --primary-dark: #0f0b4d;
    --primary-light: #2a1f9e;
    --secondary-color: #647aa3;
    --accent-color: #f0ad4e;
    --accent-hover: #e09d3e;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-lighter: #999999;
    --text-white: #ffffff;
    --price-color: #1a1a1a;
    --bg-light: #f8f9fa;
    --bg-lighter: #fafbfc;
    --bg-white: #ffffff;
    --bg-dark: #1a1a2e;
    --border-color: #e0e0e0;
    --border-light: #f0f0f0;
    
    /* Fonts */
    --font-primary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-button: 'Montserrat', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --border-radius: 10px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Hero Overlay */
    --hero-overlay: rgba(22, 17, 115, 0.4);
}



