window.addEventListener('load', function() {
setTimeout(function() {
const thumbs = document.querySelectorAll('.swiper-pagination-bullet img');
thumbs.forEach(img => {
img.removeAttribute('loading');
img.setAttribute('loading', 'eager');
img.classList.remove('lazyload');
img.classList.remove('lazyloaded');
});
}, 800); //
});