Formulé avecRice Tein NPNF ® ️ cliniquement testé pour promouvoir instantanément la brillance naturelle en 1 utilisation, tout en augmentant le volume et l’apparence saine en 5 utilisations.¹
Conditionne et renforce les cheveux fins, fragiles et abîmés
Rice Tein NPNF ® aide à renforcer les cheveux pour prévenir les dommages et favorise une apparence saine¹
Rice Tein NPNF ® booste la brillance des cheveux ternes et secs
Formule biosourcée à 88 % (shampooing) ;formule biosourcée à 95 % (après-shampooing)
Sans parabènes, phtalates, silicones, SLS et SLES
Fabriqué aux États-Unis, cruelty-free, sans danger pour les cheveux colorés
Emballage entièrement recyclable et fabriqué avec du PCR (matériau recyclé post-consommation)
¹ Tous les ingrédients déposés sont utilisés sous licence ; les allégations reflètent celles approuvées par le fournisseur.
Mouillez soigneusement les cheveux, puis massez le shampooing sur le cuir chevelu pour créer une mousse riche et abondante.
Concentrez-vous sur le dessus, les côtés et l’arrière du cuir chevelu.
Poursuivez le massage pendant 2 minutes afin d’éliminer les impuretés et les résidus.
Rincez abondamment à l’eau tiède.
Appliquez l’après-shampooing sur cheveux mouillés des longueurs jusqu’aux pointes. Frisottis ? Appliquez des racines aux pointes.
Répartissez uniformément à l’aide des doigts ou d’un peigne à dents larges.
Laissez agir pendant 1 à 5 minutes.
Rincez abondamment à l’eau tiède.
Astuce Pro : Si vous aimez cette formule, essayez notre format solide de voyage, approuvé TSA : Kitsch Shampooing Solide & Après-Shampooing Solide Fortifiant à la Protéine d’Eau de Riz – parfait pour les voyages et les sacs de sport.
Rice Tein NPNF®
Les protéines de riz hydrolysées contiennent des acides aminés concentrés qu'elles apportent aux zones fragiles de la cuticule afin de renforcer la fibre capillaire, d'améliorer sa résistance et de fortifier les cheveux. Apporte une brillance naturelle dès la première utilisation, tout en augmentant le volume et l'apparence saine après 5 utilisations.¹
Ingrédients
Shampooing fortifiant à l'eau de rizEau/Aqua/Eau, Cocamidopropyl Bétaïne, Sulfonate d'oléfine C14-16 sodique, Iséthionate de cocoyle sodique, Cocamide MIPA, Glycérine, Propanediol, Distéarate de glycol, Chlorure de sodium, Coco-Glucoside, Protéine de riz hydrolysée, sodium méthyl cocoyl taurate, polyquaternium-7, huile de graines de Helianthus annuus (tournesol), chlorure d'hydroxypropyltrimonium de guar, chlorure de cétrimonium, parfum (parfum), phénoxyéthanol, alcool benzylique, gluconolactone, sorbate de potassium, benzoate de sodium, acide citrique, sulfate de sodium, citral, huile d'écorce de Citrus Aurantium Bergamia, huile/extrait de Lavandula, limonène, linalol, acétate de linalyle.Après-shampooing fortifiant à l'eau de rizEau/Aqua/Eau, alcool cétéarylique, glycérine, chlorure de béhentrimonium, huile de Cocos Nucifera (noix de coco), huile de graines de Helianthus Annuus (tournesol), parfum (Parfum), alcool cétylique, méthosulfate de béhentrimonium, alcanes de noix de coco, protéines de riz hydrolysées, polyquaternium-7, panthénol, coco-caprylate/caprate, oxyde de stéaramine, chlorure de cétrimonium, chlorure d'hydroxypropyltrimonium de guar, phénoxyéthanol, alcool benzylique, sorbate de potassium, benzoate de sodium, acide citrique, citral, huile essentielle de zeste de Citrus Aurantium Bergamia, huile/extrait de Lavandula, limonène, linalol, acétate de linalyle.
{
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 = `Ensemble shampooing et conditionneur fortifiants à l'eau de riz`;
let bundleHandle = `ensemble-shampooing-conditionneur-fortifiants-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');
});
}
}">
Fréquemment achetés ensemble
+
Total price:
Ensemble shampooing et conditionneur fortifiants à l'eau de riz
$28.00$28.00
Crème lissante pour séchage à l’air libre
$15.00$15.00
Conditionneur hydratant sans rinçage au lait d'argan
$15.00$15.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 = `Ensemble shampooing et conditionneur fortifiants à l'eau de riz`;
let bundleHandle = `ensemble-shampooing-conditionneur-fortifiants-eau-de-riz`;
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
Ensemble shampooing et conditionneur fortifiants à l'eau de riz
$28.00$28.00
+
Crème lissante pour séchage à l’air libre
$15.00$15.00
+
Conditionneur hydratant sans rinçage au lait d'argan
Ensemble shampooing et conditionneur fortifiants à l'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 pour lesquelles des millions de personnes adoptent le shampooing fortifiant à la protéine de riz Kitsch
1. Fortifiant
La protéine de riz hydrolysée contient des acides aminés concentrés qui renforcent la fibre capillaire et rendent les cheveux plus sains, tant au toucher qu'à la vue.
2. Soutien ciblé
La protéine de riz hydrolysée agit différemment des peptides végétaux en se liant aux protéines des zones fragiles de la cuticule, renforçant ainsi les cheveux pour prévenir les dommages et favoriser une apparence saine.
3. Brillance accrue
Les protéines de riz hydrolysées forment un film léger et souple qui lisse la cuticule et améliore la brillance.
4. Équilibre
Une hydratation excessive peut rendre les cheveux mous ou trop souples. Un shampooing riche en protéines comme notre shampooing fortifiant à l'eau de riz Kitsch peut aider à rétablir l'équilibre.
I’ve been using my new Rice water protein shampoo and Rice water protein conditioner now about little over 3 months at first started with the bar’s then when the liquid came out I went to try it when I had radiation and chemo like almost 20 years ago now I lost all my hair when it came back was very thin no matter what I tried my hair was always the same still thin until I bought the set Rice water protein shampoo and conditioner liquid been using like month in half now my hair loves this stuff very shiny and I can’t believe this but SERIOUSLY my hair is feeling much healthier and MUCH THICKER i HIGHLY RECOMMEND the results are WOW Thank you /Kit • sch / this stuff WORKS A Great JOB I’m 72 I have BEAUTIFUL hair again ❤️
LJ
Lora J.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
7 months ago
BEST liquid shampoo & conditioner I have EVER used, hands down!
Okay, so... I had held off on getting the liquid version of the BEST, MOST LIFE-CHANGING shampoo and conditioner BARS because I didn't think it would even compare. Wrong! So, SO wrong! The liquid helps save a little time, only because you don't have to spend hardly ANY time at all lathering it into your hair! Plus, you do NOT need much product to get an INCREDIBLE amount of suds! I put the same amount in my hand that I have done with OTHER brands' shampoo, and it was WAYY too much! The shampoo was RICH and CREAMY yet easily goes on and rinses off CLEAN! The conditioner was also rich and creamy, but not too thick to the point that it was hard to smooth through my hair or rinse out - it is the PERFECT consistency!
Washing my hair with the LIQUID Rice Water Protein Shampoo & Conditioner is the SECOND time I have loudly said "WOW!" after using a truly AMAZING product.. The first time was with Kitsch's Jojoba Bead Body Wash bar! My point is that this brand and these products have SUCH an impact that they will have you shouting in amazement from your shower, ha!
RM
Rhonda m.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
4 months ago
Shampoo
I have cancer hair so thin used for five days my hair is so thick and long I cried it’s a miracle I will continue to use and share with others and the hairbrush Thank you for such amazing product
PL
Patricia L.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
6 months ago
EXCELLENT!
I love the Rice water and conditioner combo! My hair feels healthier and has more life!
BF
Barbara F.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
6 months ago
Rice combo
I am enjoying the combo so much because the bar rice didn't lather for me before. Also I have kinky curly hair, very fagil and thin . The bar would tangle my hair this doesn't. I use the bar soap in Rosemary and castor oil, these seem not to do it. Would recommend 👌
KD
Kimberly D.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 months ago
Amazing!!
I started using these products about six months ago and now I just want one of everything. I did notice if you leave the bar alone and use another project for a while it does dry out and doesn’t work as well, but I have tried the purple shampoo with the purple conditioner, and I love it. It’s not a heavy conditioner. It’s a light conditioner. I love it though, and I have tried the charcoal scrub body bar, Shea butter bar tried my favorite is the rice, protein, shampoo, and conditioner. I’ve tried it in the solid bar and I’ve tried it in the liquid. I prefer the liquid, but I love the way the bar is when you first get it when you first get it it’s easy to lather it up. It’s easy to use once you get down to the end of the bar. It’s kind of harder to get the product on, especially with longer hair I have tried the hair ties they’re beautiful they’re made out of silk or something so they don’t damage the hair. I have tried their clips. I bought all of their clips that they made and I love them they fit great they hold my hair. I have tried also the Castro oil for moisturizer on my eyelashes for growth. I also have tried shampoo and conditioner. Believe it’s the Shea butter moisturizer, and conditioner bars. They’re amazing. I really wanna try their curling devices. I also have an order that I haven’t submitted yet because it’s almost one of everything. I absolutely love their products. I do like the liquid shampoo, better than the bar shampoo, but the bar shampoo and the rice…
SE
Susan E.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
4 months ago
Kitsch rice water shampoo/ conditioner
Wonderful product! My hair is fuller and stronger for the last 2 months of use. On medication previously that had made my hair thin and limp. Will purchase again! 😁
B
Bren
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
7 months ago
Wow.
My go-to was the rosemary biotin bars, but my ends were feeling dry and no amount of oil or leave in conditioner was helping. Then I found these new liquid versions at target and figured I’d give it a try. I’m blown away. My fine, bleached hair is essentially cured of all problems, and still has volume. It’s also a good value for the money - the bottles have a lot of product and I like how the lid openings are a little small so you don’t dispense too much. I can’t recommend kitsch enough.
SS
Serenity S.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
6 months ago
Smells great and not oily
I have thin hair that gets oily really fast, and most times it’s unmanageable even with a flat iron. However, after using the kitsch rice water duo I’ve noticed my hair stays looking nice even after getting static-y, smells great, my scalp has become way less itchy, and takes no time to flat iron. And you don’t need to put a lot of soap in for it to actually be useful. A little goes a long way and the soap itself has such a soft lather.
AE
Ann E.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
6 months ago
Love this Shampoo and Conditioner
I was skeptical when I saw this. I ordered to try it out. It is amazing. It lathers nicely and the conditioner makes your hair silky. I have new hair growth as well. I recommend this rice water shampoo and conditioner.
Loading...
Loading...
Frequently Asked Questions
Notre shampooing fortifiant à l'eau de riz et aux protéines Kitsch est formulé à base de Rice Tein NPNF ® ️, cliniquement testé pour redonner instantanément de la brillance naturelle dès la première utilisation, tout en augmentant le volume et l'apparence saine des cheveux après 5 utilisations.¹
Les cheveux de chacun sont différents, il faudra donc procéder par essais et erreurs jusqu'à ce que vous trouviez ce qui vous convient le mieux. Commencez par une quantité suffisante pour nettoyer le dessus, les côtés et l'arrière de votre cuir chevelu. Si vous ne constatez pas de résultats, nous vous recommandons d'en appliquer davantage pendant votre lavage.
Le shampooing fortifiant à la protéine de riz Kitsch convient aux personnes qui souhaitent renforcer leurs cheveux, leur apporter de la brillance et augmenter leur volume. Il est particulièrement bénéfique pour celles qui ont les cheveux fins, clairsemés ou abîmés. Cependant, nous vous recommandons de consulter notre tableau de sensibilité aux protéines Kitsch afin de vérifier si ce produit vous convient.
Si vos cheveux sont raides, secs, cassants ou se cassent facilement après l'utilisation de produits riches en protéines, vous souffrez peut-être d'une surcharge en protéines, fréquente chez les cheveux très poreux ou sensibles aux protéines. Ces types de cheveux peuvent absorber rapidement les protéines, ce qui peut donner une sensation de surcharge protéique en cas d'utilisation quotidienne.
Pour maintenir l'équilibre entre protéines et hydratation, essayez d'alterner notre shampooing fortifiant à l'eau de riz et aux protéines Kitsch avec des options plus hydratantes comme notre shampooing lissant à l'huile de ricin Kitsch ou notre shampooing hydratant à l'huile de noix de coco Kitsch.
L'après-shampooing fortifiant à l'eau de riz et aux protéines Kitsch convient aux personnes qui souhaitent renforcer leurs cheveux, leur apporter de la brillance et augmenter leur volume. Il est particulièrement bénéfique pour les personnes ayant des cheveux fins, clairsemés ou abîmés. Cependant, nous vous recommandons de consulter notre tableau de sensibilité aux protéines Kitsch afin de vérifier si ce produit vous convient.
Si vos cheveux sont raides, secs, cassants ou se cassent facilement après l'utilisation de produits riches en protéines, vous souffrez peut-être d'une surcharge en protéines, fréquente chez les cheveux très poreux ou sensibles aux protéines. Ces types de cheveux peuvent absorber rapidement les protéines, ce qui peut donner une sensation de surcharge protéique en cas d'utilisation quotidienne.
Pour maintenir l'équilibre entre protéines et hydratation, essayez d'alterner notre après-shampooing fortifiant aux protéines de riz Kitsch avec des options plus hydratantes comme notre après-shampooing lissant à l'huile de ricin Kitsch ou notre après-shampooing hydratant à l'huile de noix de coco Kitsch.
Nos shampooings et après-shampooings liquides Kitsch sont conçus pour ceux qui préfèrent une expérience traditionnelle et facile à faire mousser tout en accordant de l'importance à la durabilité. Nous utilisons des emballages PCR (post-consommation recyclés) afin de respecter notre engagement en faveur de la réduction des déchets, et les flacons eux-mêmes sont recyclables.
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.