:root {
    /* Brand Colors - Indian Food Experts */
    --color-primary: #003366;    /* Navy Blue - Trust/Regulation */
    --color-secondary: #2E8B57;  /* Sea Green - Food Safety/FSSAI Standard */
    --color-accent: #E07800;     /* Saffron - Indian Identity */
    
    /* Functional Colors */
    --color-background: #ffffff;
    --color-surface: #f8f9fa;
    --color-text-main: #1a1a1a;
    --color-text-light: #666666;
    --color-border: #e0e0e0;
    --color-success: #28a745;
    
    /* Typography */
    --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Roboto', system-ui, -apple-system, sans-serif;
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}
