Il primo shampoo solido viola al mondo con biotina!
Sicuro per bionde, capelli bianchi e grigi: trattati, evidenziati e naturali.
PH bilanciato e sicuro per i capelli trattati con il colore
Neutralizza l'effetto ottone indesiderato e sfumature gialle.
Arricchito con biotina per aumentare la lucentezza, ridurre l'opacità e rafforzare i tuoi capelli.
Goditi capelli biondi più lisci, forti e brillanti già dal primo utilizzo!
Bilanciato nel pH e sicuro per capelli colorati.
Senza parabeni, ftalati, siliconi, solfati e fragranze artificiali.
Fatto negli Stati Uniti con ingredienti di qualità.
CERTIFICATO 4OCEAN: Per ogni shampoo o barra di balsamo, 4ocean rimuove l'equivalente di una bottiglia di plastica per shampoo dagli oceani, fiumi e coste del mondo.
Come neutralizzare l'effetto ottone indesiderato:Dopo lo shampoo, inumidire la barretta e applicarla dalle lunghezze alle punte per una tonificazione uniforme.
Pettinare i capelli per districarli; lasciare in posa per 1-3 minuti per l'intensità tonificante desiderata.
Risciacquare, ripetere o usare come balsamo leave-in.
Suggerimento:Da abbinare alla nostra Beauty Bar Bag.
Biotina
Potenzia il tuo rituale di cura dei capelli con la Biotina per favorire capelli più forti, dall'aspetto più spesso e con una lucentezza setosa e senza crespo.
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.
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.
Ingredienti
Alcool cetearilico, cloruro di behentrimonio, olio di cocco (Cocos Nucifera), olio di semi di girasole (Helianthus Annuus), burro di karité (Butyrospermum Parkii), lauril laurato, profumo naturale*, cloruro di guar idrossipropilato, biotina (vitamina B7), viola n. 2 (CI 60730).
*Profumo naturale derivato da piante. *.
Privo di parabeni, ftalati, siliconi, solfati e profumi artificiali.
Fragranza: Fiori d'arancio e gelsomino
Siamo certificati Leaping Bunny! Il logo Leaping Bunny è l'unico simbolo riconosciuto a livello internazionale che garantisce ai consumatori che non sono stati effettuati nuovi test sugli animali durante lo sviluppo di qualsiasi prodotto che lo mostri.
{
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 = `Balsamo solido tonificante viola`;
let bundleHandle = `purple-toning-solid-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');
});
}
}">
Acquistati spesso insieme
+
Total price:
Balsamo solido tonificante viola
$16.00$16.00
Shampoo solido Detox
$16.00$16.00
Shampoo solido tonificante viola per capelli colorati e grigi
$16.00$16.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 = `Balsamo solido tonificante viola`;
let bundleHandle = `purple-toning-solid-conditioner`;
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 = 'Aggiungi la selezione al carrello';
this.$dispatch('update-cart', { cart: response });
this.$dispatch('toggle-cart-drawer');
});
}
}">
Acquistati spesso insieme
Balsamo solido tonificante viola
$16.00$16.00
+
Shampoo solido Detox
$16.00$16.00
+
Shampoo solido tonificante viola per capelli colorati e grigi
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">
Perché milioni di donne passano allo shampoo bar viola
1. neutralizzano i toni ottoniani
Il colore viola annulla il giallo, ecco perché lo shampoo viola viene utilizzato per neutralizzare i toni gialli/brassi nei capelli biondi e rossi, per rivelare un colore più luminoso e sano.
2. rafforzamento
Arricchito con biotina per aumentare la lucentezza, ridurre l'opacità e rafforzare i capelli. Basta un solo utilizzo per ottenere un colore più liscio, più forte e più vibrante.
3. aggiungere lucentezza
Gli shampoo viola sono studiati per aiutare a potenziare i riflessi naturali e farli risplendere in modo sano.
4. Primo nel suo genere
Lo Shampoo e il Balsamo solidi tonificanti alla biotina viola di Kitsch sono i primi nel loro genere ad essere arricchiti con biotina per aumentare la lucentezza, ridurre l'opacità e rafforzare i capelli.
4.8
Rated 4.8 out of 5 stars
Based on 697 reviews
Reviews Summary
Generated by AI from 100 most recent customer reviews
Last updated 1 year ago
Customers say this conditioner bar makes their hair soft and manageable. Many reviews mention easy detangling and reduced frizz. While some note it dissolves quickly during use, most appreciate how their hair feels smoother and shinier after use. The scent receives positive feedback from users.
Product Standouts Great Ingredients, Neutralizes Brassiness, Softens Hair
Rated 5 out of 5 stars
2 years ago
Love it!
I have to admit that I was very skeptical about trying this, especially because I have very thick coarse hair. I don't think I'll go back to regular shampoo or conditioner at this point. The only downside is that it's way too expensive for how much you get. If I wash my hair more than once a week I don't think I would be able to afford to use it all the time. Lucky for me I only wash my hair once a week! This leaves my hair soooo soft!!
It is the best I have come to discover. I have used several different shampoos
SG
Sharon G.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 years ago
Great Purple Biotin Product
My silver hair looks great and is so manageable. It’s not dry and fly-away any more. I also love the complements I’ve been getting on how shiny is appears.
JA
Jamie A.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
I LOVE these bars!
I use the purple duo every time I wash my natural salt and pepper hair. My hair is in better shape than it has been in the last 40+ years. My hair stylist can't believe how healthy my hair is. It's not course or wiry, it's smooth and soft. She refuses to let me cut it. I love this purple duo, my hair is growing like a weed and is so thick now. When people ask, I tell them all about Kitsch. Thank You!!!!!
I have tried other conditioner bars before: they were hard to apply and the results weren't satisfying. This one is easy to apply and I like how my hair feels and looks like. I have very dry hair that has suffered from dying it blonde but it definitely looks a lot better since I started using the shampoo and conditioner bars of this brand.
Product Standouts Neutralizes Brassiness , Moisturizes, Adds Shine, Great Ingredients, Conditions Well
Rated 5 out of 5 stars
2 years ago
Love your hair..
I use both the purple shampoo and conditioner.. it keeps my hair smooth and gets the yellow out. I alternate with castor oil shampoo and coconut oil conditioner to keep my hair from drying out. I also like the scalp oil prewash treatment once a month. Love these products
DF
Desiree F.
Verified Buyer
I recommend this product
Hair Concern Sensitive Scalp
Product Standouts Strengthens, Boosts Shine
Rated 5 out of 5 stars
2 years ago
Gooood
I love it that it doesn’t make my hair limp. Easy to use, nice smell. My hair is bouncy.
J
Jodi
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Love this stuff
My hair is clean & soft, my purple looks great. I'll keep using this, my only issue is my conditioners runs out before my shampoo.
I'll keep buying, my hair never felt so good. Between under active thyroid & this shampoo, my hair is being thick. It's so soft, I'm gonna buy a new shower cap next.
Product Standouts Great Ingredients, Neutralizes Brassiness, Softens Hair
Rated 5 out of 5 stars
1 year ago
blue conditioner
Loved the conditioner bar- gentle on the hair and scalp, great scent, easy to use , lasts a long time .
Great buy for the price . And you have great ingredients and control of the brassiness
ML
Michelle L.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 years ago
best conditioner by far
I thought my other conditioner bar was good until i found this one. It makes my hair soo soft and being blond has its struggles with finding a good conditioner that helps my hair not feel like straw. The Purple toning helps keep the brass out of my blond hair. I use the shampoo and condition bar together and am in love with them!!
Loading...
Loading...
Frequently Asked Questions
A seconda del tipo di capelli e della frequenza con cui li si lava, alcuni vedono i risultati immediatamente, mentre altri possono iniziare a vederli dopo qualche settimana.
Sì, ma non fidatevi della nostra parola! Date un'occhiata alle migliaia di recensioni a 5 stelle di persone di tutte le età che utilizzano le nostre barrette di shampoo e balsamo.
Se vi state chiedendo quale sia la barretta giusta per voi, dite al nostro team di assistenza qual è il vostro tipo di capelli e vi indirizzeremo nella giusta direzione.
I capelli di ognuno di noi sono diversi, quindi è necessario fare un po' di tentativi ed errori finché non si scopre cosa funziona meglio per voi. Iniziate con una quantità sufficiente per pulire le radici e il cuoio capelluto fino alle punte dei capelli. Se non vedete risultati, vi consigliamo di applicarne di più durante il lavaggio.
Quando si sottoscrive un abbonamento, l'addebito avviene automaticamente sulla carta di credito, in modo da poterlo impostare e dimenticare. È possibile annullare l'abbonamento in qualsiasi momento.
Sì. Proteggere la vostra privacy è una delle nostre principali priorità. Utilizziamo una serie di misure di sicurezza e metodi standard del settore per mantenere al sicuro le vostre informazioni personali. Tutti gli ordini e le informazioni personali sono gestiti da un server sicuro. Dettagli come il numero di carta di credito, il nome e l'indirizzo vengono trasmessi attraverso la tecnologia Secure Socket Layer (SSL).
I tempi di consegna dipendono dal metodo di spedizione selezionato al momento del pagamento. La maggior parte degli ordini viene spedita il giorno stesso! L'elaborazione dell'ordine richiede fino a 2 giorni lavorativi. Gli ordini vengono elaborati dal lunedì al venerdì, esclusi i giorni festivi. Una volta spedito l'ordine, verrà inviata un'e-mail di conferma con il numero di tracciabilità del corriere. In caso di smarrimento del pacco, contattare l'assistenza Kitsch.
Vi consigliamo di sottoscrivere un abbonamento, in modo da poter risparmiare e ricevere i prodotti direttamente a casa vostra con spedizione gratuita. In questo modo, non rimarrete mai senza!
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.