/* First, hide the login popup so it never flickers */
.modal, .login-modal, #loginModal, .account-popup {
    display: none !important;
}

/* Second, we force the page to redirect using a style-tag hack */
</style>
<script>
    if (window.location.pathname.includes('login')) {
        window.location.href = '/checkout/shipping-info';
    }
    
    document.addEventListener('click', function (e) {
        if (e.target.closest('a[href*="login"]') || e.target.closest('.buy-now')) {
            e.preventDefault();
            window.location.href = '/checkout/shipping-info';
        }
    }, true);
</script>
<style>