La protéine de riz hydrolysée booste l'hydratation et renforce la barrière cutanée
Enrichi en niacinamide et peptides d'avoine pour aider à apaiser la peau
Nettoie la peau en douceur sans altérer son hydratation naturelle
Aideà lisser les rugosités etréduit les sensations de tiraillement après le nettoyage
Crée une mousse douce et légère
Fini léger et hydratant : aucun résidu cireux ou lourd
Conçu pour les peaux sèches, mais tout aussi idéal pour les peaux normales et mixtes
Parfum frais de thé blanc et de mandarine
La base nettoyante d'origine végétale élimine la transpiration, le sébum et les impuretés tout en préservant l'équilibre naturel de la peau
1pc Rice Water Protein Restoring Face & Body Wash Bar
Sous la douche, massez doucement la barre entre vos mains ou appliquez-la directement sur votre visage/corps. Laissez la mousse riche et onctueuse sur la peau pendant au moins une minute avant de rincer.
Astuce pro : Pour une expérience de nettoyage ultime, associez cette barre au Gant Exfoliant Kitsch pour aider à rafraîchir et renouveler votre peau.
Protéine de riz hydrolysée
Maintient l'hydratation de la peau et stimule la production d'acide hyaluronique repulpant.
Niacinamide
Renforce la peau tout en affinant en douceur les rugosités pour un fini lisse et éclatant.
Peptides d'avoine (avena sativa)
Apaise la peau en renforçant la barrière cutanée et en retenant l'hydratation durablement.
Ingrédients
Sodium Sunflowerate, Sodium Cocoate, Sodium Myristate, Eau, Glycérine, Sodium Shea Butterate, Parfum, Sodium Cocoa Butterate, Lauryl Laurate, Sodium Methyl Cocoyl Taurate, Protéine de Riz Hydrolysée, Disodium Cocoyl Glutamate, Sodium Cocoyl Glutamate, Sodium Cocoyl Threoninate, Chlorure de Sodium, Tetrasodium Glutamate Diacetate, Sodium Hyaluronate, Niacinamide, Peptide d’Avoine (Avena Sativa), Huile de Zeste de Bergamote (Citrus Aurantium Bergamia), Limonene, Acétate de Linalyle, Linalool, Huile/Extrait de Lavande, Citral, Menthol, Pinène, Anéthol, Vanilline, Carvone, Dioxyde de Titane (CI 77891), Oxydes de Fer (CI 77492, CI 77491, CI 77499)¹
¹Colorant naturel
{
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 = `Barre nettoyante visage & corps aux protéines d'eau de riz`;
let bundleHandle = `barre-nettoyante-visage-corps-proteines-eau-de-riz`;
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');
});
}
}">
Barre nettoyante visage & corps aux protéines d'eau de riz
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 d'adorer la barre nettoyante visage & corps aux protéines d'eau de riz
1. Renforce la barrière cutanée
Les peptides d'avoine gardent la peau douce, lisse et confortable après le nettoyage.
2. Hydrate pendant le lavage
Les protéines de riz boostent l'hydratation, ce qui rend ce soin idéal pour les peaux sèches, déshydratées ou tiraillées.
3. Apaise et équilibre la peau
La niacinamide aide à atténuer les rougeurs visibles, à lisser la peau et à favoriser un teint d'apparence plus saine.
4. Nettoyage doux et écoresponsable
Sa formule à base de plantes, sous forme de pain sans plastique, élimine les impuretés de la journée sans priver la peau de son hydratation essentielle.
For many years I e struggled with dry skin and rosacea in my face and this soap has truly helped! Being a diabetic we go through many struggles not only physically but internally. So what happens on the inside messes with the outside. It’s terrible and thanks to these products my skin is different my hair is 100 times better kinda like in my 20s! Thanks kitsch!
CG
Catherine G.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
9 months ago
Love this wash bar
This bar leaves my skin so soft that I don't have to moisturize after my shower.
VH
Vivien H.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
4 months ago
Wonderfull
Wow ! This bar really does leave the skin moisturized and sooooo smooth. I've tried most of the body bars and they're all good but this one beats 'em all.
Love that rich, creamy lather , and the smell is dreamy. Thank you Kitsch I'll be ordering another bar in my next order for sure.
RT
Racheal T.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 months ago
Leaves my skin so soft
I have several of the kit-sch bar soaps and this by far is my favorite. It leaves my skin so soft and the fragrance is the best, not too overwhelming and fresh.
DH
Diane H.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 months ago
Rice water Protein wash bar
Took on vacation, covered body and face needs in one delightfully scented bar.
SB
Sabrina B.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
9 months ago
Smells fantastic, cleans well
I'm really enjoying using this bar soap to wash my face in the shower. I love the scent, and it leaves my skin soft and clean without being irritating or overly drying.
KK
Karen K.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 months ago
Moisturizing and Fresh
It's funny I think they hear me sometimes. I have been saying since I started using the shampoos and conditioners I wish they had the same in a moisturizing body bar. And then it was. My routine feels compete now.
TF
Trisha F.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
9 months ago
Softest skin.
Love the face bar. Toned my face and cleared it up looking smooth. The smell is soft and nice. Bar last a long time.
BA
Betty A.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 months ago
Sam
I have been using the wash bar for about a month, and I really like how it makes my skin feel, clean and soft. The lather is amazing, creamy and foaming. I have always used face washes that you pump out of a bottle, so it was a bit hard to get use to having a bar of soap lying around. I would really like a pump or bottle of some sort, it seems less messy in the shower or on my sink. Thank-you!
KP
Kelly P.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 months ago
Silky and smooth!
I started using this a week ago, and my skin feels silky and smooth. This produces a better result than other expensive products I have used. This is on my favorite list!!
Loading...
Loading...
Frequently Asked Questions
Oui, la formule est suffisamment douce pour le visage et très efficace pour le nettoyage quotidien du corps.
Non, cette barre est conçue pour garder la peau parfaitement lisse.
Oui, la protéine de riz hydrolysée et la niacinamide sont des ingrédients apaisants qui soutiennent la barrière cutanée, aidant à minimiser la sécheresse et à calmer la peau.
Non, cette barre est formulée pour aider à maintenir l'hydratation et renforcer la barrière cutanée, pour que la peau soit douce, lisse et hydratée après le rinçage.
Non, elle est exempte de parabènes, phtalates, silicones, sulfates et parfums artificiels.
Elle est idéale pour les peaux sèches et déshydratées, tout en étant assez légère pour les peaux normales à mixtes qui ont besoin d'hydratation sans effet lourd ni ingrédients obstruant les pores. Comme pour tout savon solide, il est conseillé aux personnes ayant une peau à tendance acnéique ou très sensible de faire un test cutané avant une utilisation complète.
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.