/* ═══════════════════════════════════════════════════════
   EVENTRA — Premium Navy & Gold Design System
   DARK:  Near-black + CSS diagonal lines + warm amber gold (Image 2)
   LITE:  Warm dark brown + gold (Image 2 login style)
   Font: Yatra One (display) + Noto Serif (serif) + DM Sans (ui)
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Yatra+One&family=Noto+Serif:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ══════════════════════════════════════════════════════
   DARK THEME (default) — Deep Navy + Gold
══════════════════════════════════════════════════════ */
:root {
  /* Near-black backgrounds — Image 2 style */
  --bg:            #09090E;
  --bg2:           #0D0D14;
  --bg3:           #111118;

  /* Card surfaces — dark charcoal panels */
  --surface:       #131319;
  --surface2:      #18181F;
  --surface3:      #1E1E27;
  --surface-hover: #242430;

  /* Borders — warm amber-tinted */
  --border:        rgba(201, 168, 76, 0.13);
  --border2:       rgba(201, 168, 76, 0.26);
  --border-gold:   rgba(201, 168, 76, 0.48);

  /* Gold palette — warm amber-gold from Image 2 */
  --gold:          #C9A84C;
  --gold-bright:   #D4A843;
  --gold-light:    #E8C060;
  --gold-dim:      rgba(201, 168, 76, 0.30);
  --gold-glow:     rgba(212, 168, 67, 0.18);

  /* Accent aliases */
  --accent:        #C9A84C;
  --accent-light:  #D4A843;
  --accent-dark:   #9A7A28;
  --saffron:       #C9A84C;
  --saffron-light: #D4A843;
  --vermillion:    #8C3820;
  --rose:          #6A3050;
  --ivory:         #D8D0C0;
  --ivory2:        #9A9080;

  /* Text — warm off-white on near-black */
  --ink:           #E8E0D0;
  --ink2:          rgba(232, 224, 208, 0.72);
  --ink3:          rgba(232, 224, 208, 0.38);
  --muted:         rgba(180, 170, 148, 0.50);

  /* Gradients */
  --gradient:         linear-gradient(135deg, #C9A84C 0%, #8A6820 100%);
  --gradient-bright:  linear-gradient(135deg, #D4A843 0%, #9A7020 100%);
  --gradient-gold:    linear-gradient(135deg, #E8C060, #C9A84C, #8A6820);
  --gradient-soft:    linear-gradient(135deg, rgba(201,168,76,0.10), rgba(138,104,32,0.05));
  --gradient-navy:    linear-gradient(135deg, #131319, #18181F);

  /* No background image — pure CSS diagonal line texture */
  --bg-image:      none;

  --sidebar-w:     268px;
  --radius:        12px;
  --radius-lg:     16px;
  --radius-sm:     8px;
  --radius-xs:     6px;

  --font-display:  'Yatra One', serif;
  --font-serif:    'Noto Serif', Georgia, serif;
  --font-sans:     'DM Sans', system-ui, sans-serif;

  --shadow:        0 4px 20px rgba(0,0,0,0.55);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.65);
  --shadow-gold:   0 4px 24px rgba(200,168,75,0.18);
  --shadow-card:   0 4px 20px rgba(0,0,0,0.50),
                   inset 0 1px 0 rgba(200,168,75,0.08),
                   inset 0 0 0 1px rgba(200,168,75,0.06);
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Dark theme body — near-black with subtle diagonal line texture (Image 2 style) */
body {
  font-family: var(--font-sans);
  min-height: 100vh;
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  color: var(--ink);
  background-color: var(--bg);
  position: relative;
}

/* Diagonal line texture — pure CSS, no image needed */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 40px,
      rgba(201, 168, 76, 0.032) 40px,
      rgba(201, 168, 76, 0.032) 41px
    );
  z-index: -2;
  pointer-events: none;
}

/* Subtle vignette + depth overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.30) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

a { text-decoration: none; color: inherit; }
button { font-family: var(--font-sans); cursor: pointer; }
input, select, textarea { font-family: var(--font-sans); }

/* ── Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: rgba(9,9,14,0.80); }
::-webkit-scrollbar-thumb { background: rgba(200,168,75,0.22); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(200,168,75,0.42); }

/* ═══════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════ */
.app-layout { display: flex; min-height: 100vh; }

/* ── Sidebar — dark navy glass with gold top border ─── */
.sidebar {
  width: var(--sidebar-w);
  background: rgba(13,13,20,0.90);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0;
  z-index: 100; overflow-y: auto; overflow-x: hidden;
  box-shadow: 2px 0 20px rgba(0,0,0,0.40);
}
/* Gold shimmer line along top of sidebar */
.sidebar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}

.sidebar-brand {
  padding: 22px 20px 18px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  position: relative;
}
.sidebar-logo {
  font-family: var(--font-display);
  font-size: 1.9rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.04em; line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(200,168,75,0.30));
}
.sidebar-tagline {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-top: 3px;
}

.sidebar-event {
  margin: 14px 14px 6px;
  background: rgba(200,168,75,0.06);
  border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
}
.sidebar-event-icon { font-size: 1.5rem; flex-shrink: 0; }
.sidebar-event-name { font-family: var(--font-serif); font-size: 0.88rem; color: var(--ink); line-height: 1.3; font-weight: 600; }
.sidebar-event-sub { font-size: 10px; color: var(--muted); margin-top: 2px; }

.sidebar-countdown {
  margin: 0 14px 8px;
  background: rgba(200,168,75,0.07); border: 1px solid rgba(200,168,75,0.18);
  border-radius: var(--radius-sm); padding: 8px 12px;
  display: flex; align-items: center; justify-content: space-between;
}
.countdown-val { font-family: var(--font-serif); font-size: 1.4rem; color: var(--gold-bright); font-weight: 700; }
.countdown-label { font-size: 10px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }

.sidebar-nav { flex: 1; padding: 6px 10px 16px; }
.nav-section-label {
  font-size: 8.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(200,168,75,0.28); padding: 14px 10px 5px;
}
.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 9px;
  color: var(--ink3); font-size: 13px;
  margin-bottom: 2px; transition: all 0.15s;
  cursor: pointer; border: none;
  background: transparent; width: 100%; text-align: left;
}
.nav-item:hover { background: rgba(200,168,75,0.07); color: var(--ink2); }
.nav-item.active {
  background: linear-gradient(90deg, rgba(200,168,75,0.16) 0%, rgba(200,168,75,0.04) 100%);
  color: var(--gold-bright);
  border-left: 2px solid var(--gold);
  padding-left: 8px; font-weight: 600;
}
.nav-icon { font-size: 1rem; width: 20px; text-align: center; flex-shrink: 0; }
.nav-badge {
  margin-left: auto; background: var(--gradient);
  color: #060F1C; font-size: 10px; font-weight: 700;
  padding: 1px 7px; border-radius: 50px; min-width: 18px; text-align: center;
}

.sidebar-footer { padding: 12px 14px; border-top: 1px solid var(--border); flex-shrink: 0; }
.sidebar-user { display: flex; align-items: center; gap: 10px; }
.sidebar-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 0.9rem; color: #060F1C; font-weight: 800;
  flex-shrink: 0; box-shadow: 0 0 0 2px rgba(200,168,75,0.30), 0 2px 8px rgba(0,0,0,0.40);
}
.sidebar-user-name { font-size: 13px; color: var(--ink2); font-weight: 500; }
.sidebar-user-event { font-size: 11px; color: var(--muted); }

/* ── Main Content ──────────────────────────────────── */
.main-content { margin-left: var(--sidebar-w); flex: 1; min-height: 100vh; display: flex; flex-direction: column; }

.topbar {
  background: rgba(13,13,20,0.88);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid var(--border);
  padding: 14px 28px;
  display: flex; align-items: center; gap: 16px;
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 2px 16px rgba(0,0,0,0.30);
}
/* Gold bottom accent line on topbar */
.topbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,168,75,0.35), transparent);
}
.topbar-title { font-family: var(--font-serif); font-size: 1rem; color: var(--ink2); font-weight: 600; }
.topbar-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.topbar-icon-btn {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(200,168,75,0.07); border: 1px solid var(--border);
  color: var(--ink2); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; transition: all 0.15s;
}
.topbar-icon-btn:hover { background: rgba(200,168,75,0.14); border-color: var(--border2); color: var(--gold-bright); }

.page-body { padding: 24px 28px; flex: 1; }
.page-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }
.page-title {
  font-family: var(--font-serif); font-size: 1.6rem;
  color: var(--ink); font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,0.50);
}
.page-subtitle { font-size: 13px; color: var(--muted); margin-top: 3px; }
.page-actions { display: flex; gap: 10px; align-items: center; }

/* ═══════════════════════════════════════════════════
   COMPONENTS — Premium Navy Glass
═══════════════════════════════════════════════════ */

/* ── Cards — deep navy glass with gold micro-border ── */
.card {
  background: rgba(19,19,25,0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
/* Gold shimmer on card top edge */
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,168,75,0.40), transparent);
}
/* Subtle navy inner glow */
.card::after {
  content: '';
  position: absolute;
  inset: 0; border-radius: var(--radius-lg);
  box-shadow: inset 0 0 40px rgba(10,40,100,0.15);
  pointer-events: none;
}
.card-title {
  font-family: var(--font-serif); font-size: 0.92rem;
  color: var(--gold-bright); font-weight: 700;
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.card-title-icon { font-size: 1.1rem; }
.card + .card { margin-top: 0; }
.card-body { padding: 20px 22px; }

/* ── Stat Cards ────────────────────────────────────── */
.stat-card {
  background: rgba(19,19,25,0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px 20px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.stat-card:hover { border-color: var(--border2); box-shadow: var(--shadow-card), var(--shadow-gold); }
/* Gold top line */
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-bright);
}
.stat-icon { font-size: 1.4rem; opacity: 0.50; margin-bottom: 8px; }
.stat-value { font-family: var(--font-serif); font-size: 1.9rem; color: var(--ink); font-weight: 700; line-height: 1; }
.stat-label { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 5px; }
.stat-sub { font-size: 12px; color: var(--ink3); margin-top: 4px; }
.stat-progress { margin-top: 10px; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.progress-track { height: 3px; background: rgba(200,168,75,0.10); border-radius: 50px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--gradient); border-radius: 50px; transition: width 0.6s ease; }
.progress-fill.over { background: linear-gradient(90deg, #8C3820, #D05040); }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-size: 13.5px; font-weight: 600;
  border: none; cursor: pointer; transition: all 0.2s;
  text-decoration: none; white-space: nowrap;
}
/* Gold primary — premium gradient with sparkle */
.btn-primary {
  background: var(--gradient-bright);
  color: #060F1C;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(200,168,75,0.40),
              0 1px 0 rgba(255,240,160,0.20) inset;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(200,168,75,0.55),
              0 1px 0 rgba(255,240,160,0.20) inset;
  filter: brightness(1.08);
}
.btn-primary:active { transform: translateY(0); }
/* Secondary — glass navy */
.btn-secondary {
  background: rgba(200,168,75,0.08);
  color: var(--ink2);
  border: 1px solid var(--border2);
}
.btn-secondary:hover { background: rgba(200,168,75,0.14); color: var(--gold-bright); border-color: var(--border-gold); }
.btn-ghost { background: transparent; color: var(--ink3); border: 1px solid var(--border); }
.btn-ghost:hover { background: rgba(200,168,75,0.06); color: var(--ink2); }
.btn-danger { background: rgba(140,56,32,0.14); color: #F08070; border: 1px solid rgba(140,56,32,0.24); }
.btn-danger:hover { background: rgba(140,56,32,0.24); }
.btn-sm { padding: 6px 14px; font-size: 12.5px; }
.btn-icon { padding: 8px; border-radius: var(--radius-sm); }
.btn-full { width: 100%; justify-content: center; }

/* ── Forms ─────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 7px;
}
.form-control {
  width: 100%; padding: 10px 14px;
  background: rgba(9,9,14,0.70);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); color: var(--ink);
  font-size: 13.5px; transition: all 0.15s;
}
.form-control:focus {
  outline: none; border-color: var(--gold);
  background: rgba(9,9,14,0.85);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.12), 0 0 12px rgba(200,168,75,0.08);
}
.form-control::placeholder { color: var(--ink3); }
select.form-control option { background: #131319; color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.form-grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 16px; }
@media (max-width: 900px) { .form-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .form-grid-2, .form-grid-3, .form-grid-4 { grid-template-columns: 1fr; } }

/* ── Checkbox / Form Check ─────────────────────────── */
.form-check { display: flex; align-items: center; gap: 10px; padding: 10px 14px; cursor: pointer; border-radius: var(--radius-sm); }
.form-check:hover { background: rgba(200,168,75,0.05); }
.form-check input[type="checkbox"] { accent-color: var(--gold); width: 15px; height: 15px; }
.form-check-label { font-size: 13.5px; color: var(--ink2); }

/* ── Tables ────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th { text-align: left; padding: 10px 14px; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); border-bottom: 1px solid var(--border); }
td { padding: 11px 14px; border-bottom: 1px solid rgba(200,168,75,0.05); font-size: 13.5px; color: var(--ink2); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(200,168,75,0.03); }

/* ── Badges ────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 50px; font-size: 11px; font-weight: 600; white-space: nowrap; }
.badge-success { background: rgba(60,180,90,0.12); color: #50D870; border: 1px solid rgba(60,180,90,0.22); }
.badge-warning { background: rgba(200,168,75,0.12); color: var(--gold-bright); border: 1px solid rgba(200,168,75,0.24); }
.badge-danger  { background: rgba(180,60,40,0.12); color: #F08070; border: 1px solid rgba(180,60,40,0.22); }
.badge-info    { background: rgba(60,120,200,0.12); color: #70A8E8; border: 1px solid rgba(60,120,200,0.22); }
.badge-neutral { background: rgba(200,168,75,0.06); color: var(--ink3); border: 1px solid var(--border); }
.badge-gold    { background: rgba(200,168,75,0.12); color: var(--gold-bright); border: 1px solid rgba(200,168,75,0.24); }
.badge-rose    { background: rgba(106,48,80,0.14); color: #C080A0; border: 1px solid rgba(106,48,80,0.22); }

/* ── Checkboxes ────────────────────────────────────── */
.ritual-check { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--border2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 10px; cursor: pointer; transition: all 0.15s; }
.ritual-check:hover { border-color: var(--gold); box-shadow: 0 0 6px rgba(200,168,75,0.25); }
.ritual-check.done { background: var(--gradient); border-color: var(--gold); color: #060F1C; }
.task-check { width: 18px; height: 18px; border-radius: 4px; border: 1.5px solid var(--border2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 10px; cursor: pointer; transition: all 0.15s; }
.task-check:hover { border-color: var(--gold); box-shadow: 0 0 6px rgba(200,168,75,0.25); }
.task-check.done { background: var(--gradient); border-color: var(--gold); color: #060F1C; }

/* ── Priority Pills ────────────────────────────────── */
.priority-urgent { color: #F08070; }
.priority-high   { color: var(--gold-bright); }
.priority-medium { color: var(--gold-dim); }
.priority-low    { color: var(--ink3); }

/* ── Section Heading ───────────────────────────────── */
.section-heading {
  font-family: var(--font-serif); font-size: 0.9rem; font-weight: 700;
  color: var(--gold-bright); margin-bottom: 16px; margin-top: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(200,168,75,0.14);
  display: flex; align-items: center; gap: 8px;
}

/* ── Muhurtham Block ───────────────────────────────── */
.muhurtham-block { background: rgba(19,19,25,0.88); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px 22px; position: relative; overflow: hidden; box-shadow: var(--shadow-card); }
.muhurtham-block::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-bright); }
.muhurtham-block::after { content: '🕉️'; position: absolute; right: 20px; bottom: 12px; font-size: 3.5rem; opacity: 0.05; }
.muhurtham-label { font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.muhurtham-time { font-family: var(--font-serif); font-size: 1.7rem; color: var(--gold-bright); font-weight: 700; }
.muhurtham-sub { font-size: 12.5px; color: var(--muted); margin-top: 4px; }

/* ── Budget Display ────────────────────────────────── */
.budget-amount { font-family: var(--font-serif); font-size: 1.6rem; color: var(--gold-bright); font-weight: 700; }
.budget-bar-wrap { margin-top: 8px; }
.budget-bar { height: 6px; background: rgba(200,168,75,0.10); border-radius: 50px; overflow: hidden; margin-top: 4px; }
.budget-bar-fill { height: 100%; border-radius: 50px; background: var(--gradient); transition: width 0.5s ease; }
.budget-bar-fill.over { background: linear-gradient(90deg, #8C3820, #D05040); }

/* ── Calendar ──────────────────────────────────────── */
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-header-day { text-align: center; padding: 8px 4px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--muted); }
.cal-day {
  min-height: 80px; padding: 7px 8px;
  background: rgba(13,31,54,0.65);
  border: 1px solid rgba(200,168,75,0.09);
  border-radius: 6px; cursor: pointer; transition: all 0.15s;
  backdrop-filter: blur(8px);
}
.cal-day:hover { background: rgba(13,31,54,0.85); border-color: var(--border2); }
.cal-day.today { border-color: rgba(200,168,75,0.50); background: rgba(200,168,75,0.08); box-shadow: 0 0 12px rgba(200,168,75,0.12); }
.cal-day.today .cal-num { color: var(--gold-bright); font-weight: 700; }
.cal-day.other-month { opacity: 0.28; }
.cal-num { font-size: 12.5px; color: var(--ink2); line-height: 1; }
.cal-events { margin-top: 4px; display: flex; flex-direction: column; gap: 2px; }
.cal-event-dot { font-size: 10.5px; padding: 1px 5px; border-radius: 3px; background: rgba(200,168,75,0.14); color: var(--gold-bright); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── Modal — premium navy glass ──────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,5,15,0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.22s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: rgba(11,11,16,0.94);
  backdrop-filter: blur(32px) saturate(1.4);
  -webkit-backdrop-filter: blur(32px) saturate(1.4);
  border: 1px solid rgba(200,168,75,0.22);
  border-radius: 20px;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.70),
    0 0 0 1px rgba(200,168,75,0.07),
    inset 0 1px 0 rgba(200,168,75,0.12);
  width: 90%; max-width: 540px; max-height: 88vh; overflow-y: auto;
  transform: scale(0.96) translateY(10px); transition: transform 0.22s ease;
  position: relative;
}
/* Gold shimmer on modal top */
.modal::before {
  content: '';
  position: absolute; top: 0; left: 40px; right: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0.50;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-lg { max-width: 720px; }
.modal-sm { max-width: 400px; }
.modal-header { padding: 22px 26px 16px; border-bottom: 1px solid rgba(200,168,75,0.10); display: flex; align-items: center; justify-content: space-between; }
.modal-title { font-family: var(--font-serif); font-size: 1.2rem; color: var(--gold-bright); font-weight: 700; letter-spacing: 0.01em; }
.modal-close { width: 30px; height: 30px; border-radius: 8px; background: rgba(200,168,75,0.08); border: 1px solid rgba(200,168,75,0.16); color: var(--ink3); font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.15s; }
.modal-close:hover { background: rgba(200,168,75,0.16); color: var(--gold-bright); border-color: var(--border-gold); }
.modal-body { padding: 20px 26px; }
.modal-footer { padding: 16px 26px 22px; border-top: 1px solid rgba(200,168,75,0.08); display: flex; gap: 10px; justify-content: flex-end; }

/* ── Toast ─────────────────────────────────────────── */
#toast-container { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 8px; z-index: 9999; }
.toast { padding: 12px 18px; background: rgba(10,25,48,0.92); border: 1px solid var(--border2); border-radius: var(--radius); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 8px 32px rgba(0,0,0,0.55); display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink2); animation: toast-in 0.3s ease; min-width: 260px; }
.toast-success { border-left: 3px solid #50D870; }
.toast-error   { border-left: 3px solid #F08070; }
.toast-info    { border-left: 3px solid var(--gold-bright); }
@keyframes toast-in { from { transform: translateX(40px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ── Alert / Flash ─────────────────────────────────── */
.flash-success { background: rgba(60,180,90,0.08); border: 1px solid rgba(60,180,90,0.20); border-left: 3px solid #50D870; border-radius: var(--radius-sm); padding: 11px 16px; font-size: 13.5px; color: #50D870; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.flash-error { background: rgba(180,60,40,0.08); border: 1px solid rgba(180,60,40,0.20); border-left: 3px solid #F08070; border-radius: var(--radius-sm); padding: 11px 16px; font-size: 13.5px; color: #F08070; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }

/* ── Vendor Cards ──────────────────────────────────── */
.vendor-card { background: rgba(19,19,25,0.88); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px 20px; box-shadow: var(--shadow-card); transition: all 0.2s; position: relative; overflow: hidden; }
.vendor-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(200,168,75,0.30), transparent); }
.vendor-card:hover { border-color: var(--border2); transform: translateY(-2px); box-shadow: var(--shadow-lg), var(--shadow-gold); }
.vendor-card.booked { border-color: rgba(60,180,90,0.22); }
.vendor-category-icon { font-size: 2rem; margin-bottom: 10px; }
.vendor-name { font-family: var(--font-serif); font-size: 1rem; color: var(--ink); font-weight: 600; margin-bottom: 4px; }
.vendor-category { font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.09em; }
.vendor-amount { font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold-bright); margin-top: 6px; font-weight: 600; }
.vendor-actions { display: flex; gap: 8px; margin-top: 12px; }

/* ── Task Items ────────────────────────────────────── */
.task-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 14px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: rgba(13,31,54,0.65); margin-bottom: 6px; transition: all 0.15s; cursor: pointer; }
.task-item:hover { background: rgba(13,31,54,0.85); border-color: var(--border2); }
.task-item.done { opacity: 0.40; }
.task-item.done .task-title { text-decoration: line-through; }
.task-title { font-size: 13.5px; color: var(--ink2); flex: 1; }
.task-meta { font-size: 11.5px; color: var(--muted); margin-top: 2px; }

/* ── Gift Items ────────────────────────────────────── */
.gift-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: rgba(13,31,54,0.65); margin-bottom: 6px; }
.gift-icon { font-size: 1.4rem; flex-shrink: 0; }
.gift-from { font-size: 13.5px; color: var(--ink2); font-weight: 500; }
.gift-item-name { font-size: 12px; color: var(--muted); }
.gift-status { margin-left: auto; }

/* ── Timeline ──────────────────────────────────────── */
.timeline-item { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); position: relative; }
.timeline-item:last-child { border-bottom: none; }
.timeline-time { width: 70px; flex-shrink: 0; font-family: var(--font-serif); font-size: 0.9rem; color: var(--gold-bright); font-weight: 600; text-align: right; }
.timeline-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gradient); flex-shrink: 0; margin-top: 6px; box-shadow: 0 0 0 3px rgba(200,168,75,0.18), 0 0 8px rgba(200,168,75,0.20); }
.timeline-line { position: absolute; left: 91px; top: 22px; bottom: -12px; width: 1px; background: linear-gradient(180deg, rgba(200,168,75,0.25), rgba(200,168,75,0.05)); }
.timeline-content { flex: 1; }
.timeline-event { font-size: 13.5px; color: var(--ink2); font-weight: 500; }
.timeline-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.timeline-vendor-link { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--gold); border: 1px solid rgba(200,168,75,0.20); border-radius: 50px; padding: 2px 10px; margin-top: 5px; cursor: pointer; transition: all 0.15s; }
.timeline-vendor-link:hover { background: rgba(200,168,75,0.10); color: var(--gold-bright); }

/* ── Moodboard ─────────────────────────────────────── */
.moodboard-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.moodboard-item { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 1; cursor: pointer; border: 2px solid transparent; transition: all 0.15s; }
.moodboard-item:hover { border-color: var(--gold); box-shadow: 0 0 16px rgba(200,168,75,0.20); }
.moodboard-placeholder { background: rgba(13,31,54,0.65); border: 2px dashed rgba(200,168,75,0.18); border-radius: var(--radius); aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; cursor: pointer; transition: all 0.15s; color: var(--ink3); font-size: 13px; }
.moodboard-placeholder:hover { border-color: var(--gold); color: var(--gold-bright); background: rgba(200,168,75,0.05); }

/* ── Auth Pages ────────────────────────────────────── */
.auth-wrap { min-height: 100vh; display: flex; }
.auth-left {
  width: 42%; flex-shrink: 0;
  background: rgba(9,9,14,0.70);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 48px 40px; position: relative; overflow: hidden;
}
.auth-left::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 40% 30%, rgba(200,168,75,0.10), transparent 60%); }
.auth-right { flex: 1; display: flex; align-items: center; justify-content: center; padding: 40px 24px; }
.auth-logo-display {
  font-family: var(--font-display); font-size: 3.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  position: relative; z-index: 1; text-align: center;
  filter: drop-shadow(0 4px 16px rgba(200,168,75,0.30));
}
.auth-logo-sub { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); position: relative; z-index: 1; text-align: center; margin-top: 6px; }
.auth-event-cards { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 270px; position: relative; z-index: 1; margin-top: 36px; }
.auth-event-card { background: rgba(200,168,75,0.05); border: 1.5px solid rgba(200,168,75,0.12); border-radius: var(--radius); padding: 14px 16px; display: flex; align-items: center; gap: 12px; cursor: pointer; transition: all 0.2s; }
.auth-event-card:hover { background: rgba(200,168,75,0.10); border-color: rgba(200,168,75,0.25); }
.auth-event-card.selected { border-color: var(--gold); background: rgba(200,168,75,0.12); box-shadow: 0 0 12px rgba(200,168,75,0.15); }
.auth-event-icon { font-size: 1.5rem; flex-shrink: 0; }
.auth-event-name { font-family: var(--font-serif); font-size: 0.9rem; color: var(--ink); font-weight: 600; }
.auth-event-desc { font-size: 10.5px; color: var(--muted); margin-top: 1px; }
/* Auth form panel — glass card */
.auth-form-wrap {
  width: 100%; max-width: 380px;
  background: rgba(10,25,48,0.82);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(200,168,75,0.18);
  border-radius: var(--radius-lg); padding: 36px 32px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.60), inset 0 1px 0 rgba(200,168,75,0.10);
  position: relative;
}
.auth-form-wrap::before { content: ''; position: absolute; top: 0; left: 30px; right: 30px; height: 1px; background: linear-gradient(90deg, transparent, rgba(200,168,75,0.45), transparent); }
.auth-form-title { font-family: var(--font-serif); font-size: 1.8rem; color: var(--ink); font-weight: 700; margin-bottom: 6px; }
.auth-form-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.auth-link { color: var(--gold-bright); font-weight: 600; }
.auth-link:hover { color: var(--gold-light); }
.auth-footer { text-align: center; margin-top: 18px; font-size: 13px; color: var(--ink3); }
.auth-error { background: rgba(140,56,32,0.12); border: 1px solid rgba(140,56,32,0.24); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 13px; color: #F08070; margin-bottom: 16px; }

/* ── Appointment card ──────────────────────────────── */
.appt-card { background: rgba(19,19,25,0.88); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; display: flex; align-items: center; gap: 14px; margin-bottom: 8px; transition: all 0.15s; box-shadow: var(--shadow-card); }
.appt-card:hover { border-color: var(--border2); box-shadow: var(--shadow-lg); }
.appt-date-box { width: 48px; height: 52px; background: rgba(200,168,75,0.08); border: 1px solid rgba(200,168,75,0.20); border-radius: var(--radius-sm); display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; }
.appt-day { font-family: var(--font-serif); font-size: 1.3rem; color: var(--gold-bright); font-weight: 700; line-height: 1; }
.appt-month { font-size: 9.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.09em; }
.appt-title { font-size: 13.5px; color: var(--ink2); font-weight: 500; }
.appt-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── Grids ─────────────────────────────────────────── */
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 16px; }
@media (max-width: 1200px) { .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 900px)  { .grid-4, .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* ── Utilities ─────────────────────────────────────── */
.flex { display: flex; } .flex-center { display: flex; align-items: center; } .flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; }
.mt-1 { margin-top: 4px; } .mt-2 { margin-top: 8px; } .mt-3 { margin-top: 12px; } .mt-4 { margin-top: 16px; }
.mb-3 { margin-bottom: 12px; } .mb-4 { margin-bottom: 16px; }
.text-muted { color: var(--muted); } .text-gold { color: var(--gold-bright); } .text-saffron { color: var(--gold); }
.text-sm { font-size: 12.5px; } .text-xs { font-size: 11px; }
.font-serif { font-family: var(--font-serif); }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.empty-state { text-align: center; padding: 48px 20px; color: var(--muted); }
.empty-state-icon { font-size: 3rem; margin-bottom: 12px; opacity: 0.30; }
.empty-state-text { font-size: 14px; margin-bottom: 16px; }

/* ── Mandala Watermark ─────────────────────────────── */
.mandala-bg { position: fixed; right: -80px; bottom: -80px; width: 440px; height: 440px; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='95' fill='none' stroke='%23C8A84B' stroke-width='0.8'/%3E%3Ccircle cx='100' cy='100' r='80' fill='none' stroke='%23C8A84B' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='65' fill='none' stroke='%23C8A84B' stroke-width='0.8'/%3E%3Ccircle cx='100' cy='100' r='50' fill='none' stroke='%23C8A84B' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='35' fill='none' stroke='%23C8A84B' stroke-width='0.8'/%3E%3Ccircle cx='100' cy='100' r='20' fill='none' stroke='%23C8A84B' stroke-width='0.5'/%3E%3Cpath d='M100 5 L100 195 M5 100 L195 100 M29 29 L171 171 M171 29 L29 171' stroke='%23C8A84B' stroke-width='0.4' fill='none'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; pointer-events: none; z-index: 0; }

/* ══════════════════════════════════════════════════════
   LITE THEME (data-theme="lite")
   Warm dark brown + gold  [Image 2 login card style]
   Keep exactly as before
══════════════════════════════════════════════════════ */
[data-theme="lite"] {
  --bg:          #2A2418;
  --bg2:         #241E14;
  --bg3:         #1E1A10;
  --surface:     #332A1A;
  --surface2:    #3A3020;
  --surface3:    #423828;
  --surface-hover: #4A4030;
  --border:      rgba(180, 150, 80, 0.18);
  --border2:     rgba(180, 150, 80, 0.32);
  --border-gold: rgba(200, 160, 60, 0.50);
  --accent:         #C8962A;
  --accent-light:   #DDA840;
  --accent-dark:    #A87818;
  --gold:           #C8962A;
  --gold-bright:    #DDA840;
  --gold-light:     #EEC060;
  --gold-dim:       rgba(200,150,42,0.38);
  --gold-glow:      rgba(221,168,64,0.22);
  --saffron:        #C8962A;
  --saffron-light:  #DDA840;
  --vermillion:     #8C4820;
  --rose:           #7A3848;
  --ivory:          #D4C09A;
  --ivory2:         #B8A07A;
  --ink:         #EDE0C0;
  --ink2:        rgba(237,224,192,0.75);
  --ink3:        rgba(237,224,192,0.38);
  --muted:       rgba(200,175,120,0.52);
  --gradient:         linear-gradient(135deg, #C8962A 0%, #9A7018 100%);
  --gradient-bright:  linear-gradient(135deg, #DDA840 0%, #B08020 100%);
  --gradient-gold:    linear-gradient(135deg, #EEC060, #C8962A, #9A7018);
  --gradient-soft:    linear-gradient(135deg, rgba(200,150,42,0.14), rgba(154,112,24,0.07));
  --shadow:       0 4px 20px rgba(0,0,0,0.55);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.65);
  --shadow-gold:  0 4px 24px rgba(200,150,42,0.20);
  --shadow-card:  0 4px 20px rgba(0,0,0,0.50), inset 0 1px 0 rgba(221,168,64,0.08), inset 0 0 0 1px rgba(221,168,64,0.05);
  --bg-image:     none;
}
[data-theme="lite"] body { background: var(--bg); }
[data-theme="lite"] body::before,
[data-theme="lite"] body::after { display: none; }
[data-theme="lite"] .sidebar { background: rgba(36,30,20,0.95); backdrop-filter: none; border-right-color: var(--border); box-shadow: 2px 0 16px rgba(0,0,0,0.40); }
[data-theme="lite"] .sidebar::before { background: linear-gradient(90deg, transparent, var(--gold-bright), transparent); opacity: 0.50; }
[data-theme="lite"] .sidebar-countdown { background: rgba(200,150,42,0.10); border-color: rgba(200,150,42,0.20); }
[data-theme="lite"] .countdown-val { color: var(--gold-bright); }
[data-theme="lite"] .nav-section-label { color: rgba(237,224,192,0.22); }
[data-theme="lite"] .nav-item:hover { background: rgba(200,150,42,0.08); }
[data-theme="lite"] .nav-item.active { background: linear-gradient(90deg, rgba(200,150,42,0.16) 0%, rgba(200,150,42,0.04) 100%); color: var(--gold-bright); border-left-color: var(--gold); }
[data-theme="lite"] .topbar { background: rgba(36,30,20,0.92); backdrop-filter: none; border-bottom-color: var(--border); }
[data-theme="lite"] .topbar::after { background: linear-gradient(90deg, transparent, rgba(200,150,42,0.30), transparent); }
[data-theme="lite"] .topbar-icon-btn { background: rgba(200,150,42,0.07); border-color: var(--border); }
[data-theme="lite"] .topbar-icon-btn:hover { background: rgba(200,150,42,0.14); color: var(--gold-bright); }
[data-theme="lite"] .card { background: var(--surface); backdrop-filter: none; border-color: var(--border); }
[data-theme="lite"] .card::before { background: linear-gradient(90deg, transparent, rgba(200,150,42,0.30), transparent); }
[data-theme="lite"] .stat-card { background: var(--surface); backdrop-filter: none; border-color: var(--border); }
[data-theme="lite"] .card-title { color: var(--gold-bright); }
[data-theme="lite"] .section-heading { color: var(--gold-bright); border-bottom-color: rgba(200,150,42,0.14); }
[data-theme="lite"] .form-control { background: rgba(26,20,12,0.80); border-color: var(--border); }
[data-theme="lite"] .form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,150,42,0.14); }
[data-theme="lite"] select.form-control option { background: #241E14; }
[data-theme="lite"] .modal { background: rgba(30,24,16,0.90); border-color: rgba(200,150,42,0.22); }
[data-theme="lite"] .modal-title { color: var(--gold-bright); }
[data-theme="lite"] .modal-close { background: rgba(200,150,42,0.08); border-color: rgba(200,150,42,0.16); }
[data-theme="lite"] .modal-close:hover { background: rgba(200,150,42,0.16); color: var(--gold-bright); }
[data-theme="lite"] .vendor-card { background: var(--surface); backdrop-filter: none; border-color: var(--border); }
[data-theme="lite"] .task-item { background: rgba(26,20,12,0.70); border-color: var(--border); }
[data-theme="lite"] .gift-item { background: rgba(26,20,12,0.70); border-color: var(--border); }
[data-theme="lite"] .cal-day { background: rgba(26,20,12,0.65); border-color: rgba(180,150,80,0.09); backdrop-filter: none; }
[data-theme="lite"] .cal-day:hover { background: rgba(26,20,12,0.85); border-color: var(--border2); }
[data-theme="lite"] .muhurtham-block { background: var(--surface); backdrop-filter: none; }
[data-theme="lite"] .auth-left { background: rgba(26,20,12,0.85); backdrop-filter: blur(8px); border-right-color: var(--border); }
[data-theme="lite"] .auth-form-wrap { background: rgba(30,24,16,0.88); border-color: rgba(200,150,42,0.20); }
[data-theme="lite"] .auth-form-wrap::before { background: linear-gradient(90deg, transparent, rgba(200,150,42,0.40), transparent); }
[data-theme="lite"] .toast { background: rgba(30,24,16,0.92); border-color: var(--border2); }
[data-theme="lite"] .appt-card { background: var(--surface); backdrop-filter: none; border-color: var(--border); }
[data-theme="lite"] .appt-date-box { background: rgba(200,150,42,0.08); border-color: rgba(200,150,42,0.18); }

/* ── Theme Toggle Button ────────────────────────────── */
.theme-toggle-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,168,75,0.08); border: 1px solid var(--border2);
  border-radius: 20px; padding: 6px 14px;
  font-size: 12px; font-family: var(--font-sans);
  color: var(--ink2); cursor: pointer;
  transition: all 0.2s; white-space: nowrap; height: 36px;
}
.theme-toggle-btn:hover { background: rgba(200,168,75,0.16); border-color: var(--border-gold); color: var(--gold-bright); }
[data-theme="lite"] .theme-toggle-btn { background: rgba(200,150,42,0.08); border-color: rgba(200,150,42,0.24); }
[data-theme="lite"] .theme-toggle-btn:hover { background: rgba(200,150,42,0.16); border-color: rgba(200,150,42,0.45); color: var(--gold-bright); }
