/* ============================================
   ANÁLISE E-COMMERCE — Dark Mode
   ============================================ */

:root {
  --primary:      #6C3FC5;
  --primary-dark: #4A2A8A;
  --primary-light:#8B5CF6;
  --success:      #27AE60;
  --warning:      #F39C12;
  --danger:       #E74C3C;
  --info:         #3498DB;
  --dark:         #1A1A2E;
  --card-bg:      #16213E;
  --card-hover:   #1E2A50;
  --text:         #E0E0E0;
  --text-muted:   #8892B0;
  --border:       #2A2A4A;
  --input-bg:     #0F1929;
  --sidebar-w:    240px;
}

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

html { font-size: 15px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

/* ---- Links ---- */
a { color: var(--primary-light); text-decoration: none; }
a:hover { color: var(--primary); }

/* ---- Layout base ---- */
.page-wrapper {
  display: flex;
  min-height: 100vh;
}

.main-content {
  flex: 1;
  padding: 2rem;
  max-width: 100%;
  overflow-x: hidden;
}

/* ---- Sidebar ---- */
.sidebar {
  width: var(--sidebar-w);
  background: var(--card-bg);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
  transition: transform 0.3s ease;
}

.sidebar-logo {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sidebar-logo .logo-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

.sidebar-logo .logo-text {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.sidebar-logo .logo-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.sidebar-nav { padding: 1rem 0; flex: 1; }

.sidebar-section {
  padding: 0.5rem 1rem 0.25rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  border-left: 3px solid transparent;
  transition: all 0.15s;
}

.sidebar-link:hover,
.sidebar-link.active {
  color: var(--text);
  background: rgba(108,63,197,0.12);
  border-left-color: var(--primary);
}

.sidebar-link .badge-part {
  margin-left: auto;
  font-size: 0.65rem;
  background: var(--border);
  padding: 1px 6px;
  border-radius: 9px;
  color: var(--text-muted);
}

.sidebar-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
}

.sidebar-footer .user-name {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-footer .user-loja {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Page content with sidebar */
.main-content.has-sidebar {
  margin-left: var(--sidebar-w);
}

/* ---- Topbar ---- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.breadcrumb span { color: var(--text-muted); }
.breadcrumb a { color: var(--primary-light); }

/* ---- Cards ---- */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ---- KPI Cards ---- */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.kpi-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
}

.kpi-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.kpi-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.kpi-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  white-space: nowrap;
}

/* Centavos em tamanho reduzido (estilo financeiro) */
.kpi-value .kpi-cents {
  font-size: 0.62em;
  font-weight: 600;
  opacity: 0.75;
  vertical-align: baseline;
}

.kpi-value.kpi-lg    { font-size: 2rem; }
.kpi-value.kpi-receita { font-size: 1.9rem; }

.kpi-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.kpi-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.7rem;
  padding: 2px 7px;
  border-radius: 9px;
  margin-top: 0.4rem;
}

.kpi-badge.above  { background: rgba(39,174,96,0.15);  color: var(--success); }
.kpi-badge.within { background: rgba(243,156,18,0.15); color: var(--warning); }
.kpi-badge.below  { background: rgba(231,76,60,0.15);  color: var(--danger);  }

/* ---- Tables ---- */
.table-wrap { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

thead th {
  background: rgba(108,63,197,0.12);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.65rem 0.85rem;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}

tbody tr {
  border-bottom: 1px solid rgba(42,42,74,0.5);
  transition: background 0.1s;
}

tbody tr:hover { background: rgba(108,63,197,0.06); }
tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }

td {
  padding: 0.65rem 0.85rem;
  color: var(--text);
  vertical-align: middle;
}

td.td-muted { color: var(--text-muted); }
td.td-num  { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
th.td-num  { text-align: right; white-space: nowrap; }
td.td-center { text-align: center; }

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

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108,63,197,0.15);
}

select option {
  background: var(--card-bg);
  color: var(--text);
}

input::placeholder { color: var(--text-muted); opacity: 0.6; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-error {
  color: var(--danger);
  font-size: 0.78rem;
  margin-top: 0.25rem;
  display: none;
}

.form-error.visible { display: block; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover:not(:disabled) { background: var(--primary-dark); color: #fff; }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-outline:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary-light);
}

.btn-success { background: var(--success); color: #fff; }
.btn-success:hover:not(:disabled) { background: #229954; color: #fff; }

.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover:not(:disabled) { background: #c0392b; color: #fff; }

.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.8rem; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---- Alerts ---- */
.alert {
  padding: 0.85rem 1.1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.alert-danger  { background: rgba(231,76,60,0.12);  border-left: 3px solid var(--danger);  color: #F1948A; }
.alert-success { background: rgba(39,174,96,0.12);  border-left: 3px solid var(--success); color: #82E0AA; }
.alert-warning { background: rgba(243,156,18,0.12); border-left: 3px solid var(--warning); color: #F8C471; }
.alert-info    { background: rgba(52,152,219,0.12); border-left: 3px solid var(--info);    color: #85C1E9; }

/* ---- Badges ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 2px 8px;
  border-radius: 9px;
  font-size: 0.7rem;
  font-weight: 600;
}

.badge-success  { background: rgba(39,174,96,0.15);  color: var(--success); }
.badge-warning  { background: rgba(243,156,18,0.15); color: var(--warning); }
.badge-danger   { background: rgba(231,76,60,0.15);  color: var(--danger);  }
.badge-info     { background: rgba(52,152,219,0.15); color: var(--info);    }
.badge-primary  { background: rgba(108,63,197,0.15); color: var(--primary-light); }
.badge-muted    { background: var(--border);         color: var(--text-muted); }

/* ---- Upload zone ---- */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--primary);
  background: rgba(108,63,197,0.06);
}

.upload-zone .upload-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.upload-zone .upload-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.upload-zone .upload-sub { font-size: 0.82rem; color: var(--text-muted); }

.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

/* ---- File list ---- */
.file-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.file-item .file-icon { font-size: 1.4rem; flex-shrink: 0; }
.file-item .file-name { font-size: 0.88rem; font-weight: 500; flex: 1; }
.file-item .file-size { font-size: 0.75rem; color: var(--text-muted); }
.file-item .file-remove { cursor: pointer; color: var(--danger); margin-left: auto; }

/* ---- Validation results ---- */
.validation-file {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.validation-file-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}

.validation-file-body { padding: 1rem 1.1rem; }

.val-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  padding: 0.3rem 0;
}

.val-row .val-icon { width: 18px; text-align: center; flex-shrink: 0; }
.val-row .val-text { flex: 1; color: var(--text); }
.val-row .val-val  { color: var(--text-muted); font-size: 0.8rem; }

/* ---- Progress / Steps ---- */
.wizard-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
  overflow-x: auto;
}

.wizard-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--text-muted);
  background: var(--card-bg);
}

.wizard-step.active .step-num {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.wizard-step.done .step-num {
  border-color: var(--success);
  background: var(--success);
  color: #fff;
}

.step-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.wizard-step.active .step-label { color: var(--text); font-weight: 600; }

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 0.5rem;
}

.wizard-step.done + .wizard-step .step-line,
.wizard-step.done ~ .step-line { background: var(--success); }

/* ---- Loading ---- */
.spinner {
  display: inline-block;
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  display: none;
}

.loading-overlay.show { display: flex; }

.loading-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 3rem;
  text-align: center;
  max-width: 360px;
}

.loading-spinner-lg {
  width: 52px; height: 52px;
  border: 3px solid rgba(108,63,197,0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1.5rem;
}

.loading-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.loading-sub   { font-size: 0.85rem; color: var(--text-muted); }

/* ---- Auth pages ---- */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: radial-gradient(ellipse at top left, rgba(108,63,197,0.15) 0%, transparent 60%);
}

.auth-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.auth-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-logo .logo-badge {
  width: 54px; height: 54px;
  background: var(--primary);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.auth-logo h1 {
  font-size: 1.3rem;
  font-weight: 700;
}

.auth-logo p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.auth-divider {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 1.25rem 0;
  position: relative;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.auth-divider span {
  background: var(--card-bg);
  padding: 0 0.75rem;
  position: relative;
}

/* ---- Dashboard ---- */
.analise-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
}

.analise-card-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  min-width: 0;
  color: inherit;
}

.btn-excluir-analise {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(231,76,60,.35);
  color: #E74C3C;
  border-radius: 7px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity .15s, background .15s;
}
.analise-card:hover .btn-excluir-analise { opacity: 1; }
.btn-excluir-analise:hover { background: rgba(231,76,60,.12); }

.analise-card:hover {
  border-color: var(--primary);
  background: var(--card-hover);
}

.analise-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(108,63,197,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.analise-info { flex: 1; min-width: 0; }
.analise-title {
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.analise-meta { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.2rem; }
.analise-kpis { display: flex; gap: 1.5rem; flex-shrink: 0; }
.analise-kpi-item { text-align: right; }
.analise-kpi-val { font-size: 0.95rem; font-weight: 700; }
.analise-kpi-lbl { font-size: 0.7rem; color: var(--text-muted); }

/* Status badges */
.status-concluida { color: var(--success); }
.status-processando { color: var(--warning); }
.status-erro { color: var(--danger); }

/* ---- Insight cards ---- */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.insight-card {
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.1rem;
  border-left: 3px solid var(--primary);
}

.insight-card.alto   { border-left-color: var(--success); }
.insight-card.medio  { border-left-color: var(--warning); }
.insight-card.baixo  { border-left-color: var(--text-muted); }

.insight-titulo { font-size: 0.88rem; font-weight: 600; margin-bottom: 0.35rem; }
.insight-desc   { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

.insight-footer {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.65rem;
  flex-wrap: wrap;
}

/* ---- Part navigation ---- */
.part-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.part-nav-btn {
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.part-nav-btn:hover,
.part-nav-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ---- Chart containers ---- */
.chart-container {
  position: relative;
  height: 280px;
  width: 100%;
}

.chart-container.chart-sm  { height: 200px; }
.chart-container.chart-lg  { height: 380px; }
.chart-container.chart-xl  { height: 480px; }

/* ---- Cohort heatmap ---- */
.cohort-table td, .cohort-table th {
  font-size: 0.75rem;
  padding: 0.4rem 0.5rem;
  text-align: center;
}

.cohort-cell {
  border-radius: 4px;
  min-width: 48px;
}

/* ---- Plano de ação ---- */
.plano-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: background 0.15s;
}

.plano-item:hover { background: rgba(255,255,255,0.02); }

.plano-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.plano-body { flex: 1; }
.plano-title { font-size: 0.88rem; font-weight: 600; margin-bottom: 0.2rem; }
.plano-meta  { font-size: 0.78rem; color: var(--text-muted); display: flex; gap: 0.75rem; flex-wrap: wrap; }
.plano-meta span { display: flex; align-items: center; gap: 0.2rem; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .main-content.has-sidebar {
    margin-left: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .analise-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .analise-kpis { display: none; }

  .page-title { font-size: 1.15rem; }
}

@media (max-width: 480px) {
  .main-content { padding: 1rem; }
  .auth-card { padding: 1.5rem; }
  .kpi-grid { grid-template-columns: 1fr; }
}

/* ---- Misc utilities ---- */
.text-success { color: var(--success) !important; }
.text-danger  { color: var(--danger)  !important; }
.text-warning { color: var(--warning) !important; }
.text-muted   { color: var(--text-muted) !important; }
.text-primary { color: var(--primary-light) !important; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-0 { margin-bottom: 0; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.flex-1 { flex: 1; }

.hidden { display: none !important; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fs-sm  { font-size: 0.8rem; }
.fs-xs  { font-size: 0.72rem; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
