/* ── Modo oscuro — activado con data-theme="dark" en <html> ─────────────── */
[data-theme="dark"] {
    /* Tokens principales */
    --bg:      #0f172a;
    --surface: #1e293b;
    --border:  #334155;
    --text:    #f1f5f9;
    --muted:   #94a3b8;

    /* Azul primario (más claro para fondos oscuros) */
    --p:       #60a5fa;
    --p-dk:    #3b82f6;
    --p-dark:  #3b82f6;
    --p-lt:    #1e3a5f;
    --p-lt2:   #172554;
    --p-light: #1e3a5f;

    /* Variantes de borde */
    --border-strong:  #475569;
    --muted-light:    #64748b;

    /* Sombras */
    --shadow:    0 1px 3px rgba(0,0,0,.35), 0 1px 2px rgba(0,0,0,.2);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,.4), 0 2px 4px -2px rgba(0,0,0,.25);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.5);

    /* Colores semánticos */
    --verde:    #4ade80; --verde-bg:   #052e16;
    --rojo:     #f87171; --rojo-bg:    #450a0a;
    --naranja:  #fb923c; --naranja-bg: #431407;
    --amarillo: #fcd34d; --amarillo-bg:#451a03;
    --azul-bg:  #1e3a5f;

    /* Badges de stock */
    --ok-fg:   #4ade80; --ok-bg:  #052e16; --ok-dot: #22c55e;
    --low-fg:  #fcd34d; --low-bg: #451a03; --low-dot: #f59e0b;
    --out-fg:  #f87171; --out-bg: #450a0a; --out-dot: #ef4444;

    /* Caja — estado turno */
    --abierta-bg:  #052e16; --abierta-text: #4ade80; --abierta-dot: #22c55e;
    --cerrada-bg:  #1e293b; --cerrada-text: #94a3b8; --cerrada-dot: #475569;

    /* Caja — resultado arqueo */
    --sobrante-bg: #451a03; --sobrante-fg: #fcd34d; --sobrante-brd: #92400e;
    --faltante-bg: #450a0a; --faltante-fg: #f87171; --faltante-brd: #7f1d1d;
    --exacto-bg:   #052e16; --exacto-fg:   #4ade80; --exacto-brd:   #14532d;
}

/* ── Inputs, selects y textareas ────────────────────────────────────────── */
[data-theme="dark"] input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
[data-theme="dark"] select,
[data-theme="dark"] textarea {
    background-color: #1e293b !important;
    color: #f1f5f9 !important;
    border-color: #334155 !important;
}
[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
    color: #64748b !important;
}
[data-theme="dark"] select option {
    background-color: #1e293b;
    color: #f1f5f9;
}

/* ── Alertas de home (hardcodeadas) ─────────────────────────────────────── */
[data-theme="dark"] .alerta-stock  { background:#451a03; border-color:#92400e; }
[data-theme="dark"] .alerta-stock__hdr  { border-bottom-color:#92400e; }
[data-theme="dark"] .alerta-stock__titulo { color:#fcd34d; }
[data-theme="dark"] .alerta-stock__nombre { color:#fcd34d; }
[data-theme="dark"] .alerta-stock__stock  { color:#fbbf24; }
[data-theme="dark"] .alerta-stock__badge  { background:#92400e; }
[data-theme="dark"] .alerta-stock__link   { color:#fcd34d; }
[data-theme="dark"] .alerta-stock__item   { border-bottom-color:#78350f; }
[data-theme="dark"] .alerta-stock__mas    { color:#fcd34d; }

[data-theme="dark"] .alerta-credito { background:#450a0a; border-color:#7f1d1d; }
[data-theme="dark"] .alerta-credito__hdr  { border-bottom-color:#7f1d1d; }
[data-theme="dark"] .alerta-credito__titulo { color:#f87171; }
[data-theme="dark"] .alerta-credito__cliente { color:#f87171; }
[data-theme="dark"] .alerta-credito__badge   { background:#7f1d1d; }
[data-theme="dark"] .alerta-credito__link    { color:#f87171; }
[data-theme="dark"] .alerta-credito__item    { border-bottom-color:#450a0a; }
[data-theme="dark"] .alerta-credito__factura { color:#fca5a5; }
[data-theme="dark"] .alerta-credito__saldo   { color:#f87171; }
[data-theme="dark"] .alerta-credito__mas     { color:#f87171; }

/* ── Tarjeta de módulo en home ──────────────────────────────────────────── */
[data-theme="dark"] .modulo-card { background: var(--surface); color: var(--text); }

/* ── Scrollbar ──────────────────────────────────────────────────────────── */
[data-theme="dark"] ::-webkit-scrollbar-track { background: #1e293b; }
[data-theme="dark"] ::-webkit-scrollbar-thumb { background: #475569; border-radius: 4px; }
[data-theme="dark"] ::-webkit-scrollbar-thumb:hover { background: #64748b; }

/* ── Ayuda: tip y warning ───────────────────────────────────────────────── */
[data-theme="dark"] .tip {
    background: #0c2231;
    border-color: #1e4a6e;
    color: #7dd3fc;
}
[data-theme="dark"] .warning {
    background: #2d1e00;
    border-color: #78350f;
    color: #fcd34d;
}
[data-theme="dark"] p,
[data-theme="dark"] li {
    color: #cbd5e1;
}
[data-theme="dark"] h3 {
    color: #f1f5f9;
}
[data-theme="dark"] table.help-table th {
    background: #1e293b;
    color: #94a3b8;
    border-bottom-color: #334155;
}
[data-theme="dark"] table.help-table td {
    color: #cbd5e1;
    border-bottom-color: #334155;
}

/* ── Botón de toggle de tema (en topbar oscura de cada vista) ───────────── */
.btn-theme-toggle {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    color: #fff;
    border-radius: 8px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    transition: background .15s, border-color .15s;
}
.btn-theme-toggle:hover {
    background: rgba(255,255,255,.22);
    border-color: rgba(255,255,255,.38);
}
.btn-theme-toggle .icon-sun  { display: none; }
.btn-theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .btn-theme-toggle .icon-sun  { display: block; }
[data-theme="dark"] .btn-theme-toggle .icon-moon { display: none; }
