/* =========================
   CARRITO
========================= */

#contenedor-carrito{
    max-width:1200px;
    margin:40px auto;
    padding:20px;
}

.tabla-carrito{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.10);
}

.tabla-carrito th{
    background:#1B1240;
    color:white;
    padding:18px;
    font-size:16px;
}

.tabla-carrito td{
    padding:15px;
    text-align:center;
    border-bottom:1px solid #eee;
}

.tabla-carrito tr:hover{
    background:#f8f8ff;
}

.cantidad{
    width:70px;
    text-align:center;
    padding:8px;
    border:1px solid #ddd;
    border-radius:6px;
}

.btn-eliminar{
    background:#dc3545;
    color:white;
    border:none;
    padding:10px 15px;
    border-radius:8px;
    cursor:pointer;
    font-weight:bold;
    transition:.3s;
}

.btn-eliminar:hover{
    background:#b02a37;
}

.resumen-carrito{
    margin-top:25px;
    background:white;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.10);
    text-align:right;
}

.resumen-carrito h2{
    color:#1B1240;
    font-size:36px;
    margin-bottom:15px;
}

#btn-finalizar{
    background:#28a745;
    color:white;
    border:none;
    padding:15px 30px;
    border-radius:10px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

#btn-finalizar:hover{
    background:#218838;
}