/* LOQUEBU — ETIQUETAS para impresora térmica 10x15cm — Blanco y Negro */

.etiqueta {
  width: 10cm;
  height: 15cm;
  background: #fff;
  border: 2px solid #000;
  border-radius: 6px;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #000;
}

/* HEADER */
.etq-header {
  padding: 6px 10px 4px;
  flex-shrink: 0;
}
.etq-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.etq-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.etq-tipo-badge {
  display: flex;
  align-items: center;
  gap: 4px;
}
.etq-tipo-svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.etq-tipo-texto {
  font-size: 12px;
  font-weight: 900;
  color: #000;
  line-height: 1.1;
  text-align: right;
  text-transform: uppercase;
}
.etq-divider {
  border: none;
  border-top: 1.5px solid #000;
  margin: 4px 0 0;
}

/* BADGE SECCIÓN */
.etq-seccion-badge {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 3px;
  margin: 5px 10px 3px;
}

/* FILA DE CAMPO */
.etq-fila-campo {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 3px 10px;
  border-bottom: 1px dashed #999;
}
.etq-fila-campo:last-child { border-bottom: none; }

/* ICONO SVG */
.etq-icono {
  width: 30px;
  height: 30px;
  background: #000;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.etq-icono svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* CONTENIDO DEL CAMPO */
.etq-campo-contenido { flex: 1; min-width: 0; }
.etq-campo-label {
  font-size: 7px;
  font-weight: 700;
  color: #000;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1px;
}
.etq-campo-valor {
  font-size: 13px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  word-break: break-word;
}
.etq-campo-valor.grande { font-size: 15px; font-weight: 900; }
.etq-campo-valor.cobrar-valor { font-size: 20px; font-weight: 900; }

/* FILA DOBLE (ciudad + celular) */
.etq-fila-doble {
  display: flex;
  align-items: flex-start;
  padding: 3px 10px;
  border-bottom: 1px dashed #999;
}
.etq-mitad { flex: 1; display: flex; align-items: flex-start; gap: 7px; }
.etq-separador-v { width: 1px; background: #999; align-self: stretch; margin: 0 6px; }

/* SEPARADOR REMITENTE */
.etq-sep-remitente { border: none; border-top: 1.5px solid #000; margin: 3px 10px; }

/* BODY */
.etq-body-local { flex: 1; display: flex; flex-direction: column; }
.etq-body-nac { flex: 1; display: flex; flex-direction: column; }

/* FOOTER */
.etq-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-top: 1.5px solid #000;
  flex-shrink: 0;
}
.etq-qr-img { width: 55px; height: 55px; flex-shrink: 0; }
.etq-footer-sep { width: 1px; background: #999; align-self: stretch; margin: 0 2px; }
.etq-footer-texto { flex: 1; }
.etq-gracias {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 10px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  margin-bottom: 4px;
}
.etq-redes {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  font-weight: 700;
  color: #000;
}
.etq-redes svg { width: 12px; height: 12px; fill: #000; }

@media print {
  html, body { margin: 0; padding: 0; background: #fff !important; }
  body > * { display: none !important; }
  #zona-impresion { display: block !important; position: fixed; top: 0; left: 0; }
  @page { size: 10cm 15cm; margin: 0; }
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
}
