Elimina la opacidad y devuelve el brillo: reinicia tu melena cada semana con esta barra
Formulado con vitamina C y GLDA (un agente quelante de origen vegetal) para eliminar los residuos de cloro y la acumulación de minerales del agua dura (como el calcio y el magnesio)
Gracias al carbón activado y vinagre de sidra de manzana absorbe el exceso de grasa y elimina la acumulación de productos
Apto para cabello teñido
El 96 % de los usuarios coincidió en que su cabello y cuero cabelludo se sintieron completamente limpios, purificados y libres de residuos después de usar esta barra*
El 96 % de los usuarios afirmó que esta barra eliminó eficazmente los residuos del agua dura y la acumulación de minerales*
Apto para cualquier tipo de cabello
Huele a aire fresco y algodón
El 96 % de los usuarios coincidió en que esta barra es suave con el cuero cabelludo y el cabello*
100 % libre de plástico, ideal para viajar y aprobado por la TSA
Una barra concentrada = dos botellas de 16 oz. de champú líquido
Sin parabenos, ftalatos ni sulfatos
Calidad estadounidense, vegano, sin maltrato animal y con certificación Leaping Bunny
Por cada barra de champú o acondicionador, 4ocean retira el equivalente al plástico de una botella de champú de los océanos, ríos y costas del mundo
Humedece tu cabello y la barra con agua tibia. Masajea la barra en el cuero cabelludo y los mechones hasta formar abundante espuma. Enjuaga y repite si crees que es necesario. Úsalo semanalmente para reiniciar tu cabello y eliminar la acumulación de minerales del agua dura.
Consejo profesional: Combínalo con el acondicionador hidratante de manteca de karité en barra de Kitsch para una melena suave y nutrida.
GLDA
Removes hard water buildup (such as calcium and magnesium) that can leave hair looking dull.
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.
Apple Cider Vinegar
Breaks down and rinses away product buildup for clean, shiny hair.
Ingredientes
Isetionato de cocoílo de sodio, Glicerina, Metil cocoil taurato de sodio, Agua, Aceite de ricino hidrogenado, Fragancia (Perfume), Cloruro de guar hidroxipropiltrimonio, Diacetato de glutamato tetrasódico, Ascorbato de sodio, Pentilenglicol, Carbón en polvo, Metil diisopropil propionamida, Vinagre, Hidroxiisohexil 3-ciclohexeno carboxaldehído, Alfa-isometil ionona, Isoeugenol, Acetato de isoeugenilo, Tetrametil acetiloctahidronaftalenos, Vainillina
¡Contamos con la certificación de Leaping Bunny! Su logotipo es el único símbolo reconocido a nivel internacional que garantiza a los consumidores que no se han realizado ensayos con animales en el desarrollo de los productos que lo llevan.
{
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 = `Champú en barra Detox`;
let bundleHandle = `champu-en-barra-detox`;
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:
Champú en barra Detox
$ 374.00
$ 374.00
Acondicionador sólido nutritivo de manteca de karité
$ 327.00
$ 327.00
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 probar el champú en barra clarificante Detox
1. Un nuevo comienzo
Dale un reinicio a tu cabello con esta barra concentrada que elimina todo, desde los residuos de cloro y los depósitos de agua dura hasta la acumulación de productos y el exceso de grasa.
2. Limpia suavemente
Su fórmula con pH balanceado elimina las impurezas de tu cuero cabelludo sin irritación y no dejará el cabello apelmazado. ¡También es apto para cabello teñido!
3. Aroma sutil para tu melena
El lavado nunca ha olido mejor. La fragancia a aire fresco y algodón dejará tu cabello ligeramente perfumado.
4. Bueno para el cabello y el planeta
A través de nuestra asociación con 4ocean, cada barra vendida ayuda a eliminar los desechos plásticos de las vías fluviales del mundo. ¿No es genial?
I have blond hair and hard water. My hair has had an orange undertone for years that no amount of toner or other detox/clarifying shampoos could fix. This miracle bar has fixed my hair after one use! It also did a great job removing product buildup I didn’t even realize I had. My hair has never felt lighter or cleaner. I was able to go 3 days after washing before I had to wash again, another first for me! The only downside is I have fine hair that gets very tangled when wet and this made my hair extra tangled, however paired with an extra moisturizing conditioner I don’t imagine this will be a problem. Love love love this bar!!
C
Cristina
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 month ago
Amazing
I’ve been having issues with my shampoo (not kitch) not sudsing up and even my kitch shampoo not cleaning my hair well. 2 days later, my hair looked dirty (I’m the girl that can go a week between washings). Used this once and all my shampoos were lathering with less than half the shampoo and my hair is so clean. 10/10 recommend.
MD
M. D.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 month ago
Great Product!
I have used this twice…if I tell you something! This is really really good at removing buildup from your hair. I tried to use my regular moisturizing shampoo and it would not lather because I had previously used the Blue Magic Castor oil hair grease as a sealant. This detox/clarifying shampoo removed it all and my hair actually felt soft after using this product and it also has a very nice scent.
DY
Debra Y.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 month ago
Lots of suds
Love how it suds up in my hair! Makes it feel so clean and makes my scalp feel amazing.
Thank you!
JP
Jennifer P.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 month ago
Very Clean
We have hard water and this left my hair feeling so clean. Loved it
S
SuzyQ
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 month ago
AMAZING after swim bar!
Definitely does what it claims to do, great to use before a hair mask or clarifying conditioner
SW
Shirley W.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 month ago
KITSCH IS THE RAND!
Used last week so delivery was perfect timing and I LOVE this product! This is a new brand for me and I am a forever fan and hope to have a long customer relationship. My hair texture is 4A/B now with gray this product as well as a few others from line works PERFECTLY and I am life-time customer now! Every last item I have purchased has left my curls, clean, bouncy and moisturized and my wallet is very happy! Much success and I hope to be a long-time customer. Besides the Detox bar, the Shea Butter Solid Conditioner Bar and my very first purchase, the Coconut Oil Solid Shampoo Bar and matching Conditioner Bar sealed my new loyalty! I like the combo shampoo /conditioner tray, the travel shampoo and most recently the fine mist bottle! Everything is nicely designed and the prices makes me smile!!!!!
LC
Lynnette C.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 month ago
This product is for my life partner
At first he would not try it and so I made a bet with him to just use it for a week and when he did now he uses nothing else we even take it on our trips
JW
jennifer w.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
2 months ago
Shampoo bars
Thank you Kitsch for such an innovative product.
My husband and I are making a conscious effort to eliminate as many chemicals in/on our bodies as possible. We tried the Rosemary & Biotin Shampoo bar and loved it. Great lather, pleasant smell. I am also going to try the Charcoal bar shampoo next.
I asked, Kitsch answered. ( my question immediately.) Great customer service.
jw
MB
Megan B.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
4 days ago
Great product!!
Leaves hair so soft! Really like this bar. Hair feels so nice and clean.
Loading...
Loading...
Frequently Asked Questions
Los champús estándar solo limpian la superficie de las hebras y el cuero cabelludo, pero esta barra elimina los minerales del agua dura (como el calcio y el magnesio), los residuos de cloro, el exceso de grasa y la acumulación de productos para un cabello que se ve más brillante y se siente más ligero.
¡Todo el mundo! Esta fórmula está diseñada para cualquier tipo de cabello, pero es especialmente ideal para nadadores, personas que viven en zonas con agua dura y aquellas con rutinas de muchos productos.
Para la mayoría de las personas, una vez a la semana es suficiente. Sin embargo, si nadas con frecuencia, tienes agua dura o usas muchos productos de peinado, es posible que desees usar esta barra dos veces por semana hasta que tu cabello se sienta como nuevo. Si tu cabello es seco, teñido, rizado o está dañado, es posible que desees prolongar el tiempo entre lavados y usarlo cada 10 a 14 días. Si el cabello comienza a sentirse demasiado áspero o enredado, reduce la frecuencia.
Esta barra funciona mejor para la acumulación relacionada con el agua y la exposición al cloro. Recomendamos el champú en barra clarificante de árbol de té y menta de Kitsch para cueros cabelludos grasos, ya que está formulada con Dandrilys®, que está clínicamente probado para ayudar a equilibrar el microbioma del cuero cabelludo y reducir la grasa después de cuatro usos.
Sí, esta barra es apta para cabello teñido. Además, su pH es compatible con el cuero cabelludo y la fibra capilar.
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.
Al seleccionar una opción, se actualiza toda la página.