/* Styles pour l'affichage des produits sur la page d'accueil */

/* Conteneur principal des produits */
.home ul.products {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
    margin: 30px 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/* Masquer les puces des listes */
.home ul.products::before,
.home ul.products::after,
.home ul.products li::before,
.home ul.products li::after {
    display: none !important;
    content: none !important;
}

/* Style des cartes produit */
.home ul.products li.product {
    width: 250px !important;
    margin: 0 !important;
    padding: 15px !important;
    background-color: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    text-align: center !important;
}

.home ul.products li.product:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15) !important;
}

/* Images des produits */
.home ul.products li.product img {
    max-height: 180px !important;
    width: auto !important;
    margin: 0 auto 15px !important;
    object-fit: contain !important;
}

/* Titres des produits */
.home ul.products li.product h2.woocommerce-loop-product__title {
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    text-align: center !important;
    color: #333 !important;
    margin-bottom: 10px !important;
    height: auto !important;
    min-height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Prix des produits */
.home ul.products li.product .price {
    color: #2a7d8c !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    text-align: center !important;
    margin-bottom: 15px !important;
    display: block !important;
}

/* Bouton Ajouter au panier */
.home ul.products li.product .button {
    display: inline-block !important;
    background-color: #2a7d8c !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    padding: 8px 15px !important;
    border-radius: 5px !important;
    transition: background-color 0.3s ease !important;
}

.home ul.products li.product .button:hover {
    background-color: #1e5c69 !important;
}

/* Affichage sur mobile */
@media (max-width: 768px) {
    .home ul.products {
        justify-content: center !important;
    }
    
    .home ul.products li.product {
        width: 200px !important;
    }
}

@media (max-width: 480px) {
    .home ul.products li.product {
        width: 100% !important;
        max-width: 250px !important;
    }
}
