/*
Theme Name:   MyPyro Child
Theme URI:    https://mypyro.fr
Description:  Child theme MyPyro — redesign dark navy, mobile-first, Core Web Vitals
Author:       MyPyro
Template:     lilac-main
Version:      1.0.0
Text Domain:  mypyro-child
*/

/* ============================================================
   /* ============================================================
   CRO FIX #8 — Supprimer TOUTES les étoiles (aucun avis collecté)
   ============================================================ */
.star-rating,
.woocommerce-product-rating,
.wc-block-components-product-rating,
.woocommerce ul.products li.product .star-rating,
.woocommerce-loop-product__rating {
    display: none !important;
}

/* ============================================================
   CRO FIX — Bouton panier inaccessible
   inner démarre à top:25px → déborde de 25px hors viewport
   → on le fixe en absolu dans le widget parent
   ============================================================ */
.wdt-shop-cart-widget {
    overflow: hidden !important;
}
.wdt-shop-cart-widget-inner {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: auto !important;
    max-height: 100% !important;
    overflow: hidden !important;
}
.wdt-shop-cart-widget-content-wrapper {
    display: block !important;
    height: calc(100% - 100px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}
