/* =====================================
   PÁGINA DEL TICKET
===================================== */

.ticket-page {

    width: 100%;

    max-width: 100%;

    margin: 0 auto;

    padding: 12px 20px 25px;

    box-sizing: border-box;

}


/* =====================================
   TÍTULO
===================================== */

.ticket-titulo {

    margin: 0 0 15px;

    text-align: center;

    font-size: 22px;

    color: #1e293b;

}


/* =====================================
   FACTURA
===================================== */

.ticket-factura {

    width: 520px;

    max-width: 100%;

    margin: 0 auto;

    padding: 24px 28px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    box-shadow:

        0 10px 25px rgba(

            0,

            0,

            0,

            0.08

        );

}


/* =====================================
   CABECERA
===================================== */

.factura-header {

    text-align: center;

}


.factura-logo {

    font-size: 30px;

    margin-bottom: 2px;

}


.factura-header h1 {

    margin: 0;

    font-size: 24px;

    color: #111827;

}


.factura-header p {

    margin: 4px 0 0;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #64748b;

}


/* =====================================
   SEPARADORES
===================================== */

.factura-separador {

    margin: 14px 0;

    border-top: 1px dashed #cbd5e1;

}


/* =====================================
   INFORMACIÓN
===================================== */

.factura-info {

    display: flex;

    flex-direction: column;

    gap: 6px;

}


.factura-info-linea {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    font-size: 13px;

}


.factura-info-linea span {

    color: #64748b;

}


.factura-info-linea strong {

    color: #1e293b;

    text-align: right;

}


/* =====================================
   CONCEPTOS
===================================== */

.factura-concepto {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding: 8px 0;

    border-bottom: 1px solid #f1f5f9;

    font-size: 13px;

}


.factura-concepto span {

    min-width: 0;

    color: #475569;

}


.factura-concepto strong {

    flex-shrink: 0;

    color: #1e293b;

    text-align: right;

}


/* =====================================
   CABECERA DE TABLA
===================================== */

.factura-cabecera-tabla {

    padding-top: 0;

    padding-bottom: 6px;

    border-bottom: 2px solid #cbd5e1;

    font-size: 10px;

    font-weight: 700;

}


/* =====================================
   TOTAL
===================================== */

.factura-total {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding: 14px 0 2px;

    font-size: 19px;

    font-weight: 700;

    color: #111827;

}


.factura-total strong {

    white-space: nowrap;

    font-size: 21px;

}


/* =====================================
   PIE
===================================== */

.factura-footer {

    margin-top: 14px;

    padding-top: 10px;

    border-top: 1px dashed #cbd5e1;

    text-align: center;

    font-size: 11px;

    color: #94a3b8;

}


/* =====================================
   BOTONES
===================================== */

.ticket-acciones {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 16px;

}


.ticket-acciones .btn {

    min-width: 140px;

    text-align: center;

}


/* =====================================
   TABLET
===================================== */

@media (min-width: 769px) and (max-width: 1100px) {

    .ticket-page {

        padding: 12px 15px 25px;

    }


    .ticket-factura {

        width: 520px;

    }

}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px) {

    .ticket-page {

        padding: 10px 12px 25px;

    }


    .ticket-factura {

        width: 100%;

        max-width: 520px;

        padding: 20px;

    }


    .ticket-acciones {

        flex-direction: column;

    }


    .ticket-acciones .btn {

        width: 100%;

        min-width: 0;

    }

}


/* =====================================
   MÓVIL PEQUEÑO
===================================== */

@media (max-width: 480px) {

    .ticket-factura {

        padding: 16px;

    }


    .factura-info-linea {

        align-items: flex-start;

        flex-direction: column;

        gap: 2px;

    }


    .factura-info-linea strong {

        text-align: left;

    }

}