/* ============================================================
   HeySugarDaddy — Global Stylesheet
   Design system defined in CLAUDE.md — do not deviate.

   Colour tokens:
     --bg          #0F0A0C   page background
     --bg2         #181012   sidebar / topbar
     --surface     #221418   cards, panels
     --surface2    #2C1B20   nested surfaces, inputs
     --border      rgba(232,99,122,0.15)
     --border2     rgba(232,99,122,0.28)
     --rose        #E8637A   primary brand
     --rose-dim    #A03050
     --rose-pale   rgba(232,99,122,0.12)
     --gold        #C9933A   premium accent
     --gold-light  #E8B96A
     --gold-pale   rgba(201,147,58,0.12)
     --green       #4CAF7D   success / earnings
     --green-pale  rgba(76,175,125,0.12)
     --blue        #5B9BD5   info / platinum
     --blue-pale   rgba(91,155,213,0.12)
     --text        #F0E8E4   primary text
     --text2       #C4A0A8   secondary / muted
     --text3       #8A6470   hints, labels
   ============================================================ */

:root {
  --bg:          #0F0A0C;
  --bg2:         #181012;
  --surface:     #221418;
  --surface2:    #2C1B20;
  --border:      rgba(232,99,122,0.15);
  --border2:     rgba(232,99,122,0.28);

  --rose:        #E8637A;
  --rose-dim:    #A03050;
  --rose-pale:   rgba(232,99,122,0.12);

  --gold:        #C9933A;
  --gold-light:  #E8B96A;
  --gold-pale:   rgba(201,147,58,0.12);

  --green:       #4CAF7D;
  --green-pale:  rgba(76,175,125,0.12);

  --blue:        #5B9BD5;
  --blue-pale:   rgba(91,155,213,0.12);

  --text:        #F0E8E4;
  --text2:       #C4A0A8;   /* was #9A8080 — brightened for readability (~4.5:1 contrast) */
  --text3:       #8A6470;   /* was #5A4848 — brightened for readability */

  /* backward-compat alias used in older selectors */
  --muted:       #C4A0A8;

  /* component tokens */
  --radius:      6px;
  --radius-lg:   10px;
  --radius-pill: 20px;
  --shadow:      0 4px 24px rgba(0,0,0,.6);
  --font:        'Outfit', sans-serif;
  --transition:  0.15s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

img {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Scrollbars ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--surface2); border-radius: 2px; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.2rem, 2.5vw, 1.9rem); }
h3 { font-size: 1.1rem; }

a { color: var(--rose); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

p + p { margin-top: .75rem; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

main { flex: 1; padding: 2rem 0; }

section { padding: 4rem 0; }

/* ── Header / Nav ───────────────────────────────────────────── */
header {
  background: var(--bg2);
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 1rem;
}

.logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.auth-logo .logo img          { height: 56px; }
.mob-menu-drawer .drawer-header .logo img { height: 38px; }

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
}
.nav-links a { color: var(--text2); font-size: 13px; font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  padding: 2.5rem 0;
  text-align: center;
  color: var(--text2);
  font-size: 13px;
}

footer a { color: var(--text2); }
footer a:hover { color: var(--rose); }

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  list-style: none;
  margin-bottom: 1rem;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  border: none;
  transition: opacity var(--transition);
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font);
  line-height: 1;
}

.btn-primary  { background: var(--rose); color: #fff; }
.btn-primary:hover { opacity: .85; color: #fff; }

.btn-gold     { background: var(--gold); color: #0F0A0C; }
.btn-gold:hover { opacity: .85; color: #0F0A0C; }

.btn-green    { background: var(--green); color: #0F0A0C; }
.btn-green:hover { opacity: .85; color: #0F0A0C; }

.btn-outline  { background: transparent; color: var(--rose); border: 0.5px solid var(--border2); }
.btn-outline:hover { background: var(--rose-pale); }

.btn-ghost    { background: transparent; color: var(--text2); border: 0.5px solid var(--border); }
.btn-ghost:hover { color: var(--text); border-color: var(--border2); }

.btn-danger   { background: #8B2635; color: #fff; }
.btn-danger:hover { opacity: .85; }

.btn-sm  { padding: 6px 12px; font-size: 12px; }
.btn-lg  { padding: 14px 28px; font-size: 15px; }
.btn-block { width: 100%; }

/* ── Cards / Panels ──────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  transition: border-color var(--transition);
}
.card:hover { border-color: var(--border2); }

.card.featured { border-color: var(--gold); }

/* ── Forms ───────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }

label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text3);
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
select,
textarea {
  width: 100%;
  background: var(--surface2);
  border: 0.5px solid var(--border2);
  border-radius: var(--radius);
  color: var(--text);
  padding: 10px 14px;
  font-size: 13px;
  font-family: var(--font);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px var(--rose-pale);
}

input::placeholder, textarea::placeholder { color: var(--text3); }

textarea { resize: vertical; min-height: 100px; }

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  accent-color: var(--rose);
}

.form-hint  { font-size: 12px; color: var(--text2); margin-top: .35rem; }
.form-error { font-size: 12px; color: var(--rose);  margin-top: .35rem; display: none; }
.form-error.visible { display: block; }

/* ── Auth wrapper ────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background-color: var(--bg);
  position: relative;
}
/* Separate bg layer so filter:brightness doesn't bleed onto the card */
.auth-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('/img/eveningdate.jpg');
  background-size: cover;
  background-position: center top;
  filter: brightness(1);
}
.auth-bg-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(15,10,12,0.82) 0%,
    rgba(15,10,12,0.65) 50%,
    rgba(15,10,12,0.82) 100%);
  pointer-events: none;
}
.auth-card {
  position: relative;
  z-index: 1;
  background: rgba(34,20,24,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 0.5px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
}
.auth-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}
.auth-logo .logo { font-size: 1.5rem; }

/* ── Badges / Pills ──────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 0.5px solid var(--border2);
}
.badge-rose   { background: var(--rose-pale);  color: var(--rose);  border-color: var(--border2); }
.badge-gold   { background: var(--gold-pale);  color: var(--gold);  border-color: rgba(201,147,58,0.28); }
.badge-green  { background: var(--green-pale); color: var(--green); border-color: rgba(76,175,125,0.28); }
.badge-blue   { background: var(--blue-pale);  color: var(--blue);  border-color: rgba(91,155,213,0.28); }
.badge-muted  { background: var(--surface2);   color: var(--text2); border-color: var(--border); }

/* ── Dashboard layout ────────────────────────────────────────── */
.dashboard-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: calc(100vh - 64px);
  gap: 0;
}

.sidebar {
  background: var(--bg2);
  border-right: 0.5px solid var(--border);
  padding: 1.5rem 0;
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
}

.sidebar-heading {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text3);
  padding: .5rem 1.25rem;
  margin-top: .75rem;
}

.sidebar-nav { list-style: none; }

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: 8px 1.25rem;
  color: var(--text2);
  font-size: 13px;
  font-weight: 400;
  transition: all var(--transition);
  border-right: 2px solid transparent;
}

.sidebar-nav a:hover { color: var(--text); background: var(--rose-pale); }
.sidebar-nav a.active {
  color: var(--rose);
  background: var(--rose-pale);
  border-right-color: var(--rose);
  border: 0.5px solid var(--border2);
  border-right-width: 2px;
}

.sidebar-icon { font-size: 15px; width: 20px; text-align: center; flex-shrink: 0; }

.page-content { padding: 2rem; overflow-y: auto; }

/* Sidebar notification badge */
.nav-badge {
  margin-left: auto;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  padding: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(76,175,125,0.25), 0 0 8px rgba(76,175,125,0.4);
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(76,175,125,0.25), 0 0 8px rgba(76,175,125,0.4); }
  50%       { box-shadow: 0 0 0 4px rgba(76,175,125,0.15), 0 0 14px rgba(76,175,125,0.5); }
}

/* ── Page header (inside dashboards) ────────────────────────── */
.page-header { margin-bottom: 1.75rem; }
.page-header h1 { font-size: 1.4rem; font-weight: 600; }
.page-header p  { color: var(--text2); margin-top: .25rem; font-size: 13px; }

/* ── Stat cards ──────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  transition: border-color var(--transition);
}
.stat-card:hover { border-color: var(--border2); }

.stat-card .stat-value {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--rose);
  line-height: 1;
}
.stat-card .stat-value.gold  { color: var(--gold); }
.stat-card .stat-value.green { color: var(--green); }

.stat-card .stat-label {
  font-size: 11px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: .35rem;
}
.stat-card .stat-change {
  font-size: 12px;
  color: var(--text2);
  margin-top: .4rem;
}
.stat-card .stat-change.up   { color: var(--green); }
.stat-card .stat-change.down { color: var(--rose); }

/* ── Table ───────────────────────────────────────────────────── */
.table-wrapper {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow-x: auto;
}

table { width: 100%; border-collapse: collapse; }
th, td { padding: 10px 14px; text-align: left; border-bottom: 0.5px solid var(--border); font-size: 13px; }
th { color: var(--text3); font-weight: 500; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--surface2); }

/* ── Progress bar ────────────────────────────────────────────── */
.progress-track {
  background: var(--surface2);
  border-radius: var(--radius-pill);
  height: 6px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: var(--radius-pill);
  background: var(--rose);
  transition: width 0.4s ease;
}
.progress-fill.gold  { background: var(--gold); }
.progress-fill.green { background: var(--green); }
.progress-fill.blue  { background: var(--blue); }

/* ── Avatar ──────────────────────────────────────────────────── */
.avatar {
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface2);
  border: 0.5px solid var(--border);
  flex-shrink: 0;
}
.avatar-sm  { width: 32px;  height: 32px; }
.avatar-md  { width: 48px;  height: 48px; }
.avatar-lg  { width: 80px;  height: 80px; }
.avatar-xl  { width: 120px; height: 120px; }

/* ── Profile cards (browse grids) ────────────────────────────── */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.profile-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
  cursor: pointer;
}
.profile-card:hover { transform: translateY(-3px); border-color: var(--border2); }
.profile-card .card-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--surface2);
  display: block;
}
.profile-card .card-body { padding: 12px 14px; }
.profile-card .card-name { font-weight: 500; font-size: 13px; color: var(--text); }
.profile-card .card-meta { font-size: 12px; color: var(--text2); margin-top: .2rem; }

/* ── Chat layout ─────────────────────────────────────────────── */
.chat-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  height: calc(100vh - 64px);
  overflow: hidden;
}

.conversation-list {
  border-right: 0.5px solid var(--border);
  overflow-y: auto;
  background: var(--surface);
}

.conversation-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 12px 14px;
  border-bottom: 0.5px solid var(--border);
  cursor: pointer;
  transition: background var(--transition);
}
.conversation-item:hover, .conversation-item.active { background: var(--surface2); }
.conversation-item .conv-name    { font-weight: 500; font-size: 13px; }
.conversation-item .conv-preview { font-size: 12px; color: var(--text2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.chat-window { display: flex; flex-direction: column; }
.chat-header {
  padding: 14px 18px;
  border-bottom: 0.5px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.chat-messages { flex: 1; overflow-y: auto; padding: 1.25rem; display: flex; flex-direction: column; gap: .75rem; }

.message-bubble {
  max-width: 65%;
  padding: 8px 14px;
  border-radius: var(--radius-lg);
  font-size: 13px;
  line-height: 1.5;
}
.message-bubble.sent     { background: var(--rose); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.message-bubble.received { background: var(--surface2); color: var(--text); align-self: flex-start; border-bottom-left-radius: 4px; }

.chat-input-bar {
  padding: 14px 18px;
  border-top: 0.5px solid var(--border);
  background: var(--surface);
  display: flex;
  gap: .75rem;
  align-items: flex-end;
}
.chat-input-bar textarea { min-height: 42px; max-height: 120px; margin-bottom: 0; }

/* ── Toast ───────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--surface2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 13px;
  z-index: 999;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
  max-width: 320px;
  color: var(--text);
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.toast-success { border-color: var(--green); }
.toast.toast-error   { border-color: var(--rose); }
.toast.toast-info    { border-color: var(--blue); }

/* ── Divider ─────────────────────────────────────────────────── */
.divider { border: none; border-top: 0.5px solid var(--border); margin: 1.5rem 0; }

/* ── Utility — colour ────────────────────────────────────────── */
.text-rose   { color: var(--rose); }
.text-gold   { color: var(--gold); }
.text-green  { color: var(--green); }
.text-blue   { color: var(--blue); }
.text-muted  { color: var(--text2); }
.text-text2  { color: var(--text2); }
.text-text3  { color: var(--text3); }

/* ── Utility — text ──────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.text-sm      { font-size: 13px; }
.text-xs      { font-size: 11px; }
.font-medium  { font-weight: 500; }
.font-semibold{ font-weight: 600; }

/* ── Utility — spacing ───────────────────────────────────────── */
.mt-1  { margin-top: .4rem; }
.mt-2  { margin-top: .85rem; }
.mt-3  { margin-top: 1.25rem; }
.mt-4  { margin-top: 2rem; }
.mt-6  { margin-top: 3rem; }
.mb-1  { margin-bottom: .4rem; }
.mb-2  { margin-bottom: .85rem; }
.mb-3  { margin-bottom: 1.25rem; }
.mb-4  { margin-bottom: 2rem; }

/* ── Utility — layout ────────────────────────────────────────── */
.flex            { display: flex; }
.flex-col        { flex-direction: column; }
.items-center    { align-items: center; }
.items-start     { align-items: flex-start; }
.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap       { flex-wrap: wrap; }
.gap-1  { gap: .5rem; }
.gap-2  { gap: 1rem; }
.gap-3  { gap: 1.5rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

/* ── Mobile bottom nav ───────────────────────────────────────── */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--bg2);
  border-top: 0.5px solid var(--border);
  z-index: 200;
  align-items: stretch;
  justify-content: space-around;
}
.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
  text-decoration: none;
  color: var(--text3);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 6px 4px;
  transition: color .15s;
  position: relative;
}
.mobile-bottom-nav a .mbn-ico { font-size: 20px; line-height: 1; }
.mobile-bottom-nav a.active  { color: var(--rose); }
.mobile-bottom-nav a:hover   { color: var(--text); }
.mobile-bottom-nav a .mbn-badge {
  position: absolute;
  top: 5px;
  left: calc(50% + 4px);
  background: var(--rose);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  min-width: 14px;
  height: 14px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* ── Mobile menu drawer ──────────────────────────────────────── */
.mob-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0.5px solid var(--border2);
  border-radius: 6px;
  color: var(--text);
  padding: 5px 10px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.mob-menu-btn:hover { background: var(--rose-pale); color: var(--rose); }

.mob-menu-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 299;
}
.mob-menu-scrim.open { display: block; }

.mob-menu-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: var(--bg2);
  border-left: 0.5px solid var(--border);
  z-index: 300;
  overflow-y: auto;
  transition: right .25s ease;
  padding-bottom: 80px;
}
.mob-menu-drawer.open { right: 0; }

.mob-menu-drawer .drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 0.5px solid var(--border);
}
.mob-menu-drawer .drawer-header .logo { font-size: 1rem; }
.mob-menu-drawer .drawer-close {
  background: none;
  border: none;
  color: var(--text2);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1;
}
.mob-menu-drawer .drawer-close:hover { color: var(--text); }

.mob-menu-drawer .sidebar-heading {
  padding: 14px 18px 5px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text3);
  font-weight: 600;
}
.mob-menu-drawer .sidebar-nav { list-style: none; padding: 0; margin: 0; }
.mob-menu-drawer .sidebar-nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  color: var(--text2);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: background .15s;
}
.mob-menu-drawer .sidebar-nav li a:hover { background: var(--surface); color: var(--text); }
.mob-menu-drawer .sidebar-nav li a.active { background: var(--rose-pale); color: var(--rose); border-left: 2px solid var(--rose); }

@media (max-width: 900px) {
  .mob-menu-btn { display: inline-flex; }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .dashboard-layout { grid-template-columns: 60px 1fr; }
  .sidebar-heading, .sidebar-nav a span:not(.sidebar-icon) { display: none; }
}

@media (max-width: 900px) {
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .chat-layout { grid-template-columns: 1fr; }
  .conversation-list { display: none; }
  .mobile-bottom-nav { display: flex; }
  body { padding-bottom: 60px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4          { grid-template-columns: repeat(2, 1fr); }
  .page-content { padding: 1rem; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .profile-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}

@media (max-width: 480px) {
  .auth-card { padding: 1.5rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
