Formulated with Castor Oil known to enhance the appearance of healthy, nourished hair
Formulated with Fision® EcoSil clinically proven to increase appearance of shine after 5 uses
Nourishes your scalp to help decrease hair breakage & damage
Deeply nourishes dry & damaged hair for stronger, hydrated-looking strands
Formulated with Fision® Hydratress that helps detangle and control frizz, and Fision® Ecosil for a shiny finish
Clinically Proven Shine: Fision® EcoSil clinically shown to increase the appearance of shine after just 5 uses.
Complete Wash Day Routine: The shampoo & conditioner deeply nourish dry, damaged strands for a stronger, hydrated-looking finish while decreasing breakage, and the Terracotta Scalp Exfoliator massages as you wash to help lift buildup at the root.
Eco-Conscious Beauty: One bar replaces two bottles' worth of waste, reducing single-use plastic every wash day.
Clean Formula: Free of parabens, phthalates, silicones, sulfates & artificial fragrance. PH balanced and safe for color-treated hair. Made in the USA from Globally Sourced Ingredients, Vegan, Cruelty Free, Leaping Bunny Certified.
Make Every Bar Last: The Shampoo & Conditioner Bar Bags whip up a thick, foamy lather and hang to air dry 360° so your bars never sit in a puddle, and the Seamless Hair Elastics grip without pulling or snagging when you twist hair up to rinse.
1x Castor Oil Nourishing Shampoo Bar
1x Castor Oil Nourishing Conditioner Bar
1x FREE Terracotta Scalp Exfoliator
1x FREE Shampoo Bar Bag - Blush
1x FREE Black Conditioner Bar Bag
1x FREE Black Seamless Hair Elastics, 8pc Set
Wet hair; rub the shampoo bar between hands into a rich lather or "paint" directly onto scalp.
Massage, rinse & repeat as desired.
Post-shampoo, wet the conditioner bar with warm water & massage into strands from length to ends.
Rinse & detangle as usual.
Use the Scalp Exfoliator while washing to gently massage your scalp & help reduce buildup.
Store each bar in its Bar Bag & hang to air dry between washes.
Twist, tie & go with the Seamless Hair Elastics.
Fision® Hydratress
Entwirren Sie Knoten und kontrollieren Sie Frizz mit Fision® Hydratress für glatte, glänzende Strähnen.
Fision® EcoSil
Esta alternativa natural a la silicona mejora la manejabilidad del cabello y le aporta brillo.¹
Rizinusöl
Rizinusöl hilft, Feuchtigkeit zu speichern, um weichere, glattere Haare zu erhalten, die so gesund aussehen, wie sie sich anfühlen.
Rizinusölsäure
Ricinolsäure kann helfen, stärkeres, üppigeres Haar zu fördern, indem sie die Blutzirkulation in der Kopfhaut anregt, um gesündere Haarfollikel und Wachstum zu unterstützen.
Inhaltsstoffe
Castor Oil Nourishing Shampoo Bar Sodium Cocoyl Isethionate, Glycerin, Sodium Methyl Cocoyl Taurate, Hydrogenated Castor Oil, Water/Aqua/Eau, Fragrance (Parfum), Guar Hydroxypropyltrimonium Chloride, Ricinus Communis (Castor) Seed Oil, Amyl Cinnamal, Geraniol, Hydroxycitronellal, Linalool, Terpineol, Vanillin Iron Oxides (CI 77491, CI 77007)**Natural Color
We are Leaping Bunny certified! The Leaping Bunny Logo is the only internationally recognized symbol guaranteeing consumers that no new animal tests were used in the development of any product displaying it.
{
discount_percentage = $event.detail?.percentage || 0;
})"
x-init="$watch('selected', value => {
if (value.length != total_items) {
discount_percentage = 0;
}else{
discount_percentage = 0;
}
})"
x-data="{
renderPrice(price){
let total = price;
if(this.discount_percentage > 0){
total = price - (price * (this.discount_percentage / 100));
}
return Unick.formatMoney(total);
},
selected: [],
fixed_product: false,
discount_percentage: 0,
total_items: 2,
imgSrc(src, width) {
if (!src) return '';
if (/[?&]width=/.test(src)) return src.replace(/([?&]width=)\d+/, '$1' + width);
return src + (src.includes('?') ? '&' : '?') + 'width=' + width;
},
getSrcset(src) {
if (!src) return '';
return [72, 100, 144, 200].map(w => this.imgSrc(src, w) + ' ' + w + 'w').join(', ');
},
add(item) {
this.selected.push(item)
},
remove(id) {
this.selected = this.selected.filter(item => item.id !== id)
},
isInBundle(id) {
return this.selected.some(item => item.id === id)
},
priceBeforeDiscount(){
let total = 0;
this.selected.forEach(function (item) {
total += item.price;
})
return total;
},
totalPrice(){
let total = 0;
this.selected.forEach(function (item) {
total += item.price;
})
total = total - (total * (this.discount_percentage / 100));
let extraDiscount = 0;
return total - extraDiscount;
},
addToCart(){
let cartObj = [];
let bundleTitle = `Free Welcome Kit Castor Oil Combo`;
let bundleHandle = `free-welcome-kit-castor-oil-combo`;
let bundleCount = 2;
let bundleQty = 1;
let index = 0;
// Update button text to 'adding...'
this.$refs.addToCartButton.textContent = 'Adding...';
this.selected.forEach(function (item) {
cartObj.push({
quantity: 1,
id: item.variants[0].id,
properties: {
'_fbt_bundle': bundleTitle,
'_fbt_bundle_handle': bundleHandle,
'_fbt_bundle_count': bundleCount,
}
})
})
if(this.fixed_product && this.total_items == this.selected.length){
cartObj = [];
cartObj.push({
quantity: 1,
id: this.fixed_product,
})
}
fetch(routes.cart_add_url + '.js', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
items: cartObj
})
})
.then(response => {
// Update button text back to 'add to cart'
this.$refs.addToCartButton.textContent = 'Add to cart';
// Update cart with event dispatch
this.$dispatch('update-cart', { cart: response });
// Open cart after adding product
this.$dispatch('toggle-cart-drawer');
});
}
}">
Registrieren Sie sich, um eine Benachrichtigung zu erhalten, wenn dieser Artikel wieder auf Lager ist.
Bitte geben Sie eine gültige E-Mail Adresse ein.
Danke für die Anmeldung! Wir schicken Ihnen eine E-Mail, sobald das Produkt wieder verfügbar ist.
{
let mainAddToCart = document.querySelector('.product__info-wrapper .button-add-to-cart, .product__info-wrapper .product-form__submit');
if(mainAddToCart) {
let rect = mainAddToCart.getBoundingClientRect();
// Hide floating cart when main button is visible (with some buffer)
show = rect.top > window.innerHeight || rect.bottom < 0;
} else {
// If main button not found, show floating cart
show = true;
}
})"
x-init="$nextTick(() => {
// Delay initialization to ensure Alpine has rendered the main add-to-cart button
setTimeout(() => {
let mainAddToCart = document.querySelector('.product__info-wrapper .button-add-to-cart, .product__info-wrapper .product-form__submit');
if(mainAddToCart) {
let rect = mainAddToCart.getBoundingClientRect();
show = rect.top > window.innerHeight || rect.bottom < 0;
} else {
// Fallback: show sticky cart if main button not found after delay
show = true;
}
}, 500);
})"
class="add-to-cart-footer p-3 bg-white text-black fixed bottom-0 w-full z-20 shadow border-t">
4 Reasons Why Millions of Women are Switching to Castor Oil
1. Less hair breakage
Castor oil has moisturizing properties, which could help lubricate the hair shaft, increasing flexibility and decreasing the chance of breakage.
2. Strengthening
The idea is that the high content of ricinoleic acid may help improve blood circulation in the scalp, which might lead to nutrition for the hair follicles, stronger strands, and less breakage.
3. Healthy scalp
Castor Oil increases blood flow to the scalp, which promotes healthier hair.
4. Detoxifying
Castor Oil's antimicrobial and antifungal properties can reduce dandruff.
Frequently Asked Questions
The kit includes a Castor Oil Nourishing Shampoo Bar, Castor Oil Nourishing Conditioner Bar, a FREE Terracotta Scalp Exfoliator, a FREE Shampoo Bar Bag (Blush), a FREE Black Conditioner Bar Bag, and a FREE Black Seamless Hair Elastics 8pc Set.
Castor Oil is known to enhance the appearance of healthy, nourished hair. Combined with Fision® EcoSil (clinically proven to increase the appearance of shine after 5 uses) and Fision® Hydratress (for frizz control and detangling), this kit is formulated for dry and damaged hair.
Wet your hair, rub the shampoo bar between your hands to create a lather (or apply directly to scalp), massage, and rinse. Follow with the conditioner bar — wet it with warm water and work through lengths to ends, then rinse.
Yes! The formula is pH balanced and safe for color-treated hair, and is free of sulfates, silicones, and parabens.
Absolutely — it's Made in the USA from Globally Sourced Ingredients, Vegan, Cruelty Free, and Leaping Bunny Certified.
Yes — the formula is free of artificial fragrance, as well as parabens, phthalates, silicones, and sulfates.
The bars replace two bottles of liquid shampoo/conditioner, reducing single-use plastic waste. Each purchase also supports 4ocean — for every bar, 4ocean pulls the equivalent of a plastic bottle from the ocean.
When you sign up for a subscription, we automatically charge your card so you can set it and forget it. You can cancel at any time.
Yes. Protecting your privacy is one of our biggest priorities. We use a number of security measures and industry standard methods to keep your personal information safe. All orders and personal information are managed by a secure server. Details such as credit card number, name, and address are transmitted through Secure Socket Layer (SSL) technology.
Der Vergleichspreis entspricht dem Preis, zu dem das Produkt zuvor angeboten wurde, oder dem geschätzten Marktpreis vergleichbarer Artikel bei anderen Anbietern. Da Preise häufig schwanken, können wir nicht garantieren, dass der Vergleichspreis zu einem bestimmten Zeitpunkt dem aktuellen Marktpreis entspricht.
Wenn du dich für eine Auswahl entscheidest, wird die Seite komplett aktualisiert.