/* Hide express checkout buttons when cart is not empty */
body.cart-not-empty #wc-stripe-express-checkout-element {
    display: none !important;
}

/* Ensure buttons are visible when cart is empty */
body.cart-empty #wc-stripe-express-checkout-element {
    display: flex !important;
}