Angereichert mitBiotin für mehr Glanz, weniger Mattheit und Stärkungdein Haar
Freuen Sie sich über glatteres, kräftigeres und lebendigeres blondes Haarnach nur einmaligem Gebrauch!
PH ausgeglichenUndsicher für coloriertes Haar
Frei vonParabene, Phthalate, Silikone, Sulfate und künstliche Duftstoffe
Reduziert Einwegplastik:spart zwei Flaschen flüssiges Shampoo/Spülung
Hergestellt in den USAmit hochwertigen Zutaten
4OCEAN ZERTIFIZIERT:Fürjedes Shampoo oder jede Spülung,4Ozeanzieht diedas entspricht dem Plastik einer Shampooflascheaus den Ozeanen, Flüssen und Küsten der Welt
So neutralisieren Sie unerwünschten Messington:Haare und Riegel anfeuchten, dann für eine gleichmäßige Tönung von den Längen bis in die Spitzen auftragen.
Aufschäumen; 1–3 Minuten einwirken lassen, bis die gewünschte Tonisierungsintensität erreicht ist.
Nach Bedarf ausspülen und wiederholen.
Profi-Tipp:Kombinieren Sie es mit unserer Beauty Bar Bag.
Biotin
Verstärke dein Haarpflege-Ritual mit Biotin, um stärkeres, dicker aussehendes Haar mit einem seidigen, frizzfreien Glanz zu fördern.
Rizinusöl
Pflege dein Haar von den Wurzeln bis zu den Spitzen mit Hilfe von Rizinusöl, einem haarstärkenden und kopfhautbalancierenden Öl für sauberes, gesundes Haar.
Frei von Parabenen, Phthalaten, Silikonen, Sulfaten und künstlichen Duftstoffen
Duft: Orangenblüte und Jasmin
Wir sind Leaping Bunny-zertifiziert! Das Leaping Bunny-Logo ist das einzige international anerkannte Symbol, das Verbrauchern garantiert, dass bei der Entwicklung der damit gekennzeichneten Produkte keine neuen Tierversuche durchgeführt wurden.
{
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 = `Lila Toning Shampoo Bar für farbbehandeltes und graues Haar`;
let bundleHandle = `violett-tonendes-feststoff-shampoo`;
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');
});
}
}">
Häufig zusammen gekauft
+
Total price:
Lila Toning Shampoo Bar für farbbehandeltes und graues Haar
$ 374.00
$ 374.00
Festes Detox-Shampoo
$ 374.00
$ 374.00
Lila Toning Conditioner Bar für farbbehandeltes & graues Haar
$ 374.00
$ 374.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 = `Lila Toning Shampoo Bar für farbbehandeltes und graues Haar`;
let bundleHandle = `violett-tonendes-feststoff-shampoo`;
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 = 'Auswahl in den Warenkorb legen';
this.$dispatch('update-cart', { cart: response });
this.$dispatch('toggle-cart-drawer');
});
}
}">
Häufig zusammen gekauft
Lila Toning Shampoo Bar für farbbehandeltes und graues Haar
$ 374.00
$ 374.00
+
Festes Detox-Shampoo
$ 374.00
$ 374.00
+
Lila Toning Conditioner Bar für farbbehandeltes & graues Haar
Lila Toning Shampoo Bar für farbbehandeltes und graues Haar
Registrieren Sie sich, um eine Benachrichtigung zu erhalten, wenn dieser Artikel wieder auf Lager ist.
Bitte geben Sie eine gültige E-Mail Adresse ein.
Danke für die Anmeldung! Wir schicken Ihnen eine E-Mail, sobald das Produkt wieder verfügbar ist.
{
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">
Warum Millionen von Frauen auf lila Shampoo-Riegel umsteigen
1. Neutralisieren Sie messingfarbene Töne
Die Farbe Lila neutralisiert Gelb. Deshalb wird Lilashampoo verwendet, um die Gelb-/Messingtöne in blondem und rotem Haar zu neutralisieren und eine hellere, gesündere Farbe hervorzubringen.
2. Stärkung
Angereichert mit Biotin, um den Glanz zu steigern, Stumpfheit zu reduzieren und das Haar zu stärken. Schon nach einer Anwendung können Sie sich über eine glattere, kräftigere und lebendigere Farbe freuen.
3. Glanz hinzufügen
Lila Shampoos sollen Ihre natürlichen Highlights hervorheben und ihnen einen gesunden Glanz verleihen.
4. Erster seiner Art
Das feste Shampoo und der Conditioner Biotin Purple Toning Bar von Kitsch sind die ersten ihrer Art, die mit Biotin angereichert sind, um den Glanz zu verstärken, Stumpfheit zu reduzieren und das Haar zu stärken.
4.8
Rated 4.8 out of 5 stars
Based on 1,183 reviews
Reviews Summary
Generated by AI from 100 most recent customer reviews
Last updated 1 year ago
Customers say this shampoo bar lathers exceptionally well and leaves hair soft, clean, and fuller. They praise how this product effectively reduces brassiness in gray and blonde hair while improving shine. The pleasant scent is frequently mentioned, though a few note it's strong. Most report their hair feels healthier, with better manageability, though some needed time to adjust to the bar format.
I love this shampoo, I have spent waaay more on high end shampoos, and always was disappointed with the results, never has my hair looked this good, normally first day of shampooing my hair would be dry and the cuticles would be rough looking. Now my hair looks and feels soft and is shiny, this is right after washing and drying my hair. Customer forever
KC
Katie C.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 years ago
Less hair loss during/after wash
I have thin hair and have noticed more hair loss in the last few years. I was becoming used to losing quite a bit of hair during and after washes (when it’s already thin, any loss is devastating). I have washed my hair 4 times with both the rice water shampoo and conditioner and the biotin purple shampoo and coconut deep repair conditioner and have had very minimal hair loss during and after washing. This is huge for me and I’m beginning to hope that hair retention will give me the fuller look I’ve been hoping for. It also feels great after washing. I will be a repeat customer and recommend to anyone!
KL
Karalee L.
Verified Buyer
I recommend this product
Hair Concern Thinning, Frizzy, Itchy Scalp, Weak, Other
Been using the purple toning shampoo and see my hair is much brighter and healthier. Also it has started to thicken. I am thrilled and will continue to use along with the Rice Protein bar.
MM
Meyling M.
Verified Buyer
I recommend this product
Hair Concern Dry, Brassy, Frizzy, Thinning
Product Standouts Great Ingredients, Boosts Shine, Reduces Dullness, Neutralizes Brassiness
Rated 5 out of 5 stars
2 years ago
Great shampoo for Gray Hair
I love this gray toning shampoo. It leaves my hair feeling so soft and shiny and the yellowing is gone! I also love the way it is made. So convenient for travel without having to carry bottles! I will definitely buy it again and I definitely recommend it to anyone who has gray hair.
AF
Amanda F.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Just try it!
I will admit, I'm one of the "thick haired, fortunate folk" who doesn't really have to worry about hair loss, despite having to pull a TON of hair out of the drain every time I washed my hair.
I was having trouble finding a purple shampoo and conditioner that actually kept my highlighted hair blonde between treatments. WELL, not only does KITSCH do that, but I have not had to pull hair out of the drain since! It's been a year since I started using KITSCH and my hair has never felt healthier and more full. I will never use anything else.
Totally amazed how a soap on my hair has worked! Made my hair softer & after 2nd wash blended with my streaked & natural hair to give it a platinum blonde colour! Just amazing!!!!
SG
Sharon G.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 years ago
Powerful Purple Bar
I truly love this little Purple Shampoo Bar. My hair’s so soft, shiny and the grey is glowing. If you have silver or grey hair, this little bar is a must.
This is the first time I've used a soap bar. Blet me tell you it's amazing. Does a gemtle lauer of purple to cover yellow tomes. I'm letting my white hair grow out and this really works for me. Has a nice clean smell. Hopefully it will continue to do the trick. Just be patient with the product you use. Thanks a bunch. Love ❤️ 😍 it
PT
Phyllis T.
Verified Buyer
I recommend this product
Hair Concern Frizzy, Itchy Scalp, Dry
Product Standouts Great Ingredients, Strengthens, Boosts Shine, Reduces Dullness
Rated 5 out of 5 stars
1 year ago
Excellent Product
As a High School English teacher, vocabulary teaching is what I do daily. But the most descriptive word I can come up with to describe the suds this product makes is GOBS. Yes, just wet your hair, rub the bar around, and you will get GOBS and GOBS of suds that no liquid shampoo can equal. I didn't expect it, but what a welcome surprise. I added the coconut oil conditioner, and my hair is silky, shiny, soft and fluffy. But there is an added benefit that I have not seen mentioned in the reviews. Those of us with low vision due to macular degeneration and other eye ailments appreciate that the products can be identified by their letter configurations. Thank you Kitsch.
MP
Michele P.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Amazing hair thickener
Love this bar - great for travel and it really does work my hair is now thick and luxurious would recommend I bought my daughter a bar xx
Loading...
Loading...
Frequently Asked Questions
Abhängig von Ihrem Haartyp und der Häufigkeit, mit der Sie Ihre Haare waschen, sehen manche Menschen sofort Ergebnisse, andere wiederum erst nach ein paar Wochen.
Ja, aber verlassen Sie sich nicht bloß auf unser Wort! Lesen Sie die Tausenden von 5-Sterne-Bewertungen von Menschen aller Altersgruppen, die unsere Shampoo- und Spülungsriegel verwenden.
Ja, aber verlassen Sie sich nicht bloß auf unser Wort! Lesen Sie die Tausenden von 5-Sterne-Bewertungen von Menschen aller Altersgruppen, die unsere Shampoo- und Spülungsriegel verwenden.
Jedermanns Haar ist anders, also müssen Sie ein wenig herumprobieren, bis Sie herausgefunden haben, was für Sie am besten funktioniert. Beginnen Sie mit einer ausreichenden Menge, um Ihr Haar von den Haarwurzeln und der Kopfhaut bis in die Spitzen zu reinigen. Wenn Sie keine Ergebnisse sehen, empfehlen wir, während des Waschens mehr aufzutragen.
Wenn Sie ein Abonnement abschließen, wird Ihre Karte automatisch belastet. Sie können es also einrichten und vergessen. Sie können jederzeit kündigen.
Ja. Der Schutz Ihrer Privatsphäre ist eine unserer größten Prioritäten. Wir verwenden eine Reihe von Sicherheitsmaßnahmen und branchenüblichen Methoden, um Ihre persönlichen Daten zu schützen. Alle Bestellungen und persönlichen Daten werden von einem sicheren Server verwaltet. Details wie Kreditkartennummer, Name und Adresse werden über die Secure Socket Layer (SSL)-Technologie übertragen.
Die Lieferzeit hängt von der von Ihnen beim Bezahlvorgang ausgewählten Versandart ab. Die meisten Bestellungen werden noch am selben Tag verschickt! Bitte rechnen Sie mit bis zu 2 Werktagen für die Bearbeitung Ihrer Bestellung. Bestellungen werden von Montag bis Freitag bearbeitet, ausgenommen Feiertage. Sobald Ihre Bestellung versandt wurde, wird eine Bestätigungs-E-Mail mit einer Sendungsverfolgungsnummer des Spediteurs verschickt. Im Falle eines verlorenen Pakets wenden Sie sich bitte an den Kitsch-Support.
Wir empfehlen ein Abonnement, damit Sie sparen und Ihre Produkte versandkostenfrei direkt an Ihre Haustür geliefert bekommen. So gehen Ihnen die Vorräte nie aus!
Der Vergleichspreis entspricht dem Preis, zu dem das Produkt zuvor angeboten wurde, oder dem geschätzten Marktpreis vergleichbarer Artikel bei anderen Anbietern. Da Preise häufig schwanken, können wir nicht garantieren, dass der Vergleichspreis zu einem bestimmten Zeitpunkt dem aktuellen Marktpreis entspricht.
Wenn du dich für eine Auswahl entscheidest, wird die Seite komplett aktualisiert.