/* Explain: Theme design tokens (colors, fonts) — single source of truth */
:root {
    --primary-color: #9d174d;
    --primary-hover: #be185d;
    --secondary-color: #f472b6;
    --background-color: #fdf2f8;
    --surface-color: #ffffff;
    --text-color: #4a0e26;
    --text-muted: #835c6e;
    --border-color: #fce7f3;
    --font-heading: 'Cairo', sans-serif;
    --font-body: 'Tajawal', sans-serif;
}