
/* ✅ Tema Claro (Hiper Premium) */
:root[data-theme="light"]{
  --bg:#f6f7fb;
  --panel:#ffffff;
  --panel2:#f3f4f6;
  --stroke:rgba(17,24,39,.12);
  --text:#111827;
  --muted:rgba(17,24,39,.70);
  --shadow:0 18px 45px rgba(17,24,39,.14);
  --body-bg:
    radial-gradient(900px 380px at 75% 0%, rgba(255,79,160,.14), transparent 60%),
    radial-gradient(900px 480px at 15% 100%, rgba(255,115,182,.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f6f7fb 60%, #ffffff 100%);
}

:root{
  --bg:#0b0b12;
  --panel:#12121b;
  --panel2:#161622;
  --stroke:rgba(255,255,255,.10);
  --text:#f3f3f8;
  /* ✅ Hiper Premium: um pouco mais legível */
  --muted:rgba(243,243,248,.75);
  --pink:#ff4fa0;
  --pink2:#ff73b6;
  --ok:#2ee59d;
  --warn:#ffb020;
  --bad:#ff4757;
  --shadow:0 14px 40px rgba(0,0,0,.45);
  --radius:16px;
  --radius2:22px;
  --body-bg: radial-gradient(900px 380px at 75% 0%, rgba(255,79,160,.22), transparent 60%),
    radial-gradient(900px 480px at 15% 100%, rgba(255,115,182,.12), transparent 60%),
    linear-gradient(180deg, #07070c 0%, var(--bg) 55%, #07070c 100%);
}

*{box-sizing:border-box}
html,body{height:100%}

/* ✅ Scroll (padrão PDV/ERP): sempre permitir rolagem vertical e horizontal quando necessário */
html{scroll-behavior:smooth; scrollbar-gutter: stable both-edges;}
body{overflow-y:scroll; overflow-x:hidden;}

/* tabelas e áreas grandes: libera rolagem horizontal quando precisar */
.table-wrap{overflow:auto !important;}

/* Modais: quando o conteúdo for grande, rola dentro do modal (e não “some” da tela) */
.modal-backdrop{overflow:auto !important; align-items:flex-start !important;}
.modal{
  max-height: calc(100vh - 32px) !important;
  overflow:auto !important;
}

/* Barra de ações do formulário (Salvar/Cancelar) sempre visível no fim do modal */
.modal .modal-actions-sticky{
  position: sticky;
  bottom: 0;
  margin-top: 14px;
  padding: 12px 0 2px;
  border-top: 1px solid var(--stroke);
  background: rgba(11,11,18,.92);
  backdrop-filter: blur(10px);
}
:root[data-theme="light"] .modal .modal-actions-sticky{
  background: rgba(255,255,255,.92);
}

/* Scrollbar PRO (Chrome/Edge/Safari) */
*::-webkit-scrollbar{height:12px; width:12px}
*::-webkit-scrollbar-track{background: rgba(255,255,255,.05); border-radius:999px}
*::-webkit-scrollbar-thumb{background: rgba(255,79,160,.35); border-radius:999px; border:3px solid rgba(0,0,0,0)}
*::-webkit-scrollbar-thumb:hover{background: rgba(255,79,160,.55)}

/* Scrollbar PRO (Firefox) */
*{scrollbar-width: thin; scrollbar-color: rgba(255,79,160,.55) rgba(255,255,255,.06)}

/* ✅ Tipografia premium */
h1,h2,h3{margin:0 0 10px; line-height:1.15}
h2{font-size:18px; font-weight:900; letter-spacing:.2px}
h3{font-size:15.5px; font-weight:900}
p{margin:0}

body{
  margin:0;
  /* ✅ Hiper Premium: tipografia mais “sistema pago” */
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  font-size:15px;
  line-height:1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color:var(--text);
  background: var(--body-bg);
}

/* ✅ Links e seleção mais “premium” */
::selection{background:rgba(255,79,160,.35)}
a{color:inherit; text-decoration:none}
a:focus-visible{outline:3px solid rgba(255,79,160,.35); outline-offset:2px; border-radius:10px}

a{color:inherit; text-decoration:none}
.muted{color:var(--muted)}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  font-size:12px; color:rgba(243,243,248,.9);
}

/* ✅ Hiper Premium: tabelas nativas (Produtos, Clientes, Relatórios, Estoque...) */
table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  font-size:14.5px;
}
th,td{padding:10px 12px}
th{
  position:sticky;
  top:0;
  z-index:2;
  text-align:left;
  font-size:12px;
  letter-spacing:.2px;
  font-weight:900;
  color:rgba(243,243,248,.90);
  background:rgba(255,255,255,.04);
  border-bottom:1px solid var(--stroke);
}
tbody td{border-bottom:1px solid rgba(255,255,255,.07)}
tbody tr:nth-child(even) td{background:rgba(255,255,255,.015)}
tbody tr:hover td{background:rgba(255,79,160,.06)}

/* wrapper (quando a tabela ficar grande no mobile) */
.table-wrap{width:100%; overflow:auto; border-radius:16px; border:1px solid var(--stroke); background:rgba(0,0,0,.18)}
.table-wrap table{min-width:740px}

/* Network badge (Hiper Master 2.1) */
.net-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  color:rgba(243,243,248,.86);
}
.net-badge.offline{
  border-color:rgba(255,71,87,.55);
  background:rgba(255,71,87,.10);
}

/* Layout */
.sidebar{
  position:fixed; left:0; top:0; bottom:0;
  width:260px;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-right:1px solid var(--stroke);
  padding:18px 14px;
  backdrop-filter: blur(10px);
}
.brand{display:flex; align-items:center; gap:10px; padding:10px 10px 14px}
.logo{
  width:38px; height:38px; border-radius:14px;
  background:radial-gradient(circle at 30% 30%, var(--pink2), var(--pink));
  box-shadow:0 10px 26px rgba(255,79,160,.25);
}
.brand-title{font-weight:900; letter-spacing:.2px}
.brand-sub{font-size:12px; color:var(--muted)}
.nav{display:flex; flex-direction:column; gap:6px; padding:8px 6px}
.nav a{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid transparent;
  color:rgba(243,243,248,.9);
  font-size:14.5px;
  font-weight:800;
}
.nav a:hover{background:rgba(255,255,255,.03)}
.nav a.active{
  border-color:rgba(255,79,160,.35);
  background:linear-gradient(90deg, rgba(255,79,160,.18), rgba(255,255,255,.02));
}
.ico{width:18px; text-align:center}
.sidebar-footer{
  position:absolute; left:14px; right:14px; bottom:14px;
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:12px;
  background:rgba(0,0,0,.25);
}

.main{
  margin-left:260px;
  padding:22px 22px 40px;
}
.topbar{display:flex; align-items:center; justify-content:space-between; gap:12px}
.h1{font-size:28px; font-weight:900}

/* Cards */
.grid{display:grid; grid-template-columns:repeat(12, 1fr); gap:16px}
.card{
  grid-column:span 4;
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-radius:var(--radius2);
  padding:16px 16px 14px;
  box-shadow:var(--shadow);
  transition:transform .15s ease, filter .15s ease;
}
.card:hover{transform:translateY(-1px)}

/* spans (Hiper v2) */
.card.span-3{grid-column:span 3}
.card.span-4{grid-column:span 4}
.card.span-6{grid-column:span 6}
.card.span-8{grid-column:span 8}
.card.span-12{grid-column:span 12}

.kpi-title{
  display:flex; align-items:center; gap:8px;
  font-size:13px; font-weight:800;
  color:rgba(255,79,160,.95)
}
.kpi-value{font-size:30px; font-weight:900; margin-top:4px}
.kpi-emoji{filter:saturate(1.2)}
.kpi-mini{font-weight:900; margin-top:2px}
.kpi-sub{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
  margin-top:8px;
}

.ellipsis{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.row{display:flex; gap:12px; flex-wrap:wrap}
.hr{height:1px; background:var(--stroke); margin:12px 0}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:14px;
  padding:12px 14px;
  border:1px solid rgba(255,79,160,.55);
  background:linear-gradient(90deg, rgba(255,79,160,.92), rgba(255,115,182,.85));
  color:#0b0b12;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 10px 26px rgba(255,79,160,.20);
}
.btn:hover{filter:brightness(1.02)}
.btn.ghost{
  border-color:var(--stroke);
  background:rgba(255,255,255,.03);
  color:rgba(243,243,248,.92);
  box-shadow:none;
}

/* ✅ Variações premium */
.btn.secondary{
  border-color:rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:rgba(243,243,248,.92);
  box-shadow:none;
}
.btn.secondary:hover{background:rgba(255,255,255,.08)}
.btn.danger{
  border-color:rgba(255,71,87,.55);
  background:linear-gradient(90deg, rgba(255,71,87,.92), rgba(255,71,87,.65));
  color:#0b0b12;
}
.btn.ok{
  border-color:rgba(46,229,157,.55);
  background:linear-gradient(90deg, rgba(46,229,157,.92), rgba(46,229,157,.65));
  color:#0b0b12;
}

/* ✅ Botão com ícone */
.btn .ico{width:auto}

.section-title{
  margin:18px 0 10px;
  color:rgba(243,243,248,.9);
  font-size:13px;
  font-weight:800
}

/* pills / deltas / status */
.pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  font-weight:900;
  font-size:12px;
  color:rgba(243,243,248,.92);
}
.pill.warn{border-color:rgba(255,176,32,.45); background:rgba(255,176,32,.10)}
.pill.ok{border-color:rgba(46,229,157,.45); background:rgba(46,229,157,.10)}
.pill.bad{border-color:rgba(255,71,87,.45); background:rgba(255,71,87,.10)}
.pill.neutral{border-color:var(--stroke); background:rgba(255,255,255,.03)}

.delta{
  font-weight:900;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
}
.delta.up{border-color:rgba(46,229,157,.45); background:rgba(46,229,157,.10)}
.delta.down{border-color:rgba(255,71,87,.45); background:rgba(255,71,87,.10)}
.delta.neutral{border-color:var(--stroke); background:rgba(255,255,255,.03)}

.status-dot{
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  font-weight:900;
}
.dot{width:10px; height:10px; border-radius:999px; background:rgba(255,255,255,.35)}
.dot.ok{background:var(--ok)}
.dot.warn{background:var(--warn)}
.dot.bad{background:var(--bad)}
.dot.neutral{background:rgba(255,255,255,.35)}
.status-dot .txt{color:rgba(243,243,248,.92)}

/* progress */
.progress{
  width:100%;
  height:10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.25);
  overflow:hidden;
  margin-top:10px;
}
.progress-bar{
  height:100%;
  width:0%;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(255,79,160,.92), rgba(255,115,182,.85));
}

/* payments minis */
.mini-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  margin-top:12px;
}
.mini{
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.22);
  border-radius:16px;
  padding:12px;
}
.mini-top{display:flex; align-items:center; gap:8px}
.mini-ico{filter:saturate(1.2)}
.mini-val{font-weight:900; font-size:18px; margin-top:8px}

/* list alerts */
.list{display:flex; flex-direction:column; gap:10px; margin-top:10px}
.list-item{
  display:flex; gap:10px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.22);
  border-radius:16px;
  padding:12px;
}
.bullet{width:10px; height:10px; border-radius:999px; margin-top:4px; background:rgba(255,255,255,.35)}
.bullet.ok{background:var(--ok)}
.bullet.warn{background:var(--warn)}
.bullet.bad{background:var(--bad)}
.list-item .txt .t{font-weight:900}
.list-item .txt .s{font-size:12px; color:var(--muted); margin-top:3px}

/* mini table */
.table{
  border:1px solid var(--stroke);
  border-radius:16px;
  overflow:hidden;
  background:rgba(0,0,0,.18);
  margin-top:10px;
}
.trow{
  display:grid;
  grid-template-columns: 90px 1fr 90px 120px;
  gap:10px;
  padding:10px 12px;
  border-bottom:1px solid var(--stroke);
  align-items:center;
}
.trow:last-child{border-bottom:none}
.thead{
  background:rgba(255,255,255,.03);
  font-size:12px;
  color:rgba(243,243,248,.85);
  font-weight:900;
}
.tr{text-align:right}
.tbody .trow{font-size:13px}

/* ✅ Ranking: colunas melhores (sem quebrar outras tabelas) */
.trow.rank{
  grid-template-columns: 50px 1fr 80px 140px;
}

/* Login */
.auth-wrap{min-height:100vh; display:flex; align-items:center; justify-content:center; padding:22px}
.auth-card{width:min(440px, 100%); padding:18px; border-radius:22px; border:1px solid var(--stroke); background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)); box-shadow:var(--shadow)}
.auth-head{display:flex; align-items:center; justify-content:space-between; margin-bottom:10px}
.auth-title{font-size:22px; font-weight:900}

.field{display:flex; flex-direction:column; gap:6px; margin:12px 0}
label{font-size:13px; color:rgba(243,243,248,.90); font-weight:800}
input{
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.25);
  color:var(--text);
  padding:12px 12px;
  outline:none;
  font-size:15px;
  line-height:1.2;
}
input:focus{border-color:rgba(255,79,160,.55); box-shadow:0 0 0 4px rgba(255,79,160,.12)}
input::placeholder{color:rgba(243,243,248,.45)}
.error{margin-top:10px; font-size:12px; color:var(--bad)}

/* Responsive */
@media (max-width: 980px){
  .sidebar{position:fixed; inset:0 auto 0 0; transform:translateX(-102%); transition:transform .25s ease; z-index:40}
  .sidebar.open{transform:translateX(0)}
  .main{margin-left:0; padding:18px 16px}
  .grid{gap:12px}

  .card,
  .card.span-3,
  .card.span-4,
  .card.span-6,
  .card.span-8,
  .card.span-12{grid-column:span 12}

  .mini-grid{grid-template-columns:1fr}
  .trow{grid-template-columns: 70px 1fr 70px 100px}

  /* ✅ week-grid no mobile (fica perfeito) */
  .week-grid{grid-template-columns:1fr}
}

/* ===== NÍVEL 3.2 extras ===== */
.mini-rows{display:flex; flex-direction:column; gap:10px; margin-top:10px}
.mini-row{display:flex; justify-content:space-between; gap:12px}
.week-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:12px}
.week-box{
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.22);
  border-radius:16px;
  padding:12px;
}
.week-val{font-weight:900; font-size:18px; margin-top:6px}

.spark{
  margin-top:12px;
  height:120px;
  border:1px solid var(--stroke);
  border-radius:16px;
  background:rgba(0,0,0,.18);
  padding:12px;
  display:flex;
  align-items:flex-end;
  gap:6px;
  overflow:hidden;
}
.spark .bar{
  width:10px;
  border-radius:8px;
  background:linear-gradient(180deg, rgba(255,79,160,.95), rgba(255,115,182,.55));
  border:1px solid rgba(255,255,255,.10);
}
.spark .bar.zero{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.08);
}

/* ===== Extras Nível 3.3 (Saúde + Ranking + Simulador) ===== */

/* ✅ Correção real do btn-sm (agora funciona mesmo com .btn.ghost) */
.btn.btn-sm{padding:8px 10px; border-radius:12px; font-weight:900; font-size:12px}
.btn.ghost.btn-sm{padding:8px 10px}
.btn.btn-sm.active{
  border-color: rgba(255,79,160,.6);
  box-shadow: 0 0 0 3px rgba(255,79,160,.10) inset;
}

.sim-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:12px;
}
.sim-out{
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.22);
  border-radius:16px;
  padding:12px;
  height:100%;
}
.sim-val{font-weight:1000; font-size:22px; margin-top:4px}
@media (max-width: 980px){
  .sim-grid{grid-template-columns:1fr}
}



/* ✅ Controles / filtros (Relatórios etc.) */
.controls{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  padding:12px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  border-radius:16px;
  box-shadow:0 10px 26px rgba(0,0,0,.18);
  position:sticky;
  top:10px;
  z-index:5;
  backdrop-filter: blur(12px);
}
:root[data-theme="light"] .controls{
  background:rgba(255,255,255,.72);
  box-shadow:0 10px 26px rgba(17,24,39,.10);
}
.controls .tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  font-weight:900;
  font-size:12px;
}
.controls .input, .controls .select{
  height:42px;
  font-size:15px;
}

/* ✅ Tabelas sticky + hover premium */
.table-wrap{
  position:relative;
}
.table thead th{
  position:sticky;
  top:0;
  z-index:2;
  background:linear-gradient(180deg, rgba(18,18,27,.96) 0%, rgba(18,18,27,.84) 100%);
  backdrop-filter: blur(10px);
}
:root[data-theme="light"] .table thead th{
  background:linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.84) 100%);
}
.table tbody tr:nth-child(2n){
  background:rgba(255,255,255,.02);
}
:root[data-theme="light"] .table tbody tr:nth-child(2n){
  background:rgba(17,24,39,.03);
}
.table tbody tr:hover{
  background:rgba(255,79,160,.10);
}

/* ✅ Botão Tema */
.btn-theme{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-weight:900;
  cursor:pointer;
}
.btn-theme:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-theme:active{ transform: translateY(0px); }
.btn-theme .ic{ width:18px; height:18px; display:inline-grid; place-items:center; }

/* ✅ PDV Modo Caixa (Kiosk) */
body.pdv-kiosk .pdv{ gap:14px; }
body.pdv-kiosk .panel{ border-radius:20px; }
body.pdv-kiosk .input,
body.pdv-kiosk .select{
  height:52px;
  font-size:18px;
  font-weight:800;
}
body.pdv-kiosk .btn,
body.pdv-kiosk .btn-mini{
  padding:14px 16px;
  font-size:16px;
  font-weight:900;
}
body.pdv-kiosk .h1{ font-size:22px; }
body.pdv-kiosk #prodRows .btn-mini{ padding:12px 14px; font-size:15px; }
body.pdv-kiosk .table-wrap{ border-radius:20px; }

/* ✅ MarketUP: PDV em tela cheia (tablet/caixa) */
body.pdv-kiosk .sidebar{ display:none !important; }
body.pdv-kiosk .main{ margin-left:0 !important; padding:14px 14px 28px !important; }
body.pdv-kiosk .topbar{
  position:sticky;
  top:0;
  z-index:70;
  padding:12px 12px;
  margin:0 0 10px;
  border-radius:18px;
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  backdrop-filter: blur(10px);
}

/* ✅ Sticky head (estilo MarketUP) */
.sticky-head thead th{
  position:sticky;
  top:0;
  z-index:3;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border-bottom:1px solid rgba(255,255,255,.08);
}
:root[data-theme="light"] .sticky-head thead th{
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(243,244,246,.92));
  border-bottom:1px solid rgba(17,24,39,.10);
}

/* ✅ Barra fixa de busca (MarketUP) */
.pdv-stickybar{
  position:sticky;
  top:0;
  z-index:20;
  padding:12px 0 12px;
  margin:0 0 10px;
  background:linear-gradient(180deg, rgba(11,11,18,.96), rgba(11,11,18,.70));
}
:root[data-theme="light"] .pdv-stickybar{
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,247,251,.86));
}

/* ✅ Scroll dentro do painel (listas longas) */
.scroll-area{
  overflow:auto;
  -webkit-overflow-scrolling: touch;
}



/* === MarketUP INSANO: legibilidade dos quadros do lado direito (Estoque) === */
.split > :last-child .cardx{
  font-size: 15.5px;
  line-height: 1.35;
}
.split > :last-child .cardx h3{
  font-size: 18px;
  letter-spacing: .2px;
}
.split > :last-child .cardx b{
  font-size: 15.5px;
}
.split > :last-child .cardx .muted2{
  font-size: 13.8px;
}
.split > :last-child .cardx .pill{
  font-size: 13.5px;
  font-weight: 700;
}
.split > :last-child .cardx .help{
  font-size: 13.6px;
}
.split > :last-child .cardx .item{
  padding: 10px 10px;
}


/* ===== MarketUP PRO Add-ons ===== */
.select-mini{height:32px; padding:0 10px; border-radius:10px; border:1px solid var(--border); background:var(--card); color:var(--text); font-weight:800; font-size:12px;}
@media (max-width:980px){.select-mini{height:36px; font-size:13px;}}

.gs-item{display:flex; gap:12px; padding:10px 12px; border-radius:14px; border:1px solid var(--border); text-decoration:none; color:inherit; margin-bottom:10px; background:var(--card);}
.gs-item:hover{transform:translateY(-1px); box-shadow:0 10px 25px rgba(0,0,0,.18);}
.gs-type{min-width:80px; font-weight:900; font-size:12px; opacity:.85;}
.gs-title{font-weight:900;}
.gs-meta{font-size:12px; opacity:.75; margin-top:2px;}

.row-focus{outline:2px solid rgba(255,67,147,.75); outline-offset:-2px; box-shadow:0 0 0 6px rgba(255,67,147,.14); border-radius:12px;}

/* Dashboard: modo operador (oculta blocos executivos) */
.dash-operator .exec-only{display:none !important;}


/* ===========================
   PDV Kiosk (venda rápida)
   =========================== */
body.pdv-kiosk .container,
body.pdv-kiosk main{
  max-width: 1200px;
}
body.pdv-kiosk .btn,
body.pdv-kiosk button{
  min-height: 46px;
  font-size: 16px;
}
body.pdv-kiosk input,
body.pdv-kiosk select{
  min-height: 44px;
  font-size: 16px;
}
body.pdv-kiosk .grid{
  gap: 10px;
}
body.pdv-kiosk .card{
  border-radius: 16px;
}
body.pdv-kiosk #cartTable td,
body.pdv-kiosk #cartTable th{
  padding: 10px 8px;
  font-size: 15px;
}
body.pdv-kiosk .totals strong{
  font-size: 20px;
}
