Skip to content
FLASH SALE ENDS TODAY – UP TO 70% OFF SITEWIDE

Collection: EARRINGS

44 products

Load more
You might like
  • Product image

    Example product title

    £403.00
    £403.00
  • Product image

    Example product title

    £403.00
    £403.00
  • Product image

    Example product title

    £403.00
    £403.00
  • Product image

    Example product title

    £403.00
    £403.00
document.addEventListener('DOMContentLoaded', function () { const sliders = document.querySelectorAll('.featured-mobile-slider'); sliders.forEach(slider => { const dots = slider.nextElementSibling?.querySelectorAll('.slider-dot'); if (!dots) return; slider.addEventListener('scroll', () => { const scrollLeft = slider.scrollLeft; const slideWidth = slider.querySelector('.grid__item')?.offsetWidth || 1; const index = Math.round(scrollLeft / (slideWidth + 8)); // 8px is de gap dots.forEach(dot => dot.classList.remove('active')); if (dots[index]) dots[index].classList.add('active'); }); dots.forEach((dot, i) => { dot.addEventListener('click', () => { const slideWidth = slider.querySelector('.grid__item')?.offsetWidth || 1; slider.scrollTo({ left: i * (slideWidth + 8), behavior: 'smooth' }); }); }); }); });