top of page

Terms and Conditions

​​

1. Introduction

    Welcome to Svadhyay! We are committed to providing exceptional customer service and high-quality skincare               products. By purchasing from us, you agree to the following terms and conditions.

​

2. Product Information

  • Ingredient Transparency: We provide detailed information about our ingredients and their benefits. If you have any specific allergies or skin concerns, please consult our ingredient list or contact us for guidance.

  • Usage Instructions: Please follow the usage instructions provided with each product to achieve the best results and minimize the risk of adverse reactions.

​

3. Order Processing

  • Orders will be processed within 1-2 business days. You will receive a confirmation email once your order has been shipped.

  • Please ensure that your shipping address is accurate. Svadhyay is not responsible for orders lost due to incorrect address information.

​

4. Returns and Refunds

  • Return Policy: We want you to love your Svadhyay products! If you are not satisfied with your purchase, please contact us within [insert return window, e.g., 14 days] of receiving your order to initiate a return.

  • Refunds: Refunds will be processed to the original payment method within 3-5 business days after we receive the returned items.

​

5. Customer Support

     For any inquiries, concerns, or feedback, please reach out to our customer care team at service@svadhyay.in. We         aim to respond to all inquiries within 24 - 48 Hours.

​

6. Privacy Policy

    We value your privacy and are committed to protecting your personal information. For details on how we collect,          use, and protect your data, please review our Privacy Policy.

​

7. Changes to Terms and Conditions

     Svadhyay reserves the right to modify these terms and conditions at any time. We will notify you of any significant         changes via email or through our website.

​​​​​

​

​By purchasing from Svadhyay, you acknowledge that you have read and understood these terms and conditions. Thank you for choosing Svadhyay, where we celebrate the beauty of Indian-rooted ingredients tailored for you!

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