Your cart is currently empty.

Showing 1 - 18 of 99 result

Sort by :

Translation missing: en.general.search.loading
// Delay newsletter popup to improve LCP (function() { // Hide popup initially var style = document.createElement('style'); style.innerHTML = '.newsletter-popup { display: none !important; }'; document.head.appendChild(style); // Show popup after 10 seconds setTimeout(function() { style.remove(); // Trigger popup display var popup = document.querySelector('.newsletter-popup'); if (popup) { popup.style.display = ''; } }, 10000); })(); // Lazy loading for images to improve LCP document.addEventListener('DOMContentLoaded', function() { // Get all images const images = document.querySelectorAll('img[data-src]'); const imageObserver = new IntersectionObserver((entries, observer) => { entries.forEach(entry => { if (entry.isIntersecting) { const img = entry.target; img.src = img.dataset.src; img.removeAttribute('data-src'); observer.unobserve(img); } }); }); images.forEach(img => imageObserver.observe(img)); }); // Native lazy loading fallback if ('loading' in HTMLImageElement.prototype) { const images = document.querySelectorAll('img[loading="lazy"]'); images.forEach(img => { img.src = img.dataset.src || img.src; }); }