.elementor-12 .elementor-element.elementor-element-687c5b21{--display:flex;}/* Start custom CSS *//* Nasconde il testo originale senza alterare il layout */
.woocommerce-shipping-destination {
    font-size: 0 !important;
}

/* Inserisce il nuovo testo ESATTAMENTE nello stesso punto */
.woocommerce-shipping-destination::after {
    content: "Spedizione assicurata fino a 500 euro";
    font-size: 14px;
    color: #000;
}

/* === RESET testo originale Astra/Woo === */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    position: relative;
    height: 52px;
    min-height: 52px;
    background-color: #000;
    padding: 0;
    
    /* Nasconde il testo reale */
    font-size: 0 !important;
    line-height: 0 !important;
    color: transparent !important;
}

/* Rimuove qualsiasi span/testo Astra */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button * {
    display: none !important;
}

/* === Testo ricreato e centrato === */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button::after {
    content: "Procedi con l'ordine";
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;
        font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;

    color: #fff;
    pointer-events: none;
}

/* Hover */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    background-color: #A3C09D;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover::after {
    color: #000;
}/* End custom CSS */