My account

Lost your password? Please enter your username or email address. You will receive a link to create a new password via email.

document.addEventListener("DOMContentLoaded", function () { function updateMobileAddToCart() { const mobileBtn = document.getElementById("tbay-click-addtocart"); if (mobileBtn && mobileBtn.textContent.trim() === "Add to cart") { mobileBtn.textContent = "PRE ORDER"; } } updateMobileAddToCart(); // Watch for dynamic content loading on mobile const observer = new MutationObserver(updateMobileAddToCart); observer.observe(document.body, { childList: true, subtree: true }); });