/* ==================================================
   THEME VARIABLES
================================================== */
:root {
    --primary: #ec6044;
    --secondary: #0d6efd;
    --primary-dark: #af3c25;
    --sidebar-width: 280px;
    --bg: #ffffff;
    --card-bg: #ffffff;
    --text: #222222;
    --muted-text: #666666;
    --border: #e5e5e5;

    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 28px;

    --shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* ---------------- DARK THEME ---------------- */
[data-theme="dark"] {
    --bg: #121212;
    --card-bg: #1e1e1e;
    --text: #f1f1f1;
    --muted-text: #b5b5b5;
    --border: #2c2c2c;
    --shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}