Avertissement : L’emballage reçu peut différer de celui présenté.
Huile de ricin 100 % pure et certifiée biologique USDA, pressée à froid pour préserver sa richesse en antioxydants
Peut aider à obtenir des cheveux plus denses, des cils plus longs, des sourcils plus fournis, une peau plus hydratée et des cuticules adoucies
Améliore votre rituel beauté grâce aux vitamines et minéraux essentiels
Exfolie délicatement la peau du visage en retirant les cellules mortes et les poils indésirables qui retiennent impuretés et sébum
Répéter toutes les 3 à 4 semaines, une fois que la renouvellement cellulaire de la peau est terminé
Transforme les cheveux secs et crépus en mèches douces et soyeuses
Facilite le démêlage et réduit la casse
Garde les boucles définies et rebondies
Ajoute un parfum durable et luxueux aux cheveux
S’utilise comme masque sous la douche ou soin avant shampoing
Après le shampooing, prélevez une quantité généreuse du masque.
Appliquez des mi-longueurs jusqu’aux pointes en veillant à couvrir chaque mèche.
Laissez poser 10 minutes pour permettre à l’huile de coco de faire effet.
Rincez abondamment et coiffez comme d’habitude.
Huile de coco
Excellent masque capillaire grâce à ses acides gras à chaîne moyenne, en particulier l'acide laurique, qui pénètrent profondément dans la tige capillaire, hydratent intensément et réduisent la perte de protéines. Elle aide à renforcer les cheveux, à prévenir leur cassure et à les protéger contre les agressions extérieures, tout en apaisant le cuir chevelu. Une utilisation régulière rend les cheveux plus doux, plus brillants et plus faciles à coiffer, ce qui en fait un traitement naturel et efficace pour les cheveux secs ou abîmés.
Ingrédients
Aqua/Eau/Eau, alcool cétéarylique, alcool myristylique, glycérine, chlorure de béhentrimonium, chlorure de cétrimonium, phosphate d'amidon hydroxypropylique, parfum (Parfum), cocoglycérides, gluconate de sodium, protéine de blé hydrolysée, alcool benzylique, bis(C13-15 alcoxy) PG-amodiméthicone, alcool isopropylique, stéarate de glycéryle SE, propylène glycol, quaternium-80, alcool béhénylique, chlorure d'hydroxyéthyl cétéaramidopropyldimonium, tétraméthylacétyloctahydronaphtalènes, benzoate de sodium, huile de graines de Simmondsia Chinensis (jojoba), alcools C14-15, acide citrique, huile d'écorce de Citrus Aurantium, vanilline, cellulose, phénoxyéthanol, alcool isotridécylique, 1,2-hexanediol, alcool phénéthylique, hydroxyacétophénone, benzaldéhyde.
{
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;
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 = `Masque soin hydratant profond à la Noix de Coco`;
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');
});
}
}">
Fréquemment achetés ensemble
+
Total price:
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">
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
3 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
2 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
Oui, il est parfait pour les cheveux crépus, bouclés et les boucles 4C, mais il fonctionne également très bien sur les cheveux raides, ondulés et colorés.
Une fois par semaine est idéal, mais vous pouvez l'utiliser plus souvent si vos cheveux ont besoin d'un soin supplémentaire.
Absolument ! Appliquez-le sur cheveux secs avant le shampooing pour un soin plus intense.
Non, il hydrate sans laisser de résidus lourds lorsqu'il est rincé correctement.
Oui, sa formule est douce et sans danger pour la couleur.
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.