Upload Prescription

Home

Vitamins products

Boost Your Immunity

Discover top-quality immune support supplements from trusted brands.

Shop Now

Skin Care Essentials

Skin Therapy Experts

Transform your skin health with expert care products.

Shop Now

Vitamin B12 Products

Vitamin B12 Care

Boost energy and vitality with premium B12 supplements.

Shop Now



Shop by Health Concerns

document.addEventListener('DOMContentLoaded', function() { const slides = document.querySelector('.slides'); const totalSlides = slides.children.length; let currentIndex = 0; const btnPrev = document.querySelector('.slider-prev'); const btnNext = document.querySelector('.slider-next'); function updateSlidePosition() { slides.style.transform = `translateX(-${currentIndex * 100}%)`; } btnNext.addEventListener('click', () => { currentIndex = (currentIndex + 1) % totalSlides; updateSlidePosition(); }); btnPrev.addEventListener('click', () => { currentIndex = (currentIndex - 1 + totalSlides) % totalSlides; updateSlidePosition(); }); // Optional: Auto slide (every 5 seconds) setInterval(() => { currentIndex = (currentIndex + 1) % totalSlides; updateSlidePosition(); }, 5000); });