Skip to content
🚚 Need it fast? 🚚 Express Delivery in 3–4 business days—select at checkout!
🚚 Need it fast? 🚚 Express Delivery in 3–4 business days—select at checkout!

Waldon Mini Shaver

Save ₹ 2,132.00 Save ₹ 2,132.00
MRP:
Original price ₹ 2,999.00
Original price ₹ 2,999.00 - Original price ₹ 2,999.00
Original price ₹ 2,999.00
Current price ₹ 867.00
₹ 867.00 - ₹ 867.00
Current price ₹ 867.00

(MRP : Inclusive of all taxes)

Extra 5% Off if you pay Prepaid via Razorpay

Experience smooth and effortless shaving with the Waldon Mini Compact Shaver. Designed for comfort and precision, it delivers a clean shave anytime, anywhere. Its stylish, slim design fits perfectly in your pocket, making it the ideal grooming partner for travel or daily touch-ups.

Lightweight, portable, and easy to use, this compact shaver keeps you looking fresh on the go. Perfect for modern, busy lifestyles.

Availability:
in stock, ready to be shipped

Standard Shipping Only
To ensure safe delivery, this product ships via standard delivery only due to its built-in battery.

Features

✔ Anti rust blades
✔ USB charging
✔ Easy to clean
✔ 100% waterproof
✔ Compact & Portable

Care

✔ Read manual before use
✔ Keep it away from kids
✔ Don't clean it with solvent solutions
✔ Don’t share the products with others

Additional Info

✔ Model number: Traveller
✔ Warranty: 6 months
✔ Box Dimension: 12 x 8 x 7 (LWH in cm)
✔Weight: 100 gms
✔ Includes: Shaver, Charging cable, Carry pouch, User manual
✔ Imported by: Passim Medichem Agencies, 186, Phase 2, IA, Chandigarh 160002
✔ Net quantity: 1 Unit
✔ Country of Origin: China

Shipping & Returns

SHIPPING -
✔ Free shipping on orders above 799
✔ Products are shipped from our warehouse within 1 to 2 working days
✔ The order will be delivered in 5-8 business days from the date of dispatch
✔ You will receive the order tracking number as soon as we ship your order

RETURNS -
✔ We have 7 days return policy (only for manufacturing defects or you receive the wrong product)
✔ Please ensure that the products you return are unused
✔ Only replacement will be applicable on order
✔ Don’t accept if the package is tampered

Flat 5% Off

Enjoy a 5% discount on every order when you choose to pay via Razorpay. No minimum purchase required.

Easy 7 days exchange

If there will be any manufacturing defect or we deliver a wrong product, we'll offer you a free replacement.

Pay via COD or Online

Pay via Debit/Credit card, UPI or Netbanking, EMI, Wallet payments or CRED. We also provide COD.





document.addEventListener('DOMContentLoaded', function() { // Wait a bit for everything to load setTimeout(function() { initStickyGallery(); }, 100); }); function initStickyGallery() { const gallery = document.querySelector('.product-gallery'); const productMain = document.querySelector('.product-main'); // If elements don't exist, exit if (!gallery || !productMain) return; // Track if sticky is active let isStickyActive = true; function checkSticky() { // Only run on desktop if (window.innerWidth < 1024) { if (isStickyActive) { gallery.style.position = ''; gallery.classList.remove('sticky-ended'); isStickyActive = false; } return; } // Get positions const galleryRect = gallery.getBoundingClientRect(); const productMainRect = productMain.getBoundingClientRect(); const footer = document.querySelector('footer') || document.querySelector('.site-footer'); const footerRect = footer ? footer.getBoundingClientRect() : null; // Get the bottom of the right column content const rightColumnBottom = productMainRect.bottom; const viewportHeight = window.innerHeight; // Also check if gallery would hit the footer let galleryWouldHitFooter = false; if (footerRect) { const galleryBottomRelative = galleryRect.top + gallery.offsetHeight; if (galleryBottomRelative >= footerRect.top - 50) { galleryWouldHitFooter = true; } } // Condition to end sticky: // Either right column content is fully scrolled past viewport // OR gallery would overlap with footer if (rightColumnBottom <= viewportHeight + 100 || galleryWouldHitFooter) { if (isStickyActive) { gallery.style.position = 'relative'; gallery.classList.add('sticky-ended'); isStickyActive = false; } } else { if (!isStickyActive) { gallery.style.position = 'sticky'; gallery.style.top = '30px'; gallery.classList.remove('sticky-ended'); isStickyActive = true; } } } // Run on scroll and resize window.addEventListener('scroll', checkSticky); window.addEventListener('resize', checkSticky); // Initial check checkSticky(); }