/* Explain: Theme design tokens (colors, fonts) — single source of truth - */
:root {
    --primary-color: #ea580c;
    --primary-hover: #c2410c;
    --secondary-color: #f97316;
    --accent-color: #fb923c;
    --background-color: #ffffff;
    --surface-color: #fff7ed;
    --text-color: #1f2937;
    --text-muted: #4b5563;
    --border-color: #fdba74;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}