/*CARRITO DE COMPRAS*/
#carrito {
    padding: 0 30px 50px 30px;
    min-height: 50vh; /* Asegura que ocupe al menos toda la altura de la ventana */
}

h2 {
    margin: 0;
    font-weight: 800;
    font-size: 20px;
    padding-top: 5px;
    color: #3f91dd;
}

.text-end h4 {
    font-weight: 800;
    font-size: 25px;
    color: #3f91dd;
    margin-bottom: 25px;
}

#limpiar-carrito {
    align-self: flex-end; /* Alinear el botón al final del card-body */
    background-color: #3f91dd;
    color: white;
    font-size: 13px;
    border: none;
}

#finalizar-compra{
    align-self: flex-end; /* Alinear el botón al final del card-body */
    background-color: #ee4242;
    color: white;
    font-size: 13px;
    border: none;
}

#limpiar-carrito:hover{
    background-color: #007bff;
}

#finalizar-compra:hover{
    background-color: red;
}

.custom-button {
    background-color: #007bff; /* Botón azul */
    color: #fff;              /* Texto blanco */
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
} 

/*Agrego media Query*/
@media (min-width: 600px) {
    /*CARRITO DE COMPRAS*/
    
    h2 {
        font-size: 25px;
        color: #3f91dd;
    }

    #limpiar-carrito {
        font-size: 18px;
    }

    #finalizar-compra{
        font-size: 18px;
    }
}