:root {
  --primary-main: #8E1C24;
  --primary-dark: #6E1218;
  --accent-gold: #E5A93C;
  --accent-gold-dark: #C58B24;
  --accent-gold-soft: #FEF8ED;
  --success-main: #16A34A;
  --success-dark: #15803D;
  --success-soft: #F0FDF4;
  --bg-app: #F8FAFC;
  --bg-surface: #FFFFFF;
  --text-primary: #0F172A;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
}

body {
  font-family: 'Inter', sans-serif;
  -webkit-tap-highlight-color: transparent;
}

.kanban-col {
  min-width: 320px;
  max-width: 320px;
  height: calc(100vh - 80px);
}

.kanban-card {
  transition: transform 0.2s, box-shadow 0.2s;
}
.kanban-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.modal-overlay {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(3px);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ===============================================
   IMPRESSÃO DE COMANDA TÉRMICA (80mm / 58mm)
   =============================================== */
@media print {
  body * {
    visibility: hidden;
  }
  
  #modal-comanda-print, 
  #modal-comanda-print * {
    visibility: visible;
  }

  #modal-comanda-print {
    position: absolute;
    left: 0;
    top: 0;
    width: 80mm;
    margin: 0;
    padding: 0;
    background: white !important;
    box-shadow: none !important;
  }

  .no-print {
    display: none !important;
  }

  #comanda-receipt-content {
    width: 80mm;
    max-width: 80mm;
    padding: 2mm;
    font-size: 11px;
    line-height: 1.3;
    color: black !important;
    background: white !important;
  }
}
