Aviso: El envase recibido puede variar del mostrado.
Aceite de ricino 100% puro y orgánico USDA, prensado en frío para mantener su rica fuente de antioxidantes
Puede ayudar a promover un cabello de aspecto más abundante, pestañas de apariencia más larga, cejas más densas, piel más hidratada y cutículas suavizadas
Mejora tu ritual de belleza con vitaminas y minerales esenciales
Exfolia suavemente la piel del rostro al eliminar células muertas e impurezas que pueden atrapar suciedad y grasa
Repetir cada 3–4 semanas una vez que la renovación celular de la piel esté completa
Convierte el cabello seco y encrespado en mechones suaves y sedosos
Hace que desenredar sea muy fácil y reduce la rotura
Mantiene los rizos definidos y elásticos
Aporta un aroma duradero y lujoso al cabello
Funciona como mascarilla en la ducha o tratamiento prelavado
Después del shampoo, toma una cantidad generosa de la mascarilla.
Aplica de medios a puntas, asegurándote de cubrir cada mechón.
Déjala actuar durante 10 minutos para que el aceite de coco haga su magia.
Enjuaga bien y peina como de costumbre.
Aceite de coco
Una excelente mascarilla capilar, ya que sus ácidos grasos de cadena media, especialmente el ácido láurico, penetran profundamente en el tallo capilar, proporcionando una hidratación intensa y reduciendo la pérdida de proteínas. Ayuda a fortalecer el cabello, prevenir su rotura y protegerlo contra los daños ambientales, al tiempo que calma el cuero cabelludo. Su uso regular deja el cabello más suave, brillante y manejable, lo que lo convierte en un tratamiento natural y eficaz para el cabello seco o dañado.
Ingredientes
Agua, alcohol cetearílico, alcohol miristílico, glicerina, cloruro de behentrimonio, cloruro de cetrimonio, fosfato de almidón hidroxipropílico, fragancia (parfum), cocoglicéridos, gluconato de sodio, proteína de trigo hidrolizada, alcohol bencílico, bis(C13-15 alcoxi) PG-amodimeticona, alcohol isopropílico, estearato de glicerina SE, propilenglicol, quaternium-80, alcohol behenílico, cloruro de hidroxietil cetearamidopropildimonium, tetrametil acetiloctahidronaftalenos, benzoato de sodio, aceite de semilla de Simmondsia Chinensis (jojoba), alcoholes C14-15, ácido cítrico, aceite de cáscara de Citrus Aurantium, vainillina, celulosa, fenoxietanol, alcohol isotridecílico, 1,2-hexanodiol, alcohol fenetílico, hidroxiacetofenona, benzaldehído.
{
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 = `Mascarilla de Coco Hidratante y Acondicionadora`;
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');
});
}
}">
Comprados juntos frecuentemente
+
Total price:
Mascarilla de Coco Hidratante y Acondicionadora
$ 467.00
$ 467.00
Gorro de satén extra grande - cuadros terracotta
$ 514.00
$ 514.00
Register to receive a notification when this item comes back in stock.
Please enter a valid email address.
Thanks for signing up! We'll send you an email when the product becomes available.
{
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
Sí, es perfecta para cabellos rizados, crespos y rizos 4C, pero también funciona muy bien en cabellos lisos, ondulados y teñidos.
Lo ideal es una vez a la semana, pero puedes usarla más a menudo si tu cabello necesita un cuidado extra.
¡Por supuesto! Aplícalo sobre el cabello seco antes del champú para un acondicionamiento más profundo.
No, hidrata sin dejar residuos al aclararse correctamente.
El precio de referencia representa el precio al que se ofrecía anteriormente el producto o el precio de mercado estimado de artículos comparables en otros establecimientos. Dado que los precios suelen fluctuar, no podemos garantizar que el precio de referencia refleje el precio de mercado vigente en un momento determinado.
Ο ορισμός μιας επιλογής έχει ως αποτέλεσμα την πλήρη ανανέωση της σελίδας.