﻿/* Header */
.cart-header {
    background-color: #2c3e50; 
    color: #fff;
    font-weight: 600;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* "Seguir comprando" */
.btn-seguir {
    background-color: #009688;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 14px;
    transition: background 0.3s ease;
}

    .btn-seguir:hover {
        background-color: #00796b;
    }
/*Buttones (Menos y Mas*/
.btn-qty {
    border: none;
    background: #f0f0f0;
    color: #333;
    width: 35px;
    height: 35px;
    border-radius: 20%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

    .btn-qty:hover {
        background: #ddd;
    }
    /*Button Plus*/
.plus{
    background-color: lightgreen;
}
/*Button de Minus*/
.minus{
    background-color: lightblue;
}
/*Button de Delete*/
.btn-delete {
    border: none;
    background: #dc3545;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 20%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

    .btn-delete:hover {
        background: #bb2d3b;
    }



/* Resumen (Proceder a Pagar) */
.btn-resumen {
    background-color: #009688;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.1s;
}

    .btn-resumen:hover {
        background-color: #00796b;
        transform: translateY(-2px);
    }


/*Total*/
.cart-summary {
    background: #f8f9fa;
    padding: 15px 20px;
    border-top: 1px solid #dee2e6;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    justify-content: flex-end;
}

.cart-total {
    font-size: 1.2rem;
    font-weight: bold;
}