top of page

Know My SKin

Understanding your skin is the first step to achieving a healthy, radiant glow. Dive into expert insights, skincare tips, and ingredient breakdowns to discover what truly works for your unique skin type.

svadyay (38).png

01

How do I determine my skin type?

Your skin type is primarily categorized into five types:

  • Normal

  • Dry

  • Oily

  • Combination

  • Sensitive

A simple way to identify your skin type is the bare-skin test:

  • Wash your face with a mild cleanser and pat dry.

  • Leave your skin bare for 30 minutes without applying any products.

  • Observe how your skin feels:

    • If it feels tight, it’s likely dry.

    • If it appears shiny all over, it’s oily.

    • If only the T-zone (forehead, nose, chin) is shiny, it’s combination.

    • If it feels balanced and neither too oily nor dry, it’s normal.

    • If it’s easily irritated or reacts to products, it’s sensitive.

02

How do I identify my skin concerns?

Skin concerns go beyond just type and can include:

  • Acne & Breakouts – Often linked to excess oil, clogged pores, or hormonal imbalances.

  • Hyperpigmentation & Dark Spots – Caused by sun exposure, acne scars, or hormonal changes.

  • Dryness & Dehydration – A result of low moisture levels or a compromised skin barrier.

  • Sensitivity & Redness – Triggered by harsh products, environmental factors, or underlying conditions.

  • Aging Signs (Fine Lines, Wrinkles) – Develop due to collagen loss and external aggressors.

 

Knowing your primary skin concern helps you choose the right active ingredients and treatments.

3.png
4.png
5.png

03

What ingredients should I look for in skincare based on my skin type?

Nature has gifted us powerful ingredients that cater to different skin needs. Here’s how some of the best natural and essential skincare ingredients can benefit your skin:

  • Oily & Acne-Prone Skin – Look for Salicylic Acid, Niacinamide, Turmeric, Besan (Gram Flour), and Tea Tree Oil to control excess oil, fight acne, and brighten the skin. Turmeric has antibacterial properties that help reduce breakouts, while besan acts as a natural cleanser, removing dirt and excess sebum.

  • Dry & Dehydrated Skin – Hydrate your skin with Aloe Vera, Coconut Oil, Hyaluronic Acid, and Shea Butter. Aloe Vera deeply soothes and nourishes, while coconut oil is rich in fatty acids that provide deep hydration.

  • Sensitive Skin – Opt for Chandan (Sandalwood), Aloe Vera, Centella Asiatica, and Oat Extract to calm irritation and redness. Chandan is known for its cooling and anti-inflammatory properties, making it perfect for sensitive and irritated skin.

  • Combination Skin – Balance hydration and oil control with Niacinamide, Green Tea Extract, Jojoba Oil, and Turmeric. Turmeric helps even out skin tone, while jojoba oil mimics the skin’s natural oils, maintaining balance.

  • Aging Skin – Use Retinol, Peptides, Vitamin C, Bakuchiol, and Chandan (Sandalwood) to improve elasticity and fight fine lines. Sandalwood is revered for its skin-rejuvenating properties, making it an excellent anti-aging ingredient.

04

How can I build a basic bath routine based on my skin’s needs

Essential Bath Routine for Glowing Skin:

  1. Choose the Right Body Wash – Instead of harsh soaps, opt for a nourishing body wash infused with natural ingredients like turmeric, besan, chandan (sandalwood), coconut, and aloe vera to cleanse and nourish your skin.

  2. Body Exfoliation (2-3 Times a Week) – Exfoliate using a gentle scrub or an ubtan-based exfoliant with turmeric, besan, and sandalwood to remove dead skin cells and reveal a radiant glow.

  3. Hydrating After-Bath Care – Apply a lightweight aloe vera or coconut-based body lotion to lock in moisture and keep your skin soft throughout the day.

6.png

Related Products

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