Una routine di detox per il cuoio capelluto in 3 fasi — elimina gli accumuli, poi ripristina in profondità con l'idratazione del Burro di Karité
Shampoo Solido Detox + Balsamo solido idratante al burro di karitè di Kitsch + Spazzola rigenerante per cuoio capelluto terracotta
Risparmia il 30% rispetto all'acquisto separato (Valore $40 → $28)
Il 96% degli utenti ha riscontrato capelli profondamente detersi e privi di accumuli*
Panetti sicuri sui capelli colorati, senza solfati, cruelty-free e senza plastica
Una routine completa dal detox all'idratazione — deterge alla radice, poi ripristina in profondità
GLDA + Vitamina C colpiscono l'accumulo di minerali dell'acqua dura alla radice
Carbone attivo + Aceto di mele eliminano il sebo e i residui di prodotto dal cuoio capelluto
La Spazzola rigenerante per cuoio capelluto terracotta favorisce una penetrazione più profonda del prodotto e stimola la circolazione per risultati reali
Il Balsamo solido idratante al burro di karitè di Kitsch idrata ricamente e ripristina idratazione, lucentezza e splendore dopo il detox
Sigilla l'idratazione essenziale per domare il crespo e lasciare le lunghezze morbide e da toccare
Sicuro sui capelli colorati, a pH bilanciato — privo di solfati, parabeni, siliconi e ftalati
Panetti senza plastica + Certificazione 4Ocean — ogni acquisto di un panetto rimuove la plastica dall'oceano
Vegano, cruelty-free, certificato Leaping Bunny, Made in the USA
1x Shampoo Solido Detox
1x Balsamo solido idratante al burro di karitè di Kitsch
1x Spazzola rigenerante per cuoio capelluto terracotta
Inizia a secco (opzionale ma consigliato): Prima della doccia, utilizza la Spazzola rigenerante per cuoio capelluto terracotta con movimenti circolari per 2–3 minuti per sollevare gli accumuli secchi e stimolare il flusso sanguigno al cuoio capelluto.
Shampoo: Inumidire i capelli completamente. Strofinare lo Shampoo Solido Detox tra i palmi o direttamente sul cuoio capelluto per attivare la schiuma. Utilizzare la Spazzola rigenerante per cuoio capelluto terracotta per lavorare la schiuma sul cuoio capelluto con movimenti circolari per 60–90 secondi. Risciacquare abbondantemente.
Balsamo: Inumidire il Balsamo solido idratante al burro di karitè di Kitsch con acqua tiepida e massaggiare da metà lunghezza fino alle punte. Lasciare assorbire per 1–2 minuti, quindi risciacquare e districare come di consueto. Per un'idratazione extra, lasciare in posa più a lungo prima di risciacquare.
Finitura: Procedere con lo styling abituale. Utilizzare il trio completo 1–2 volte a settimana per un reset chiarificante, o come parte della normale routine.
Vitamin C
Refreshes hair by reducing the look and feel of chlorine residue from pool or tap water.
Activated Charcoal
Absorbs excess oil and lifts away buildup from both the scalp and strands.
Burro di Karité
Arricchite la vostra routine con il Burro di Karité ultra-idratante che aiuta a lenire il cuoio capelluto, a rinforzare le ciocche e a ridurre la rottura per capelli lucidi e splendenti.
Olio di cocco
L'olio di cocco trattiene l'idratazione e aiuta a idratare profondamente le ciocche dall'interno e a ridurre la rottura per capelli più forti, lucidi e dall'aspetto più sano.
Ingredienti
Shampoo Solido Detox: Sodio cocoyl isetionato, Glicerina, Sodio metil cocoyl taurato, Acqua, Olio di ricino idrogenato, Fragranza (Profumo), Cloruro di guar idrossipropiltrimonio, Diacetato di glutammato tetrasodico, Ascorbato di sodio, Pentilen glicole, Polvere di carbone, Metil diisopropil propionammide, Aceto, Idrossiisoesil 3-cicloesene carbossialdeide, Alfa-isometil ionone, Isoeugenolo, Acetato di isoeugenile, Tetrametil acetiloctaidronaftaline, Vanillina.
Balsamo solido idratante al burro di karitè di Kitsch: Alcol cetearilico, Cloruro di beentrimonio, Olio di Cocos Nucifera (cocco), Olio di semi di Helianthus Annuus (girasole), Butyrospermum Parkii (burro di karité), Lauril laurato, Fragranza naturale*, Cloruro di guar idrossipropiltrimonio, Mica, Biossido di titanio (forma non nanoparticellare), Ossido di ferro. *Fragranza naturale derivata da piante. Colore naturale. Privo di parabeni, ftalati, siliconi, solfati e fragranze artificiali.
We are Leaping Bunny certified! The Leaping Bunny Logo is the only internationally recognized symbol guaranteeing consumers that no new animal tests were used in the development of any product displaying it.
{
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 = `Trio Anti-Residui`;
let bundleHandle = `trio-anti-residui`;
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');
});
}
}">
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">
Lo Shampoo Solido Detox utilizza GLDA (un agente chelante di nuova generazione) e Vitamina C per dissolvere i minerali dell'acqua dura e il cloro que i normali shampoo non riescono a rimuovere. È la pulizia profonda che i tuoi capelli stavano aspettando.
2. Ripristinare e nutrire dopo il detox
La maggior parte dei balsami riaggiunge proprio i residui che hai appena lavato via — siliconi pesanti, solfati, agenti di rivestimento. Il Balsamo solido idratante al burro di karitè di Kitsch idrata profondamente con Burro di Karité e Olio di Cocco, senza siliconi e solfati, ripristinando così l'idratazione e la lucentezza dei capelli senza compromettere la detersione.
3. Lavorarlo più in profondità
La Spazzola rigenerante per cuoio capelluto terracotta non è opzionale — è il moltiplicatore. Le setole multilivello massaggiano il prodotto in ogni strato, stimolano la circorlazione e aiutano il cuoio capelluto ad assorbire gli ingredienti in modo più efficace.
4. Il tutto è più grande della somma delle parti
Tutti e tre i prodotti risolvono lo stesso problema — accumulo sul cuoio capelluto, grassezza e opacità. Sono stati formulati per lavorare insieme. Questo non è marketing — questa è la logica della formulazione.
I’d seen the Kitsch ads on social media and wondered if it was another fad product that promises the moon but doesn’t deliver. Or worse, a complete scam from a foreign company that pretends to be local. However my curiosity wouldn’t go away so I ordered a castor oil shampoo bar. The moment I started rubbing it into my hair I fell in love! The light musky earthy scent, the AMAZING lather, the kind of NATURAL clean it gave my hair and the tender treatment of my over-processed scalp. Not to mention the incredible LIFE or sprung into my old, dyed, and thinning tresses. I will NEVER use bottled shampoo again. Ladies (and gents) try Kitsch! Your hair will never be the same.
M
Mary
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
5 months ago
I love this brush!
I like all my Kitsch hair brushes very much (and I have most of them) but this is my favorite! I have plaque psoriasis on my scalp and long hair which I am unwilling to cut at this stage and this brush is a miracle. It has a short handle which really allows you to gently “scrub” your scalp and loosen up whatever is ready to slough off but is gentle enough not to increase the irritation/inflammation. I wish you’d come out with more colors because my dad has the same scalp issues that I do and I really want to buy it in black or blue for him.
Amazing conditioner. Hydrates without weighing down my hair and smells... Just... AMAZING!
ABSOLUTELY love this conditioner. It has restored my dry dull hair to healthy, soft light fluffy locks! Thank you KITSCH! I now look forward to hair wash days (and that's a big deal!).
V
Violet48x
I recommend this product
Rated 5 out of 5 stars
3 months ago
This feels amazing!
I think I could use this on my scalp all day every day.
I'm battling hair thinning, so I've started oil treatments and scalp massages. My fingers and various brushes and combs have ended up tangling my hair or just not really being effective. This brush seems to glide between rows of hair and stimulate my scalp better than anything I've used. I really like it.
JH
Jourdan H.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Never going back to salon products
Absolutely LOVE the castor oil and shea butter combo! My hair is so healthy and shiny since switching to Kitsch 11 months ago. I have tried all the kitsch bars and this combo is my favorite for my hair. So so good.
AC
Amy C.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
5 months ago
Best brush Ever
This is the absolute best thing ever for my natural wavy hair! It’s like getting a little massage every morning and night. I don’t recommend using on wet hair it seems to pull and not get all the tangles. As my dry brush I highly recommend and I love using it daily!!!
TS
Tonya S.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 years ago
Kitsch a blessing
I love this product. I am so glad I tried it and it works. I live in Louisiana and it is hot here most of the year so I wear my hair up most of the time. I noticed I was getting bald spots on my front right side and when I researched what to do this product Kitsch kept showing up. So I tried it and it is working & I am so happy. I love the way my hair feels also now. I am 51 and wear a hormone patch well no hormones makes your hair dry, brittle and breakage is awful But not now! I don’t have to use any other products now either I only use the the bar shampoo & bar conditioner now. I have photo of before & after from Jan. 29-March17/23 if I can add them I will. Thank you Kitsch for a product that works. I am ordering more for sure
I love the smell and quality of the kitsch products, especially this conditioner! So far., I haven’t bought a product I haven’t loved :) they also make for GREAT gifts at fair prices. 10/10 I recommend !!! I’m planning on trying the rice shampoo and conditioner next to help with hair thinning / loss (hair loss is not related to these products…I’m a mom of 2 toddlers lol). The products have made a huge difference in how clean my hair feels, how soft it is, and how good I feel overall inside and out for using this brand. Plus, it eases my anxiety knowing my shower isn’t cluttered with bottles and plastic anymore (except for baby shampoo-which we will be swapping out very soon once it’s empty and plan on using the kitsch products for our sons as well).
Product Standouts Conditions Well, Softens Hair, Good For Dry Hair, Smooths, Moisturizes
Rated 5 out of 5 stars
2 years ago
Best hair product I've ever used
I have thick highlighted hair that has three textures: straight, frizzy, and curly. It has a mind of its own. I've tried a lot of products that either don't control the frizz,, are drying, or are too heavy. As I've aged, my hair has also started breaking off more. The rice protein shampoo and she butter conditioner have worked miracles. I also love to use the coconut and hair mask options on occasion for extra conditioning. Now my hair is silky, smooth, and so much healthier. The bar option was surprisingly great - lathers and easy to use. Big fan of kitsch!
A chiunque debba fare i conti con accumuli sul cuoio capelluto, grassezza, danni da acqua dura o quella sensazione di capelli appesantiti e opachi tra un lavaggio e l'altro. Se il tuo normale shampoo non riesce a fare effetto, questo trio è stato creato apposta per te.
1–2 volte a settimana come trattamento chiarificante è l'ideale per la maggior parte delle persone. Se vivi in un'area con acqua dura o usi molti prodotti per lo styling, puoi usarlo più frequentemente. È sicuro per l'uso regolare — senza solfati e a pH bilanciato.
No, il Balsamo solido idratante al burro di karitè di Kitsch è privo di siliconi e solfati, quindi idrata profondamente e ripristina l'idratazione senza reintrodurre i residui di rivestimento che lo shampoo ha appena rimosso. Idrata con Burro di Karité e Olio di Cocco, non con polimeri pesanti o siliconi che appesantiscono i capelli.
Assolutamente sì. La spazzola funziona con qualsiasi shampoo o trattamento per il cuoio capelluto. Ma è particolarmente efficace con lo Shampoo Solido Detox, aiutando la formula a penetrare più a fondo e a fare più schiuma su tutto il cuoio capelluto.
Sì. Entrambi i prodotti sono a pH bilanciato e sicuri sul colore. L'azione chelante dello Shampoo Solido Detox colpisce l'accumulo di minerali senza scaricare il colore.
La Spazzola rigenerante per cuoio capelluto terracotta è progettata con setole in nylon ultra-morbide adatte ai cuoi capelluti sensibili. Inizia con una leggera pressione e aumenta da lì. L'ingrediente Dandrilys® del Balsamo solido idratante al burro di karitè di Kitsch è testato per l'equilibrio del microbioma del cuoio capelluto — delicato per definizione.
Sì. Tutti e tre i prodotti sono vegani e cruelty-free. Entrambi i panetti sono certificati Leaping Bunny.
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.