top of page

Indian Skin Concerns & Remedies

Svadhyay Skincare is a brand rooted in Indian traditions and nature, offering products designed to celebrate and nurture Indian skin tones. The focus is on blending natural, heritage-inspired ingredients with scientifically-backed skincare essentials like niacinamide, salicylic acid, and BHA to provide effective and gentle care.

10.png

Oily Skin

Oily skin occurs when the sebaceous (oil) glands in the skin produce more oil than necessary.​​

Home remedies Sandalwood Paste: Mix sandalwood powder with rose water, apply for 10–15 minutes to control excess oil and soothe the skin. Kesar (Saffron) and Milk Mask: Soak a few saffron strands in milk, apply for 15–20 minutes to reduce oil and brighten skin.

​Svadhyay Recommendation: Try Svadhyay Chandan Snan Body Wash with natural extracts of sandalwood and kesar along with niacinamide & vitamin E perfect for your skin.

14.png

Hyperpigmentation

Hyperpigmentation appears as dark spots or patches on the skin, often due to sun exposure, inflammation, or hormonal changes.​​

Home remedies Turmeric Paste: Mix turmeric powder with yogurt or milk and apply to pigmented areas for 15 minutes before rinsing.

​Svadhyay Recommendation: Try Svahdyay's Hardira Snan infused with turmeric extracts and besan flour along with Vitamin E , Vitamin C and Niacinamide

11.png

Dry Skin

Dry skin on the body can result from a lack of moisture, hot showers, harsh soaps, or environmental factors like cold weather.​​

Home remedies Coconut Oil: Apply virgin coconut oil to the skin after a shower to lock in moisture. It contains fatty acids that nourish and hydrate.

​Svadhyay Recommendation : Try Soma Snan Body Wash enriched with goodness of coconut oil and aloevera perfect for your skin.

15.png

Aging Skin

Skin aging is typically characterized by fine lines, wrinkles, sagging, and loss of elasticity, usually beginning in the late 20s or early 30s.​​

Home remedies : Aloe Vera: Aloe vera has natural skin-tightening and hydrating properties. Apply fresh aloe vera gel to the face daily, leave it on for 15–20 minutes, and rinse. It can help smooth fine lines and boost hydration.

​Svadhyay RecommendationTry Soma Snan Body Wash enriched with goodness of coconut oil and aloevera perfect for your skin.

13.png

Acne Skin

Body acne, commonly found on the back, chest, and shoulders, is similar to facial acne and can be triggered by clogged pores, sweat, and tight clothing. It can also be exacerbated by hormonal imbalances.​​

Home remedies  Sea Salt Bath: Add sea salt to bathwater. Sea salt is antibacterial and can help dry out acne while soothing inflammation. Aloe Vera Gel: Apply aloe vera gel to soothe and reduce inflammation on affected areas.

​Svadhyay Recommendation: Try Soma Snan Body Wash enriched with goodness of coconut oil and aloevera perfect for your skin.

16.png

Combination Skin

Combination skin experiences both oiliness and dryness, making it tricky to care for. The T-zone may become shiny and prone to breakouts, while the cheeks can feel tight or flaky.​​

Home remedies Sandalwood and Rose Water Mask: Sandalwood controls oil in the T-zone, while rose water provides gentle hydration. Apply the paste to the oily areas for 10 minutes to balance the skin.

​Svadhyay Recommendation: Try either Chandan Snan or Soma Snan suitable for combination skin

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