/* Make the OneClick Chat to Order button full width on all devices (desktop and mobile) */
.woocommerce div.product form.cart .wa-order-button,
.woocommerce div.product .wa-order-button,
a.wa-order-button {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important; /* Ensure no constraints prevent full width */
    text-align: center !important;
    box-sizing: border-box !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

@media only screen and (max-width: 768px) {
    .woocommerce div.product form.cart .wa-order-button,
    .woocommerce div.product .wa-order-button,
    a.wa-order-button {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}
