/* Explain: Theme design tokens (colors, fonts) — single source of truth */
:root {
    --primary-color: #ff7300; /* Pure Orange */
    --primary-hover: #e66800;
    --secondary-color: #172554; /* Dark Navy / Khely */
    --accent-color: #fb923c;
    --background-color: #fafafa;
    --surface-color: #ffffff;
    --text-color: #111827;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --font-heading: 'Cairo', sans-serif;
    --font-body: 'Cairo', sans-serif;
}
