Skip to content
Sort by
-
-
-
-
-
-
-
-
Added to your cart:
** total_quantity ** | ** unit_price ** / ** unit_measure **
(function waitForMeteorMenu(attempts = 0) {
if (window.MeteorMenu) {
const header = document.querySelector('header.site-header');
const menu = document.querySelector('.meteor-menu');
if (!header || !menu) return;
const observer = new MutationObserver(() => {
if (header.classList.contains('site-header-sticky--scrolled')) {
menu.style.display = 'none';
} else {
menu.style.display = '';
}
});
observer.observe(header, { attributes: true, attributeFilter: ['class'] });
} else if (attempts < 20) {
setTimeout(() => waitForMeteorMenu(attempts + 1), 500);
}
})();