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 Cherry Cloud Claw Clip keeps hair twisted up while you finish getting ready.
Effortless Lather: A few pumps work into a rich, full lather for an easy, spa-like wash day.
Clean Formula: Free of parabens, phthalates, silicones & sulfates. PH balanced and safe for color-treated hair. Made in the USA from Globally Sourced Ingredients, Vegan, Cruelty Free, Leaping Bunny Certified.
Keep Your Shower Clean: The Hair Catcher keeps drains clear so you never have to call a plumber, and the Quick-Dry Bath Mat keeps your bathroom floor dry between showers.
1x Castor Oil Nourishing Shampoo
1x Castor Oil Nourishing Conditioner
1x FREE Quick-Dry Bath Mat
1x FREE Hair Catcher
1x FREE Cherry Cloud Claw Clip - Medium
Wet hair thoroughly with warm water.
Apply a quarter-sized amount of shampoo to palms, work into a rich lather & massage into scalp.
Rinse & repeat as desired.
Post-shampoo, apply conditioner from mid-length to ends, focusing on strands.
Rinse & detangle as usual.
Lay the Bath Mat flat on a clean, dry floor & hang to air dry between uses.
Press the Hair Catcher firmly over a clean, dry, flat drain before showering.
Twist, clip & go with the Cherry Cloud Claw Clip.
Olio di ricino
L'olio di ricino aiuta a trattenere l'idratazione per rivelare capelli più morbidi, lisci e dall'aspetto sano.
Fision® EcoSil
Cette alternative naturelle au silicone facilite le coiffage et apporte de la brillance aux cheveux.¹
Fision® Hydratress
Démêlez les nœuds et contrôlez les frisottis avec Fision® Hydratress pour des cheveux lisses et brillants.
Acide ricinoléique
L'acide ricinoléique peut aider à promouvoir des cheveux plus forts et plus voluptueux en stimulant la circulation sanguine de votre cuir chevelu pour soutenir des follicules capillaires et une croissance plus sains.
Ingrédients
Welcome to KITSCH!
Nourish dry, damaged hair with our Castor Oil Combo
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
Why You'll Love This
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 Cherry Cloud Claw Clip keeps hair twisted up while you finish getting ready.
Effortless Lather: A few pumps work into a rich, full lather for an easy, spa-like wash day.
Clean Formula: Free of parabens, phthalates, silicones & sulfates. PH balanced and safe for color-treated hair. Made in the USA from Globally Sourced Ingredients, Vegan, Cruelty Free, Leaping Bunny Certified.
Keep Your Shower Clean: The Hair Catcher keeps drains clear so you never have to call a plumber, and the Quick-Dry Bath Mat keeps your bathroom floor dry between showers.
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;
let discount = 0;
this.selected.forEach(function (item) {
item.tags.forEach(function (tag) {
if(tag.includes('discount:') || tag.includes('Discount:') || tag.includes('discount: ') || tag.includes('Discount: ')){
discount = tag.split(':')[1];
}
})
})
if(discount > 0){
extraDiscount = total * (discount / 100);
}
return total - extraDiscount;
},
addToCart(){
let cartObj = [];
let bundleTitle = `Summer Welcome Kit: Castor Oil`;
let bundleHandle = `summer-welcome-kit-castor-oil`;
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');
});
}
}">
Inscrivez-vous pour recevoir une notification lorsque cet article sera à nouveau en stock.
Inserire un indirizzo e-mail valido.
Merci de vous être inscrit ! Nous vous enverrons un e-mail lorsque le produit sera disponible.
{
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, Castor Oil Nourishing Conditioner, a FREE Quick-Dry Bath Mat, FREE Hair Catcher, and a FREE Cherry Cloud Claw Clip - Medium.
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, Vegan, Cruelty Free, and Leaping Bunny Certified.
Wet your hair, apply a quarter-sized amount of shampoo to your palms, work into a lather, massage into your scalp, and rinse. Follow with the conditioner — apply from mid-length to ends, leave on for 1–2 minutes, then rinse
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.
Castor Oil is known to enhance the appearance of healthy, nourished hair. Combined with Fision® EcoSil (clinically proven to increase shine after 5 uses) and Fision® Hydratress, this formula is formulated for dry and damaged hair.
Yes — the formula is free of artificial fragrance, as well as parabens, phthalates, silicones, and sulfates.
This formula is made in the USA from globally sourced ingredients and is Leaping Bunny Certified cruelty-free, meaning no animal testing was used in its development. It's also free of parabens, phthalates, silicones & sulfates, keeping your wash-day routine cleaner from formula to finish.
Le prix de référence correspond au prix auquel le produit était précédemment proposé ou au prix de marché estimé pour des articles comparables vendus ailleurs. Les prix étant susceptibles de fluctuer, nous ne pouvons garantir que le prix de référence corresponde au prix du marché en vigueur à un moment donné.
Le choix d'une sélection entraîne l'actualisation de la page entière.