/* ===== Tokens (claro / oscuro) ===== */
:root {
  --bg: #FBF7F4; --surface: #FFFFFF; --surface-2: #F5EFEA; --border: #E7DED7;
  --text: #2A2320; --muted: #7A6E68;
  --brand: #D92B14; --brand-600: #B4200F; --brand-soft: #FFE3EC; --yellow: #FFD84D; --purple: #A56BE0; --purple-600: #8A4FCB; --pink: #FFB6D0; --ink: #3A1A14;
  --accent: #FFD84D; --good: #3E8E41; --good-soft: #E4F3E3; --warn: #B7791F; --warn-soft: #FDF1DA; --bad: #C0392B; --bad-soft: #FBE4E1;
  --c1: #D92B14; --c2: #F5B700; --c3: #3FA34D; --c4: #A56BE0; --c5: #C2306F; --c6: #9A8C82;
  --shadow: 0 1px 2px rgba(60, 30, 20, .06), 0 4px 14px rgba(60, 30, 20, .06);
  --radius: 12px; --sidebar: 244px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #171211; --surface: #211A18; --surface-2: #2A211E; --border: #3A2F2B;
    --text: #F1E9E4; --muted: #A99C94;
    --brand: #FF5A3D; --brand-600: #FF7A61; --brand-soft: #3E1F2B; --purple: #B98CF0; --ink: #F1E9E4;
    --good: #6CC070; --good-soft: #1E3220; --warn: #E8B45A; --warn-soft: #382C15; --bad: #F0786B; --bad-soft: #3B1D19;
    --c1: #FF5A3D; --c2: #FFD84D; --c3: #6CC070; --c4: #B98CF0; --c5: #F0629F; --c6: #B3A79F;
    --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 4px 14px rgba(0, 0, 0, .3);
  }
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; font-family: var(--font); font-size: 15px; line-height: 1.45; color: var(--text); background: var(--bg); -webkit-tap-highlight-color: transparent; }
h1, h2, h3 { margin: 0; line-height: 1.2; }
h1 { font-size: 22px; } h2 { font-size: 17px; } h3 { font-size: 15px; }
a { color: var(--brand); }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--brand) 55%, transparent); outline-offset: 1px; }
.muted { color: var(--muted); } .small { font-size: 13px; } .right { text-align: right; } .center { text-align: center; }
.mono { font-variant-numeric: tabular-nums; }
.row { display: flex; gap: 10px; align-items: center; } .row.wrap { flex-wrap: wrap; } .row.between { justify-content: space-between; }
.grow { flex: 1 1 auto; min-width: 0; } .stack { display: flex; flex-direction: column; gap: 12px; }
.hidden { display: none !important; }

/* ===== Shell ===== */
.shell { display: grid; grid-template-columns: var(--sidebar) 1fr; min-height: 100vh; }
.sidebar { background: var(--surface); border-right: 1px solid var(--border); padding: 14px 10px; position: sticky; top: 0; height: 100vh; overflow-y: auto; display: flex; flex-direction: column; gap: 4px; }
.brand { display: flex; align-items: center; gap: 10px; padding: 6px 10px 14px; font-weight: 700; font-size: 16px; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-group { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding: 12px 12px 4px; }
.nav a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 10px; color: var(--text); text-decoration: none; font-weight: 500; }
.nav a:hover { background: var(--surface-2); }
.nav a.active { background: var(--brand-soft); color: var(--brand); font-weight: 650; }
.nav svg, .btn svg, .banner svg, .chip svg { width: 18px; height: 18px; flex: none; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.sidebar .user { margin-top: auto; padding: 12px; border-top: 1px solid var(--border); font-size: 13px; }
.main { min-width: 0; display: flex; flex-direction: column; }
.topbar { align-items: center; gap: 10px; padding: 10px 14px; background: var(--surface); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 20; }
.page { padding: 20px 24px 40px; max-width: 1500px; width: 100%; margin: 0 auto; }
.page-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.page.pos-page { padding: 12px; max-width: none; }
@media (max-width: 900px) {
  .shell { grid-template-columns: minmax(0, 1fr); }
  .sidebar { position: fixed; inset: 0 auto 0 0; width: 280px; z-index: 40; transform: translateX(-100%); transition: transform .2s; box-shadow: var(--shadow); }
  .sidebar.open { transform: none; }
  .scrim { position: fixed; inset: 0; background: rgba(0, 0, 0, .4); z-index: 30; }
  .topbar { display: flex; }
  .page { padding: 14px 12px 40px; }
}

/* ===== Componentes ===== */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px; }
.card > h2, .card-title { margin-bottom: 12px; }
.grid { display: grid; gap: 14px; } .g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } .g-auto { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
@media (max-width: 1100px) { .g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .g3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 700px) { .g2, .g3, .g4 { grid-template-columns: minmax(0, 1fr); } }
.kpi { padding: 14px 16px; } .kpi .label { font-size: 13px; color: var(--muted); } .kpi .value { font-size: 26px; font-weight: 700; margin-top: 2px; font-variant-numeric: tabular-nums; }
.kpi .sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.up { color: var(--good); } .down { color: var(--bad); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 9px 14px; border-radius: 10px; border: 1px solid var(--border); background: var(--surface); cursor: pointer; font-weight: 600; min-height: 40px; text-decoration: none; color: var(--text); transition: background .12s, transform .05s; }
.btn:hover { background: var(--surface-2); } .btn:active { transform: translateY(1px); }
.btn.primary { background: var(--brand); border-color: var(--brand); color: #fff; } .btn.primary:hover { background: var(--brand-600); }
.btn.danger { color: var(--bad); border-color: color-mix(in srgb, var(--bad) 40%, var(--border)); }
.btn.good { background: var(--good); border-color: var(--good); color: #fff; }
.btn.ghost { border-color: transparent; background: transparent; } .btn.sm { min-height: 32px; padding: 4px 10px; font-size: 13px; border-radius: 8px; }
.btn.lg { min-height: 52px; font-size: 17px; } .btn[disabled] { opacity: .55; cursor: not-allowed; }

.field { display: flex; flex-direction: column; gap: 4px; min-width: 0; } .field > label { font-size: 13px; font-weight: 600; color: var(--muted); }
input[type=text], input[type=search], input[type=number], input[type=password], input[type=date], input[type=email], input[type=tel], select, textarea {
  width: 100%; padding: 9px 11px; border: 1px solid var(--border); border-radius: 10px; background: var(--surface); min-height: 40px; }
textarea { min-height: 72px; resize: vertical; } input:disabled { background: var(--surface-2); }
input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--brand); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } .form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.check { display: flex; align-items: center; gap: 8px; }
.hint { font-size: 12.5px; color: var(--muted); }
.err { color: var(--bad); font-size: 13.5px; }

.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
table { width: 100%; border-collapse: collapse; } th, td { padding: 9px 12px; text-align: left; border-bottom: 1px solid var(--border); white-space: nowrap; }
th { font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); background: var(--surface-2); position: sticky; top: 0; }
td.wrap { white-space: normal; } tr:last-child td { border-bottom: 0; } tbody tr.click { cursor: pointer; } tbody tr:hover { background: var(--surface-2); }
th.num, td.num { text-align: right; font-variant-numeric: tabular-nums; } tfoot td { font-weight: 700; background: var(--surface-2); }
.badge { display: inline-block; padding: 2px 9px; border-radius: 999px; font-size: 12px; font-weight: 650; background: var(--surface-2); color: var(--muted); }
.badge.good { background: var(--good-soft); color: var(--good); } .badge.warn { background: var(--warn-soft); color: var(--warn); } .badge.bad { background: var(--bad-soft); color: var(--bad); } .badge.brand { background: var(--brand-soft); color: var(--brand); }
.empty { text-align: center; padding: 34px 12px; color: var(--muted); }
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 14px; overflow-x: auto; }
.tabs button { background: none; border: 0; padding: 10px 14px; cursor: pointer; font-weight: 600; color: var(--muted); border-bottom: 3px solid transparent; white-space: nowrap; }
.tabs button.active { color: var(--brand); border-bottom-color: var(--brand); }
.chips { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.chip { padding: 7px 14px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); cursor: pointer; white-space: nowrap; font-weight: 600; font-size: 14px; }
.chip.active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* Modal y toasts */
.modal-backdrop { position: fixed; inset: 0; background: rgba(20, 10, 8, .5); display: flex; align-items: flex-start; justify-content: center; padding: 4vh 12px; z-index: 100; overflow-y: auto; }
.modal { background: var(--surface); border-radius: 16px; width: 100%; max-width: 560px; box-shadow: 0 20px 60px rgba(0, 0, 0, .35); display: flex; flex-direction: column; max-height: 92vh; }
.modal.wide { max-width: 860px; } .modal.xl { max-width: 1080px; }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px 8px; } .modal-body { padding: 8px 18px 14px; overflow-y: auto; }
.modal-foot { display: flex; justify-content: flex-end; gap: 10px; padding: 12px 18px 16px; border-top: 1px solid var(--border); flex-wrap: wrap; }
#toasts { position: fixed; right: 14px; bottom: 14px; display: flex; flex-direction: column; gap: 8px; z-index: 200; }
.toast { background: var(--text); color: var(--bg); padding: 11px 16px; border-radius: 10px; box-shadow: var(--shadow); max-width: 360px; animation: pop .18s ease-out; }
.toast.good { background: var(--good); color: #fff; } .toast.bad { background: var(--bad); color: #fff; }
@keyframes pop { from { transform: translateY(8px); opacity: 0; } to { transform: none; opacity: 1; } }

/* Login */
.login-wrap { min-height: 100vh; display: grid; place-items: center; padding: 16px; background: linear-gradient(160deg, var(--brand-soft), var(--bg) 60%); }
.login-card { width: 100%; max-width: 380px; } .login-card img { width: 64px; height: 64px; border-radius: 16px; display: block; margin: 0 auto 10px; }

/* ===== POS ===== */
.pos { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 12px; height: calc(100vh - 24px); }
.pos-left { display: flex; flex-direction: column; gap: 10px; min-height: 0; }
.pos-search { display: flex; gap: 8px; }
.pos-search input { font-size: 17px; min-height: 48px; min-width: 0; flex: 1; }
.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; overflow-y: auto; align-content: start; padding: 2px 2px 12px; flex: 1; }
.product { text-align: left; padding: 0; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); cursor: pointer; display: flex; flex-direction: column; overflow: hidden; min-height: 96px; }
.product:hover { border-color: var(--brand); box-shadow: var(--shadow); } .product:active { transform: scale(.98); }
.product .pname { padding: 10px 10px 4px; font-weight: 650; line-height: 1.25; flex: 1; }
.product .pmeta { padding: 0 10px 10px; display: flex; justify-content: space-between; align-items: baseline; }
.product .price { font-weight: 800; color: var(--brand); font-variant-numeric: tabular-nums; }
.product.out { opacity: .5; }
.pos-cart { display: flex; flex-direction: column; min-height: 0; padding: 0; overflow: hidden; }
.cart-head { padding: 12px 14px; border-bottom: 1px solid var(--border); display: flex; gap: 8px; align-items: center; justify-content: space-between; }
.cart-lines { flex: 1; overflow-y: auto; padding: 4px 0; }
.cart-line { display: grid; grid-template-columns: 1fr auto; gap: 2px 10px; padding: 9px 14px; border-bottom: 1px dashed var(--border); }
.cart-line .name { font-weight: 600; } .cart-line .amt { font-weight: 700; text-align: right; font-variant-numeric: tabular-nums; }
.qty-ctl { display: inline-flex; align-items: center; gap: 4px; }
.qty-ctl button { width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--border); background: var(--surface-2); cursor: pointer; font-size: 17px; font-weight: 700; line-height: 1; }
.qty-ctl .q { min-width: 44px; text-align: center; font-weight: 700; cursor: pointer; padding: 4px 6px; border-radius: 6px; } .qty-ctl .q:hover { background: var(--surface-2); }
.cart-foot { padding: 12px 14px; border-top: 1px solid var(--border); background: var(--surface-2); }
.tot-row { display: flex; justify-content: space-between; padding: 2px 0; font-variant-numeric: tabular-nums; }
.tot-row.big { font-size: 26px; font-weight: 800; padding: 6px 0 10px; color: var(--brand); }
@media (max-width: 1000px) {
  .pos { grid-template-columns: minmax(0, 1fr); height: auto; }
  .pos-cart { position: sticky; bottom: 0; max-height: 62vh; box-shadow: 0 -8px 24px rgba(0, 0, 0, .18); }
  .products { max-height: 46vh; }
}
.pay-method { display: grid; grid-template-columns: 110px 1fr; gap: 8px; align-items: center; margin-bottom: 8px; }
.quick-cash { display: flex; gap: 6px; flex-wrap: wrap; margin: 8px 0; }
.big-number { font-size: 34px; font-weight: 800; font-variant-numeric: tabular-nums; }

/* ===== Gráficas ===== */
.chart { width: 100%; height: auto; display: block; } .chart text { fill: var(--muted); font-size: 11px; font-family: var(--font); }
.hbar { display: grid; grid-template-columns: minmax(80px, 34%) 1fr auto; gap: 8px; align-items: center; padding: 5px 0; font-size: 14px; }
.hbar .bar { height: 10px; background: var(--surface-2); border-radius: 99px; overflow: hidden; } .hbar .bar i { display: block; height: 100%; border-radius: 99px; }
.legend { display: flex; gap: 14px; flex-wrap: wrap; font-size: 13px; } .legend i { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 6px; }
.list-item { display: flex; justify-content: space-between; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--border); } .list-item:last-child { border: 0; }

.scan-video { width: 100%; border-radius: 12px; background: #000; aspect-ratio: 4 / 3; object-fit: cover; }
.qr-box { display: grid; place-items: center; padding: 10px; background: #fff; border-radius: 12px; } .qr-box img { width: 220px; height: 220px; }
.banner { padding: 10px 14px; border-radius: 10px; background: var(--warn-soft); color: var(--warn); font-weight: 600; }
.label-sheet { display: grid; gap: 6px; }
@media print { .sidebar, .topbar, .no-print { display: none !important; } }

/* ===== Errores dentro de ventanas y requisitos de contraseña ===== */
.modal-err { margin-top: 12px; padding: 10px 12px; border-radius: 10px; background: var(--bad-soft); color: var(--bad); font-weight: 600; font-size: 14px; border: 1px solid color-mix(in srgb, var(--bad) 35%, transparent); }
.rules { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; font-size: 13px; color: var(--muted); }
.rules li::before { content: "○ "; }
.rules li.ok { color: var(--good); font-weight: 600; } .rules li.ok::before { content: "✓ "; }
#toasts { left: 14px; align-items: flex-end; pointer-events: none; } .toast { pointer-events: auto; }

/* ===== Marca: Frutita Enchilada + Postres Punch ===== */
.brand { padding: 4px 6px 12px; gap: 10px; }
.brand img.mark { width: 46px; height: 46px; border-radius: 50%; flex: none; }
.brand .names { display: flex; flex-direction: column; line-height: 1.1; }
.brand .names b { font-size: 16px; color: var(--brand); letter-spacing: .01em; text-transform: uppercase; }
.brand .names span { font-size: 12.5px; font-weight: 700; color: var(--purple-600); }
.sidebar { background: linear-gradient(180deg, color-mix(in srgb, var(--yellow) 22%, var(--surface)) 0, var(--surface) 140px); }
.nav a.active { background: linear-gradient(90deg, var(--brand-soft), transparent); box-shadow: inset 3px 0 0 var(--brand); border-radius: 0 10px 10px 0; }
.nav a:hover { background: color-mix(in srgb, var(--purple) 12%, transparent); }
.nav-group { color: var(--purple-600); }

/* Barra superior con logos, visible en TODOS los módulos */
.topbar { display: flex; position: sticky; top: 0; z-index: 20; min-height: 58px; padding: 6px 20px; gap: 14px;
  background: linear-gradient(90deg, var(--surface), var(--surface)); border-bottom: 3px solid var(--yellow); box-shadow: 0 2px 0 var(--purple); }
.topbar .title { font-size: 17px; font-weight: 800; color: var(--text); }
.topbar .menu-btn { display: none; }
.topbar .logos { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.logo-chip { width: 116px; height: 58px; background: #fff; border-radius: 10px; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; overflow: hidden; flex: none; }
.logo-chip.punch { border-color: var(--purple); }
.logo-chip img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; }
@media (max-width: 900px) {
  .topbar { padding: 6px 10px; } .topbar .menu-btn { display: inline-flex; }
  .logo-chip { width: 84px; height: 42px; }
}



/* Login con la identidad de ambas marcas */
.login-wrap { background: radial-gradient(circle at 15% 20%, color-mix(in srgb, var(--purple) 55%, transparent), transparent 45%), radial-gradient(circle at 85% 80%, color-mix(in srgb, var(--yellow) 70%, transparent), transparent 50%), var(--bg); }
.login-card { max-width: 420px; border-top: 6px solid var(--brand); }
.login-card .logo-frutita { width: 78%; max-width: 300px; display: block; margin: -4px auto 0; border-radius: 0; height: auto; }
.login-card .punch-banner { display: block; width: 100%; height: auto; margin: 0; border-radius: 12px; border: 3px solid var(--purple); }
.btn.primary { box-shadow: 0 2px 0 var(--brand-600); }
.chip.active { background: var(--purple); border-color: var(--purple); }
.badge.brand { background: var(--brand-soft); color: var(--brand); }
.product:hover { border-color: var(--purple); }
.tot-row.big { color: var(--brand); }
.cart-head { border-top: 0; }
.pos-cart { border-top: 4px solid var(--yellow); }
.page-head h1 { position: relative; padding-bottom: 6px; } .page-head h1::after { content: ""; position: absolute; left: 0; bottom: 0; width: 46px; height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--brand) 0 50%, var(--yellow) 50% 75%, var(--purple) 75%); }

/* ===== Pedidos ===== */
.nav-badge { margin-left: auto; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: var(--brand); color: #fff; font-size: 12px; font-weight: 800; display: inline-grid; place-items: center; animation: nb 1.4s infinite; }
@keyframes nb { 50% { box-shadow: 0 0 0 5px color-mix(in srgb, var(--brand) 25%, transparent); } }
.board { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px; align-items: start; }
.col { background: var(--surface-2); border-radius: 14px; padding: 10px; min-height: 120px; }
.col h3 { display: flex; justify-content: space-between; align-items: center; margin: 2px 4px 10px; font-size: 14px; }
.ocard { background: var(--surface); border: 1px solid var(--border); border-left: 5px solid var(--brand); border-radius: 12px; padding: 10px 12px; margin-bottom: 8px; cursor: pointer; box-shadow: var(--shadow); }
.ocard:hover { border-color: var(--purple); border-left-color: var(--purple); }
.ocard.late { border-left-color: var(--bad); background: color-mix(in srgb, var(--bad-soft) 55%, var(--surface)); }
.ocard .top { display: flex; justify-content: space-between; gap: 6px; align-items: baseline; } .ocard .items { color: var(--muted); font-size: 13px; margin: 4px 0; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.ocard .meta { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; font-size: 12.5px; }
.timeline { list-style: none; padding: 0; margin: 0; } .timeline li { padding: 6px 0 6px 14px; border-left: 3px solid var(--purple); margin-left: 6px; position: relative; } .timeline li::before { content: ""; position: absolute; left: -7px; top: 11px; width: 11px; height: 11px; border-radius: 50%; background: var(--purple); }
.timeline .t { font-size: 12.5px; color: var(--muted); }
.actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---- Imágenes de productos, menús y precios ---- */
.thumb { border-radius: 10px; overflow: hidden; background: var(--surface-2, #f3eef8); border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; flex: none; font-weight: 800; color: var(--purple); }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb.click { cursor: pointer; } .thumb.click:hover { border-color: var(--brand); }
.img-preview { width: 120px; height: 120px; border-radius: 12px; border: 1px dashed var(--border); overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--surface-2, #f3eef8); }
.img-preview img { width: 100%; height: 100%; object-fit: cover; }
.product .pimg { position: relative; aspect-ratio: 4 / 3; background: var(--surface-2, #f3eef8); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product .pimg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product .pinit { font-size: 34px; font-weight: 800; color: var(--purple); opacity: .55; }
.product .pcam { position: absolute; right: 6px; bottom: 6px; width: 32px; height: 32px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow); }
.product .pcam svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.9; }
.product:focus-visible { outline: 3px solid var(--brand); outline-offset: 1px; }
.product.out { cursor: not-allowed; }
.chip.menu { border-color: var(--purple); }
.chip.menu.active { background: var(--purple); color: #fff; }
td input.edited { border-color: var(--brand); background: #fff7e6; }
.table-wrap td.wrap { white-space: normal; }

.banner.err { background: var(--bad-soft); color: var(--bad); }
