/* ── Theme: Purple (Default) ──────────────────── */
/* Default vars are in main.css :root */

/* ── Theme: Orange / Sunset ──────────────────── */
body.theme-orange {
    --bg-primary: #121014;
    --bg-secondary: #1c1820;
    --bg-tertiary: #28222e;
    --bg-input: #221c28;
    --border-color: #362d3e;
    --text-primary: #f0e8e4;
    --text-secondary: #b09d94;
    --text-muted: #705c53;
    --accent: #F97316;
    --accent-dim: rgba(249, 115, 22, 0.15);
    --shadow: 0 4px 24px rgba(18, 16, 20, 0.6);
}
body.theme-orange ::-webkit-scrollbar-thumb { background: #4a3a50; }
body.theme-orange ::-webkit-scrollbar-thumb:hover { background: #5a4a60; }

/* ── Theme: Blue / Ocean ─────────────────────── */
body.theme-blue {
    --bg-primary: #0c1015;
    --bg-secondary: #131a22;
    --bg-tertiary: #1a2430;
    --bg-input: #162030;
    --border-color: #243040;
    --text-primary: #e4e8f0;
    --text-secondary: #94a0b0;
    --text-muted: #536070;
    --accent: #3B82F6;
    --accent-dim: rgba(59, 130, 246, 0.15);
    --shadow: 0 4px 24px rgba(12, 16, 21, 0.6);
}
body.theme-blue ::-webkit-scrollbar-thumb { background: #2a3a50; }
body.theme-blue ::-webkit-scrollbar-thumb:hover { background: #3a4a60; }

/* ── Theme: Emerald / Green ──────────────────── */
body.theme-emerald {
    --bg-primary: #0a120e;
    --bg-secondary: #101d16;
    --bg-tertiary: #182a20;
    --bg-input: #142418;
    --border-color: #1e3a28;
    --text-primary: #e4f0e8;
    --text-secondary: #94b0a0;
    --text-muted: #536e5c;
    --accent: #10B981;
    --accent-dim: rgba(16, 185, 129, 0.15);
    --shadow: 0 4px 24px rgba(10, 18, 14, 0.6);
}
body.theme-emerald ::-webkit-scrollbar-thumb { background: #2a4a38; }
body.theme-emerald ::-webkit-scrollbar-thumb:hover { background: #3a5a48; }

/* ── Theme: Rose / Pink ─────────────────────── */
body.theme-rose {
    --bg-primary: #120a10;
    --bg-secondary: #1d1018;
    --bg-tertiary: #2a1822;
    --bg-input: #241420;
    --border-color: #3a1e30;
    --text-primary: #f0e4ec;
    --text-secondary: #b094a8;
    --text-muted: #6e5364;
    --accent: #F43F5E;
    --accent-dim: rgba(244, 63, 94, 0.15);
    --shadow: 0 4px 24px rgba(18, 10, 16, 0.6);
}
body.theme-rose ::-webkit-scrollbar-thumb { background: #4a2a3c; }
body.theme-rose ::-webkit-scrollbar-thumb:hover { background: #5a3a4c; }
