/* ================================
   TICKET BASE 58mm
================================ */
.ticket-58 {
    width: 58mm;
    padding: 2mm 2mm;
    box-sizing: border-box;
    font-family: "Courier New", monospace;
    font-size: 11px;
    border: 1px dashed #000; /* solo visible en pantalla */
}

/* Compacto */
.etiqueta-compacta {
    padding: 0;
    margin: 0;
}

/* ================================
   NOMBRE DE LA TIENDA
================================ */
.etq-tienda {
    text-align: center;
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 1mm;
    line-height: 1;
}

/* ================================
   FILA SUPERIOR (NOMBRE + PRECIO)
================================ */
.etq-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10.5px;
    margin-bottom: 0.8mm;
    line-height: 1;
}

/* Nombre corto */
.etq-nombre-corto {
    max-width: 34mm;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: bold;
}

/* Precio compacto */
.etq-precio-small {
    font-weight: bold;
    font-size: 12.5px;
}

/* ================================
   BARCODE
================================ */
.etq-barcode {
    text-align: center;
    margin-top: 1mm;
}

.ticket-58 svg#barcode {
    width: 100%;
    height: auto;
}

/* ================================
   QR
================================ */
.etq-qr {
    text-align: center;
    margin-top: 1mm;
}

.etq-qr #qrcode {
    display: inline-block;
    width: 60px;
    height: 60px;
}

/* ================================
   IMPRESIÓN
================================ */
@media print {
    @page {
        size: 58mm auto;
        margin: 0;
    }

    body {
        margin: 0;
        padding: 0;
    }

    .ticket-58 {
        border: none !important;
    }
}
