/* Liste des produits */
.woocommerce ul.products {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin: 0;
    padding: 0;
}

/* Carte produit */
.woocommerce ul.products li.product {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 24px 18px 18px 18px;
    margin: 0;
    transition: transform 0.18s, box-shadow 0.18s;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
    max-width: 260px;
}
.woocommerce ul.products li.product:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 24px rgba(212,62,67,0.13);
    z-index: 2;
}

/* Image produit */
.woocommerce ul.products li.product img {
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 16px;
    background: #f8f8f8;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Titre produit */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.15em;
    font-weight: bold;
    color: #d43e43;
    margin: 0 0 10px 0;
    text-align: center;
}

/* Prix */
.woocommerce ul.products li.product .price {
    color: #222;
    font-size: 1.08em;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Bouton */
.woocommerce ul.products li.product .button {
    background: #d43e43;
    color: #fff;
    border-radius: 8px;
    padding: 10px 22px;
    font-weight: bold;
    transition: background 0.2s;
    margin-top: 10px;
}
.woocommerce ul.products li.product .button:hover {
    background: #580101;
}

/* Catégories de produits */
.woocommerce ul.products li.product-category {
    background: #f8f8f8;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 24px 18px 18px 18px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    max-width: 220px;
    transition: transform 0.18s, box-shadow 0.18s;
}
.woocommerce ul.products li.product-category:hover {
    transform: scale(1.045);
    box-shadow: 0 6px 24px rgba(212,62,67,0.13);
    color: #d43e43;
    outline: none;
}

/* Image catégorie */
.woocommerce ul.products li.product-category img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 14px;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Titre catégorie */
.woocommerce ul.products li.product-category .woocommerce-loop-category__title {
    font-size: 1.08em;
    font-weight: 600;
    text-align: center;
    color: #d43e43;
    margin-top: 8px;
}

/* Forcer le centrage horizontal de l'image produit WooCommerce */
.woocommerce ul.products li.product img .zoomImg {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Forcer le centrage horizontal de l'image catégorie WooCommerce */
.woocommerce ul.products li.product-category img .zoomImg{
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.woocommerce .quantity .qty {
    line-height: 45px;
    font-size: 20px;
}

.out-of-stock {
    color: #580101 !important;
    font-weight: bold;
}