/**
 * CSS Variables - Fiolas Country & Language Selector
 */

:root {
    /* Brand Colors */
    --brand-primary: #000000;
    --brand-secondary: #f5f5f0;
    --brand-accent: #d4af37;
    
    /* Popup Colors */
    --popup-bg: #f5f5f0;
    --popup-border: #e0e0d8;
    --popup-shadow: rgba(0, 0, 0, 0.15);
    
    /* Text Colors */
    --text-primary: #000000;
    --text-secondary: #666666;
    --text-white: #ffffff;
    
    /* Button Colors */
    --btn-primary-bg: #000000;
    --btn-primary-text: #ffffff;
    --btn-primary-hover: #333333;
    
    /* Dropdown Colors */
    --dropdown-bg: #ffffff;
    --dropdown-border: #e0e0d8;
    --dropdown-hover: #f9f9f7;
    --dropdown-shadow: rgba(0, 0, 0, 0.1);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    
    /* Z-index */
    --z-popup: 9999;
    --z-dropdown: 10000;
    
    /* Flag Size */
    --flag-size: 24px;
}
