/* Grille principale façon Amazon */
ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 240px);
    gap: 20px;
    justify-content: center;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

/* Carreau produit fixe */
ul.products li.product {
    width: 240px !important;
    height: 380px !important;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.2s;
}

ul.products li.product:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Image produit */
ul.products li.product img {
    max-height: 160px;
    width: auto;
    margin: 0 auto 10px auto;
    object-fit: contain;
}

/* Titre produit */
ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px;
    font-weight: bold;
    margin: 5px 0;
    height: 38px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Résumé */
.amazon-summary {
    font-size: 12px;
    color: #555;
    margin: 5px 0;
    height: 32px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Texte Delivery by */
.amazon-delivery {
    color: green;
    font-size: 13px;
    margin-top: auto;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Bouton Acheter style Amazon */
ul.products li.product .button {
    background-color: #FFD814 !important;
    color: #111 !important;
    border-radius: 20px !important;
    padding: 8px 15px !important;
    font-weight: bold;
    font-size: 13px;
    border: 1px solid #FCD200 !important;
    margin-top: auto;
    transition: background 0.2s;
}

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

