Barre nettoyante 2-en-1 polyvalente qui nourrit les cheveux, le cuir chevelu et la peau
Des cheveux et une peau sains et éclatants grâce à notre traitement spécial à 5 ingrédients.
Cliniquement testé et sûr pour les cheveux, la peau et le cuir chevelu sensibles.
Sans produits chimiques agressifs, parabènes, phtalates, silicones, sulfates, colorants.
Sans parfum
Réduit le plastique à usage unique : économise deux bouteilles de shampooing/après-shampooing liquide
Équilibré en pH et sûr pour les cheveux colorés
Fabriqué aux États-Unis, Végan, Sans cruauté, Certifié Leaping Bunny
CERTIFIÉ 4OCEAN : Pour chaque barre de shampooing ou d'après-shampooing , 4ocean retire l'équivalent d'une bouteille de shampooing en plastique des océans, rivières et littoraux du monde
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.
Ingrédients
Sodium Cocoyl Isethionate, Sodium Methyl Cocoyl Taurate, Glycérine végétale, Huile de ricin hydrogénée, Chlorure de Guar Hydroxypropyltrimonium.
Sans parabènes, phtalates, silicones, sulfates et parfums artificiels.
Nous sommes certifiés Leaping Bunny ! Le logo Leaping Bunny est le seul symbole reconnu internationalement garantissant aux consommateurs qu'aucun nouveau test sur les animaux n'a été effectué lors du développement de tout produit portant ce logo.
{
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: 3,
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 = `Shampooing et gel douche ultra-sensible`;
let bundleHandle = `ultra-sensitive-shampoo-body-wash-bar`;
let bundleCount = 3;
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:
Shampooing et gel douche ultra-sensible
$16.00$16.00
Shampooing solide Détox
$16.00$16.00
Conditionneur solide et barre de rasage Ultra Sensitive
$14.00$14.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: 3,
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 = `Shampooing et gel douche ultra-sensible`;
let bundleHandle = `ultra-sensitive-shampoo-body-wash-bar`;
let bundleCount = 3;
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
Shampooing et gel douche ultra-sensible
$16.00$16.00
+
Shampooing solide Détox
$16.00$16.00
+
Conditionneur solide et barre de rasage Ultra Sensitive
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">
Pourquoi des millions de femmes adoptent les pains de savon pour peaux ultra sensibles ?
1. Gain de temps
Lorsque vous êtes en déplacement ou en voyage, emporter un flacon de shampoing et d'après-shampoing 2 en 1 vous permet non seulement de gagner du temps sous la douche, mais aussi de gagner de la place dans votre trousse de maquillage.
2. Durabilité
Réduction du plastique à usage unique : économisez quatre flacons de shampoing ou d'après-shampoing liquide.
3. Simplifiez votre routine
Pourquoi vous contenter d'une salle de bain encombrée quand vous pouvez avoir des soins apaisants et multi-usages ? Chaque pain de savon est formulé avec une formule 2 en 1 pour simplifier votre routine et réduire l'utilisation de plastique à usage unique.
4. Seulement 5 ingrédients
Formulé avec seulement 5 ingrédients. Sans parabènes, phtalates, silicones, sulfates, colorants ni parfums artificiels.
4.9
Rated 4.9 out of 5 stars
Based on 305 reviews
Reviews Summary
Generated by AI from 100 most recent customer reviews
Last updated 1 year ago
Customers say this fragrance-free bar creates rich lather and cleans effectively. Many reviews mention its dual use for hair and body. While some note initial adjustment periods or lathering challenges, most highlight how it leaves skin feeling soft and hair manageable. Common feedback includes its travel-friendly design and convenience.
I started having problems with dandruff and itchy scalp. I noticed it was worse after shampooing. I switched to an anti-dandruff shampoo but started getting cysts on my scalp. And, the itching was keeping me up at night! My doctor suggested trying baby shampoo. That helped some but my scalp was still itchy. My sister talked me into trying Kitsch and I am SO GLAD she did. After going through my first bar I had no itching, no flaking and no new cysts. Since I was out and my new order hadn't arrived yet I used my daughter's shampoo and immediately had itchy scalp. I do not run out of Kitsch anymore. This stuff has saved my scalp! Pro tip: buy the mesh bags. The bars last even longer, break less and it keeps the little pieces together rather than down the shower drain.
M
Mandy
Verified Buyer
I recommend this product
Hair Concern Sensitive Scalp, Frizzy
Product Standouts Good For Dry Hair, Safe for Sensitive Skin, Hair, & Scalp, Dual Purpose, Gentle, Lathers Well
Rated 5 out of 5 stars
1 year ago
Please never stop making this!
I have sensitive skin (lots of allergies) and this shampoo bar (and the conditioner) have been great - my hair and scalp get clean, and my hair is soft and shiny without my curls and waves being weighed down. I was traveling this week and managed to forget the special soaps I use for my body and face. Instead of trying my luck with whatever I could find, I used my shampoo bar and even the skin on my face felt healthy and clean, not stripped or dried out, it was a life saver! Please make this forever, I have so few options that work with my contact allergies, and this works so well!
AS
Allison S.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Helpful Shampoo Body Bar
First of all, I think it is almost creepy how this bar has absolutely no fragrance. It truly has no scent!! If you are sensitive to smells, this bar will give you no worries.
I have really embraced this bar as my emergency kit. It is a huge help when I am not feeling well. I use the same bar and I get everything, head to toe, clean. I have got a set of the sensitive bars to take with me to the hospital for an upcoming surgery. I know the bars will not be an issue with the doctor and I trust Kitsch to keep me clean.
C
Christina
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Hypermobile ehlers-danlos skin
Me and my boys have hypermobile ehlers-danlos. We have super sensitive skin. We usually use aveeno fragrance free soap or other sensitive skin soaps and shampoos. But this ultra sensitive bar for skin and shampoo has cleared up our skin and scalp. No more itchy skin or bumps. We use the conditioner too. Works amazing! It's been a blessing to us!
T
T.N
Verified Buyer
I recommend this product
Hair Concern Oily, Itchy Scalp
Product Standouts Gentle, Safe for Sensitive Skin, Hair, & Scalp
Rated 5 out of 5 stars
1 year ago
The only shampoo that doesn't make my scalp itch/smell.
I have thick, black hair with dry ends and oily scalp. I've used dozens of different shampoos that range from organic, non sulphate, gentle for scalp etc but they all seem to make my head slightly itchy, or my scalp starts to smell greasy by the end of the day. When I started using this shampoo bar, it initially caused my head to become oily but then it stabilized after a week. Now it is the best shampoo I have used and about to make my 3rd purchase. My only complaint is that it does not lather AT ALL in Spain (where we travel to frequently) and perhaps any hard water country. Separately, the conditioner bars all melts into a sloppy slime pretty quickly so it's not great for travel. Other than that, I am a happy customer.
I have always searched for a great soap for my allergy prone and sensitive skin. I’m 66 years old or young! I have finally found it in the Kitsch products, especially the ultra sensitive soap. It’s clean feeling, and soothing, does not dry my skin nor leave a residue, and leaves my hair perfect! I’ve gifted special friends who were totally excited to also find this soap that leaves their hair soft and skin feeling fresh and smooth. This is a total game changer for me! Thank you so much for providing a comfort to me and such a pleasure. Carol
MV
Maria V.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 years ago
solid shampoo and body wash
I like that is it multi purpose and is not drying on my skin and hair
ES
Elaine S.
Verified Buyer
I recommend this product
Hair Concern Sensitive Scalp
Product Standouts Safe for Sensitive Skin, Hair, & Scalp
Rated 5 out of 5 stars
2 years ago
Amazing shampoo and conditioner bars.
Having a very sensitive scalp I’ve struggled to find products that don’t give me a reaction. I’ve now found the perfect ones. I’ve been using them now for a few months and they’re absolutely great. The shampoo lather’s so well and the conditioner is so creamy and silky. I would recommend them 100%. I’m a very happy customer.
DG
Dianne G.
Verified Buyer
I recommend this product
Hair Concern Sensitive Scalp, Thinning, Dry
Product Standouts Good For Dry Hair, Lathers Well, Moisturizes, Gentle, Safe for Sensitive Skin, Hair, & Scalp
Rated 5 out of 5 stars
2 years ago
Fragrance-free, safe for sensitivities, and wonderfully effective.
I have a long list of sensitivities and allergies to ingredients and fragrances--even essential oils-- due to MCAS, and it is often very difficult to find hair care products that are safe and non-irritating. I have always had thin, fine hair, but now it is thinning badly due to medical issues and the treatment for them. The shampoo bar I had been using for years was no longer working for me, and dry scalp paved the way for a bad outbreak of seborrheic dermatitis. Thankfully, I discovered Kitsch and the fragrance-free, Ultra Sensitive Shampoo & Body Wash Bar. It truly is fragrance-free. It lathers beautifully, and moisturizes my scalp without leaving it greasy. It also moisturizes hair strands without weighing down my thin, baby fine hair. I love that it contains castor oil to nourish and detoxify the scalp and help heal various conditions. While I have only used it a few times, I can already tell that it is making a difference.
Product Standouts Safe for Sensitive Skin, Hair, & Scalp, Gentle
Rated 5 out of 5 stars
2 years ago
Ultra sensitive
I have had scalp psoriasis for over 30 years and most shampoos either inflame my scalp or make my hair lank. This is the best shampoo I’ve tried to aid the condition of my scalp but leaves my hair clean - I’ve gone from washing every 3 days to every 6 - If you have a scalp condition , this is better than the clarifying bar, I’ve tried all the Kitsch shampoo s and whilst the rice protein and castor oil made my hair look great they did irritate my scalp so this is the one for me - also, the conditioner is fine on my scalp and I’ve also used when dry as a hair tonic.
Loading...
Loading...
Frequently Asked Questions
En fonction de votre type de cheveux et de la fréquence à laquelle vous vous lavez les cheveux, certaines personnes verront des résultats immédiatement et d'autres commenceront à voir des résultats 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 utilisant nos barres de shampooing et de conditionneur
Si vous vous demandez quelle barre est faite pour vous, dites à notre équipe d'assistance quel est votre type de cheveux et nous vous guiderons dans la bonne direction.
Les cheveux sont différents d'une personne à l'autre, alors attendez-vous à 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 pour 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 standard 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 que vous avez choisie lors de la validation de votre commande. La plupart des commandes sont expédiées le jour même ! Veuillez prévoir 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 recommandons de souscrire un abonnement, afin de bénéficier d'économies et de recevoir vos produits directement à votre porte, avec des frais de port gratuits. Ainsi, vous ne manquerez jamais de produits !
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.