Formulado con agua de arroz para reparar los folículos pilosos dañados y previene las puntas abiertas
Proteína de arroz: se ha demostrado que aumenta el volumen del cabello en un 20% tras 5 lavados*
Le proporciona una limpieza nutritiva para favorecer la longitud y densidad del cabello
Potencia el brillo en cabellos apagados y secos
Libre de parabenos, ftalatos, siliconas, sulfatos y fragancias artificiales
PH equilibrado y seguro para cabellos teñidos
Reduce el plástico de un solo uso: ahorra dos botellas de champú/acondicionador líquido.
Hecho en EE.UU., vegano, sin crueldad, certificado por Leaping Bunny
*basado en el estudio TRI-K Rice Tein NPNF tras 5 lavados
CERTIFICADO 4OCEAN: Por cada barra de champú o acondicionador,4ocean tira el equivalente al plástico de un bote de champú de los océanos, ríos y costas del mundo
Cómo conseguir resultados de peluquería: Humedecer el cabello, frotar la barra entre las manos hasta obtener abundante espuma o "pintar" directamente sobre el cuero cabelludo. Masajea con las yemas de los dedos, aclara y repite la operación si lo deseas. Consejo profesional: Combínalo con nuestra Beauty Bar Bag.
Rice Tein NPNF®
Probado clínicamente para potenciar al instante el brillo natural desde el primer uso, a la vez que se adhiere eficazmente al cabello para favorecer un aspecto saludable y aumentar el volumen en 5 usos.
Isetionato de cocoílo sódico y metil cocoil taurato sódico
Se combinan para crear un sistema de limpieza sin sulfatos que genera una espuma cremosa y ayuda a que el cabello se sienta suave y fresco
Glicerina
Ayuda a mantener el equilibrio de hidratación durante la limpieza
Ingredientes
Cocoyl isetionato de sodio, metil cocoyl taurato de sodio, glicerina vegetal, aceite de ricino hidrogenado, cloruro de hidroxipropiltrimonio guar, proteína de arroz hidrolizada, fragancia natural*, óxido de hierro**.
*Fragancia natural derivada de plantas. **Color natural.
Sin parabenos, ftalatos, siliconas, sulfatos ni fragancias artificiales.
Fragancia: Té blanco y mandarina
Tenemos la certificación Leaping Bunny: el logotipo Leaping Bunny es el único símbolo reconocido internacionalmente que garantiza a los consumidores que no se han realizado nuevas pruebas con animales en el desarrollo de ningún producto que lo muestre.
{
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 = `Champú en barra de agua de arroz para el crecimiento del cabello`;
let bundleHandle = `arroz-agua-proteina-champu-barra-reforzante`;
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');
});
}
}">
Comprados juntos frecuentemente
+
Total price:
Champú en barra de agua de arroz para el crecimiento del cabello
$ 374.00
$ 374.00
Champú en barra Detox
$ 374.00
$ 374.00
Acondicionador en barra de agua de arroz para el crecimiento del cabello
$ 374.00
$ 374.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 = `Champú en barra de agua de arroz para el crecimiento del cabello`;
let bundleHandle = `arroz-agua-proteina-champu-barra-reforzante`;
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 = 'Añadir selección al carrito';
this.$dispatch('update-cart', { cart: response });
this.$dispatch('toggle-cart-drawer');
});
}
}">
Comprados juntos frecuentemente
Champú en barra de agua de arroz para el crecimiento del cabello
$ 374.00
$ 374.00
+
Champú en barra Detox
$ 374.00
$ 374.00
+
Acondicionador en barra de agua de arroz para el crecimiento del cabello
Champú en barra de agua de arroz para el crecimiento del cabello
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">
4 razones por las que millones de mujeres se pasan al agua de arroz
1. Favorece el crecimiento
Los aminoácidos que contiene contribuyen a la regeneración del cabello y aceleran su crecimiento. Contiene vitaminas B, C y E, que contribuyen al crecimiento del cabello.
2. Refuerza
Al igual que las proteínas ayudan a desarrollar músculos fuertes y sanos, se cree que las proteínas del agua de arroz contribuyen a mejorar el estado general del cabello.
3. Suavizante
El cabello dañado y muy poroso tiene dificultades para retener la humedad, lo que provoca encrespamiento y puntas abiertas. Las proteínas del agua de arroz pueden contrarrestar estos efectos, reduciendo la rotura y mejorando la textura del cabello.
4. Equilibrado
Aunque el pelo necesita hidratación para mantenerse sano, el exceso de humedad puede ser más perjudicial que beneficioso. Para reequilibrar los mechones demasiado hidratados (también conocidos como fatiga hídrica), prueba un tratamiento proteico como el agua de arroz.
4.8
Rated 4.8 out of 5 stars
Based on 10,490 reviews
Reviews Summary
Generated by AI from 100 most recent customer reviews
Last updated 1 year ago
Customers say this shampoo bar creates rich lather and leaves hair feeling soft and clean. Many reviews mention increased volume and manageability. While some note it can break apart during use, most praise its effectiveness. Frequent comments address the bar's convenience for travel and storage.
Ok y’all, my wife’s hair has always been very fine and a little thin. She was diagnosed with a disease in May, and since, her hair has gotten VERY thin! So that is initially why I ordered the rice water shampoo and conditioner. (And to be honest, I wanted to try it too!!) She is on week 4 of using just the shampoo, and y’all just look at the difference!!! Look at this result!!!!! If you are on the fence about ordering, hop off that fence, warm up your credit card, and buy the shampoo, and conditioner, and whatever else you see that you might want to try. It is ALL great stuff!!
It was kinda weird getting started using the bars, they're just so different than bottle products, but after a cpl times of usage I got the hang of it. My hair feels so much cleaner and softer and my thinness is disappearing!! So thrilled with the results even after only 6wks of use.
J
Jennifer
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 years ago
Amazing Results 💕 🥰
So different lighting but all me!! I was so depressed in the before pics and five weeks of using the rice water shampoo and conditioner made me love my hair for the first time EVER 💕 🥰 I cannot get over how amazing these results were 🤯
As a woman with PCOS, my hair was thinning noticeably at the temples (my right side more so than my left side for some reason) and constantly falling out. However, after only one month of using the Rice Water Shampoo Bar I have noticed new hair growth coming through... I'm blown away! I feel like I'm gaining my confidence back - my hair has never looked healthier! I can't wait to see the transformation as I continue to use the Rice Water Shampoo Bar. I have just ordered two more 😜 I rave about this product to everyone who will listen. Thank you Kit·sch 🙏 😍
Product Standouts Increases Hair Growth, Great Ingredients, Lathers Well, Strengthens
Rated 5 out of 5 stars
1 year ago
I’m hooked!
After loosing my hair to an auto immune disease I could not use regular shampoo and conditioners.. doing research on natural remedies I found kitsch! All natural and on the top 5 best natural bar shampoo and conditioner. They do not burn or make my hair itch! Spa smelling not to mention I desperately needed a shampoo that would help my hair grow! It works! Thank you kitsch for your natural shampoo and conditioner!🙏❤️ you can see my before and after photos!
KC
Kathleen C.
Verified Buyer
I recommend this product
Hair Concern Sensitive Scalp
Product Standouts Great Ingredients, Increases Hair Growth, Lathers Well
Rated 5 out of 5 stars
1 year ago
Cancer Anyone?
I had hair it was blond by choice, long and wavy by God. It began to fall out like crazy. I decided to get it shaved off it was the only thing I could control in my current situation and I did! I found this product during my hair coming lol the stage when you just have bristles. I bought it and love it the very light scent of your product was great during chemotherapy when everything smelled bad. My hair is coming along and it is so soft and healthy. I’m so glad that I found you on my journey! Thank you and God bless!
I watched this ad across various sites for several months. Your product is the read deal! I am 77 with white/silver hair. My husband passed very recently and I realized I had neglected myself caring for him. My hair was dull, flat and sad looking. It had been thinning for months. I was appalled when I saw pink scalp showing. I have used the bar shampoo and conditioner twice and my hair has a shine and luster I haven’t seen in years. Best of all it has lift! My granddaughter came to visit and she says grandma your hair is beautiful. Did you get extensions? I almost cried. I almost didn’t buy this as I lost one of our social security incomes when he passed unexpectedly. Yet he would have been the first to say buy it honey you deserve it. Today I ordered some for her. Next month she will have her 19th neurosurgery, I want her to feel as awesome as I do also. Thank you /kit . sch/
All i can say is very excellent products. My hair is very healthy and shiny now and my scalp is a lot of baby hair.
Just had to share because I’m so thankful to have found this amazing company!!! Not only has my hair grown because of you, but my confidence has as well! 🥰😘
EL
Erika L.
Verified Buyer
I recommend this product
Hair Concern Chemically Treated, Weak, Dry, Thinning, Other
I absolutely love this shampoo! I wasn’t sure if it would really work, especially since I was going through a tough time with my vitamin levels and recovering from surgery. I was losing a lot of hair, but this shampoo truly helped me regain it.
Thank you so much!
Erika
AR
Alisha R.
Verified Buyer
I recommend this product
Hair Concern Dry, Frizzy, Thinning, Weak
Product Standouts Lathers Well, Boosts Shine, Great Ingredients, Strengthens
Rated 5 out of 5 stars
1 year ago
It's been just a week and I've already seen a difference
I've dry, thinning hair my whole life, and recent stress kicked it into overdrive. I was seriously worried about going bald if I didn't act fast. That's when I found Kitsch and their rice water protein shampoo bars.
From the very first wash, I was blown away. My frizz disappeared, my hair had this incredible shine, and my hair just straightened out on its own without the usual help of my hair tools. And after only a week of use (just two washes for me), I'm seeing dramatically less hair falling out. I swear, it's unbelievable! No turning back now! I'm really looking forward to a fuller head of hair soon. Baby steps, right?
Look at my hair this summer, super shiny and soft, versus its dry, frizzy mess back in January. The transformation speaks for itself! Huge thanks to Kitsch!
Loading...
Loading...
Frequently Asked Questions
Dependiendo de su tipo de cabello y de la frecuencia con que se lo lave, algunas personas ven resultados inmediatamente y otras pueden empezar a verlos en unas pocas semanas.
Sí, pero no se fíe sólo de nuestra palabra. Echa un vistazo a los miles de comentarios de 5 estrellas de personas de todas las edades que utilizan nuestras barras de champú y acondicionador.
Si tienes dudas sobre cuál es la barra más adecuada para ti, indica a nuestro equipo de asistencia cuál es tu tipo de cabello y te orientaremos en la dirección correcta.
El cabello de cada persona es diferente, por lo que tendrás que probar y equivocarte hasta que encuentres lo que mejor se adapta a ti. Empieza con una cantidad suficiente para limpiar desde las raíces y el cuero cabelludo hasta las puntas. Si no ves resultados, te recomendamos que apliques más cantidad durante el lavado.
Cuando te suscribes, cargamos automáticamente el importe en tu tarjeta para que puedas configurarlo y olvidarte. Puede darse de baja en cualquier momento.
Sí. Proteger su privacidad es una de nuestras mayores prioridades. Utilizamos una serie de medidas de seguridad y métodos estándar de la industria para mantener a salvo su información personal. Todos los pedidos y la información personal se gestionan mediante un servidor seguro. Datos como el número de tarjeta de crédito, el nombre y la dirección se transmiten a través de la tecnología Secure Socket Layer (SSL).
El plazo de entrega depende del método de envío seleccionado al realizar el pedido. La mayoría de los pedidos se envían el mismo día. Por favor, espere hasta 2 días hábiles para que su pedido sea procesado. Los pedidos se procesan de lunes a viernes, excepto festivos. Una vez enviado el pedido, recibirá un correo electrónico de confirmación con el número de seguimiento del transportista. En caso de pérdida del paquete, póngase en contacto con el servicio de asistencia de Kitsch.
Le recomendamos que se suscriba para ahorrar y recibir los productos en su domicilio con gastos de envío gratuitos. De esta forma, ¡nunca te quedarás sin ellos!
El champú y el acondicionador de agua de arroz son adecuados para quienes desean fortalecer el cabello y darle brillo. Es especialmente beneficioso para quienes tienen el cabello dañado o débil, ya que el agua de arroz es rica en aminoácidos y vitaminas que ayudan a mejorar la textura y elasticidad del cabello. Sin embargo, los resultados pueden variar, por lo que siempre es bueno realizar pruebas parciales o consultar a un profesional si tiene alguna duda específica.
Si tienes el cabello poroso, sensible a las proteínas o tratado químicamente (como el cabello teñido), es posible que desee limitar el uso del champú y acondicionador Agua de arroz. En estos casos, el cabello es más poroso y propenso a la sobrecarga de proteínas, lo que podría hacer que su cabello se sintiera quebradizo, seco o pesado. Para el cuidado diario, puede probar nuestro Champú de aceite de ricino y el Acondicionador de aceite de coco, formulados para ser suaves y nutritivos.
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.