/* Explain: Core theme design tokens: colors, typography, and spacing. - */
:root {
    --primary-color: #ea580c;      /* Brand Orange */
    --primary-hover: #c2410c;
    --secondary-color: #1e293b;    /* Slate Navy */
    --accent-color: #2563eb;       /* Tech Blue for badges/discounts */
    --background-color: #f8fafc;   /* Light gray surface */
    --surface-color: #ffffff;
    --text-color: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html.dark {
    --secondary-color: #0f172a;    
    --background-color: #020617;   
    --surface-color: #0f172a;      
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: #1e293b;
}