top of page
SKU: 98

ChandanKesar Facewash | Lactic Acid - Citric Acid | Free Bodywash | 100ml

Rating is 4.6 out of five stars based on 14 reviews
₹399.00 Regular Price
₹359.10Sale Price
Quantity

🌿 ChandanKesar Facewash | Lactic Acid + Citric Acid Sandalwood Cleanser

A luxurious daily cleanser that blends the calming essence of Chandan (sandalwood) and Kesar (saffron) with gentle exfoliating acids — lactic acid and citric acid — to reveal fresher, brighter, and balanced skin.

What It Is

ChandanKesar Facewash is a thoughtfully formulated sandalwood-based cleanser infused with mild exfoliants that cleanse deeply without stripping your skin. Perfect for daily use, it balances hydration, radiance, and clarity.

✅ Brightens Dull Skin

✅Soothes Inflammation

✅Gently Exfoliates

✅Deeply Cleanses

✅Hydrates & Nourishes

✅Strengthens Skin Barrier

Rated 4.6 out of 5 stars.
4.6 | 14 reviews
14 reviews
  • Aditi SharmaJul 23, 2025
    Rated 5 out of 5 stars.
    Aditi Sharma

    Loved the natural sandalwood and kesar fragrance. My skin feels so fresh and bright after every wash.

    Was this helpful?
  • Sneha MehtaJul 28, 2025
    Rated 5 out of 5 stars.
    Sneha Mehta

    Skin feels smoother and more radiant. Gentle yet effective cleansing.

    Was this helpful?
  • Anjali RaoJul 28, 2025
    Rated 5 out of 5 stars.
    Anjali Rao

    Light creamy texture, smells divine, perfect for morning skincare.

    Was this helpful?
  • Rajesh KumarJul 26, 2025
    Rated 4 out of 5 stars.
    Rajesh Kumar

    Controls excess oil yet doesn�t dry out my face. Perfect for daily use.

    Was this helpful?
  • Mahesh VermaFeb 08, 2025
    Rated 5 out of 5 stars.
    Mahesh Verma

    Great product with natural feel. Sandalwood aroma is so refreshing.

    Was this helpful?
  • OUR BEST COMBOS

    bottom of page
    // Initialize the Data Layer window.dataLayer = window.dataLayer || []; // Function to push events to the Data Layer function trackEvent(eventType, eventDetails) { window.dataLayer.push({ event: eventType, ...eventDetails // Add dynamic details for each event }); } // Helper function to extract product details dynamically function getProductDetails() { try { const productId = document.querySelector('[data-product-id]')?.getAttribute('data-product-id') || 'unknown'; const productName = document.querySelector('.product-name')?.innerText || 'Unknown Product'; const productPrice = parseFloat(document.querySelector('.product-price')?.innerText.replace(/[^0-9.]/g, '')) || 0; return { content_ids: [productId], content_name: productName, value: productPrice, currency: "INR" }; } catch (error) { console.error("Error fetching product details: ", error); return {}; } } // Helper function to extract checkout or purchase details function getCheckoutDetails() { try { const items = []; document.querySelectorAll('.cart-item').forEach(item => { const id = item.getAttribute('data-product-id'); const name = item.querySelector('.cart-item-name')?.innerText; const price = parseFloat(item.querySelector('.cart-item-price')?.innerText.replace(/[^0-9.]/g, '')) || 0; const quantity = parseInt(item.querySelector('.cart-item-quantity')?.innerText) || 1; items.push({ id, name, price, quantity }); }); const totalValue = items.reduce((sum, item) => sum + item.price * item.quantity, 0); return { content_ids: items.map(item => item.id), products: items, value: totalValue, currency: "INR" }; } catch (error) { console.error("Error fetching checkout details: ", error); return {}; } } // Dynamic tracking based on URL path (function() { const path = window.location.pathname; // Track PageView for every page trackEvent('PageView', { page_path: path }); // Home Page Tracking if (path === "/") { trackEvent('ViewContent', { page_type: "HomePage", currency: "INR" }); } // Product Page Tracking if (path.includes("product")) { const productDetails = getProductDetails(); trackEvent('ViewContent', { ...productDetails, content_type: "product" }); } // Add to Cart Tracking if (path.includes("cart")) { const cartDetails = getCheckoutDetails(); trackEvent('AddToCart', { ...cartDetails, quantity: 1 // Total cart quantity can be adjusted dynamically }); } // Initiate Checkout Tracking if (path.includes("checkout")) { const checkoutDetails = getCheckoutDetails(); trackEvent('InitiateCheckout', { ...checkoutDetails, content_type: "product" }); } // Purchase Tracking if (path.includes("thank-you")) { const purchaseDetails = getCheckoutDetails(); trackEvent('Purchase', { transaction_id: "ORDER_" + new Date().getTime(), // Replace with dynamic transaction ID if available ...purchaseDetails }); } })();