body{
    margin: 0;
    padding: 0;
    background: rgb(249, 245, 245);
    font-size: 20px;
}

/* LOGO */
.navbar-brand{
    display: flex;
    align-items: center;
    width: 15px;
    height: 15px;
    margin-left: 5%;
    
    
}

.navbar-brand img{
    width: 150px;
    height: 125px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 10px; 
    
}

.bi-cart-fill{
    font-size: 30px;
    gap: 30px;
    
    
    
}

/* MENU CENTRADO (MEJORADO PARA SER RESPONSIVE) */


/* PRODUCTOS: GRID RESPONSIVE */
.lista-productos {
    margin-top: 100px;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* PC */
    gap: 25px;
}

/* TARJETAS */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.card-body {
    padding: 15px;
    text-align: center;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-price {
    font-size: 15px;
    font-weight: bold;
    color: black;
}

.btn-comprar {
    margin-top: 5px;
    border: none;
    width: 100%;
    padding: 5px;
    font-size: 15px;
    border-radius: 16px;
    background-color:#ffce12;
}
.img-carrito{
    margin-top: 100px;
    width: 100%;
    align-items: center;

    border-radius: 20px;
    
}

.car-desciption{
    text-align: center;
    font-size: 20px;
}
.car-title{
    text-align: center;
    margin-top: 50px;
}
.car-precio{
    text-align: center;
    font-size: 30px;
}
.btn-menos{
    background-color: gold;
    border-radius: 20px;
    
    
}
.btn-more{
    background-color: green;
    border-radius: 20px;
}
.btn-eliminar{
    background-color: red;
    border-radius: 20px;
    gap: 100%;
}
.mensaje{
text-align: center;
font-size: 15px;
}
.modal-footer{
    background-color: #ffce12;
}

@media screen and (max-width: 992px) {
    .lista-productos {
        grid-template-columns: repeat(2, 1fr);
    }
    .logo {
        width: 100px;
        height: 100px;
    }
     .card{
        border-radius: 12px;
    }
}

/* 📱 MÓVIL */
@media screen and (max-width: 600px) {
    .lista-productos {
        grid-template-columns: repeat(2, 1fr);
    }
    .card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

    .card{
        border-radius: 12px;
        width: 100%;
        height: 100%;
    }
    .logo {
        width: 80px;
        height: 80px;
    }
    body {
        font-size: 22px;
    }
    .menu-centro .nav-link {
        margin: 5px 0;
        text-align: center;
    }
    .btn-comprar{
        font-size: 10px;
    }
}