/* Explain: Theme design tokens (colors, fonts) — single source of truth */
:root {
    --primary-color: #7a8b75;
    --primary-hover: #63735e;
    --secondary-color: #99a894;
    --accent-color: #c9d4c5;
    --background-color: #ffffff;
    --surface-color: #f8f9f7;
    --text-color: #2e3b29;
    --text-muted: #5e6b57;
    --border-color: #e3e8e1;
    --font-heading: 'Tajawal', sans-serif;
    --font-body: 'Cairo', sans-serif;
}
