.produits-bloc {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    padding: 16px;
    margin: 24px 0;
}

.produit-item {
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.produit-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.produit-image {
    margin-bottom: 1rem;
    text-align: center;
}

.produit-image img {
    max-width: 100%;
    height: auto;
}

.produit-details {
    text-align: center;
}

.produit-details h3 {
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

.price {
    font-weight: bold;
    color: #333;
    margin: 0.5rem 0;
}

.quantity {
    margin: 1rem 0;
}

.quantity input {
    width: 60px;
    padding: 5px;
    text-align: center;
}

.add-to-cart-btn {
    width: 100%;
    padding: 10px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 18px 12px;
}

.add-to-cart-btn:hover {
    background-color: #b39964!important;
}

.add-to-cart-btn.loading {
    opacity: 0.7;
    cursor: wait;
}


.produit-details .added_to_cart_visible{
    display: block!important;
}

.produit-details h3 {
    font-size: 18px!important;
}

@media screen and (max-width: 959px){
    .produit-details h3 {
        font-size: 22px!important;
    }
}

@media screen and (max-width: 767px){
    .produit-details h3 {
        font-size: 18px !important;
    }
}