Bring a little piece of Australia into your home with our adorable Koala Boxed Soap, featuring a heartwarming design of a mother and baby joey koala. Handcrafted with all-natural ingredients, this gentle soap is perfect for all skin types, leaving your skin feeling soft, nourished, and refreshed. Infused with the crisp, invigorating scent of mint and eucalyptus, it offers a truly uplifting aroma inspired by the Australian bush. Australian Kakadu plum extract and activated charcoal help to gently exfoliate while shea butter ensures a deeply soothing, moisturising bar. Packaged in a charming, eco-friendly box, it makes a thoughtful gift or a sweet treat for yourself. Whether you're a nature lover or looking for the perfect Australian-made souvenir, this koala soap is sure to bring a smile! Head to our sustainability page to learn more. Why You Will Love It Iconically Australian: Features a heartwarming mother and baby joey design, making it a perfect souvenir. Gentle Exfoliation: Contains Activated Charcoal and Kakadu Plum to gently renew the skin surface. Bushland Scent: Infused with the invigorating, crisp aroma of Mint and Eucalyptus. Perfect For International Gifting: A lightweight and adorable gift to send to friends or family living abroad. Nature Lovers: Perfect for those who want to support Australian-made products while enjoying a native scent. Small Treats: An affordable way to bring a little joy and the scent of the bush into your home. Popular Scents Animal Soap: A whimsical variety of natural scents derived from pure essential oils and botanical extracts. 1/2 Dozen Eggs: A diverse collection ranging from zesty lime and lemon myrtle to soothing lavender and sage. Heart Soap : A lovely and calming floral combination of lavender, geranium, and patchouli. Ingredients sodium olivate (olive oil), sodium cocoate (coconut oil), sodium shea butterate (shea butter), sodium sunflowerate (sunflower oil), essential oil s of eucalyptus globulus (blue gum) leaf and mentha spicata (spearmint) leaf/flower, terminalia ferdinandiana (Kakadu plum) fruit extract, bentonite, aqua, quartz (bentonite clay), CI77288 (chromium green oxide), activated charcoal from cocos nucifera (coconut) Pair it with hemp bag with soap $26.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': 4065516060699, '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); }); });