0
0
Cart1item

Cart

Phat X Offers

Best Deals of the week!

More to love!

Get Exclusive Savings

Join Our E-list for specials and more 

Please enter your First name
Invalid or empty email
You have successfully subscribed to the newsletter.
Something went wrong. Your subscription failed.
const observer = new MutationObserver(function () { const el = document.querySelector('header.mobile-false'); if (el) { el.classList.remove('mobile-false'); observer.disconnect(); } }); // Start observing after DOM is ready document.addEventListener("DOMContentLoaded", function () { observer.observe(document.body, { childList: true, subtree: true }); // Run once immediately in case element already exists const el = document.querySelector('header.mobile-false'); if (el) { el.classList.remove('mobile-false'); observer.disconnect(); } });