/* Centrer les catégories et images */
ul.products li.product-category {
    text-align: center;
}

/* Images uniformes */
ul.products li.product-category img {
    max-width: 100%;
    height: auto;
    margin: 0 auto 10px auto;
    display: block;
}

/* Boutons stylés */
ul.products li.product-category a.button {
    display: inline-block;
    margin-top: 5px;
    padding: 8px 12px;
    background-color: #4CAF50; /* couleur bouton, modifiable */
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
}

ul.products li.product-category a.button:hover {
    background-color: #45a049;
}

/* Responsive : passer à 2 colonnes sur mobile */
@media screen and (max-width: 768px) {
    ul.products li.product-category {
        width: 48%; /* deux colonnes */
        margin: 1%;
    }
}

/* Responsive : 1 colonne sur très petit écran */
@media screen and (max-width: 480px) {
    ul.products li.product-category {
        width: 100%;
        margin: 0 0 20px 0;
    }
}
