Formulé avec Dandrilys®, cliniquement testé pour aider à réduire la production de sébum du cuir chevelu après 4 utilisations.¹
Un mélange de menthe stimulante et d'arbre à thé purifiant crée un reset clarifiant
Nettoie et clarifie les accumulations du cuir chevelu et les cheveux gras
Formulé avec Dandrilys®, cliniquement testé pour aider à réduire la production de sébum du cuir chevelu après 4 utilisations.¹
Un mélange de menthe stimulante avec arbre à thé purifiant crée un reset clarifiant
84% Bio-based formule (shampooing); 94% Bio-based formule (après-shampooing)
Sans parabènes, phtalates, silicones, SLS & SLES
Fabriqué aux USA, cruelty-free, sûr pour les couleurs
Emballage entièrement recyclable et fabriqué avec du matériau PCR (recyclé post-consommation)
¹ Tous les ingrédients déposés en tant que marques sont référencés sous licence ; les points de copie reflètent les affirmations approuvées par le fournisseur.
Mouillez bien les cheveux, puis massez le shampooing sur le cuir chevelu pour créer une mousse riche et abondante.
Concentrez-vous sur le dessus, les côtés et l'arrière du cuir chevelu.
Continuez à masser pendant 2 minutes pour éliminer saleté et résidus.
Rincez soigneusement à l'eau tiède.
Appliquez le revitalisant sur cheveux mouillés des longueurs aux pointes. Frisottis ? Appliquez des racines aux pointes.
Répartissez uniformément avec vos doigts ou un peigne à dents larges.
Laissez poser 1 à 5 minutes.
Rincez soigneusement à l'eau tiède.
Astuce de pro : Si vous aimez cette formule, essayez notre Kitsch Clarifying Tea Tree & Mint Solid Shampoo & Conditioner Combo approuvé TSA, parfait pour les voyages et les sacs de sport.
Dandrilys®
Testé cliniquement et prouvé pour aider à équilibrer le microbiome du cuir chevelu et à réduire le caractère gras, Dandrilys® aide à rajeunir et à rééquilibrer votre cuir chevelu pour une santé capillaire globale.
Arbre à thé et menthe
Un mélange rafraîchissant d'arbre à thé et de menthe poivrée procure une sensation de propreté et de clarté.
Ingrédients
Shampooing :
Eau, Sodium C14-16 Olefin Sulfonate, Sodium Cocoyl Isethionate, Cocamidopropyl Betaine, Propanediol, Cocamide MIPA, Glycérine, Glycol Distearate, Coco-Glucoside, Parfum, Sodium Methyl Cocoyl Taurate, Polyquaternium-7, Extrait d'écorce de Ziziphus Joazeiro, Huile de graines d'Helianthus Annuus (Tournesol), Chlorure de Guar Hydroxypropyltrimonium, Chlorure de Cetrimonium, Phénoxyéthanol, Alcool benzylique, Gluconolactone, Sorbate de potassium, Benzoate de sodium, Acide citrique, Sulfate de sodium, Chlorure de sodium, Huile de feuilles de Melaleuca Alternifolia (Arbre à thé), Huile de Mentha Piperita (Menthe poivrée), Menthol
Après-shampooing :
Eau, Alcool cétéarylique, Glycérine, Béhentrimonium Chlorure de cétrimonium, méthosulfate de béhentrimonium, huile de noix de coco (Cocos nucifera), huile de tournesol (Helianthus annuus), parfum, alcool cétylique, alcanes de noix de coco, extrait d'écorce de jujubier (Ziziphus joazeiro), polyquaternium-7, oxyde de stéaramine, panthénol, coco-caprylate/caprate, chlorure de cétrimonium, chlorure de guar hydroxypropyltrimonium, propanediol, phénoxyéthanol, alcool benzylique, acide citrique, huile essentielle d'arbre à thé (Melaleuca alternifolia), huile essentielle de menthe poivrée (Mentha piperita), menthol
{
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 = `Ensemble shampooing et après-shampooing clarifiant au tea tree et à la menthe`;
let bundleHandle = `ensemble-shampooing-et-apres-shampooing-clarifiant-au-tea-tree-et-a-la-menthe`;
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');
});
}
}">
Fréquemment achetés ensemble
+
Total price:
Ensemble shampooing et après-shampooing clarifiant au tea tree et à la menthe
$ 654.00
$ 654.00
Crème lissante pour séchage à l’air libre
$ 351.00
$ 351.00
Huile fortifiante pour le cuir chevelu et les cheveux au romarin avec biotine
$ 351.00
$ 351.00
{
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 = `Ensemble shampooing et après-shampooing clarifiant au tea tree et à la menthe`;
let bundleHandle = `ensemble-shampooing-et-apres-shampooing-clarifiant-au-tea-tree-et-a-la-menthe`;
let bundleCount = 3;
let bundleQty = 1;
let index = 0;
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 => {
this.$refs.addToCartButton.textContent = 'Ajouter la sélection au panier';
this.$dispatch('update-cart', { cart: response });
this.$dispatch('toggle-cart-drawer');
});
}
}">
Fréquemment achetés ensemble
Ensemble shampooing et après-shampooing clarifiant au tea tree et à la menthe
$ 654.00
$ 654.00
+
Crème lissante pour séchage à l’air libre
$ 351.00
$ 351.00
+
Huile fortifiante pour le cuir chevelu et les cheveux au romarin avec biotine
Ensemble shampooing et après-shampooing clarifiant au tea tree et à la menthe
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">
4 raisons d'ajouter le shampooing clarifiant Kitsch au tea tree et à la menthe à votre routine
1. Nettoie en profondeur
Formulé avec du Dandrilys®, testé cliniquement pour réduire l'excès de sébum du cuir chevelu et des cheveux, il laisse les cheveux frais et clarifiés.1
2. Équilibre le microbiome du cuir chevelu
Enrichi en Dandrilys®, testé cliniquement pour aider à équilibrer le microbiome du cuir chevelu, il contribue à maintenir un cuir chevelu sain en seulement 4 utilisations.1
3. Garde les cheveux plus propres, plus longtemps
L'avantage de Dandrilys® est qu'en aidant à réguler le sébum, vos cheveux restent frais et plus propres entre deux lavages.1
4. Nettoyage en profondeur
Un mélange de menthe poivrée revigorante et d'arbre à thé purifiant aide à nettoyer en profondeur le cuir chevelu et les cheveux pour une santé optimale.
I’m usually all about the Kitsch shampoo bars, but this liquid Tea Tree & Mint version is just as amazing! Same refreshing clean and clarity, now with a satisfying lather. My scalp feels great and my hair feels so light and fresh!
BB
Britany B.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 months ago
5/5 Stars
I’ve been using the Kitsch Tea Tree & Mint Shampoo and Conditioner, and I am genuinely impressed! My hair is 4C, fine, and low-porosity, so finding products that cleanse without stripping my hair can be challenging. The shampoo leaves my scalp feeling incredibly clean and refreshed thanks to the cooling mint sensation, while the conditioner provides great moisture without weighing my hair down.
After a few weeks of use, I’ve noticed less buildup, improved scalp health, and my hair feels softer and more manageable. I also love that the bars last a long time and are eco-friendly. The fresh mint scent is an added bonus and makes wash day feel like a spa experience.
If you’re looking for a shampoo and conditioner that promotes a healthy scalp, leaves your hair feeling clean, and provides lightweight moisture, I definitely recommend giving Kitsch Tea Tree & Mint a try!
E
Erika
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Clarifying Conditioner
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.
A
Angela
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Tea tree and mint shampoo
This clarifying tea tree and mint liquid shampoo and 12 oz was just perfect for travel size the conditioner is a little strong so if you like strong tea tree oil smell you'll definitely fall in love with this. No
JO
JULIE O.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Clarifying Tea Tree and Mint Shampoo
Super clean hair without the strong smell of tea tree. Subtle, calming fragrance and instant softness.
E
Erika
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Clarifying Shampoo
I added the Clarifying tea tree and mint shampoo into my normal routine. I did notice results over time as I continued to use the product. I noticed that I did not have to wash my hair as frequently and I also noticed that my hair felt a lot cleaner. There was less and less previous build up as I continued to use the product. It works great paired with the conditioner as well.
RG
Randi G.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
6 months ago
Love the liquid option
I fell in love with the bars. When they announced liquid options, I couldn't wait to try. And I love them! You don't need much at all, and it smells and feels amazing.
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.
AS
Annette S.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
7 months ago
First time!!
Used this for the first time this morning..smells great and felt good on my scalp...
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.
Loading...
Loading...
Frequently Asked Questions
Notre formule est enrichie en Dandrilys®, testé cliniquement pour équilibrer le microbiome du cuir chevelu et réduire l'excès de sébum après seulement 4 utilisations.
Oui ! Découvrez une hydratation légère sans accumulation de sébum. Dandrilys® a été testé cliniquement pour réduire l'excès de sébum après seulement 4 utilisations. Il peut également aider à réduire l'apparence des pellicules visibles, grâce à sa capacité à éliminer les accumulations de sébum sur le cuir chevelu.
Absolument, il est sans danger pour la couleur, sans parabènes, phtalates, silicones, SLS et SLES, il est donc doux pour vos cheveux tout en préservant l'éclat de votre couleur.
Oui ! Le flacon est fabriqué à partir de matériaux PCR (recyclés après consommation) et est entièrement recyclable, ce qui est bon pour vos cheveux et pour la planète.
Nos nouveaux produits liquides sont conçus pour ceux qui préfèrent une expérience traditionnelle et facile à faire mousser, tout en accordant de l'importance à la durabilité. Nous utilisons des bouteilles en plastique PCR (post-consommation recyclé) afin de respecter notre engagement en faveur de la réduction des déchets, et les bouteilles elles-mêmes sont recyclables.
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.