/* Réduction de la taille de police, retour à la ligne et centrage du prix sur mobile */
@media screen and (max-width: 767px) {
    /* Centrer le bloc de prix */
    .woocommerce-LoopProduct-link .price,
    .price {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
        justify-content: center !important;
        font-size: 14px !important;
    }
    
    /* "À partir de..." */
    .price .from {
        display: inline-block !important;
        font-size: 12px !important;
        margin-right: 3px !important;
    }

    /* Force le suffixe TTC / poids à aller à la ligne et à être centré */
    .woocommerce-price-suffix,
    .tax-text,
    .quantity-label,
    .product-weight,
    .weight {
        display: block !important;
        text-align: center !important;
        margin-top: 4px !important;
        clear: both !important;
        width: 100% !important;
    }

    /* Mention "TTC" */
    .woocommerce-price-suffix,
    .tax-text {
        font-size: 10px !important;
        opacity: 0.8;
    }

    /* Poids / unité (ex: "g" ou "gr") */
    .quantity-label,
    .product-weight,
    .weight {
        font-size: 11px !important;
    }
}
