La proteína de arroz hidrolizada potencia la hidratación y refuerza la barrera cutánea
Enriquecido con niacinamida y péptidos de avena para ayudar a calmar la piel
Limpia la piel profundamente sin resecarla ni robarle su humedad natural
Ayudaa suavizar las zonas ásperas yreduce la sensación de tirantez después de cada lavado
Crea una espuma suave y delicada
Acabado ligero e hidratante : sin residuos cerosos ni pesados
Diseñado para pieles secas, pero igualmente perfecto para pieles normales y mixtas
Delicioso aroma a té blanco y mandarina
Su base limpiadora de origen vegetal elimina el sudor, la grasa y las impurezas mientras mantiene el equilibrio natural de la piel
1pc Rice Water Protein Restoring Face & Body Wash Bar
En la ducha, masajea suavemente la barra entre tus manos o aplícala directamente sobre tu rostro/cuerpo. Permite que la espuma rica y abundante actúe sobre la piel durante al menos un minuto antes de enjuagar.
Consejo profesional: para la experiencia de limpieza definitiva, combina esta barra con el Guante exfoliante de Kitsch para refrescar y renovar tu piel.
Proteína de arroz hidrolizada
Mantiene la piel hidratada y estimula la producción de ácido hialurónico para un efecto rellenador.
Niacinamida
Fortalece la piel mientras afina suavemente las asperezas para lograr un acabado liso y luminoso.
Péptidos de avena (avena sativa)
Calma el cutis fortaleciendo la barrera cutánea y reteniendo la hidratación de forma duradera.
Ingredientes
Sodium Sunflowerate, Sodium Cocoate, Sodium Myristate, Agua, Glicerina, Sodium Shea Butterate, Fragancia (Parfum), Sodium Cocoa Butterate, Lauryl Laurate, Sodium Methyl Cocoyl Taurate, Proteína de Arroz Hidrolizada, Disodium Cocoyl Glutamate, Sodium Cocoyl Glutamate, Sodium Cocoyl Threoninate, Cloruro de Sodio, Tetrasodium Glutamate Diacetate, Sodium Hyaluronate, Niacinamida, Péptido de Avena (Avena Sativa), Aceite de Cáscara de Bergamota (Citrus Aurantium Bergamia), Limoneno, Acetato de Linalilo, Linalool, Aceite/Extracto de Lavanda, Citral, Mentol, Pineno, Anetol, Vainillina, Carvona, Dióxido de Titanio (CI 77891), Óxidos de Hierro (CI 77492, CI 77491, CI 77499)¹
¹Color natural
{
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 = `Jabón en barra para rostro y cuerpo con proteína de agua de arroz`;
let bundleHandle = `jabon-barra-rostro-cuerpo-proteina-agua-arroz`;
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');
});
}
}">
Jabón en barra para rostro y cuerpo con proteína de agua de arroz
Register to receive a notification when this item comes back in stock.
Please enter a valid email address.
Thanks for signing up! We'll send you an email when the product becomes available.
{
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">
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í, su fórmula es lo suficientemente suave para el cuidado facial y altamente efectiva para la limpieza corporal diaria.
No, esta barra está diseñada exclusivamente para mantener la piel suave y sedosa.
Sí, la proteína de arroz hidrolizada y la niacinamida son ingredientes calmantes que refuerzan la barrera cutánea, ayudando a calmar la piel y minimizar la sequedad.
No, esta barra está formulada para retener la humedad y fortalecer la barrera de la piel, dejándola suave, tersa e hidratada tras el aclarado.
No, está completamente libre de parabenos, ftalatos, siliconas, sulfatos y fragancias artificiales.
Es ideal para pieles secas y deshidratadas, pero lo suficientemente ligera para cutis normales a mixtos que necesitan hidratación sin sensación pesada ni ingredientes que obstruyan los poros. Como con cualquier jabón en barra, se recomienda a las personas con piel muy sensible o propensa al acné realizar una pequeña prueba de alergia (prueba de parche) antes de su uso completo.
El precio de referencia representa el precio al que se ofrecía anteriormente el producto o el precio de mercado estimado de artículos comparables en otros establecimientos. Dado que los precios suelen fluctuar, no podemos garantizar que el precio de referencia refleje el precio de mercado vigente en un momento determinado.
Al seleccionar una opción, se actualiza toda la página.