/* style-boutique.css */
.section-boutique {
    padding: 60px 8%;
}

.titre-page {
    text-align: center;
    color: #0d1b2a;
    margin-bottom: 40px;
}

.grille-produits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.carte-produit {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: 0.8s;
}

.carte-produit:hover {
    transform: translateY(-8px);
}

.image-produit {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.infos-produit {
    padding: 20px;
    text-align: center;
}

.infos-produit h3 {
    font-size: 18px;
    color: #0d1b2a;
    margin-bottom: 10px;
}

.prix {
    font-size: 20px;
    font-weight: 700;
    color: #e76f51;
    margin-bottom: 10px;
}

.desc-produit {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.bouton-panier {
    background-color: #0d1b2a;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.bouton-panier:hover {
    background-color: #e9c46a;
    color: #0d1b2a;
}