Formulé avec de l'huile de ricin pour hydrate, équilibre et calme les irritations du cuir chevelu
Nourrit le cuir chevelu pour aider réduit la casse et les dommages des cheveux
Libre de parabènes, phtalates, silicones, sulfates et parfums artificiels
Réduit les plastiques à usage unique : économise deux bouteilles de shampooing/conditionneur liquide
PH équilibré et sans danger pour les cheveux colorés
Fabriqué aux États-Unis avec des ingrédients de qualité
CERTIFIÉ 4OCEAN : Pour chaque barre de shampoing ou d'après-shampoing,4ocean tire le l'équivalent d'une bouteille de shampoing en plastique des océans, des rivières et des côtes du monde entier
Comment obtenir des résultats dignes d'un salon de coiffure :
Mouiller les cheveux ; frotter la barre entre les mains pour obtenir une mousse abondante ou "peindre" directement sur le cuir chevelu.
Masser du bout des doigts, puis rincer et répéter à volonté.
Conseil de pro : A associer à notre sac Beauty Bar.
Huile de ricin
Nourrissez vos cheveux des racines aux pointes avec l'aide de l'huile de ricin, une huile qui renforce les cheveux et équilibre le cuir chevelu pour des cheveux propres et sains.
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
Sodium Cocoyl Isethionate, Sodium Methyl Cocoyl Taurate, Glycérine végétale, Huile de ricin hydrogénée, Chlorure de Guar Hydroxypropyltrimonium, Parfum naturel*, Oxyde de fer**, Outremer**.
*Parfum naturel dérivé de plantes. **Couleur naturelle.
Sans parabènes, phtalates, silicones, sulfates ni parfums artificiels.
Parfum : Ambre sucré et karité
Nous sommes certifiés Leaping Bunny ! Le logo Leaping Bunny est le seul symbole internationalement reconnu garantissant aux consommateurs qu'aucun nouveau test sur les animaux n'a été utilisé dans le développement des produits qui l'arborent.
{
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: 4,
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 = `Barre de shampooing nourrissante à l'huile de ricin`;
let bundleHandle = `barre-de-shampoing-nourrissante`;
let bundleCount = 4;
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');
});
}
}">
Fréquemment achetés ensemble
+
Total price:
Barre de shampooing nourrissante à l'huile de ricin
$31.00
$31.00
Shampooing solide Détox
$31.00
$31.00
Barre de conditionnement nourrissant à l'huile de ricin
$31.00
$31.00
Glass Hair Shine Serum
$29.00
$29.00
{
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: 4,
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 = `Barre de shampooing nourrissante à l'huile de ricin`;
let bundleHandle = `barre-de-shampoing-nourrissante`;
let bundleCount = 4;
let bundleQty = 1;
let index = 0;
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 => {
this.$refs.addToCartButton.textContent = 'Ajouter la sélection au panier';
this.$dispatch('update-cart', { cart: response });
this.$dispatch('toggle-cart-drawer');
});
}
}">
Fréquemment achetés ensemble
Barre de shampooing nourrissante à l'huile de ricin
$31.00
$31.00
+
Shampooing solide Détox
$31.00
$31.00
+
Barre de conditionnement nourrissant à l'huile de ricin
Barre de shampooing nourrissante à l'huile de ricin
Inscrivez-vous pour recevoir une notification lorsque cet article sera à nouveau en stock.
Please enter a valid email address.
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 raisons pour lesquelles des millions de femmes adoptent l'huile de ricin
1. moins de casse de cheveux
L'huile de ricin a des propriétés hydratantes qui peuvent aider à lubrifier la tige du cheveu, ce qui augmente sa flexibilité et diminue le risque de casse.
2. le renforcement
L'idée est que la teneur élevée en acide ricinoléique peut contribuer à améliorer la circulation sanguine dans le cuir chevelu, ce qui pourrait favoriser la nutrition des follicules pileux, renforcer les mèches et réduire les cassures.
3. un cuir chevelu sain
L'huile de ricin augmente le flux sanguin vers le cuir chevelu, ce qui favorise la santé des cheveux.
4. désintoxication
Les propriétés antimicrobiennes et antifongiques de l'huile de ricin peuvent réduire les pellicules.
4.9
Rated 4.9 out of 5 stars
Based on 2,616 reviews
Reviews Summary
Generated by AI from 100 most recent customer reviews
Last updated 1 year ago
Customers say this shampoo bar has a mild, pleasant scent and creates good lather. Some note initial dryness and lathering challenges. Many reviews mention softer, shinier hair and improved manageability. Common feedback includes the bar breaking into pieces when small. Most appreciate its effectiveness for cleansing and ease of use.
Product Standouts Great Ingredients, Hydrates, Balances Scalp, Lathers Well, Moisturizes
Rated 5 out of 5 stars
1 year ago
The reviews say it all!!
I'm in love! I was skeptical switching to bar shampoo just because it was outside my comfort zone but I'm amazed. I've always been conscious of staying away from harmful chemicals but this takes the cake.
I use the "painting" method on my scalp and the lather is so rich. It doesn't feel dry, but rather nourishing and cleansing. I actually think I "painted" too much because it was SO MUCH lather. A little goes a long way.
I paired it with the Shea Butter Conditioner bar and I'm absolutely sold. This was after my first use and I can't wait see the results after a few weeks transitioning from traditional product to clean Kitsch bars. I'm about to order a couple more for a nice rotation. Thank you Kitsch!
REFERENCE: Long natural blonde hair, thick and curly/wavy texture, frizz control issues and mild dandruff. Dryness/greasy spells depending on what products I'm using and environment I'm in as I live in Florida (humid) and Las Vegas (dry) throughout the year.
I've been using the castor oil shampoo & the rosemary and biotin conditioners for a couple of weeks now.
I was pleasantly surprised by the luxurious lather ESPECIALLY from a bar!
I've noticed baby hairs coming in already too!
Also my hair looks and feels great so far!
I will DEFINITELY purchase again!
KW
Kerri W.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Life changing cure!!!
The best birthday gift I have ever received. I am dancing in my heart. 6 decades of lifeless, drabby, blahhhh thin hair. This product has changed my life. I'm telling everyone about this miracle bar shampoo. I've noticed my body skin is softer too. Ive posted a picture of your soap box with this updated profile picture on my Facebook page. Expect tons of new customers and rightfully so. Dancing in my heart people dancing. No more hair and inner depression. Who would of thought that a bar of shampoo soap would change my life for the better and greater good. Thank you for inventing this hair miracle cure. You have a lifelong customer and promoter. God bless you FOREVER AND EVER ❤️❤️❤️ Here's the before and after pictures as proof positive. Enjoy the new you people and start dancing in your hearts ❤️
TS
Tonya S.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 years ago
Grateful
I love this product! I was loosing my hair, it felt brittle and breaking bad! Minus Hormones at 51 was taking an awful toll on my hair! Not now
My hair is growing back and feels great! I stopped using any other products on my hair because after using kitsch I don’t need them.
My picture is the right side of my hair and is from Jan-March and it’s so noticeable it this product works!
LT
Lynn T.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
4 years ago
Awesome shampoo & conditioner
Love this shampoo and conditioner on my 3B curly graying hair. Takes a little to get used to using bars but it’s worth it!
CC
Cecilia C.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 years ago
Cancer survivor
After enduring chemotherapy, I find myself extremely sensitive to chemical or perfumes to the point of headaches and nauseous. It’s been hard to find a shampoo and conditioner that doesn’t make me feel ill. Your shampoo and conditioner not only have a soft aroma but they do a great job to clean and condition. Thank you for creating a product that I can use!
NR
Nancy R.
Verified Buyer
I recommend this product
Hair Concern Frizzy, Thinning, Sensitive Scalp
Product Standouts Great Ingredients, Moisturizes, Hydrates
Rated 5 out of 5 stars
2 years ago
Love it!
I have to admit that I was very skeptical about trying this, especially because I have very thick coarse hair. I don't think I'll go back to regular shampoo or conditioner at this point. The only downside is that it's way too expensive for how much you get. If I wash my hair more than once a week I don't think I would be able to afford to use it all the time. Lucky for me I only wash my hair once a week!
DM
Danni M.
Verified Buyer
I recommend this product
Hair Concern Dry, Brassy, Frizzy
Product Standouts Great Ingredients, Hydrates, Moisturizes
Rated 5 out of 5 stars
1 year ago
Best Hair product I have ever used
My hair has never been better! It’s soft , silky , and shiny! I can’t believe the number of days that I can go without having to shampoo For the first time in my life my hair isn’t frizzy after a shampoo … This has honesty been the best beauty product that I have ever used!
SM
Sofia M S.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
I love Castor Oil shampoo bar!!
From the first wash, I noticed that my scalp felt cleaner,my hair easier to brush. I had spots of hair loss,but within weeks, my hair grow back till I had no more spots on my head. Marvellous,amazing product!!
AR
April R.
Verified Buyer
I recommend this product
Hair Concern Itchy Scalp, Dry, Frizzy
Product Standouts Hydrates, Great Ingredients, Balances Scalp, Lathers Well, Moisturizes
Rated 5 out of 5 stars
2 years ago
My favorite shampoo!!
The castor oil nourishing shampoo bar has transformed not just my hair, but my whole family's! Our hair feels incredibly moisturized after each use, and the real game-changer is how effortlessly it detangles my children's curls. No more struggling with knots – my fingers and hair tools glide through effortlessly. This product is an absolute game-changer, and we're all in love with it! I also love the simplicity of the ingredients.
Loading...
Loading...
Frequently Asked Questions
En fonction de votre type de cheveux et de la fréquence à laquelle vous les lavez, certaines personnes voient les résultats immédiatement, tandis que d'autres commencent à les voir au bout de quelques semaines.
Oui, mais ne nous croyez pas sur parole ! Consultez les milliers d'avis 5 étoiles de personnes de tous âges qui utilisent nos barres de shampoing et d'après-shampoing.
Si vous vous demandez quelle barre vous convient le mieux, indiquez à notre équipe d'assistance votre type de cheveux et nous vous guiderons dans la bonne direction.
Les cheveux étant différents d'une personne à l'autre, il faut s'attendre à quelques essais et erreurs jusqu'à ce que vous trouviez ce qui vous convient le mieux. Commencez par une quantité suffisante pour nettoyer vos racines et votre cuir chevelu jusqu'à la pointe de vos cheveux. Si vous n'obtenez pas de résultats, nous vous recommandons d'en appliquer davantage pendant le lavage.
Lorsque vous souscrivez à un abonnement, nous débitons automatiquement votre carte afin que vous puissiez le régler et l'oublier. Vous pouvez annuler votre abonnement à tout moment.
Oui. La protection de votre vie privée est l'une de nos principales priorités. Nous utilisons un certain nombre de mesures de sécurité et de méthodes conformes aux normes de l'industrie pour assurer la sécurité de vos informations personnelles. Toutes les commandes et les informations personnelles sont gérées par un serveur sécurisé. Les données telles que le numéro de carte de crédit, le nom et l'adresse sont transmises par la technologie Secure Socket Layer (SSL).
Le délai de livraison dépend de la méthode d'expédition choisie lors de la commande. La plupart des commandes sont expédiées le jour même ! Veuillez compter jusqu'à deux jours ouvrables pour le traitement de votre commande. Les commandes sont traitées du lundi au vendredi, à l'exception des jours fériés. Une fois votre commande expédiée, un courriel de confirmation contenant un numéro de suivi du transporteur vous sera envoyé. En cas de perte du colis, veuillez contacter le service d'assistance de Kitsch.
Nous vous conseillons de souscrire un abonnement, afin de bénéficier d'économies et de recevoir vos produits directement chez vous, avec des frais de port gratuits. Ainsi, vous ne serez jamais à court !
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.