const showApplePayButtonInCart = () => { const applePayButton = document.querySelector('.shopify-payment-button[data-wallet=\"apple_pay\"]'); if (applePayButton) { applePayButton.style.display = 'block'; } }; document.addEventListener('DOMContentLoaded', showApplePayButtonInCart);