top of page

Svadhyay Combo Pack – Chandan Snan, Haridra Snan, Soma Snan

Total 600 ml (200 ml Each Bottle) + Free Premium Hand Towel!

 

Bonus: Free Premium Hand Towel 🎉

Combo of 3 BodyWash |Chandan Snan, Haridra Snan, Soma Snan | Free Handtowel

Rating is 4.3 out of five stars based on 27 reviews
₹1,800.00 Regular Price
₹684.00Sale Price
Quantity

Soma Snan (Coconut Aloevera Avocado with Vitamin E & Salicylic acid)

Deep cleansing & Nourishing

Reduce Aging Sign

Moisturize Dry Skin

Control Acne Breakouts

Haridra Snan (Turmeric Gramflour Ashwagandha with Niacinamide and vitamin C)

Balances Oil

Anti inflammatory

Control Acne Breakouts

Deep Cleanser

Chandan Snan (Sandalwood Kesar Manjistha with Vitamin E & C) 

Brightens Skin

Evens Skin Tone

Anti-Oxidant Protection

PH Balance

Rated 4.3 out of 5 stars.
4.3 | 27 reviews
27 reviews
  • Neha MehtaDec 08, 2024
    Rated 5 out of 5 stars.
    Worth the price

    The scent is soothing and not overpowering, just perfect!"

    Was this helpful?
  • Priya MehtaNov 29, 2024
    Rated 4 out of 5 stars.
    Impressive Results!

    Amazing results in just a week! Would have liked bigger bottles, but the quality is great.

    Was this helpful?
  • Aditi NairDec 03, 2024
    Rated 4 out of 5 stars.
    Like combo offer

    I really liked this offer . Also free gift is good, rarely seen any other brand. I would prefer soma snan again.

    Was this helpful?
  • Kishan Thava SJun 04
    Rated 2 out of 5 stars.
    Verified
    Undelivered

    Ordered and waited for a week or more and then complained to the cust care, and got the refund.

    Was this helpful?
  • Sneha TrivediNov 01, 2024
    Rated 4 out of 5 stars.
    Loved the Experience!

    Loved all three products! My skin feels soft, radiant, and refreshed. Highly recommended.

    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 }); } })();