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;
}
.footer {
            background-color: #095d57;
            color: #e5e7eb;
        }

        .footer-title {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: #ffffff;
        }

        .footer-text {
            margin-left: 0px;
            font-size: 0.9rem;
        
            padding: 0;
        }

        .footer-links {
            color: white;
            list-style: none;
            padding: 0;
        }
        .footer-links a{
            font-size: 0.9rem;
            color: white;
            text-decoration: none;
        }
        .footer-dev {
            font-size: 0.85rem;
            color: #94a3b8;
        }

        .footer-bottom {
            font-size: 0.8rem;
            color: #94a3b8;
        }

        .footer-dev-link {
    font-size: 0.90rem;
    color:white;
    text-decoration: none;
    padding: 0;
    }
 
@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;
    }

 }

