About Diamond Pharmacy

Your trusted healthcare partner since 2013, providing quality products and personalized care.

Our Story

Founded in 2013, Diamond Pharmacy began as a single location in Harare, with a vision to revolutionize pharmaceutical care in Zimbabwe.

What started as a modest neighborhood pharmacy has grown into a trusted healthcare provider with multiple locations across Zimbabwe, serving thousands of families with compassion and expertise.

Our name "Diamond" reflects our commitment to exceptional quality and value in healthcare services, treating each customer as precious.

"Our mission is to provide accessible, personalized healthcare solutions that empower our community to live healthier lives."

— ***, Founder

Diamond Pharmacy Team

Our Core Values

Compassionate Care

We treat every customer with empathy, respect, and kindness, understanding that health is personal.

Professional Excellence

Our pharmacists maintain the highest standards of knowledge, ethics, and continuous learning.

Integrity

We uphold honesty and transparency in all our interactions, from medication counseling to pricing.

Innovation

We embrace new technologies and services that enhance patient care and convenience.

Community Focus

We're committed to improving health outcomes in our local communities through education and outreach.

Quality Assurance

We source medications only from licensed, reputable suppliers to ensure safety and efficacy.

Meet Our Leadership Team

***

Albert Nyaruwanga

Founder & MD

BPHARM (HONS),MBA University of Zimbabwe, with 15+ years of pharmaceutical experience. Email: anyaruwanga@diamondpharmacy.co.zw, Phone: +263 077 303 2488

***

***

Chief Pharmacist

Specializes in clinical pharmacy and medication therapy management.

***

***

Operations Manager

Ensures smooth operations across all Diamond Pharmacy locations.

Stay Healthy With Our Newsletter

Subscribe for health tips and exclusive offers.

We respect your privacy. Unsubscribe at any time.

Accreditation & Quality Assurance

Diamond Pharmacy is fully licensed and regulated by the Pharmacists Council of Zimbabwe and MCAZ, meeting all national standards for pharmaceutical care.

We participate in ongoing quality assurance programs and staff training to maintain excellence in all aspects of our service.

// Scroll animation const aosElements = document.querySelectorAll('[data-aos]'); function checkScroll() { aosElements.forEach(element => { const elementTop = element.getBoundingClientRect().top; const windowHeight = window.innerHeight; if (elementTop < windowHeight - 100) { element.classList.add('aos-animate'); } }); } // Initial check checkScroll(); // Check on scroll window.addEventListener('scroll', checkScroll); // WhatsApp FAB logic const whatsappFab = document.getElementById('whatsapp-fab'); const whatsappOptions = document.getElementById('whatsapp-options'); if (whatsappFab && whatsappOptions && !whatsappFab.dataset.listenerAdded) { whatsappFab.dataset.listenerAdded = 'true'; whatsappFab.addEventListener('click', function (event) { event.stopPropagation(); if (whatsappOptions.classList.contains('hidden')) { whatsappOptions.classList.remove('hidden', 'scale-95', 'opacity-0'); whatsappOptions.classList.add('scale-100', 'opacity-100'); } else { whatsappOptions.classList.add('scale-95', 'opacity-0'); setTimeout(() => whatsappOptions.classList.add('hidden'), 300); } }); // Close options if clicked outside document.addEventListener('click', function (event) { if (!whatsappOptions.classList.contains('hidden') && !whatsappFab.contains(event.target) && !whatsappOptions.contains(event.target)) { whatsappOptions.classList.add('scale-95', 'opacity-0'); setTimeout(() => whatsappOptions.classList.add('hidden'), 300); } }); } // Authentication UI update function (same as index.html) function updateAuthUILegacy() { const currentUser = JSON.parse(localStorage.getItem('currentUser')); const authButtons = document.getElementById('authButtons'); const mobileAuthButtons = document.getElementById('mobileAuthButtons'); const mobileAuthLinks = document.getElementById('mobileAuthLinks'); if (currentUser) { // User is logged in authButtons.innerHTML = `
`; mobileAuthButtons.innerHTML = `
`; mobileAuthLinks.innerHTML = ` Hi, ${currentUser.firstName || 'User'} My Prescriptions Shop Sign Out `; // Add event listeners for logout const logoutButton = document.getElementById('logoutButton'); const mobileLogoutButton = document.getElementById('mobileLogoutButton'); const mobileDropdownLogoutButton = document.getElementById('mobileDropdownLogoutButton'); const mobileUserMenuButton = document.getElementById('mobileUserMenuButton'); const mobileUserMenu = document.getElementById('mobileUserMenu'); // Mobile dropdown toggle if (mobileUserMenuButton && mobileUserMenu) { mobileUserMenuButton.addEventListener('click', function (e) { e.stopPropagation(); mobileUserMenu.classList.toggle('hidden'); }); document.addEventListener('click', function (event) { if (mobileUserMenu && !mobileUserMenu.contains(event.target) && !mobileUserMenuButton.contains(event.target)) { mobileUserMenu.classList.add('hidden'); } }); } // Mobile dropdown logout if (mobileDropdownLogoutButton) mobileDropdownLogoutButton.addEventListener('click', logout); function logout() { Swal.fire({ title: 'Sign Out?', text: 'Are you sure you want to sign out?', icon: 'question', showCancelButton: true, confirmButtonColor: '#0ea5e9', cancelButtonColor: '#ff6584', confirmButtonText: 'Yes, sign out' }).then((result) => { if (result.isConfirmed) { localStorage.removeItem('currentUser'); localStorage.removeItem('cart'); window.location.href = 'index.html'; } }); } if (logoutButton) logoutButton.addEventListener('click', logout); if (mobileLogoutButton) mobileLogoutButton.addEventListener('click', logout); // User menu toggle const userMenuButton = document.getElementById('userMenuButton'); const userMenu = document.getElementById('userMenu'); if (userMenuButton && userMenu) { userMenuButton.addEventListener('click', function () { userMenu.classList.toggle('hidden'); }); // Close menu when clicking outside document.addEventListener('click', function (event) { if (!userMenuButton.contains(event.target) && !userMenu.contains(event.target)) { userMenu.classList.add('hidden'); } }); } } else { // User is not logged in authButtons.innerHTML = `
Login Register
`; mobileAuthButtons.innerHTML = `
`; mobileAuthLinks.innerHTML = ` Login Register `; } } // Initialize auth UI document.addEventListener('DOMContentLoaded', function () { });