.elementor-1316 .elementor-element.elementor-element-84ede9b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1316 .elementor-element.elementor-element-4c06c5a{text-align:center;}.elementor-1316 .elementor-element.elementor-element-4c06c5a .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:127px;font-weight:600;}.elementor-1316 .elementor-element.elementor-element-beb119b{--display:flex;}/* Start custom CSS for heading, class: .elementor-element-4c06c5a *//* =========================
   Panier WooCommerce - Quantité Pro
========================= */

/* Conteneur quantité */
.woocommerce-cart .quantity {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 5px;
    max-width: 140px; /* largeur totale suffisante pour que l'input tienne */
}

/* Boutons + et - */
.woocommerce-cart .quantity .minus,
.woocommerce-cart .quantity .plus {
    background-color: #000;
    color: #fff;
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    flex-shrink: 0; /* empêche les boutons de se réduire */
}

/* Champ quantité */
.woocommerce-cart .quantity input.qty {
    flex: 1; /* prend l'espace restant entre + et - */
    min-width: 40px; /* largeur minimale pour chiffres */
    height: 30px;
    text-align: center;
    font-size: 14px;
    color: #fff !important; /* texte en blanc */
    background-color: #222; /* fond du champ */
    border: 1px solid #ccc;
    border-radius: 4px;
    line-height: 30px;
    padding: 0;
    margin: 0;
}

/* Responsive mobile */
@media(max-width:768px) {
    .woocommerce-cart .quantity {
        max-width: 120px;
        gap: 3px;
    }

    .woocommerce-cart .quantity .minus,
    .woocommerce-cart .quantity .plus,
    .woocommerce-cart .quantity input.qty {
        width: 26px;
        height: 26px;
        line-height: 26px;
        font-size: 13px;
    }

    .woocommerce-cart .quantity input.qty {
        flex: 1;
        min-width: 30px;
    }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-b4285bf *//* Conteneur quantité */
.woocommerce .quantity {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
}

/* Bouton - */
.woocommerce .quantity .minus {
    margin-right: 8px !important;   /* espace entre - et le champ */
    width: 22px !important;
    height: 22px !important;
    font-size: 14px !important;
    background: #000 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    padding: 0 !important;
    line-height: 1 !important;
}

/* Bouton + */
.woocommerce .quantity .plus {
    margin-left: 8px !important;   /* espace entre le champ et + */
    width: 22px !important;
    height: 22px !important;
    font-size: 14px !important;
    background: #000 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    padding: 0 !important;
    line-height: 1 !important;
}

/* Champ quantité */
.woocommerce .quantity input.qty {
    width: 30px !important;
    height: 22px !important;
    text-align: center !important;
    font-size: 13px !important;
    background: #222 !important;
    color: #fff !important;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* Label “Quantité” */
.woocommerce-cart-form .product-quantity-label {
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    color: #000;
    margin-right: 10px;
}

/* --- Mobile : alignement boutons+champ à droite, label à gauche --- */
@media (max-width: 768px) {
    .woocommerce-cart-form .product-quantity {
        display: flex !important;
        justify-content: space-between !important; /* label à gauche, bloc boutons+champ à droite */
        align-items: center !important;
        text-align: left !important;
        width: 100% !important;
    }

    .woocommerce-cart-form .product-quantity .quantity {
        justify-content: flex-end !important; /* pousse uniquement le bloc à droite */
    }

    /* Label reste à gauche */
    .woocommerce-cart-form .product-quantity-label {
        text-align: left !important;
        margin: 0 !important;
    }
}/* End custom CSS */