One of our more powerfully scented natural soaps, the combination of spearmint and eucalyptus is stimulating and refreshing - making a refreshing start to any day. Ground tea tree leaves have been added to gently exfoliate the skin. Why You Will Love It Artisan + Palm Oil-Free: Our soaps are handcrafted in small batches using traditional methods. We use a nourishing base of Victorian olive oil, coconut oil, and creamy shea butter, ensuring a rich, bubbly lather that cleanses effectively without stripping your skin of its natural moisture. Botanical Aromatherapy: Our bars are scented exclusively with pure plant essential oils. From the invigorating zing of Australian citrus to the grounding notes of native woods, each bar transforms your daily shower into a sensory escape. Earth-Kind + Ethical: Every bar in our range is vegan-friendly and 100% natural. We use clays, charcoal, and ground botanicals for colour and texture, ensuring our products are as kind to the environment as they are to your body. Perfect For Powerfully Stimulating: One of our strongest scents, perfect for clearing the head and awakening the body. Gentle Exfoliation: Ground tea tree leaves make this ideal for those who want to buff away dry skin while they wash. Post-Outdoor Activity: A fantastic, refreshing bar to use after gardening, hiking, or sports. Popular Scents Lavender Sage: Our most relaxing combination. This soothing blend of Lavender, Spanish Sage, and Marjoram is a well-rounded twist on a traditional favourite, perfect for a calming evening bath. Olive Oil : The ultimate gentle cleanser. Made from 100% pure olive oil, this unscented bar is specifically designed for those with highly sensitive skin who need a simple, moisture-rich wash. Geranium : A divine, gentle floral experience. Sweet and powdery Geranium is balanced by herbal Lavender, with a touch of earthy Patchouli to help the beautiful scent linger on your skin. Ingredients sodium olivate (olive oil), sodium cocoate (coconut oil), sodium shea butterate (shea butter), sodium sunflowerate (sunflower oil), sodium avocadate (avocado oil), pure essential oils of eucalyptus globulus (eucalyptus blue gum) and mentha spicata (spearmint), backhousia myrtifolia (cinnamon myrtle) leaves, illite (French green clay). Pair it with Hand + Body Lotion Calm Flower (400ml) $39.00 ADD TO CART .dindi-accordion-container { border-bottom: 1px solid #e8e8e1; margin: 20px 0; } .dindi-accordion-item { border-top: 1px solid #e8e8e1; } .dindi-accordion-button { display: flex; width: 100%; justify-content: space-between; align-items: center; padding: 15px 0; cursor: pointer; background: none; border: none; text-align: left; outline: none; } .dindi-accordion-title { font-weight: bold; text-transform: none; letter-spacing: 0.1em; font-size: 16px; color: #000; } .dindi-accordion-icon { width: 12px; height: 12px; transition: transform 0.3s ease; display: flex; align-items: center; } .dindi-accordion-button[aria-expanded="true"] .dindi-accordion-icon { transform: rotate(180deg); } .dindi-accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.35s ease-out; } .dindi-accordion-content-inner { padding: 0 0 0px 0; } .dindi-accordion-content ul { list-style: disc; padding-left: 1.5rem; margin: 0; } .dindi-accordion-content li { margin-bottom: 5px; font-size: 16px; } .dindi-accordion-content a { color: inherit; text-decoration: underline; } .dindi-accordion-container:last-of-type { border-top: none; border-bottom: none; margin-top: 0; } document.querySelectorAll('.dindi-accordion-button').forEach(button => { button.addEventListener('click', () => { const expanded = button.getAttribute('aria-expanded') === 'true'; const content = button.nextElementSibling; // Reset all others (Optional - if you want only one open at a time) /* document.querySelectorAll('.dindi-accordion-button').forEach(otherBtn => { if (otherBtn !== button) { otherBtn.setAttribute('aria-expanded', 'false'); otherBtn.nextElementSibling.style.maxHeight = null; } }); */ button.setAttribute('aria-expanded', !expanded); content.style.maxHeight = expanded ? null : content.scrollHeight + "px"; }); }); document.getElementById('ajax-add-button').addEventListener('click', function(e) { e.preventDefault(); // Stop the page from redirecting const formData = { 'items': [{ 'id': 44384742015162, 'quantity': 1 }] }; fetch('/cart/add.js', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(formData) }) .then(response => { return response.json(); }) .then(data => { // Optional: Change button text to show success this.querySelector('span').innerText = 'ADDED!'; this.style.background = '#c4795d'; // Turns orange briefly // Optional: Trigger your theme's cart drawer if it exists if (window.theme && window.theme.cart) { // This part depends on your specific Shopify theme } setTimeout(() => { this.querySelector('span').innerText = 'ADD TO CART'; this.style.background = '#000'; }, 2000); }) .catch((error) => { console.error('Error:', error); }); });