/* ============================================================
   Design System — Três Encantos Presentes
   4 temas (Rosa claro/escuro, Esmeralda, Índigo), responsivo.
   Todas as cores usam variáveis (--berry = cor primária do tema).
   ============================================================ */

/* ---------- TEMA 1: ROSA CLARO (padrão) ---------- */
:root {
  --berry: #8A1E4C;
  --berry-dark: #6E153B;
  --mauve: #A85E72;
  --blush: #F3DBE0;
  --rose-btn: #EAC9D1;
  --rose-light: #FBEEF1;

  --ink: #2A1B22;
  --muted: #8B7A80;
  --line: #EADDE1;
  --surface: #FFFFFF;
  --surface-2: #FDF7F9;
  --bg: #F6EFF2;

  --success: #3E9E6E;
  --warning: #D9902B;
  --danger: #C0392B;
  --info: #4A7BA6;

  --shadow: 0 2px 8px rgba(138, 30, 76, 0.05), 0 8px 24px rgba(138, 30, 76, 0.06);
  --shadow-lg: 0 12px 44px rgba(138, 30, 76, 0.16);
  --radius: 20px;
  --radius-sm: 12px;
  --gap: 24px;
  --sidebar-w: 250px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- TEMA 2: ROSA ESCURO ---------- */
[data-theme='escuro'] {
  --berry: #D25C87;
  --berry-dark: #A83A65;
  --mauve: #D08BA0;
  --blush: #2E1E26;
  --rose-btn: #3A2530;
  --rose-light: #2A1A22;

  --ink: #F3E7EB;
  --muted: #A991A0;
  --line: #3A2A32;
  --surface: #241820;
  --surface-2: #1F141B;
  --bg: #160E13;

  --success: #4FB783;
  --warning: #E0A64B;
  --danger: #E5687A;
  --info: #6FA8DA;

  --shadow: 0 2px 10px rgba(0, 0, 0, 0.25), 0 10px 30px rgba(0, 0, 0, 0.30);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.55);
}

/* ---------- TEMA 3: ESMERALDA (verde claro, estilo fintech) ---------- */
[data-theme='esmeralda'] {
  --berry: #12A150;
  --berry-dark: #0C8541;
  --mauve: #3F9C74;
  --blush: #E2F3E9;
  --rose-btn: #CFEBDA;
  --rose-light: #EEF8F2;

  --ink: #17271F;
  --muted: #6E8579;
  --line: #DEECE4;
  --surface: #FFFFFF;
  --surface-2: #F5FAF7;
  --bg: #ECF3EF;

  --success: #17914F;
  --warning: #D9902B;
  --danger: #C0392B;
  --info: #3C7DA6;

  --shadow: 0 2px 8px rgba(18, 100, 60, 0.05), 0 8px 24px rgba(18, 100, 60, 0.07);
  --shadow-lg: 0 12px 44px rgba(18, 100, 60, 0.16);
}

/* ---------- TEMA 4: ÍNDIGO (escuro azul, elegante) ---------- */
[data-theme='indigo'] {
  --berry: #8098FF;
  --berry-dark: #6377E6;
  --mauve: #9EACE4;
  --blush: #232E4E;
  --rose-btn: #2B3757;
  --rose-light: #1E2740;

  --ink: #EBEFFC;
  --muted: #97A2C6;
  --line: #313E62;
  --surface: #1E2740;
  --surface-2: #19213A;
  --bg: #121829;

  --success: #4FB783;
  --warning: #E0A64B;
  --danger: #E5687A;
  --info: #6FA8DA;

  --shadow: 0 2px 10px rgba(0, 0, 0, 0.22), 0 10px 30px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.5);
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  transition: background .35s ease, color .35s ease;
}

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

/* ---------- Sidebar ---------- */
.sidebar {
  width: var(--sidebar-w);
  background: linear-gradient(170deg, var(--berry), var(--berry-dark));
  color: #fff;
  position: fixed; top: 0; left: 0; bottom: 0;
  display: flex; flex-direction: column;
  padding: 22px 14px;
  z-index: 60;
  overflow-y: auto;
  transition: transform .3s ease;
}
.sidebar::-webkit-scrollbar { width: 6px; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); border-radius: 4px; }

.brand {
  text-align: center; padding: 6px 8px 18px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  margin-bottom: 12px;
}
.brand img { max-width: 130px; max-height: 84px; object-fit: contain; margin-bottom: 4px; }
.brand h1 { font-family: var(--font-serif); font-size: 22px; font-weight: 600; line-height: 1.05; }
.brand span { font-size: 10px; letter-spacing: 3px; opacity: .85; text-transform: uppercase; }

.nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; margin: 2px 0;
  color: rgba(255,255,255,.85); text-decoration: none;
  border-radius: var(--radius-sm); font-weight: 500; font-size: 13.5px;
  transition: background .18s, color .18s, transform .18s;
}
.nav a .ico { width: 20px; text-align: center; font-size: 16px; }
.nav a:hover { background: rgba(255,255,255,.14); color: #fff; transform: translateX(2px); }
.nav a.active { background: #fff; color: var(--berry); font-weight: 600; box-shadow: 0 6px 18px rgba(0,0,0,.12); }
.nav .group-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; opacity: .55; margin: 16px 14px 4px; }

/* Overlay do menu no mobile */
.sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(20,10,16,.45); z-index: 55; backdrop-filter: blur(2px); }
.sidebar-overlay.show { display: block; }

/* ---------- Main ---------- */
.main { flex: 1; margin-left: var(--sidebar-w); display: flex; flex-direction: column; min-width: 0; }

.topbar {
  min-height: 66px; background: var(--surface); border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px; padding: 10px clamp(16px, 3vw, 28px);
  position: sticky; top: 0; z-index: 40;
}
.topbar .page-title { font-family: var(--font-serif); font-size: clamp(18px, 2.4vw, 23px); font-weight: 600; color: var(--berry); }
.topbar .spacer { flex: 1; }
.topbar .global-search {
  display: flex; align-items: center; gap: 8px; background: var(--surface-2);
  border: 1px solid var(--line); border-radius: 30px; padding: 9px 16px; width: clamp(160px, 22vw, 280px);
}
.topbar .global-search input { border: none; background: none; outline: none; color: var(--ink); width: 100%; font-size: 13px; }

/* Seletor de tema */
.theme-wrap { position: relative; }
.theme-toggle {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--surface-2); cursor: pointer; font-size: 18px; color: var(--berry);
  display: grid; place-items: center; transition: transform .3s, background .2s;
}
.theme-toggle:hover { transform: scale(1.06); background: var(--rose-light); }
.theme-menu {
  position: absolute; right: 0; top: 54px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); padding: 8px; width: 190px; z-index: 50;
  display: none;
}
.theme-menu.open { display: block; }
.theme-menu .t-opt {
  display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 10px;
  cursor: pointer; font-size: 13px; font-weight: 500; color: var(--ink); transition: background .15s;
}
.theme-menu .t-opt:hover { background: var(--surface-2); }
.theme-menu .t-opt.active { background: var(--rose-light); font-weight: 600; }
.theme-menu .sw { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line); flex-shrink: 0; }

.content { padding: clamp(16px, 2.4vw, 28px); flex: 1; }

/* Ritmo vertical uniforme entre TODOS os blocos de qualquer aba.
   Cada bloco de topo recebe o mesmo espaçamento — evita cards colados. */
.content > * + * { margin-top: var(--gap); }
/* Depois de um cabeçalho de seção não soma espaço (ele já tem margem própria) */
.content > .section-head + * { margin-top: 0; }
/* Toolbar de topo não duplica espaçamento (a regra acima já separa do próximo) */
.content > .toolbar { margin-bottom: 0; }

/* ============================================================
   COMPONENTES
   ============================================================ */

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(16px, 2vw, 22px); box-shadow: var(--shadow);
}
.card-title { font-family: var(--font-serif); font-size: 17px; color: var(--ink); margin-bottom: 14px; font-weight: 600; }

/* KPI cards */
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: var(--gap); }
.kpi {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.kpi:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.kpi::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--berry); }
.kpi .kpi-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; display: flex; align-items: center; gap: 8px; }
.kpi .kpi-value { font-family: var(--font-serif); font-size: clamp(24px, 3vw, 30px); font-weight: 700; color: var(--ink); margin-top: 6px; word-break: break-word; }
.kpi .kpi-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }
.kpi.accent-success::before { background: var(--success); }
.kpi.accent-warning::before { background: var(--warning); }
.kpi.accent-danger::before { background: var(--danger); }
.kpi.accent-info::before { background: var(--info); }
.kpi .kpi-ico { position: absolute; right: 16px; top: 16px; font-size: 22px; opacity: .22; }

/* Botões */
.btn {
  display: inline-flex; align-items: center; gap: 7px; justify-content: center;
  padding: 10px 18px; border: 1px solid transparent; border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-size: 13.5px; font-weight: 600; cursor: pointer;
  transition: background .18s, transform .12s, box-shadow .18s, filter .18s; text-decoration: none; white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--berry); color: #fff; }
.btn-primary:hover { background: var(--berry-dark); box-shadow: var(--shadow); }
.btn-secondary { background: var(--rose-btn); color: var(--berry); }
.btn-secondary:hover { background: var(--blush); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { background: var(--surface-2); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { filter: brightness(.92); }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-icon { padding: 7px 9px; }

/* Tabelas */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); -webkit-overflow-scrolling: touch; }
table.data { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 520px; }
table.data thead th {
  background: var(--rose-light); color: var(--berry); text-align: left; font-weight: 600;
  padding: 12px 16px; white-space: nowrap; font-size: 12.5px; text-transform: uppercase; letter-spacing: .3px;
}
table.data tbody td { padding: 12px 16px; border-top: 1px solid var(--line); vertical-align: middle; }
table.data tbody tr:hover { background: var(--rose-light); }
table.data .num { text-align: right; font-variant-numeric: tabular-nums; }
table.data .actions { text-align: right; white-space: nowrap; }
.empty { text-align: center; color: var(--muted); padding: 40px 20px; }
.empty .big { font-size: 40px; opacity: .4; display: block; margin-bottom: 10px; }

/* Badges de status */
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 20px; font-size: 11.5px; font-weight: 600; white-space: nowrap; }
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge-success { background: color-mix(in srgb, var(--success) 15%, transparent); color: var(--success); }
.badge-warning { background: color-mix(in srgb, var(--warning) 18%, transparent); color: var(--warning); }
.badge-danger  { background: color-mix(in srgb, var(--danger) 15%, transparent); color: var(--danger); }
.badge-info    { background: color-mix(in srgb, var(--info) 15%, transparent); color: var(--info); }
.badge-muted   { background: var(--surface-2); color: var(--muted); }

/* Formulários */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.form-grid.cols-1 { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--muted); }
.field input, .field select, .field textarea {
  padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface-2); color: var(--ink); font-family: var(--font-sans); font-size: 13.5px; outline: none;
  transition: border .15s, box-shadow .15s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--berry); box-shadow: 0 0 0 3px color-mix(in srgb, var(--berry) 15%, transparent);
}
.field textarea { resize: vertical; min-height: 64px; }
.check { display: flex; align-items: center; gap: 8px; }
.check input { width: 16px; height: 16px; accent-color: var(--berry); }

/* Toolbar de filtros */
.toolbar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 18px; }
.toolbar .search { display: flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--line); border-radius: 30px; padding: 8px 14px; flex: 1 1 220px; min-width: 0; }
.toolbar .search input { border: none; background: none; outline: none; color: var(--ink); font-size: 13px; width: 100%; }
.toolbar select { padding: 9px 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); color: var(--ink); font-size: 13px; }
.toolbar .spacer { flex: 1; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 2fr 1fr; gap: var(--gap); }
.grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }

/* Stack vertical consistente entre blocos */
.stack { display: flex; flex-direction: column; gap: var(--gap); }
.mt { margin-top: var(--gap); }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(30, 18, 24, .55); backdrop-filter: blur(3px);
  display: flex; align-items: flex-start; justify-content: center; padding: clamp(12px, 4vh, 40px) 14px; z-index: 100;
  overflow-y: auto;
}
.modal {
  background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  width: 100%; max-width: 620px; margin: auto 0;
}
.modal.lg { max-width: 860px; }
.modal-head { padding: 18px 22px; border-bottom: 1px solid var(--line); display: flex; align-items: center; }
.modal-head h3 { font-family: var(--font-serif); font-size: 20px; color: var(--berry); }
.modal-head .close { margin-left: auto; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--muted); line-height: 1; }
.modal-body { padding: 22px; }
.modal-foot { padding: 16px 22px; border-top: 1px solid var(--line); display: flex; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }

/* Toast */
.toast-wrap { position: fixed; right: 18px; bottom: 18px; left: 18px; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; z-index: 200; pointer-events: none; }
.toast {
  background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--success);
  padding: 14px 18px; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); max-width: 340px;
  display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 500; pointer-events: auto;
}
.toast.err { border-left-color: var(--danger); }
.toast.warn { border-left-color: var(--warning); }

/* Section title */
.section-head { display: flex; align-items: center; gap: 12px; margin: 24px 0 14px; flex-wrap: wrap; }
.section-head h2 { font-family: var(--font-serif); font-size: 18px; color: var(--ink); }
.section-head .spacer { flex: 1; }

/* Misc */
.muted { color: var(--muted); }
.money { font-variant-numeric: tabular-nums; font-weight: 600; }
.pos { color: var(--success); }
.neg { color: var(--danger); }
.chip { display: inline-block; padding: 3px 9px; border-radius: 20px; background: var(--rose-light); color: var(--berry); font-size: 11px; font-weight: 600; }
.divider { height: 1px; background: var(--line); margin: 16px 0; }
.chart-box { position: relative; height: clamp(220px, 34vh, 280px); }
.list-clean { list-style: none; }
.list-clean li { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-top: 1px solid var(--line); font-size: 13px; }
.list-clean li:first-child { border-top: none; }
.avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--rose-btn); color: var(--berry); display: grid; place-items: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }

/* Item rows (venda) */
.item-row { display: grid; grid-template-columns: 3fr 1fr 1.3fr 1.3fr auto; gap: 8px; align-items: end; margin-bottom: 8px; }
.resumo-venda { background: var(--rose-light); border-radius: var(--radius-sm); padding: 16px; }
.resumo-venda .linha { display: flex; justify-content: space-between; padding: 5px 0; font-size: 13.5px; }
.resumo-venda .total { border-top: 1px dashed var(--mauve); margin-top: 6px; padding-top: 10px; font-size: 18px; font-weight: 700; color: var(--berry); }

/* Loading */
.loader { text-align: center; padding: 50px; color: var(--muted); }
.spin { display: inline-block; width: 28px; height: 28px; border: 3px solid var(--line); border-top-color: var(--berry); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.menu-btn { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); background: var(--surface-2); cursor: pointer; place-items: center; font-size: 18px; color: var(--berry); flex-shrink: 0; }

/* ============================================================
   RESPONSIVO
   ============================================================ */

/* Desktop menor / laptop: grid-2 fica mais equilibrado */
@media (max-width: 1180px) {
  .grid-2 { grid-template-columns: 1.6fr 1fr; }
}

/* Tablet: empilha as colunas duplas */
@media (max-width: 980px) {
  .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  :root { --sidebar-w: 210px; }
}

/* Mobile: sidebar vira gaveta */
@media (max-width: 820px) {
  .sidebar { transform: translateX(-100%); width: 260px; box-shadow: var(--shadow-lg); }
  .sidebar.open { transform: translateX(0); }
  .main { margin-left: 0; }
  .menu-btn { display: grid; }
  .topbar .global-search { display: none; }
  .item-row { grid-template-columns: 1fr 1fr; }
}

/* Celular pequeno */
@media (max-width: 520px) {
  :root { --gap: 16px; --radius: 16px; }
  .kpi-grid { grid-template-columns: 1fr; }
  .item-row { grid-template-columns: 1fr; }
  .toolbar { gap: 8px; }
  .toolbar select { flex: 1 1 auto; }
  .btn { padding: 10px 14px; }
  .modal-foot { justify-content: stretch; }
  .modal-foot .btn { flex: 1; }
  .topbar .page-title { font-size: 18px; }
}

/* ============================================================
   LOGIN / PRIMEIRO ACESSO
   ============================================================ */
#authScreen {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  background: linear-gradient(150deg, var(--berry), var(--berry-dark));
}
.auth-card {
  background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  width: 100%; max-width: 380px; padding: 34px 30px; text-align: center;
  animation: authIn .4s ease;
}
@keyframes authIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.auth-brand { margin-bottom: 22px; }
.auth-brand h1 { font-family: var(--font-serif); font-size: 28px; color: var(--berry); line-height: 1; }
.auth-brand span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--mauve); }
.auth-title { font-family: var(--font-serif); font-size: 20px; color: var(--ink); margin-bottom: 4px; }
.auth-sub { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.auth-form { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.auth-form .field label { font-size: 12.5px; }
.auth-erro { color: var(--danger); font-size: 12.5px; font-weight: 600; min-height: 4px; text-align: center; }

/* Chip do usuário na topbar */
.user-chip { display: flex; align-items: center; gap: 8px; padding: 4px 6px 4px 4px; border: 1px solid var(--line); border-radius: 30px; background: var(--surface-2); }
.user-chip .avatar { width: 32px; height: 32px; font-size: 12px; }
.user-chip .user-nome { font-size: 13px; font-weight: 600; color: var(--ink); max-width: 130px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.btn-logout { width: 30px; height: 30px; border-radius: 50%; border: none; background: transparent; color: var(--muted); cursor: pointer; font-size: 16px; transition: background .15s, color .15s; }
.btn-logout:hover { background: color-mix(in srgb, var(--danger) 14%, transparent); color: var(--danger); }

@media (max-width: 640px) {
  .user-chip .user-nome { display: none; }
}

/* ---- Etapa 1: crédito T3H4 + data no dashboard ---- */
.sidebar-footer { margin-top: auto; padding-top: 18px; text-align: center; font-size: 11px; letter-spacing: .5px; color: rgba(255,255,255,.55); }
.sidebar-footer b { color: rgba(255,255,255,.85); font-weight: 700; }
.auth-credit { margin-top: 20px; text-align: center; font-size: 11px; letter-spacing: .5px; color: var(--muted); }
.auth-credit b { color: var(--berry); font-weight: 700; }
.dash-hoje { font-size: 14px; font-weight: 600; color: var(--muted); text-transform: capitalize; }

/* ---- Etapa 6: combo com busca (autocomplete) ---- */
.combo { position: relative; }
.combo-input { width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface-2); color: var(--ink); font-family: var(--font-sans); font-size: 13.5px; outline: none; transition: border .15s, box-shadow .15s; }
.combo-input:focus { border-color: var(--berry); box-shadow: 0 0 0 3px color-mix(in srgb, var(--berry) 15%, transparent); }
.combo-list { position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); max-height: 220px; overflow-y: auto; z-index: 25; }
.combo-item { padding: 9px 12px; font-size: 13.5px; cursor: pointer; }
.combo-item:hover { background: var(--rose-light); color: var(--berry); }
.combo-empty { padding: 10px 12px; color: var(--muted); font-size: 13px; }
