Formulado con Dandrilys® clínicamente probado para ayudar a reducir la oleosidad del cuero cabelludo después de 4 usos.¹
Una mezcla de menta revitalizante con árbol de té purificante crea un reinicio clarificante
Hidratación ligera sin acumulación
Formulado con Dandrilys® clínicamente probado para ayudar a reducir la oleosidad del cuero cabelludo después de 4 usos.¹
Una mezcla de menta revitalizante con árbol de té purificante crea un reinicio clarificante
94% Bio-based fórmula
Libre de parabenos, ftalatos, siliconas, SLS y SLES
Hecho en USA, cruelty-free, seguro para color
Envase totalmente reciclable y fabricado con material PCR (post-consumer recycled)
¹Todos los ingredientes registrados mencionados bajo licencia; los puntos de texto reflejan las afirmaciones aprobadas por el proveedor.
Aplica sobre el cabello húmedo de medios a puntas. ¿Tienes frizz? Pasa de raíces a puntas.
Usa tus dedos o un peine de dientes anchos para distribuir de manera uniforme.
Deja actuar de 1 a 5 minutos.
Enjuaga completamente con agua tibia.
Para mejores resultados, combínalo con Champú Aclarador de Árbol de Té y Menta Kitsch (se vende por separado).
Consejo Profesional: Si te encanta esta fórmula, prueba nuestro práctico y aprobado por la TSA Acondicionador en Barra Aclarador de Árbol de Té y Menta Kitsch - ¡perfecto para viajes y bolsas de gimnasio!
Dandrilys®
Probado clínicamente y demostrado para ayudar a equilibrar el microbioma del cuero cabelludo y reducir la grasa, Dandrilys® ayuda a rejuvenecer y reequilibrar el cuero cabelludo para una salud capilar general.
Árbol del té y menta
La refrescante mezcla de árbol del té y menta proporciona una sensación de limpieza y claridad.
Ingredientes
Agua, Sulfonato de olefina sódica C14-16, Isetionato de cocoilo sódico, Cocamidopropil betaína, Propanodiol, Cocamida MIPA, Glicerina, Diestearato de glicol, Cocoglucósido, Fragancia (Perfume), Taurato de metil cocoilo sódico, Policuaternio-7, Extracto de corteza de Ziziphus Joazeiro, Aceite de semilla de Helianthus Annuus (Girasol), Cloruro de guar hidroxipropiltrimonio, Cloruro de cetrimonio, Fenoxietanol, Alcohol bencílico, Gluconolactona, Sorbato de potasio, Benzoato de sodio, Ácido cítrico, Sulfato de sodio, Cloruro de sodio, Aceite de hoja de Melaleuca Alternifolia (Árbol del té), Aceite de Mentha Piperita (Menta), Mentol
{
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 = `Acondicionador clarificante con árbol del té y menta`;
let bundleHandle = `tea-tree-mint-clarifying-conditioner`;
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');
});
}
}">
Comprados juntos frecuentemente
+
Total price:
Acondicionador clarificante con árbol del té y menta
$ 374.00
$ 374.00
Champú clarificante con árbol del té y menta
$ 374.00
$ 374.00
Acondicionador clarificante con árbol del té y menta
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">
4 razones para añadir el acondicionador clarificante Kitsch con árbol de té y menta a tu rutina
1. Limpia en profundidad
Formulado con Dandrilys®, clínicamente probado para reducir el exceso de grasa del cuero cabelludo y el cabello, deja el cabello fresco y clarificado.1
2. Equilibra la microbiota del cuero cabelludo
Con Dandrilys®, clínicamente probado para ayudar a equilibrar la microbiota del cuero cabelludo, ayuda a mantener un entorno saludable en el cuero cabelludo en solo 4 usos.1
3. Mantiene el cabello más limpio durante más tiempo
La ventaja de Dandrilys® es que, al ayudar a regular la grasa, tu cabello se mantiene fresco y más limpio entre lavados.1
4. Limpieza profunda
Una mezcla de menta vigorizante y árbol del té purificante ayuda a limpiar en profundidad el cuero cabelludo y el cabello.
The Clarifying tea tree and mint conditioner smells absolutely great and leaves my hair feeling smooth and clean. I noticed that the more I used it the more my hair felt cleaner and removed previous build up from other hair products. I have enjoyed using the product and will continue to include it in my routine.
J
Jennifer
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Amazing Conditioner
This is such a great conditioner, I highly recommend it. The smell is incredible. It feels so soft and luxurious. It left my hair feeling soft and nourished without being heavy or weighted down. It rinsed out easily so I did not have any have residue.
CC
Clare C.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
5 months ago
Amazing!
Love, love, love this! Not only does my hair love the shampoo and conditioner combo, my nose loves it too. It feels great and smells great. I love the feel of the tingly sensation too. Even the slim design of the bottles is great in a smaller shower.
Y
Yeisy
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 months ago
Great combo for flakey/oily scalp
I need significantly improvement on using this conditioner and combination with the shampoo! I doesn't feel overly stripping but definitely helps control oil and remove buildup.
DV
Dahiana V.
I recommend this product
Rated 5 out of 5 stars
2 months ago
Exactly what oily scalps need.
This is the first conditioner that hydrates my hair without making my scalp greasy. The tea tree + mint combo soothes irritation and keeps my scalp feeling fresh for days. My hair is soft, detangled, and lightweight. No buildup, no itch. Perfect match for the shampoo.
C
Cirlene
I recommend this product
Rated 5 out of 5 stars
2 months ago
Love this !
The Tea Tree & Mint Clarifying Conditioner feels lightweight yet super nourishing. It leaves my hair soft, refreshed, and easy to detangle without feeling heavy, while the mint gives a fresh, cooling sensation to the scalp.
EF
Edna-Mae F.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
4 months ago
Great product!
I love this conditioner! It smells amazing and leaves my hair feeling very soft and clean. I use it every couple of weeks. I am alternating washing with my rice water shampoo and conditioner for a week and then the next week using the rosemary biotin shampoo and conditioner. I use a color tinting conditioner once a week for my pink/purple hair. By using this shampoo and conditioner every couple of weeks, I don’t have any protein buildup ever! As I have very thin, fine hair, this is a staple to my hair routine.
ML
Melissa L.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Great clarifying condioner
This conditioner left my hair soft, smooth, and easy to detangle. It rinsed out very easily wirh no build up left. I would highly recommend this condoned by Kitsch
NG
Nicole G.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Minty Clean & Silky Smooth!
As a big fan of the Kitsch conditioner bars, I was definitely curious about the liquid version—and it did not disappoint! It leaves my hair soft, detangled, and fresh without feeling weighed down. That cool minty finish? Instant spa vibes!
LB
Lornalie b.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Obsessed!
This conditioner is everythingggg! I love using it. My hair feels really smooth and fresh. ❤️
Loading...
Loading...
Frequently Asked Questions
Nuestra fórmula contiene Dandrilys®, clínicamente probado para equilibrar el microbioma del cuero cabelludo y reducir la grasa después de solo 4 usos.
¡Sí! Disfruta de una hidratación ligera sin acumulación de residuos. Dandrilys® ha sido clínicamente probado para reducir la grasa después de solo 4 usos. También puede ayudar a reducir la aparición de escamas visibles, gracias a su capacidad para eliminar la acumulación de residuos en el cuero cabelludo.
Por supuesto, es seguro para el color, no contiene parabenos, ftalatos, siliconas, SLS ni SLES, por lo que es suave con el cabello y mantiene el color vibrante.
¡Sí! La botella está fabricada con material PCR (reciclado postconsumo) y es totalmente reciclable, lo que es bueno para tu cabello y para el planeta.
Nuestros nuevos líquidos están diseñados para aquellos que prefieren una experiencia tradicional y fácil de enjabonar, sin dejar de valorar la sostenibilidad. Utilizamos botellas de plástico PCR (reciclado postconsumo) para mantener nuestro compromiso con la reducción de residuos, y las propias botellas son reciclables.
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.
Ο ορισμός μιας επιλογής έχει ως αποτέλεσμα την πλήρη ανανέωση της σελίδας.