Our Premium T-Shirt Collection

Comfort, quality, and creativity — crafted with purpose

×

Contact Us

GARY +91 9047299559

RAHUL DAVID +91 9003530293

MARIA +91 8838793659

featherpy@gmail.com

sabareesanl315@gmail.com

Chat with us!
document.querySelectorAll('.product-image-zoom').forEach(container => { const img = container.querySelector('img'); const zoomLens = document.createElement('div'); zoomLens.className = 'zoom-lens'; container.appendChild(zoomLens); container.addEventListener('mousemove', function(e) { const rect = container.getBoundingClientRect(); const x = e.clientX - rect.left; const y = e.clientY - rect.top; const lensX = x - 50; const lensY = y - 50; zoomLens.style.left = lensX + 'px'; zoomLens.style.top = lensY + 'px'; const bgX = (x / rect.width) * 100; const bgY = (y / rect.height) * 100; zoomLens.style.backgroundImage = 'url(' + img.src + ')'; zoomLens.style.backgroundSize = (img.width * 2) + 'px ' + (img.height * 2) + 'px'; zoomLens.style.backgroundPosition = bgX + '% ' + bgY + '%'; }); container.addEventListener('mouseleave', function() { zoomLens.style.display = 'none'; }); container.addEventListener('mouseenter', function() { zoomLens.style.display = 'block'; }); });