Le proteine idrolizzate del riso aumentano l'idratazione e supportano la barriera cutanea
Arricchito con niacinamide e peptidi di avena per lenire delicatamente la pelle
Deterge la pelle senza impoverirla o seccarla
Aiutaa levigare le zone ruvide eriduce la sensazione di "pelle che tira" dopo la detersione
Crea una schiuma morbida e delicata
Finish leggero e idratante : nessun residuo ceroso o pesante
Ideato per pelli secche, ma perfetto anche per pelli normali e miste
Profumo avvolgente di tè bianco e mandarino
La base detergente di origine vegetale elimina sudore, sebo e impurità mantenendo la pelle in perfetto equilibrio
1pc Rice Water Protein Restoring Face & Body Wash Bar
Sotto la doccia, massaggia delicatamente la barra tra le mani o applicala direttamente su viso/corpo. Lascia la schiuma ricca e soffice sulla pelle per almeno un minuto prima di risciacquare.
Consiglio: Per un'esperienza di detersione definitiva, abbina questa barra al Guanto Esfoliante Kitsch per aiutare a rinfrescare e rinnovare la tua pelle.
Proteine idrolizzate del riso
Mantiene la pelle idratata e stimola la produzione di acido ialuronico dall'effetto rimpolpante.
Niacinamide
Rinforza la pelle e affina delicatamente le zone ruvide per un incarnato liscio e luminoso.
Peptidi d'avena (avena sativa)
Lenisce l'incarnato supportando la barriera cutanea e trattenendo l'idratazione a lungo.
Ingredienti
Sodium Sunflowerate, Sodium Cocoate, Sodium Myristate, Acqua, Glicerina, Sodium Shea Butterate, Fragranza (Parfum), Sodium Cocoa Butterate, Lauryl Laurate, Sodium Methyl Cocoyl Taurate, Proteine del Riso Idrolizzate, Disodium Cocoyl Glutamate, Sodium Cocoyl Glutamate, Sodium Cocoyl Threoninate, Cloruro di Sodio, Tetrasodium Glutamate Diacetate, Sodium Hyaluronate, Niacinamide, Peptide di Avena (Avena Sativa), Olio di Buccia di Bergamotto (Citrus Aurantium Bergamia), Limonene, Acetato di Linalile, Linalolo, Olio/Estratto di Lavanda, Citral, Mentolo, Pinene, Anetolo, Vanillina, Carvone, Biossido di Titanio (CI 77891), Ossidi di Ferro (CI 77492, CI 77491, CI 77499)¹
¹Colore naturale
{
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 = `Barra detergente viso e corpo alle proteine dell'acqua di riso`;
let bundleHandle = `barra-detergente-viso-corpo-proteine-acqua-di-riso`;
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');
});
}
}">
Barra detergente viso e corpo alle proteine dell'acqua di riso
Registratevi per ricevere una notifica quando questo articolo sarà di nuovo disponibile.
Inserire un indirizzo e-mail valido.
Grazie per esserti iscritto/a! Ti invieremo un'e-mail quando il prodotto sarà disponibile.
{
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 motivi per amare la barra detergente viso e corpo alle proteine dell'acqua di riso
1. Rinforza la barriera cutanea
I peptidi di avena mantengono la pelle morbida, liscia e idratata dopo la detersione.
2. Idrata mentre deterge
Le proteine del riso aumentano l'idratazione, rendendo questo prodotto ideale per la pelle secca, disidratata o che "tira".
3. Lenisce e riequilibra la pelle
La niacinamide aiuta a calmare i rossori visibili, leviga la pelle e favorisce un incarnato dall'aspetto più sano.
4. Detersione delicata ed ecologica
La formula a base vegetale, in un pratico formato solido senza plastica, elimina le impurità della giornata senza privare la pelle della sua naturale idratazione.
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
Sì, la formula è abbastanza delicata per il viso e sufficientemente efficace per la detersione quotidiana del corpo.
No, questa barra è progettata esclusivamente per mantenere la pelle liscia e morbida.
Sì, le proteine idrolizzate del riso e la niacinamide sono ingredienti lenitivi che supportano la barriera cutanea, aiutando a minimizzare la secchezza e a calmare la pelle.
No, questa barra è formulata per aiutare a trattenere l'idratazione e rinforzare la barriera cutanea, lasciando la pelle morbida, liscia e idratata dopo il risciacquo.
No, è priva di parabeni, ftalati, siliconi, solfati e fragranze artificiali.
È ideale per pelli secche e disidratate, ma abbastanza leggera per carnagioni da normali a miste che necessitano di idratazione senza texture pesanti o ingredienti comedogenici. Come per qualsiasi sapone solido, si consiglia a chi ha una pelle a tendenza acneica o altamente sensibile di effettuare un patch test prima dell'uso completo.
Il prezzo di confronto rappresenta il prezzo al quale il prodotto era precedentemente offerto o il prezzo di mercato stimato per articoli comparabili venduti altrove. Poiché i prezzi possono variare frequentemente, non possiamo garantire che il prezzo di confronto rifletta il prezzo di mercato corrente in un determinato momento.
Scegliendo una selezione si ottiene un aggiornamento completo della pagina.