/* ═══════════════════════════════════════════════════════
   GOUTY REVISÃO PRO — Design System v3.0
   Refined Industrial Dark × SaaS Premium
   Fonts: Outfit (display) · DM Sans (body) · JetBrains Mono
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --bg:             #07070e;
  --bg-card:        #0d0d18;
  --bg-elevated:    #13131f;
  --bg-hover:       #1a1a2a;
  --bg-active:      #1e1e30;
  --border:         rgba(120,80,255,0.12);
  --border-hover:   rgba(120,80,255,0.35);
  --border-active:  rgba(120,80,255,0.55);

  --violet:         #7c3aed;
  --violet-light:   #a78bfa;
  --violet-dim:     #6d28d9;
  --violet-glow:    rgba(124,58,237,0.28);
  --violet-subtle:  rgba(124,58,237,0.08);

  --green:          #10b981;
  --green-dim:      rgba(16,185,129,0.12);
  --yellow:         #f59e0b;
  --yellow-dim:     rgba(245,158,11,0.12);
  --red:            #ef4444;
  --red-dim:        rgba(239,68,68,0.12);
  --blue:           #3b82f6;
  --blue-dim:       rgba(59,130,246,0.12);
  --pink:           #ec4899;

  --text-1:         #f0f0ff;
  --text-2:         #94a3b8;
  --text-3:         #4a5568;
  --text-4:         #2d3748;

  --sidebar-w:      252px;
  --topbar-h:       60px;
  --bottom-nav-h:   64px;
  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      16px;
  --radius-xl:      20px;
  --radius-2xl:     24px;
}

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

body {
  background: var(--bg);
  color: var(--text-1);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 100% 50% at 50% -10%, rgba(124,58,237,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 90% 90%, rgba(124,58,237,0.05) 0%, transparent 50%);
}

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-1);
  letter-spacing: -0.4px;
}
.mono { font-family: 'JetBrains Mono', monospace; }
.page-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.6px;
}
.page-sub {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 3px;
}

/* ── SCROLLBAR ──────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--violet-dim); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--violet); }

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

.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: linear-gradient(180deg, #0b0b18 0%, #08080f 100%);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  z-index: 40;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}

.main-with-sidebar {
  margin-left: var(--sidebar-w);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── TOPBAR ─────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0; z-index: 30;
  height: var(--topbar-h);
  background: rgba(7,7,14,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
}

/* ── SIDEBAR LINKS ──────────────────────────────────── */
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  color: var(--text-2);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
  position: relative;
  white-space: nowrap;
}
.sidebar-link:hover {
  background: var(--bg-hover);
  color: var(--text-1);
}
.sidebar-link.active {
  background: var(--violet-subtle);
  color: var(--violet-light);
  font-weight: 600;
}
.sidebar-link.active::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 3px;
  background: var(--violet);
  border-radius: 0 3px 3px 0;
}
.sidebar-link .icon {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  font-size: 14px;
  flex-shrink: 0;
  transition: background 0.15s;
}
.sidebar-link:hover .icon { background: var(--bg-active); }
.sidebar-link.active .icon { background: rgba(124,58,237,0.15); }

.nav-section-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 14px 12px 5px;
  font-family: 'Outfit', sans-serif;
}

/* ── CARDS ──────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover { border-color: var(--border-hover); }
.card-p { padding: 20px; }
.card-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* ── STAT CARDS ─────────────────────────────────────── */
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}
.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(124,58,237,0.04));
  pointer-events: none;
}
.stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -1.5px;
  line-height: 1;
  margin: 14px 0 4px;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}
.stat-sub {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 2px;
}
.stat-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.stat-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.18s ease;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--violet-dim), var(--violet-light));
  color: #fff;
  box-shadow: 0 4px 14px var(--violet-glow);
}
.btn-primary:hover {
  filter: brightness(1.12);
  box-shadow: 0 6px 20px var(--violet-glow);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-2);
}
.btn-ghost:hover { background: var(--bg-hover); color: var(--text-1); border-color: var(--border-hover); }
.btn-danger {
  background: var(--red-dim);
  border: 1px solid rgba(239,68,68,0.25);
  color: #f87171;
}
.btn-danger:hover { background: rgba(239,68,68,0.18); }
.btn-sm { padding: 6px 14px; font-size: 12px; border-radius: var(--radius-sm); }
.btn-lg { padding: 13px 28px; font-size: 15px; border-radius: var(--radius-md); }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ── INPUTS ─────────────────────────────────────────── */
.input-dark {
  background: rgba(7,7,14,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  color: var(--text-1);
  width: 100%;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.input-dark:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}
.input-dark::placeholder { color: var(--text-3); }
select.input-dark { cursor: pointer; }
textarea.input-dark { resize: vertical; min-height: 80px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.input-group { display: flex; flex-direction: column; gap: 6px; }

/* ── BADGES ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
}
.badge-recebida   { background: var(--blue-dim);   color: #60a5fa; border: 1px solid rgba(59,130,246,0.2); }
.badge-analise    { background: var(--yellow-dim);  color: #fbbf24; border: 1px solid rgba(245,158,11,0.2); }
.badge-manutencao { background: var(--violet-subtle); color: var(--violet-light); border: 1px solid rgba(124,58,237,0.2); }
.badge-finalizada { background: var(--green-dim);   color: #34d399; border: 1px solid rgba(16,185,129,0.2); }
.badge-baixa      { background: var(--green-dim);   color: #34d399; border: 1px solid rgba(16,185,129,0.2); }
.badge-media      { background: var(--yellow-dim);  color: #fbbf24; border: 1px solid rgba(245,158,11,0.2); }
.badge-alta       { background: var(--red-dim);     color: #f87171; border: 1px solid rgba(239,68,68,0.2); }

/* ── TABLES ─────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  background: rgba(0,0,0,0.2);
}
.data-table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(120,80,255,0.06);
  vertical-align: middle;
  font-size: 13.5px;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr { transition: background 0.12s; }
.data-table tbody tr:hover { background: rgba(124,58,237,0.04); }

/* ── FLASH MESSAGES ─────────────────────────────────── */
.flash-msg {
  position: fixed;
  bottom: calc(var(--bottom-nav-h) + 16px);
  right: 16px;
  z-index: 9999;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
  animation: slideInRight 0.3s cubic-bezier(0.34,1.56,0.64,1);
  max-width: calc(100vw - 32px);
}
@media (min-width: 769px) {
  .flash-msg { bottom: 24px; right: 24px; max-width: 400px; }
}

/* ── CHAT ───────────────────────────────────────────── */
.chat-bubble-mine {
  background: linear-gradient(135deg, var(--violet-dim), var(--violet));
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius-md) var(--radius-sm) var(--radius-md) var(--radius-md);
  font-size: 13px;
  max-width: 320px;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(124,58,237,0.3);
}
.chat-bubble-other {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-1);
  padding: 10px 14px;
  border-radius: var(--radius-sm) var(--radius-md) var(--radius-md) var(--radius-md);
  font-size: 13px;
  max-width: 320px;
  line-height: 1.5;
}

/* ── STEP TRACKER ───────────────────────────────────── */
.step-track {
  display: flex;
  align-items: center;
  gap: 0;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.step-circle {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 7px;
  border: 2px solid transparent;
  transition: all 0.3s;
}
.step-circle.done { background: var(--green-dim); border-color: var(--green); color: var(--green); }
.step-circle.active {
  background: var(--violet);
  border-color: var(--violet-light);
  color: white;
  box-shadow: 0 0 20px var(--violet-glow);
}
.step-circle.pending { background: var(--bg-elevated); border-color: var(--border); color: var(--text-3); }
.step-line {
  flex: 1;
  height: 2px;
  margin-bottom: 28px;
  transition: background 0.3s;
}
.step-line.done { background: var(--green); }
.step-line.pending { background: var(--border); }

/* ── PROGRESS BAR ───────────────────────────────────── */
.progress-bar {
  height: 4px;
  background: var(--bg-hover);
  border-radius: 99px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--violet-dim), var(--violet-light));
  transition: width 0.6s ease;
}

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 0 0 var(--violet-glow); }
  50%      { box-shadow: 0 0 0 8px transparent; }
}
@keyframes shimmer {
  from { background-position: -200% 0; }
  to   { background-position: 200% 0; }
}

.animate-in { animation: fadeInUp 0.4s ease both; }
.animate-in-1 { animation: fadeInUp 0.4s 0.05s ease both; }
.animate-in-2 { animation: fadeInUp 0.4s 0.1s ease both; }
.animate-in-3 { animation: fadeInUp 0.4s 0.15s ease both; }
.animate-in-4 { animation: fadeInUp 0.4s 0.2s ease both; }
.animate-fade-up { animation: fadeInUp 0.4s ease both; }

/* Skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--bg-elevated) 25%, var(--bg-hover) 50%, var(--bg-elevated) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* ── MOBILE BOTTOM NAV ──────────────────────────────── */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--bottom-nav-h);
  background: rgba(11,11,24,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid var(--border);
  z-index: 50;
  padding: 0 4px;
  padding-bottom: env(safe-area-inset-bottom);
}
.bottom-nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
}
.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 4px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-3);
  font-size: 10px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  transition: color 0.15s, background 0.15s;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.bottom-nav-item.active { color: var(--violet-light); }
.bottom-nav-item.active::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  background: var(--violet);
  border-radius: 0 0 3px 3px;
}
.bottom-nav-item .bn-icon {
  font-size: 20px;
  line-height: 1;
}
.bn-badge {
  position: absolute;
  top: 3px; right: calc(50% - 16px);
  background: var(--red);
  color: white;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
  padding: 0 3px;
}

/* ── PWA BANNER ─────────────────────────────────────── */
#pwa-banner {
  position: fixed;
  bottom: calc(var(--bottom-nav-h) + 12px);
  left: 12px; right: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  display: none;
  align-items: center;
  gap: 12px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  animation: slideInRight 0.4s ease;
}
@media (min-width: 769px) {
  #pwa-banner { bottom: 24px; left: auto; right: 24px; width: 340px; }
}

/* ── MOBILE OVERLAY ─────────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 35;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-overlay.show { opacity: 1; pointer-events: all; }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --topbar-h: 56px; }

  .sidebar {
    transform: translateX(calc(-1 * var(--sidebar-w)));
    box-shadow: none;
  }
  .sidebar.open {
    transform: translateX(0);
    box-shadow: 4px 0 40px rgba(0,0,0,0.5);
  }

  .main-with-sidebar {
    margin-left: 0;
    padding-bottom: var(--bottom-nav-h);
  }

  .bottom-nav { display: flex; }

  .topbar { padding: 0 14px; }

  main { padding: 14px !important; }

  /* Responsive tables */
  .table-mobile-cards table,
  .table-mobile-cards thead,
  .table-mobile-cards tbody,
  .table-mobile-cards tr,
  .table-mobile-cards th,
  .table-mobile-cards td { display: block; width: 100%; }
  .table-mobile-cards thead { display: none; }
  .table-mobile-cards tr {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 14px;
    margin-bottom: 10px;
  }
  .table-mobile-cards td {
    padding: 3px 0;
    border: none;
    font-size: 13px;
  }
  .table-mobile-cards td::before {
    content: attr(data-label) ': ';
    font-size: 10px;
    font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 2px;
  }
  .table-mobile-cards td:empty { display: none; }

  .hide-mobile { display: none !important; }
  .show-mobile { display: flex !important; }

  .grid-cols-2 { grid-template-columns: 1fr !important; }
  .stat-value { font-size: 26px; }
}

@media (max-width: 480px) {
  .flash-msg { right: 8px; left: 8px; bottom: calc(var(--bottom-nav-h) + 10px); }
}

/* ── UTILITY ────────────────────────────────────────── */
.hidden { display: none !important; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 20px; }
.wrap { flex-wrap: wrap; }
.w-full { width: 100%; }
.text-muted { color: var(--text-3); }
.text-sm { font-size: 12px; }
.font-mono { font-family: 'JetBrains Mono', monospace; }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.overflow-auto { overflow: auto; }

/* ── MOTO CARD ──────────────────────────────────────── */
.moto-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.moto-card:hover { border-color: var(--border-hover); background: var(--bg-elevated); }
.moto-card.selected { border-color: var(--violet); background: var(--violet-subtle); }

/* ── PRODUCT CARD ───────────────────────────────────── */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s ease;
}
.product-card:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }

/* ── ORDER CARD ─────────────────────────────────────── */
.order-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  transition: all 0.2s;
}
.order-card:hover { border-color: var(--border-hover); }

/* ── RANKING ────────────────────────────────────────── */
.rank-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  transition: background 0.15s;
}
.rank-item:hover { background: var(--bg-elevated); }
.rank-medal {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* ── QUICK ACTION BUTTON ────────────────────────────── */
.quick-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.18s;
  text-align: center;
  cursor: pointer;
}
.quick-action:hover {
  background: var(--bg-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.quick-action .qa-icon {
  font-size: 28px;
  line-height: 1;
}
.quick-action .qa-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
}

/* ── MINI CALENDAR ──────────────────────────────────── */
.cal-day {
  width: 100%;
  height: 32px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 12.5px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.12s;
  cursor: pointer;
}
.cal-day:hover:not(:disabled) { background: rgba(124,58,237,0.2) !important; }
.cal-day:disabled { opacity: 0.3; cursor: not-allowed; }

/* ── DIVIDER ────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}
