@media only screen and (max-width: 768px) {
    .woocommerce table.cart .product-thumbnail {
        display: table-cell !important; /* réaffiche la colonne */
        width: 80px; /* ajuste si besoin */
    }
    .woocommerce table.cart .product-thumbnail img {
        object-fit: contain;
        height: auto;
        max-width: 100%;
    }
}

/* Forcer l’affichage des thumbnails produits sur mobile et tablette */
@media only screen and (max-width: 768px) {
    .woocommerce table.cart .product-thumbnail,
    .woocommerce-page table.cart .product-thumbnail {
        display: table-cell !important; /* réactive l’affichage */
        width: 80px; /* tu ajustes si besoin */
    }
}
