SUBSCRIBE TO OUR NEWSLETTER

DISCOVER OUR NEW TREATMENTS, DEALS , NEWS AND EXCLUSIVE OFFERS

// background swap on hover / focus / tap const swap = () => { const box = card.closest('.edge-showcase'); box.style.backgroundImage = `url("${card.dataset.bg}")`; box.querySelectorAll('.edge-card') .forEach(c=>c.classList.toggle('active', c===card)); }; card.addEventListener('mouseenter', swap); card.addEventListener('focus', swap); card.addEventListener('touchstart',swap,{passive:true}); }); });