/* Dashboard Operativo Ecommerce — v1.3
   Light, dense, table-first. Product register: design serves the task.
   System sans (no webfont). Restrained color: neutrals + 1 accent + semantic states. */

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

:root {
  /* Surfaces — light, slightly cool */
  --bg:        #f5f6f8;
  --panel:     #ffffff;
  --panel-2:   #fbfcfd;
  --sidebar:   #0f1623;          /* dark sidebar for contrast against light content */
  --sidebar-2: #18202f;
  --row-hover: #f4f7fb;
  --row-alt:   #fafbfc;

  /* Ink */
  --ink:       #1a2231;
  --ink-2:     #4a566b;
  --ink-3:     #76829a;
  --ink-on-dark:   #e8edf6;
  --ink-on-dark-2: #9aa6bd;
  --ink-on-dark-3: #5e6b85;

  /* Lines */
  --line:      #e4e8ee;
  --line-2:    #d4dae3;

  /* Accent */
  --accent:    #3a5bd9;
  --accent-50: #eef2fd;
  --accent-100:#dde5fb;

  /* Semantic states (badges + values) */
  --ok:        #1a8a4f;   --ok-bg:        #e6f4ec;   --ok-line:        #bce3cd;
  --revisar:   #b5740a;   --revisar-bg:   #fcf2e1;   --revisar-line:   #f0dcae;
  --riesgo:    #c2410c;   --riesgo-bg:    #fdeadf;   --riesgo-line:    #f6cdb3;
  --oportun:   #0e7c86;   --oportun-bg:   #e1f3f4;   --oportun-line:   #b3e0e3;
  --bloqueado: #c23434;   --bloqueado-bg: #fbe9e9;   --bloqueado-line: #f1c9c9;
  --proxy:     #4b56c4;   --proxy-bg:     #ecedfb;   --proxy-line:     #d3d6f3;
  --muted-bg:  #eef0f3;   --muted-line:   #dde1e7;

  --sidebar-w: 232px;
  --topbar-h:  54px;

  --r-sm: 6px;
  --r-md: 9px;
  --shadow: 0 1px 2px rgba(20,30,50,.05), 0 1px 1px rgba(20,30,50,.04);

  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Segoe UI Variable',
               system-ui, Roboto, 'Helvetica Neue', Arial, sans-serif;
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── APP SHELL ─────────────────────────────────────────── */

.app { display: flex; height: 100vh; overflow: hidden; }

.main { flex: 1; min-width: 0; display: flex; flex-direction: column; overflow: hidden; }

/* ── SIDEBAR ───────────────────────────────────────────── */

.sidebar {
  width: var(--sidebar-w);
  min-width: var(--sidebar-w);
  background: var(--sidebar);
  color: var(--ink-on-dark);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  z-index: 20;
}

.sidebar-head { padding: 16px 18px 14px; border-bottom: 1px solid rgba(255,255,255,.07); }

.brand { display: flex; align-items: center; gap: 9px; }
.brand-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(58,91,217,.25);
}
.brand-name { font-size: 13.5px; font-weight: 600; letter-spacing: -.01em; color: #fff; }
.brand-sub { margin-top: 5px; font-size: 11px; color: var(--ink-on-dark-3); padding-left: 18px; }

.nav { padding: 8px 0; flex: 1; }

.nav-group-label {
  padding: 12px 18px 5px;
  font-size: 10px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink-on-dark-3);
}
.nav-group-label:first-child { padding-top: 6px; }

.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 18px;
  font-size: 13px; color: var(--ink-on-dark-2);
  cursor: pointer; user-select: none;
  border-left: 2px solid transparent;          /* nav indicator, not a card accent */
  transition: background .12s, color .12s;
}
.nav-item:hover { background: var(--sidebar-2); color: var(--ink-on-dark); }
.nav-item.active {
  background: var(--sidebar-2);
  color: #fff; font-weight: 500;
  border-left-color: var(--accent);
}
.nav-idx {
  width: 18px; text-align: center; flex-shrink: 0;
  font-size: 11px; color: var(--ink-on-dark-3); font-variant-numeric: tabular-nums;
}
.nav-item.active .nav-idx { color: var(--accent); }
.nav-flag {
  margin-left: auto; font-size: 9.5px; font-weight: 600; letter-spacing: .03em;
  padding: 1px 5px; border-radius: 4px;
}
.nav-flag.warn  { background: rgba(181,116,10,.22);  color: #f0c074; }
.nav-flag.block { background: rgba(194,52,52,.22);   color: #ec9a9a; }

.sidebar-foot { padding: 13px 18px; border-top: 1px solid rgba(255,255,255,.07); }
.foot-client { font-size: 13px; font-weight: 600; color: #fff; }
.foot-domain { font-size: 11.5px; color: var(--ink-on-dark-2); }
.foot-meta   { margin-top: 5px; font-size: 10.5px; color: var(--ink-on-dark-3); }

/* ── TOPBAR ────────────────────────────────────────────── */

.topbar {
  height: var(--topbar-h); min-height: var(--topbar-h);
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; gap: 16px;
}
.topbar-left { display: flex; align-items: center; gap: 12px; }
.menu-btn { display: none; background: none; border: none; font-size: 18px; cursor: pointer; color: var(--ink-2); }
.crumb { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.crumb-client { color: var(--ink-3); }
.crumb-sep { color: var(--line-2); }
.crumb-screen { font-weight: 600; color: var(--ink); }

.topbar-right { display: flex; align-items: center; gap: 12px; }
.field { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--ink-3); }
.field select {
  font: inherit; font-size: 12px; color: var(--ink); background: var(--panel-2);
  border: 1px solid var(--line-2); border-radius: var(--r-sm); padding: 4px 8px; cursor: not-allowed;
}
.btn-export {
  font: inherit; font-size: 12px; font-weight: 500; color: #fff;
  background: var(--accent); border: none; border-radius: var(--r-sm);
  padding: 6px 14px; cursor: pointer; transition: background .12s;
}
.btn-export:hover { background: #2f4bc0; }

/* ── DATA HONESTY STRIP ────────────────────────────────── */

.data-strip {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px 16px;
  padding: 7px 20px;
  background: #fff7ec;
  border-bottom: 1px solid var(--revisar-line);
  font-size: 11.5px; color: #7a5410;
}
.data-strip b { font-weight: 600; }
.data-strip .ds-item { display: inline-flex; align-items: center; gap: 6px; }
.data-strip .ds-dot { width: 6px; height: 6px; border-radius: 50%; }

/* ── WORKSPACE ─────────────────────────────────────────── */

.workspace { flex: 1; overflow-y: auto; padding: 20px; }
#screen { max-width: 1280px; }

/* ── SCREEN HEADER ─────────────────────────────────────── */

.screen-head { margin-bottom: 16px; }
.screen-title { font-size: 19px; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
.screen-q { margin-top: 3px; font-size: 13px; color: var(--ink-3); max-width: 70ch; }

/* ── BLOCK (section within a screen) ───────────────────── */

.block { margin-bottom: 16px; }
.block-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin-bottom: 7px;
}
.block-title { font-size: 13px; font-weight: 600; color: var(--ink); }
.block-note { font-size: 11.5px; color: var(--ink-3); }

/* ── KPI TILES (dense, not hero-metric) ────────────────── */

.kpi-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: 10px;
}
.kpi {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 11px 13px; box-shadow: var(--shadow);
}
.kpi-label {
  font-size: 11px; color: var(--ink-3); font-weight: 500;
  display: flex; align-items: center; justify-content: space-between; gap: 6px;
}
.kpi-value {
  margin-top: 6px; font-size: 19px; font-weight: 700; letter-spacing: -.02em; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.kpi-value.sm { font-size: 14px; font-weight: 600; }
.kpi-foot { margin-top: 4px; font-size: 11px; color: var(--ink-3); display: flex; align-items: center; gap: 6px; }
.kpi-delta.down { color: var(--bloqueado); font-weight: 600; }
.kpi-delta.up   { color: var(--ok); font-weight: 600; }

/* ── STAT BAND (Foto ecommerce / Lectura rápida / Concentración) ─ */

.stat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(152px, 1fr)); gap: 10px; }
.stat-cell {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 12px 14px; box-shadow: var(--shadow);
}
.stat-label { font-size: 11px; color: var(--ink-3); font-weight: 500; display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.stat-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.stat-dot.proxy { background: var(--proxy); }
.stat-dot.real { background: var(--ok); }
.stat-dot.bloqueado { background: var(--bloqueado); }
.stat-value { margin-top: 7px; font-size: 23px; font-weight: 700; letter-spacing: -.02em; color: var(--ink); font-variant-numeric: tabular-nums; line-height: 1.12; }
.stat-value.sm { font-size: 14px; font-weight: 600; line-height: 1.3; }
.stat-sub { margin-top: 5px; font-size: 11px; color: var(--ink-3); display: flex; align-items: center; gap: 6px; }
.stat-delta.down { color: var(--bloqueado); font-weight: 600; }
.stat-delta.up { color: var(--ok); font-weight: 600; }
/* Foto ecommerce: banda hero, números algo mayores */
.stat-grid.foto .stat-value { font-size: 25px; }
.stat-grid.foto .stat-cell { background: linear-gradient(180deg, #fff, var(--panel-2)); }

/* ── SPARK CHARTS (mini barras) ────────────────────────── */

.spark {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 13px 15px; box-shadow: var(--shadow);
}
.spark-title { font-size: 11.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 10px; }
.spark-bars { display: flex; align-items: flex-end; gap: 14px; height: 92px; }
.spark-col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; }
.spark-val { font-size: 10px; font-weight: 600; color: var(--ink-3); margin-bottom: 5px; font-variant-numeric: tabular-nums; }
.spark-bar { width: 100%; max-width: 46px; background: var(--accent); border-radius: 3px 3px 0 0; min-height: 3px; transform-origin: bottom; animation: bar-grow .45s cubic-bezier(.2,.8,.2,1) both; }
.spark-bar.partial { background: repeating-linear-gradient(45deg, var(--accent-100), var(--accent-100) 4px, var(--accent-50) 4px, var(--accent-50) 8px); border: 1px solid var(--accent-100); }
.spark-label { margin-top: 6px; font-size: 10.5px; color: var(--ink-3); }

/* ── TABLE ─────────────────────────────────────────────── */

.table-wrap {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow);
}
.table-scroll { overflow-x: auto; }
table.data { width: 100%; border-collapse: collapse; font-size: 12.5px; }
table.data thead th {
  position: sticky; top: 0; z-index: 1;
  background: var(--panel-2);
  text-align: left; font-weight: 600; color: var(--ink-2);
  font-size: 11px; letter-spacing: .01em;
  padding: 9px 12px; border-bottom: 1px solid var(--line-2); white-space: nowrap;
}
table.data thead th.num { text-align: right; }
table.data tbody td {
  padding: 9px 12px; border-bottom: 1px solid var(--line);
  color: var(--ink); vertical-align: middle;
}
table.data tbody tr:last-child td { border-bottom: none; }
table.data tbody tr:nth-child(even) { background: var(--row-alt); }
table.data tbody tr:hover { background: var(--row-hover); }
table.data td.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
table.data td.main { font-weight: 500; color: var(--ink); }
table.data td.dim { color: var(--ink-3); }
table.data td.mono { font-family: ui-monospace, 'SF Mono', 'Cascadia Code', Consolas, monospace; font-size: 11.5px; color: var(--ink-2); }
table.data .rank { color: var(--ink-3); font-variant-numeric: tabular-nums; font-size: 11px; }
table.data tr.is-lead td { background: var(--accent-50); }
table.data tr.is-lead:hover td { background: var(--accent-100); }
table.data .cell-action { color: var(--ink-2); }
.rowlink { color: var(--accent); cursor: pointer; font-weight: 600; }
.rowlink:hover { text-decoration: underline; }
table.data tfoot td {
  padding: 9px 12px; font-weight: 600; background: var(--panel-2);
  border-top: 1px solid var(--line-2); font-variant-numeric: tabular-nums;
}
table.data tfoot td.num { text-align: right; }

/* mini inline bar inside a cell (for share/weight) */
.cellbar { display: flex; align-items: center; gap: 8px; justify-content: flex-end; }
.cellbar .track { width: 54px; height: 5px; border-radius: 3px; background: var(--muted-bg); overflow: hidden; }
.cellbar .fill { height: 100%; background: var(--accent); border-radius: 3px; }
.cellbar .pct { min-width: 38px; text-align: right; font-variant-numeric: tabular-nums; color: var(--ink-2); }

/* ── BADGES (OK / Revisar / Bloqueado / Proxy) ─────────── */

.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; line-height: 1;
  padding: 3px 8px; border-radius: 100px; white-space: nowrap;
  border: 1px solid transparent;
}
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: .9; }
.badge.ok          { color: var(--ok);        background: var(--ok-bg);        border-color: var(--ok-line); }
.badge.revisar     { color: var(--revisar);   background: var(--revisar-bg);   border-color: var(--revisar-line); }
.badge.riesgo      { color: var(--riesgo);    background: var(--riesgo-bg);    border-color: var(--riesgo-line); }
.badge.oportunidad { color: var(--oportun);   background: var(--oportun-bg);   border-color: var(--oportun-line); }
.badge.bloqueado   { color: var(--bloqueado); background: var(--bloqueado-bg); border-color: var(--bloqueado-line); }
.badge.proxy       { color: var(--proxy);     background: var(--proxy-bg);     border-color: var(--proxy-line); }
.badge.muted       { color: var(--ink-3);     background: var(--muted-bg);     border-color: var(--muted-line); }
.badge.muted::before { opacity: .5; }

.val-up   { color: var(--ok);        font-weight: 600; }
.val-down { color: var(--bloqueado); font-weight: 600; }
.val-warn { color: var(--revisar);   font-weight: 600; }

/* ── PROBLEMS LIST ─────────────────────────────────────── */

.problems {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow);
}
.problem {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 11px 14px; border-bottom: 1px solid var(--line);
}
.problem:last-child { border-bottom: none; }
.problem-mark {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px;
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
}
.problem-mark.revisar     { background: var(--revisar-bg);   color: var(--revisar); }
.problem-mark.riesgo      { background: var(--riesgo-bg);    color: var(--riesgo); }
.problem-mark.oportunidad { background: var(--oportun-bg);   color: var(--oportun); }
.problem-mark.bloqueado   { background: var(--bloqueado-bg); color: var(--bloqueado); }
.problem-body { flex: 1; min-width: 0; }
.problem-title { font-size: 12.5px; font-weight: 600; color: var(--ink); }
.problem-detail { font-size: 11.5px; color: var(--ink-3); margin-top: 1px; }
.problem-tail { flex-shrink: 0; display: flex; align-items: center; gap: 8px; }
.problem-metric { font-size: 12px; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }

/* ── DIAGNOSTICS (compact verdict list) ────────────────── */

.diag {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: 10px;
}
.diag-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 11px 13px; box-shadow: var(--shadow);
}
.diag-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.diag-label { font-size: 12px; font-weight: 600; color: var(--ink); }
.diag-text { margin-top: 5px; font-size: 11.5px; color: var(--ink-3); line-height: 1.4; }

/* inline detection tags (category/product markers) */
.tag {
  display: inline-flex; align-items: center; font-size: 10px; font-weight: 600;
  padding: 2px 6px; border-radius: 4px; letter-spacing: .01em; white-space: nowrap;
  background: var(--muted-bg); color: var(--ink-2);
}
.tag.lead   { background: var(--accent-50);  color: var(--accent); }
.tag.oport  { background: var(--oportun-bg); color: var(--oportun); }
.tag.vol    { background: var(--ok-bg);      color: var(--ok); }
.tag.ticket { background: var(--proxy-bg);   color: var(--proxy); }
.tag.warn   { background: var(--revisar-bg); color: var(--revisar); }
.tag.alta   { background: var(--ok-bg);      color: var(--ok); }
.tag.media  { background: var(--revisar-bg); color: var(--revisar); }
.tag.baja   { background: var(--bloqueado-bg); color: var(--bloqueado); }
.tag.est    { background: var(--muted-bg);   color: var(--ink-3); font-style: italic; }
.tag-row { display: flex; flex-wrap: wrap; gap: 4px; }

/* ── FILTER BAR ────────────────────────────────────────── */

.filter-scope { display: block; }
.filterbar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px 12px;
  padding: 10px 12px; margin-bottom: 10px;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow);
}
.f-field { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: var(--ink-3); font-weight: 500; }
.f-select, .f-input {
  font: inherit; font-size: 12px; color: var(--ink);
  background: var(--panel-2); border: 1px solid var(--line-2); border-radius: var(--r-sm);
  padding: 5px 9px; cursor: pointer; transition: border-color .12s, box-shadow .12s;
}
.f-input { cursor: text; min-width: 200px; }
.f-select:hover, .f-input:hover { border-color: var(--ink-3); }
.f-select:focus, .f-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-50); }
.filter-count { margin-left: auto; font-size: 11.5px; color: var(--ink-3); font-variant-numeric: tabular-nums; }

/* impact value emphasis (agujeros económicos) */
.impact { font-weight: 700; color: var(--riesgo); font-variant-numeric: tabular-nums; white-space: nowrap; }
.impact.block { color: var(--bloqueado); }

/* ── ACTION BOX ────────────────────────────────────────── */

.action-box {
  display: flex; align-items: flex-start; gap: 11px;
  background: var(--accent-50); border: 1px solid var(--accent-100);
  border-radius: var(--r-md); padding: 12px 14px;
}
.action-box .ico {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 6px;
  background: var(--accent); color: #fff; display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
}
.action-box .ab-body { flex: 1; }
.action-box .ab-title { font-size: 11px; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; color: var(--accent); }
.action-box .ab-text { margin-top: 3px; font-size: 13px; color: var(--ink); font-weight: 500; }

/* ── URGENT CALLOUT (acción inmediata) ─────────────────── */

.urgent {
  background: var(--riesgo-bg); border: 1px solid var(--riesgo-line); border-radius: var(--r-md);
  padding: 14px 16px;
}
.urgent-head { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.urgent-ico { color: var(--riesgo); font-size: 13px; }
.urgent-title { font-size: 14px; font-weight: 700; color: var(--ink); }
.urgent-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 12px; margin-bottom: 12px; }
.urgent-grid > div { display: flex; flex-direction: column; gap: 2px; }
.urgent .ul { font-size: 10.5px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; color: var(--riesgo); }
.urgent .uv { font-size: 13px; font-weight: 600; color: var(--ink); }
.urgent-action {
  font-size: 13px; color: var(--ink); font-weight: 500;
  padding-top: 10px; border-top: 1px solid var(--riesgo-line);
}

/* ── EMPTY / BLOCKED STATE ─────────────────────────────── */

.empty {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px; box-shadow: var(--shadow);
}
.empty-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.empty-title { font-size: 15px; font-weight: 700; color: var(--ink); }
.empty-text { font-size: 12.5px; color: var(--ink-3); max-width: 72ch; }

/* ── TWO COLUMN ────────────────────────────────────────── */

.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }

/* ── CHART (simple bars) ───────────────────────────────── */

.bars {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 16px; box-shadow: var(--shadow);
  display: flex; align-items: flex-end; gap: 22px; height: 168px;
}
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; }
.bar-val { font-size: 11px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; font-variant-numeric: tabular-nums; }
.bar {
  width: 100%; max-width: 70px; background: var(--accent); border-radius: 4px 4px 0 0;
  min-height: 4px; transform-origin: bottom; animation: bar-grow .45s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes bar-grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.bar.partial { background: repeating-linear-gradient(45deg, var(--accent-100), var(--accent-100) 5px, var(--accent-50) 5px, var(--accent-50) 10px); border: 1px solid var(--accent-100); }
.bar-label { margin-top: 7px; font-size: 11px; color: var(--ink-3); }

/* ── RESPONSIVE ────────────────────────────────────────── */

@media (max-width: 1000px) {
  .cols-2, .cols-3 { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .sidebar {
    position: fixed; inset: 0 auto 0 0; transform: translateX(-100%);
    transition: transform .2s ease; box-shadow: 0 0 40px rgba(0,0,0,.3);
  }
  .sidebar.open { transform: translateX(0); }
  .menu-btn { display: block; }
  .topbar-right .field { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
