Formulado con aceite de ricino para hidrata, equilibra y calma la irritación del cuero cabelludo
Nutre el cuero cabelludo para disminuye la rotura y el daño del cabello
Libre de parabenos, ftalatos, siliconas, sulfatos y fragancias artificiales
Reduce el plástico de un solo uso: ahorra dos botellas de champú/acondicionador líquido
PH equilibrado y seguro para cabellos teñidos
Fabricado en EE.UU. con ingredientes de calidad
CERTIFICADO 4OCEAN: Para cada barra de champú o acondicionador,4ocean tira del equivalente al plástico de un bote de champú. de los océanos, ríos y costas del mundo
Cómo conseguir resultados de peluquería:
Humedecer el cabello; frotar la barra entre las manos hasta obtener abundante espuma o "pintar" directamente sobre el cuero cabelludo.
Masajear con las yemas de los dedos, aclarar y repetir según se desee.
Consejo profesional: Combínalo con nuestra Beauty Bar Bag.
Óleo de rícino
Nutrir o cabelo da raiz às pontas com a ajuda do Óleo de Rícino, um óleo que fortalece os fios e equilibra o couro cabeludo para um cabelo limpo e saudável.
Ácido ricinoleico
O Ácido Ricinoléico pode ajudar a promover um cabelo mais forte e mais viçoso, estimulando o fluxo sanguíneo para o couro cabeludo para apoiar o crescimento e folículos capilares mais saudáveis.
Ingredientes
Cocoyl isetionato de sodio, metil cocoyl taurato de sodio, glicerina vegetal, aceite de ricino hidrogenado, cloruro de hidroxipropiltrimonio guar, fragancia natural*, óxido de hierro**, ultramar**.
*Fragancia natural derivada de plantas. **Color natural.
Sin parabenos, ftalatos, siliconas, sulfatos ni fragancias artificiales.
Fragancia: Ámbar azucarado y karité
Tenemos la certificación Leaping Bunny El logotipo Leaping Bunny es el único símbolo reconocido internacionalmente que garantiza a los consumidores que no se han realizado nuevas pruebas con animales en el desarrollo de ningún producto que lo muestre.
{
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: 4,
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ô nutritivo de óleo de rícino em barra`;
let bundleHandle = `barra-champu-nutritiva`;
let bundleCount = 4;
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ô nutritivo de óleo de rícino em barra
$ 374.00
$ 374.00
Champú en barra Detox
$ 374.00
$ 374.00
Barra de condicionador nutritivo com óleo de rícino
$ 374.00
$ 374.00
Glass Hair Shine Serum
$ 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: 4,
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ô nutritivo de óleo de rícino em barra`;
let bundleHandle = `barra-champu-nutritiva`;
let bundleCount = 4;
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 = 'Añadir selección al carrito';
this.$dispatch('update-cart', { cart: response });
this.$dispatch('toggle-cart-drawer');
});
}
}">
Comprados juntos frecuentemente
Champô nutritivo de óleo de rícino em barra
$ 374.00
$ 374.00
+
Champú en barra Detox
$ 374.00
$ 374.00
+
Barra de condicionador nutritivo com óleo de rícino
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 por las que millones de mujeres se están pasando al aceite de ricino
1. menos rotura del cabello
El aceite de ricino tiene propiedades hidratantes, que podrían ayudar a lubricar el tallo capilar, aumentando la flexibilidad y disminuyendo la posibilidad de rotura.
2. reforzar
La idea es que el alto contenido de ácido ricinoleico puede ayudar a mejorar la circulación sanguínea en el cuero cabelludo, lo que podría conducir a la nutrición de los folículos pilosos, hebras más fuertes, y menos rotura.
3. cuero cabelludo sano
El aceite de ricino aumenta el flujo sanguíneo al cuero cabelludo, lo que favorece un cabello más sano.
4. desintoxicante
Las propiedades antimicrobianas y antifúngicas del aceite de ricino pueden reducir la caspa.
4.9
Rated 4.9 out of 5 stars
Based on 2,616 reviews
Reviews Summary
Generated by AI from 100 most recent customer reviews
Last updated 1 year ago
Customers say this shampoo bar has a mild, pleasant scent and creates good lather. Some note initial dryness and lathering challenges. Many reviews mention softer, shinier hair and improved manageability. Common feedback includes the bar breaking into pieces when small. Most appreciate its effectiveness for cleansing and ease of use.
Product Standouts Great Ingredients, Hydrates, Balances Scalp, Lathers Well, Moisturizes
Rated 5 out of 5 stars
1 year ago
The reviews say it all!!
I'm in love! I was skeptical switching to bar shampoo just because it was outside my comfort zone but I'm amazed. I've always been conscious of staying away from harmful chemicals but this takes the cake.
I use the "painting" method on my scalp and the lather is so rich. It doesn't feel dry, but rather nourishing and cleansing. I actually think I "painted" too much because it was SO MUCH lather. A little goes a long way.
I paired it with the Shea Butter Conditioner bar and I'm absolutely sold. This was after my first use and I can't wait see the results after a few weeks transitioning from traditional product to clean Kitsch bars. I'm about to order a couple more for a nice rotation. Thank you Kitsch!
REFERENCE: Long natural blonde hair, thick and curly/wavy texture, frizz control issues and mild dandruff. Dryness/greasy spells depending on what products I'm using and environment I'm in as I live in Florida (humid) and Las Vegas (dry) throughout the year.
I've been using the castor oil shampoo & the rosemary and biotin conditioners for a couple of weeks now.
I was pleasantly surprised by the luxurious lather ESPECIALLY from a bar!
I've noticed baby hairs coming in already too!
Also my hair looks and feels great so far!
I will DEFINITELY purchase again!
KW
Kerri W.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Life changing cure!!!
The best birthday gift I have ever received. I am dancing in my heart. 6 decades of lifeless, drabby, blahhhh thin hair. This product has changed my life. I'm telling everyone about this miracle bar shampoo. I've noticed my body skin is softer too. Ive posted a picture of your soap box with this updated profile picture on my Facebook page. Expect tons of new customers and rightfully so. Dancing in my heart people dancing. No more hair and inner depression. Who would of thought that a bar of shampoo soap would change my life for the better and greater good. Thank you for inventing this hair miracle cure. You have a lifelong customer and promoter. God bless you FOREVER AND EVER ❤️❤️❤️ Here's the before and after pictures as proof positive. Enjoy the new you people and start dancing in your hearts ❤️
TS
Tonya S.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 years ago
Grateful
I love this product! I was loosing my hair, it felt brittle and breaking bad! Minus Hormones at 51 was taking an awful toll on my hair! Not now
My hair is growing back and feels great! I stopped using any other products on my hair because after using kitsch I don’t need them.
My picture is the right side of my hair and is from Jan-March and it’s so noticeable it this product works!
LT
Lynn T.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
4 years ago
Awesome shampoo & conditioner
Love this shampoo and conditioner on my 3B curly graying hair. Takes a little to get used to using bars but it’s worth it!
CC
Cecilia C.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 years ago
Cancer survivor
After enduring chemotherapy, I find myself extremely sensitive to chemical or perfumes to the point of headaches and nauseous. It’s been hard to find a shampoo and conditioner that doesn’t make me feel ill. Your shampoo and conditioner not only have a soft aroma but they do a great job to clean and condition. Thank you for creating a product that I can use!
NR
Nancy R.
Verified Buyer
I recommend this product
Hair Concern Frizzy, Thinning, Sensitive Scalp
Product Standouts Great Ingredients, Moisturizes, Hydrates
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!
DM
Danni M.
Verified Buyer
I recommend this product
Hair Concern Dry, Brassy, Frizzy
Product Standouts Great Ingredients, Hydrates, Moisturizes
Rated 5 out of 5 stars
1 year ago
Best Hair product I have ever used
My hair has never been better! It’s soft , silky , and shiny! I can’t believe the number of days that I can go without having to shampoo For the first time in my life my hair isn’t frizzy after a shampoo … This has honesty been the best beauty product that I have ever used!
SM
Sofia M S.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
I love Castor Oil shampoo bar!!
From the first wash, I noticed that my scalp felt cleaner,my hair easier to brush. I had spots of hair loss,but within weeks, my hair grow back till I had no more spots on my head. Marvellous,amazing product!!
AR
April R.
Verified Buyer
I recommend this product
Hair Concern Itchy Scalp, Dry, Frizzy
Product Standouts Hydrates, Great Ingredients, Balances Scalp, Lathers Well, Moisturizes
Rated 5 out of 5 stars
2 years ago
My favorite shampoo!!
The castor oil nourishing shampoo bar has transformed not just my hair, but my whole family's! Our hair feels incredibly moisturized after each use, and the real game-changer is how effortlessly it detangles my children's curls. No more struggling with knots – my fingers and hair tools glide through effortlessly. This product is an absolute game-changer, and we're all in love with it! I also love the simplicity of the ingredients.
Loading...
Loading...
Frequently Asked Questions
Dependiendo de su tipo de cabello y de la frecuencia con que se lo lave, algunas personas ven resultados inmediatamente y otras pueden empezar a verlos en unas pocas semanas.
Sí, pero no se fíe sólo de nuestra palabra. Echa un vistazo a los miles de comentarios de 5 estrellas de personas de todas las edades que utilizan nuestras barras de champú y acondicionador.
Si tienes dudas sobre cuál es la barra más adecuada para ti, indica a nuestro equipo de asistencia cuál es tu tipo de cabello y te orientaremos en la dirección correcta.
El cabello de cada persona es diferente, por lo que tendrás que probar y equivocarte hasta que encuentres lo que mejor se adapta a ti. Empieza con una cantidad suficiente para limpiar desde las raíces y el cuero cabelludo hasta las puntas. Si no ves resultados, te recomendamos que apliques más cantidad durante el lavado.
Cuando te suscribes, cargamos automáticamente el importe en tu tarjeta para que puedas configurarlo y olvidarte. Puede darse de baja en cualquier momento.
Sí. Proteger su privacidad es una de nuestras mayores prioridades. Utilizamos una serie de medidas de seguridad y métodos estándar de la industria para mantener a salvo su información personal. Todos los pedidos y la información personal se gestionan mediante un servidor seguro. Datos como el número de tarjeta de crédito, el nombre y la dirección se transmiten a través de la tecnología Secure Socket Layer (SSL).
El plazo de entrega depende del método de envío seleccionado al realizar el pedido. La mayoría de los pedidos se envían el mismo día. Por favor, espere hasta 2 días hábiles para que su pedido sea procesado. Los pedidos se procesan de lunes a viernes, excepto festivos. Una vez enviado el pedido, recibirá un correo electrónico de confirmación con el número de seguimiento del transportista. En caso de pérdida del paquete, póngase en contacto con el servicio de asistencia de Kitsch.
Le recomendamos que se suscriba para ahorrar y recibir los productos en su domicilio con gastos de envío gratuitos. De esta forma, ¡nunca te quedarás sin ellos!
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.
Escolher uma seleção resulta numa atualização de página completa.