Avvertenza: La confezione ricevuta può differire da quella mostrata.
Olio di ricino puro al 100%, biologico USDA, spremuto a freddo per mantenere la sua ricca fonte di antiossidanti
Può aiutare a ottenere capelli dall’aspetto più folto, ciglia più lunghe, sopracciglia più piene, pelle più idratata e cuticole più morbide
Arricchisce il tuo rituale di bellezza con vitamine e minerali essenziali
Esfolia delicatamente la pelle del viso rimuovendo cellule morte e peluria indesiderata che possono trattenere sporco e sebo
Ripetere ogni 3–4 settimane una volta completato il rinnovamento cellulare della pelle
Trasforma i capelli secchi e crespi in ciocche morbide e setose
Rende più facile districare e riduce la rottura
Mantiene i ricci definiti ed elastici
Aggiunge una fragranza duratura e lussuosa ai capelli
Funziona come maschera sotto la doccia o trattamento pre-shampoo
Dopo lo shampoo, preleva una quantità generosa della maschera.
Applica da metà lunghezza alle punte, assicurandoti che ogni ciocca sia coperta.
Lascia agire per 10 minuti affinché l’olio di cocco faccia la sua magia.
Risciacqua accuratamente e acconcia come al solito.
Olio di cocco
Un'ottima maschera per capelli perché i suoi acidi grassi a catena media, in particolare l'acido laurico, penetrano in profondità nel fusto del capello, fornendo un'idratazione intensa e riducendo la perdita di proteine. Aiuta a rafforzare i capelli, a prevenirne la rottura e a proteggerli dai danni ambientali, lenendo al contempo il cuoio capelluto. L'uso regolare rende i capelli più morbidi, lucenti e pettinabili, rendendolo un trattamento naturale ed efficace per capelli secchi o danneggiati.
Ingredienti
Acqua/Acqua/Eau, Alcool Cetearilico, Alcool Miristilico, Glicerina, Cloruro di Behentrimonio, Cloruro di Cetrimonio, Fosfato di Amido Idrossipropilico, Profumo (Parfum), Cocogliceridi, Gluconato di sodio, Proteine idrolizzate del grano, Alcool benzilico, Bis(C13-15 Alkoxy) PG-Amodimethicone, Alcool isopropilico, Stearato di glicerile SE, Glicole propilenico, Quaternium-80, Alcool behenilico, Cloruro di idrossietil cetearamidopropildimonium, Tetrametil acetilottaidronaftaleni, benzoato di sodio, olio di semi di Simmondsia Chinensis (jojoba), alcoli C14-15, acido citrico, olio di buccia di Citrus Aurantium, vanillina, cellulosa, fenossietanolo, alcool isotridecilico, 1,2-esandiolo, alcool fenetilico, idrossiacetofenone, benzaldeide.
{
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: 2,
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 = `Maschera Nutriente e Idratante con olio di cocco`;
let bundleHandle = `moisturizing-coconut-oil-deep-conditioning-mask`;
let bundleCount = 2;
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:
Maschera Nutriente e Idratante con olio di cocco
$38.00
$38.00
Cuffietta di raso oversize - quadretti terracotta
$42.00
$42.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">
I loved using this hair mask and enjoy rinsing it out and feeling how soft and smooth my hair feels afterward. When using this in the shower, prior to using the curly hair cream once I'm out, the two products paired together are incredible. My hair was less frizzy, sleeker and curls emphasized. I would definitely get this hair mask again in the future!
MS
Mary S.
I recommend this product
Rated 5 out of 5 stars
7 months ago
Love at 1st use
I have a short pixie cut and 50 shades of silver/pewter hair. I stopped adding ing color to my hair 3 1/2 years ago and my hair became a bit drier in the transition.
I tried this on a whim and WOW !!!!! It's as if my hair regained it's youth LOL. For me a little goes a long way due to my hair length, The texture of my hair feels so new to me, my natural silver/pewter colors have depth now. I use this twice a month and saw results on the 1st try. It just keeps getting better ♥️
LJ
Lisa J.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
7 months ago
More than one
Just wanted to drop a review of happy
I love everything I buy Kit sch.
I am hooked.
Solid Shampoos and conditioners.
Hair Masks Hair wraps.
ABSOLUTELY EVERYTHING.
Typically I wash my hair every 3rd day but it is hard to wait when I get new options. Today I will be using
My new items a day early.
PS: I have also bought for my daughter, hoping she finds them just as wonderful.
KH
Kim H.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
6 months ago
Feels Great!! Deep Conditioning
Love this product! The Kitsch Moisturizing Coconut Oil Deep Conditioning Treatment Mask is one of those rare hair products that actually delivers on its promises. From the first use, it leaves hair noticeably softer, smoother, and far more manageable. The formula is rich without being heavy, so it nourishes deeply but doesn’t weigh hair down or leave a greasy residue.
BC
bielka c.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 months ago
Deep Hydration & Incredibly Soft Hair
I am very satisfied with this KITSCH hydrating deep conditioning mask, especially with the new formula. After the first few uses, I noticed my hair felt much softer, more hydrated, shinier, and easier to detangle. The texture is pleasant, lightweight, and helps control frizz without weighing my hair down. The coconut oil provides deep nourishment while keeping the hair feeling healthy and refreshed. Plus, the scent is amazing! I would definitely recommend it for dry, damaged, or moisture-deprived hair.
D
Diana
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
4 months ago
I love Kitsch
This is my first purchase... I have to say that I am very satisfied with these products. From my first wash I felt a big difference in my hair. Very soft like a baby's hair. My hair is difficult to untangle and with this product how easy and manageable I felt my hair and much less tangles. I will say that it has become my favorite brand. I love Kitsch! 🩷
モ
モントジャルイサ
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
6 months ago
Amazing!
This hair treatment mask is just amazing let my hair super sliky and smells incredible! Less frizz then and my hair feels light weight moisturizing and clean!
CS
Cheila S.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 months ago
Deep hydration in minutes 🥥✨
The KITSCH Moisturizing Coconut Oil Deep Conditioning Mask leaves my hair feeling soft, nourished, and revived, perfect for dry, damaged strands. A must-have for that silky, healthy glow 💛
MG
Mary G.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
8 months ago
Game changer
This moisturizing mask smells amazing! Not only that, my menopausal hair is shiny and soft again. I will use this once a week and purchase again!
YR
Yeisy R.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Left my hair, so soft and smelling DELICIOUS
This is one of the best in shower hair masks I’ve tried! I have wavy/curly hair that tends to get pretty frizzy and I definitely noticed a difference after using this product. Even after the first time using it, I noticed less frizz, and my hair was more manageable and soft overall. Applying it was super easy and it also helps to detangle in the shower. Rinsing it out was equally as easy and leaves your hair, smelling scrumptious. I’m generally pretty sensitive to perfumes, but this one is the perfect intensity.
Loading...
Loading...
Frequently Asked Questions
Sì, è perfetta per capelli crespi, ricci e riccioli 4C, ma funziona benissimo anche su capelli lisci, mossi e trattati con colorazioni.
Una volta alla settimana è l'ideale, ma puoi usarla più spesso se i tuoi capelli hanno bisogno di cure extra.
Assolutamente sì! Applicalo sui capelli asciutti prima dello shampoo per un trattamento più profondo.
No, idrata senza lasciare residui pesanti se risciacquata correttamente.
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.