/* === ticket.css — estilos para ventana de impresión de ticket === */

/* Ventana de impresión: fondo blanco, sin decoración */
body.ticket-print-window {
  background: #fff;
  color: #000;
  margin: 0;
  padding: 8px;
  font-family: 'Courier New', Courier, monospace;
}

#ticket-root {
  width: var(--ticket-width, 80mm);
  max-width: 100%;
  margin: 0 auto;
  font-size: 11px;
  line-height: 1.45;
  color: #000;
}

/* Header */
.tk-header { text-align: center; margin-bottom: 6px; }
.tk-negocio {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tk-sub { font-size: 10px; color: #333; margin-top: 2px; }

/* Separador */
.tk-sep {
  border: none;
  border-top: 1px dashed #000;
  margin: 5px 0;
}
.tk-sep-solid {
  border: none;
  border-top: 1px solid #000;
  margin: 5px 0;
}

/* Info de venta */
.tk-info { font-size: 10px; margin-bottom: 4px; }
.tk-info span { float: right; }

/* Items */
.tk-items { width: 100%; border-collapse: collapse; font-size: 11px; }
.tk-items thead th {
  font-weight: bold;
  border-bottom: 1px solid #000;
  padding: 2px 0;
  text-align: left;
}
.tk-items thead th:last-child { text-align: right; }
.tk-items tbody td { padding: 2px 0; vertical-align: top; }
.tk-items tbody td:last-child { text-align: right; white-space: nowrap; }
.tk-item-name { font-size: 10px; color: #222; padding-left: 4px; }
.tk-qty-price { font-size: 10px; color: #444; padding-left: 4px; }

/* Totales */
.tk-totales { margin-top: 4px; }
.tk-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  padding: 1px 0;
}
.tk-total-row.big {
  font-size: 15px;
  font-weight: bold;
  padding: 3px 0;
}

/* Footer */
.tk-footer {
  text-align: center;
  font-size: 10px;
  color: #333;
  margin-top: 8px;
}

/* Botones de acción (solo visibles en pantalla, ocultos al imprimir) */
.tk-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #ddd;
}
.tk-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 600;
}
.tk-btn-primary { background: #f59e0b; color: #000; }
.tk-btn-ghost   { background: #e5e7eb; color: #333; }

@media print {
  .tk-actions { display: none !important; }
  body { margin: 0; padding: 0; }
  #ticket-root { width: 100%; }
}
