Formulato con olio di cocco per offrire un massimo apporto di idratazione
Deterge e idrata i capelli crespi, ricci e molto ricci
Lascia i capelli più morbidi, luminosi e facili da gestire dalla radice alle punte
Formulato con olio di cocco per offrire il massimo boost di idratazione
86% di formula di origine biologica
Senza parabeni, ftalati, siliconi, SLS e SLES
Prodotto negli Stati Uniti, cruelty-free e sicuro per capelli colorati
Confezione completamente riciclabile realizzata con materiale PCR (riciclato post-consumo)
Inumidisci bene i capelli e massaggia lo shampoo sul cuoio capelluto fino a ottenere una schiuma ricca.
Concentrati sulla parte superiore, sui lati e sulla nuca.
Continua a massaggiare per 2 minuti per rimuovere sporco e residui.
Risciacqua accuratamente con acqua tiepida.
Prosegui con Balsamo Idratante all’Olio di Cocco Kitsch (venduto separatamente).
Consiglio Pro: Se ami questa formula, prova il nostro Shampoo Solido Idratante all’Olio di Cocco Kitsch approvato TSA, perfetto per viaggi e palestra!
Olio di cocco
L'olio di cocco trattiene l'umidità per aiutare a idratare in profondità le ciocche dall'interno, rendendo i capelli più nutriti e dall'aspetto più sano.
Ingredienti
Acqua/Aqua/Eau, Sodio C14-16 Olefin Solfonato, Cocamidopropil Betaina, Sodio Cocoil Isethionate, Cocamide MIPA, Glicerina, Propandiolo, Glicole Distearato, Cloruro di Sodio, Coco-Glucoside, Sodio Metil Cocoil Taurato, Polyquaternium-7, Etilesil Olivato Idrogenato, Olio di Cocos Nucifera (Cocco), Olio di Semi di Helianthus Annuus (Girasole), Insaponificabili dell'Olio di Oliva Idrogenato, Guar Idrossipropiltrimonio Cloruro, Idrossietilcellulosa, Cetrimonio Cloruro, Fragranza (Parfum), Fenossietanolo, Alcol Benzilico, Gluconolattone, Sorbato di Potassio, Benzoato di Sodio, Acido Citrico, Solfato di Sodio, Citronellolo, Olio di Buccia di Citrus Aurantium, Limonene, Tetrametil Acetiloctaidronaftalene, Vanillina.
{
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 = `Shampoo idratante all'olio di cocco`;
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');
});
}
}">
Acquistati spesso insieme
+
Total price:
Shampoo idratante all'olio di cocco
$31.00
$31.00
Balsamo idratante all'olio di cocco
$31.00
$31.00
Maschera Nutriente e Idratante con olio di cocco
$38.00
$38.00
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 cui milioni di persone stanno passando allo shampoo idratante Kitsch all'olio di cocco
1. Idrata in profondità
Formulato con olio di cocco, noto per fornire il massimo apporto idratante, rende i capelli più facili da gestire.
2. Ridona vitalità
Aiuta a idratare e rivitalizzare i capelli secchi, rendendoli morbidi e lucenti.
3. Riporta equilibrio
I capelli hanno bisogno di un equilibrio tra idratazione e proteine: i prodotti idratanti mantengono le ciocche morbide e flessibili, mentre quelli ricchi di proteine rinforzano la struttura e aiutano a ridurre la rottura. Se noti segni di sovraccarico proteico (capelli rigidi, fragili o secchi), alternare l'uso dello shampoo idratante all'olio di cocco Kitsch è un ottimo modo per ripristinare l'equilibrio tra idratazione e proteine.
4. Capelli dall'aspetto più sano
L'uso di prodotti idratanti e ricchi di proteine nella giusta proporzione per il tuo tipo di capelli può aiutare a ridurre la rottura, migliorare la pettinabilità e mantenere i capelli belli da vedere e da toccare.
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
Questo shampoo combatte la secchezza e ridona vita ai capelli crespi, ricci e crespi grazie alle proprietà idratanti dell'olio di cocco.
Sì! Consigliamo di abbinare lo shampoo idratante all'olio di cocco Kitsch al balsamo idratante all'olio di cocco Kitsch per ottenere i migliori risultati di idratazione.
Sì! I nostri shampoo sono privi di SLS, SLES e parabeni, il che significa che sono abbastanza delicati da poter essere utilizzati sui capelli trattati senza alterarne il colore o i trattamenti.
I nostri shampoo liquidi Kitsch sono pensati per chi preferisce un'esperienza tradizionale e facile da insaponare, pur continuando a dare importanza alla sostenibilità. Utilizziamo bottiglie di plastica PCR (riciclate post-consumo) per mantenere il nostro impegno a ridurre i rifiuti, e le bottiglie stesse sono riciclabili.
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.