Nutre en profundidad cabello seco y dañado para hebras más fuertes e hidratadas
Con aceite de ricino para ayudan a restaurar la humedad y mantener las puntas sanas y cicatrizadas
Formulado con Fision® Hidratante que ayuda a desenreda y controla el encrespamientoy Fision® Ecosil para un acabado brillante
Ayuda a reducir la rotura repara las hebras para un cabello con más volumen y más sano
Libre de parabenos, ftalatos, siliconas, sulfatos y fragancias artificiales
pH equilibrado y seguro para cabellos teñidos
Reduce el plástico de un solo uso: ahorra dos botellas de champú/acondicionador líquido
Hecho en EE.UU., vegano, sin crueldad, certificado por Leaping Bunny
CERTIFICADO 4OCEAN: Para cada barra de champú o acondicionador, 4ocean tira del equivalente a una botella de acondicionador de plástico de los océanos, ríos y costas del mundo
Después del champú, moja la barra con agua tibia y aplícala con un masaje desde el cabello hasta las puntas, hasta obtener una espuma espumosa. Aclara y peina o desenreda como de costumbre.
Consejo profesional: Para un cabello aún más suave y sin encrespamiento, combínalo con el Champú sólido nutritivo de aceite de ricino Kitsch para ayudar a nutrir y equilibrar el cuero cabelludo y las hebras.
Aceite de ricino
Nutre tu cabello de la raíz a las puntas con la ayuda del aceite de ricino, un aceite que fortalece las hebras y equilibra el cuero cabelludo para un cabello limpio y sano.
Fision® Hydratress
Desenreda los nudos y controla el frizz con Fision® Hydratress para obtener mechones suaves y brillantes.
Fision® EcoSil
Esta alternativa natural a la silicona ayuda a acondicionar tus mechones con un toque de brillo.
Ingredientes
Alcohol cetearílico, cloruro de behentrimonio, aceite de coco (Cocos Nucifera), aceite de semillas de ricino (Ricinus Communis), aceite de semillas de girasol (Helianthus Annuus), laurato de laurilo, fragancia natural*, Olivato de etilhexilo hidrogenado (y) insaponificables de aceite de oliva hidrogenado, agua, pantenol, quinoa hidrolizada, extracto de semilla de Pisum sativum (guisante), hexanodiol, hialuronato de sodio, cloruro de hidroxipropiltrimonio guar, óxido de hierro (CI77491)**.
*Fragancia natural derivada de plantas. **Color natural.
¡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 = `Acondicionador nutritivo en barra de aceite de ricino`;
let bundleHandle = `aceite-de-ricino-acondicionador-de-solidos`;
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:
Acondicionador nutritivo en barra de aceite de ricino
$31.00
$31.00
Champú en barra Detox
$31.00
$31.00
Champú nutritivo en barra de aceite de ricino
$31.00
$31.00
Acondicionador nutritivo en barra de aceite de ricino
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. Fortalece
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.
After using this product, my hair: Felt less frizzy, Felt more smooth, Felt more nourished
Rated 5 out of 5 stars
2 years ago
Game changer
Was able to try the castor oil s&c and was a big difference for my curls. I have wavy/curly hair and generally doesn't hold curl very well without lots of product. Was able to test and used very little products and allowed my hair to air dry. Hair felt much softer, less frizz, and more defined curls that held longer. Will definitely be adding to my routine
Ease of UseRated 5.0 on a scale of 1 to 5
Difficult Super Easy!
B
Bethany
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Love love love this!!!
I have curly, gray (cinnamon and sugar because it’s reddish brown and gray) hair that needs lots of moisture without being weighed down and greasy. I had the opportunity to try this out before it was launched and it is a miracle worker. This will be my “go to” from now on!!!
SK
Sirihari K.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Amazing Softness and lightness
I had the wonderful opportunity of trying out this conditioner before it was released to the public. My hair feels cleaner, lighter and softer. I am able to go a couple more days in between washes when using this. Will definitely be adding this into my hair care routine it also kept my curls very nicely!!
Highly recommend this!! 😊👌
K
Krista
Verified Buyer
I recommend this product
What is your hair texture Curly
Hair Concern Thinning, Frizzy, Dry, Weak
After using this product, my hair: Felt less frizzy, Had less breakage, Felt more smooth, Felt more healthy, Felt more nourished
Rated 5 out of 5 stars
1 year ago
Excellent cowash
My hair has gone through many changes over the last few years. Recently, I started experiencing major hair loss After starting a monthly biologic injection. My hair became brittle and was prone to breakage. It literally felt like straw.
I now use the castor oil conditioner as a car wash in between shampoos. My hair has Not only began to regrow, but is amazingly soft and curly. I have minimal frizz. I absolutely love this and will forever be a Kitsch girl!
Ease of UseRated 5.0 on a scale of 1 to 5
Difficult Super Easy!
LF
Lia F.
Verified Buyer
I recommend this product
What is your hair texture Wavy
Hair Concern Frizzy, Dry, Damaged
After using this product, my hair: Felt more smooth, Felt more nourished, Felt more healthy, Felt less frizzy, Felt less tangly
Rated 5 out of 5 stars
1 year ago
Beautiful condition or get rid of my frizz
This bar makes my hair so soft and brings out my natural waves. My hair loves it. It gets rid of frizz and conditions beautiful for my dry hair.
Ease of UseRated 5.0 on a scale of 1 to 5
Difficult Super Easy!
AC
Ana Cristina M.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Game Changer for Curly Girls
I was lucky enough to be selected for the Castor Oil Conditioner Study. I received both the Castor Oil Shampoo and Conditioner over the weekend, washed my hair last night and let it air dry, and it was the softest and most manageable it's been in a while! Normally I wake up with horrible tangles (I have wavy/curly hair), but my hair was still soft and tangle-free this morning. This conditioner is going to be a game changer for curly girls. It conditions the hair nicely without weighing it down too much.
After using this product, my hair: Felt more smooth, Felt more nourished, Felt more healthy, Felt less tangly , Felt less frizzy
Rated 5 out of 5 stars
2 years ago
Great Product
I noticed less frizz and tangles, and much smoother hair after just one wash. It doesn’t leave my hair feeling greasy or weighed down. Highly recommend if you have wavy or curly hair and are needing something to help control the frizz and dryness.
Ease of UseRated 5.0 on a scale of 1 to 5
Difficult Super Easy!
ST
Stephanie t.
Verified Buyer
I recommend this product
What is your hair texture Wavy
Hair Concern Thinning, Damaged
After using this product, my hair: Felt more healthy, Felt less frizzy, Had less breakage, Smelled amazing, Felt more smooth
Rated 5 out of 5 stars
9 months ago
soft hair
I love everything about kit sch i have now a full head of hair loss a lot due to menopause
After using this product, my hair: Felt more smooth, Felt more nourished, Smelled amazing, Felt more healthy, Felt less frizzy
Rated 5 out of 5 stars
1 year ago
Great Conditioner
I really like this conditioner. My scalp tends to be dry and itchy, especially in the winter as I live in a cold climate. This conditioner bar applies really nicely, I like to "paint" it on my hair and I get enough product on my hair easily. It leaves my hair feeling nourished without feeling heavy or oily. It also smells great and the scent level is just right. I definitely recommend this conditioner bar.
Ease of UseRated 5.0 on a scale of 1 to 5
Difficult Super Easy!
Loading...
Loading...
Frequently Asked Questions
Esta barra favorece la salud general del cabello al nutrirlo con ingredientes enriquecedores como el aceite de ricino y la mezcla de proteínas de quinoa, reduciendo potencialmente la necesidad de tratamientos adicionales.
¡Sí! Este acondicionador está diseñado para combinarse perfectamente con nuestro champú en barra nutritivo con aceite de ricino, proporcionando una solución completa para la salud del cabello. También puedes mezclarlo y combinarlo para adaptarlo a las necesidades de tu cabello en función de las soluciones que ofrecen nuestras barras de champú y acondicionador.
Sí. Este acondicionador está formulado para ser suave pero eficaz, por lo que es adecuado para todo tipo de cabellos, incluidos los secos y dañados.
Sí. Nuestros coadyuvantes no contienen sulfatos ni parabenos, lo que significa que son lo suficientemente suaves como para utilizarlos en cabellos tratados sin dañar el color.
Sí, ¡puedes usar esta barra acondicionadora a diario! Está formulada para hidratar y nutrir en profundidad sin apelmazar el cabello.
El uso prolongado de este acondicionador favorece la salud y vitalidad del cabello al reducir los daños, la rotura y la caída, lo que en última instancia se traduce en un cabello más fuerte y sano.
¡Sí! Nuestros acondicionadores están libres de sulfatos y parabenos, lo que significa que son lo suficientemente suaves como para ser utilizados en extensiones de cabello.
Esta barra acondicionadora es adecuada para todo tipo de cabellos, especialmente los secos y dañados. También es una gran opción para aquellos con cabello graso o de alta porosidad. Ayuda a hidratar, reducir el encrespamiento y fortalecer el cabello.
Las barras de acondicionador sólido suelen durar más que los acondicionadores líquidos tradicionales. Con un uso y almacenamiento adecuados, ¡una sola barra puede proporcionar hasta 100 usos!
Al igual que el resto de nuestros productos, nuestro acondicionador no contiene sustancias químicas nocivas y está elaborado con ingredientes nutritivos de alta calidad, como el aceite de coco, para garantizar el mejor cuidado del cabello y el cuero cabelludo.
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.