Formulé avec huile de coco pour offrir une hydratation intense
Nettoie et hydrate les cheveux crépus, bouclés et très bouclés
Laisse les cheveux plus doux, plus brillants et plus faciles à coiffer des racines aux pointes
Formulé avec huile de coco pour offrir un maximum d’hydratation
Formule à 86 % d’origine biologique
Sans parabènes, phtalates, silicones, SLS et SLES
Fabriqué aux États-Unis, cruelty-free et respectueux des cheveux colorés
Emballage entièrement recyclable fabriqué avec des matériaux PCR (recyclés post-consommation)
Mouillez soigneusement les cheveux, puis massez le shampooing sur le cuir chevelu pour créer une mousse riche.
Insistez sur le dessus, les côtés et l’arrière du cuir chevelu.
Poursuivez le massage pendant 2 minutes pour éliminer les impuretés et les résidus.
Rincez abondamment à l’eau tiède.
Poursuivez avec Après-shampooing Hydratant à l’Huile de Coco Kitsch (vendu séparément).
Astuce Pro : Si vous adorez cette formule, essayez notre Shampooing Solide Hydratant à l’Huile de Coco Kitsch approuvé TSA, parfait pour les voyages et le sport !
Huile de coco
L'huile de noix de coco retient l'hydratation pour aider à hydrater vos cheveux en profondeur, de l'intérieur, pour des cheveux plus nourris et d'apparence plus saine.
Ingrédients
Eau, Sodium C14-16 Olefin Sulfonate, Cocamidopropyl Betaine, Sodium Cocoyl Isethionate, Cocamide MIPA, Glycérine, Propanediol, Glycol Distearate, Chlorure de Sodium, Coco-Glucoside, Sodium Methyl Cocoyl Taurate, Polyquaternium-7, Hydrogenated Ethylhexyl Olivate, Cocos Nucifera (Huile de Noix de Coco), Helianthus Annuus (Huile de Graines de Tournesol), Insaponifiables d'Huile d'Olive Hydrogénée, Chlorure de Guar Hydroxypropyltrimonium, Hydroxyethylcellulose, Chlorure de Cetrimonium, Parfum, Phénoxyéthanol, Alcool Benzylique, Gluconolactone, Sorbate de Potassium, Benzoate de Sodium, Acide Citrique, Sulfate de Sodium, Citronellol, Huile d'Écorce de Citrus Aurantium, Limonène, Tétraméthyl Acétylloctahydronaphtalènes, Vanilline.
{
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;
let discount = 0;
this.selected.forEach(function (item) {
item.tags.forEach(function (tag) {
if(tag.includes('discount:') || tag.includes('Discount:') || tag.includes('discount: ') || tag.includes('Discount: ')){
discount = tag.split(':')[1];
}
})
})
if(discount > 0){
extraDiscount = total * (discount / 100);
}
return total - extraDiscount;
},
addToCart(){
let cartObj = [];
let bundleTitle = `Shampooing hydratant à l'huile de noix de coco`;
let bundleHandle = `coconut-oil-shampoo-for-dry-damaged-hair`;
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:
Shampooing hydratant à l'huile de noix de coco
$ 373.00
$ 373.00
Après-shampooing hydratant à l'huile de noix de coco
$ 373.00
$ 373.00
Masque soin hydratant profond à la Noix de Coco
$ 466.00
$ 466.00
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 hydratant Kitsch à l'huile de noix de coco
1. Hydrate en profondeur
Formulé à base d'huile de noix de coco, connue pour ses propriétés hydratantes exceptionnelles, il rend les cheveux plus faciles à coiffer.
2. Redonne de la vitalité
Aide à hydrater et à revitaliser les cheveux secs pour des boucles douces et brillantes.
3. Apporte un équilibre
Les cheveux ont besoin d'un équilibre entre hydratation et protéines : les produits hydratants gardent les mèches douces et souples, tandis que les produits riches en protéines renforcent la structure et aident à réduire les cassures. Si vous constatez des signes de surcharge en protéines (cheveux raides, cassants ou secs), alterner avec le shampooing hydratant à l'huile de coco Kitsch est un excellent moyen de rétablir votre équilibre hydratation-protéines.
4. Des cheveux d'apparence plus saine
Utiliser à la fois des produits hydratants et riches en protéines dans les proportions adaptées à votre type de cheveux peut aider à réduire les cassures, à améliorer la maniabilité et à garder vos cheveux en pleine forme.
This shampoo is great, despite me not being part of the target demographic (I have typical Caucasian hair that is NOT kinky/coily/curly and is well past butt-length). The initial consistency is nothing out of the ordinary, but then it lathers beautifully and creates such a luscious and rich foam, and it spreads very easily. I was also really enjoying taking my time working it in because THE SCENT. I did get a bit nervous when rinsing it out, though, because my hair felt oddly slippery and I thought it may have left an oily film behind... Nope! I guess that's just what my hair feels like when it's actually moisturized, haha. I carried on with the conditioner and then proceeded with my regular minimal effort after-shower routine (microfiber towel wrap then air dry), and I am so pleased! My scalp is refreshed, my roots are squeaky clean, the little baby hairs and growth aren't looking so frazzled, and I did not experience any irritation (I didn't even have to scrub as much/hard as I usually do so my head is happy). I would have ZERO qualms with making this my go-to shampoo!
J
Jami
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 months ago
Great for curls
I really like the coconut line. It helps to add moisture and define my curl pattern. I do prefer the bars over the liquid, but I wouldn’t hesitate to use either.
N
Naf
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Moisturizing Shampoo
Kitsch Moisturizing Coconut Oil Liquid Shampoo has a light fragrance of coconut. It is easy to lather. It moisturizes my hair and deeply cleans it. My scalp feels really clean without any residues. It is easy to apply and easy to rinse off.
JU
Jovita U.
I recommend this product
Rated 5 out of 5 stars
4 months ago
Rich lather
Kitsch Moisturizing Coconut Oil Shampoo is perfect for my coily hair. It produces a rich lather that is able to handle the product build-up in my hair. It makes my hair feel soft and hydrated.
AC
Almog C.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
4 months ago
left my hair less damaged looking
Love this shampoo! It makes my hair feel super clean but still moisturized. My hair looks shinier, smoother, and way less dry.
M
Marissa
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Love!!
This moisture is in coconut oil liquid shampoo did such a wonderful job of helping to hydrate my hair. It left my hair feeling so soft and I can really feel that it added moisture back into my hair. Having dry hair I have to find a product that's going to help not only moisturize but add volume to my hair and this shampoo did just that. I would definitely buy this again the future!
EE
Eddie E.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
4 months ago
The Shampoo I didn’t know I needed!
I have curly hair and I’ve always struggled with hair care, especially ones that accommodate my hair type. I’m elated to have tried the Coconut Oil Shampoo! Not only does this product smell amazing without being overpowering, but it also helped to hydrate my curls so much. It adequately removed buildup on my scalp, which is a must for someone like me who puts a lot of product in their hair. I’ve used this in combination with the coconut oil conditioner, and I’ve seen so much repair and improvement in just the two weeks that I’ve been using it! I highly recommend this product.
JS
Jamie S.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
4 months ago
Nourishing and Hydrating
After 2 weeks of use, my hair and curls have been rejuvenated. It's become easier to manage and detangle. I wish the scent would've lasted a little longer. Other than that, I have absolutely no complaints!
JD
Jennifer D.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 months ago
Tighter curl pattern
After using this shampoo for 90 days my hair is softer, shinier, and my curls are tighter even at the crown of my head. The smell is amazing, and the lather feels great.
M
Michelle
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
4 months ago
Coconut oil for the win
The coconut oil shampoo cleansed my hair effectively without stripping or drying out my hair. It had a nice lather and was easy to work through my hair. It washed out easily as well. It has a nice fragrance that isn’t too overpowering. Highly recommend using this with the matching conditioner.
Loading...
Loading...
Frequently Asked Questions
Ce shampooing cible la sécheresse et redonne vie aux cheveux crépus, bouclés et frisés grâce aux propriétés hydratantes de l'huile de noix de coco.
Oui ! Nous recommandons d'associer le shampooing hydratant à l'huile de noix de coco Kitsch à l'après-shampooing hydratant à l'huile de noix de coco Kitsch pour obtenir des résultats hydratants optimaux.
Oui ! Nos shampooings sont exempts de SLS, SLES et parabènes, ce qui signifie qu'ils sont suffisamment doux pour être utilisés sur des cheveux traités sans altérer la couleur ou les traitements.
Nos shampoings 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 bouteilles en plastique PCR (recyclé après consommation) afin de respecter notre engagement à réduire les déchets, et les bouteilles elles-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.