Gel de baño suave pero eficaz que limpia sin resecar, perfecto para uso diario
Infundido con un aroma refrescante que recuerda a cerezas negras ácidas
Nuestra barra Bottle-Free Beauty® ofrece resultados sólidos con más producto y menos embalaje
Espuma abundante para una limpieza suave y lujosa.
Sostenible y apto para viajes—sin plástico, sin derrames, solo una barra compacta que dura el doble que un gel líquido.
Diseño de fácil agarre con forma acanalada para mejor manejo y aplicación.
Libre de parabenos, ftalatos, siliconas y sulfatos para una limpieza pura y segura.
Hecho en EE.UU., Vegano, libre de crueldad animal, Certificado Leaping Bunny.
Empaque de papel reciclado —bueno para ti, excelente para el planeta.
Moja la barra con agua tibia y masajea sobre la piel hasta crear una espuma suave.
Consejo profesional: Combínala con la bolsa Kitsch Body Wash Bar Saver para un almacenamiento fácil y un secado más rápido.
Vitamina E
Ofereça à sua pele um apoio antioxidante com Vitamina E, que fortalece a pele e é ultra-hidratante, para uma pele mais saudável a partir do interior.
Manteiga de karité
Revitalize a sua pele com a Manteiga de Karité, rica em vitaminas, que ajuda a hidratar para promover uma pele mais macia, suave e hidratada.
Ingredientes
Palmato de sodio, manteca de karité sódica, cocoato de sodio y/o palmato de palmiste sódico, glicerina, aqua/agua/eau, manteca de cacao sódica, perfume, dióxido de titanio, glutamato de cocoil disódico, glutamato de cocoil sódico, treoninato de cocoil sódico, lauril laurato, taurato de metil cocoil sódico, cloruro de sodio, hialuronato de sodio, diacetato de glutamato tetrasódico, extracto de hoja de romero (Rosmarinus Officinalis), vitamina E natural y CI 14700, acetil octahidronaftaleno tetrametílico, vainillina, cumarina, benzaldehído, metil isopentenol de trimetilciclopentenilo, cinamato de bencilo, cetonas de rosa, eugenol, alcohol de anís, aceite/extracto de jazmín, aceite/extracto de flor de rosa y anetol
¡Estamos certificados por Leaping Bunny! El logo de Leaping Bunny es el único símbolo reconocido internacionalmente que garantiza a los consumidores que no se realizaron nuevas pruebas en animales durante 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: 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 = `Sabonete Líquido Sólido de Cereja Ácida para Limpeza Corporal`;
let bundleHandle = `cleansing-tart-cherry-body-wash`;
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:
Sabonete Líquido Sólido de Cereja Ácida para Limpeza Corporal
$ 281.00
$ 281.00
Touca de banho Flexi com forro de cetim - Estampa cereja
$ 677.00
$ 677.00
Sabonete Líquido Sólido de Cereja Ácida para Limpeza Corporal
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">
This soap smells incredible & I’ll definitely be stocking up on it immediately!
S
Sarah
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
This body bar is THE BEST
It's not over scented - it's just right with cherry and shea.
It's not over-drying - living in TX in the winter is a challenge and this bar WINS.
It lasts - I love how it doesn't just melt away or crumble in the shower.
M
Melissa
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Loved!! 😍
I actually loved using this. Made my skin feel soft and the scent was nice and not too overpowering. It had a bit more of a floral smell than I expected instead of tart cherries but it was still great. Wish they lasted a bit longer, but I seem to have that issue with all the body wash bars.
MY
Mercaydeez Y.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
I love the smell!
The scent of this body bar has a nostalgic vibe, it’s like cherry air fresheners that are in an old (but clean) car that have been in there a few days now so it’s not too strong, but just the perfect amount! I will keep ordering! On my 2nd bar now, and have a backup in the drawer :)
MM
Millie M.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
A wonderful smell and leave me feeling refreshed
I love the smell of this product and leaves me clean and refreshed. I got the same scent in the hair perfume and together I feel I have just the right amount of scent without being over powered
JD
Jennifer D.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Smell was delicious!
I really enjoyed using the tart cherry solid body wash. The smell was amazing, light and fruity. My skin felt very good, it was soft and smooth and well moisturized. Definitely will use again.
BW
Brenda W.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Smells divine!
I wasn’t sure I would enjoy this scent as much as I do. (Cherry can be hit or miss for me.) But I figured if I didn’t like it, my daughter certainly would. Well we both love it! The scent is actually quite strong in my bathroom (making it smell so lovely) but not overpowering on my skin. It’s just right, and I wish I had a matching lotion to go with it because the hair perfume is amazing too, and lotion would be a great layer to add. So if you’re unsure, just try it!
SF
Suzy F.
Verified Buyer
I recommend this product
Rated 4 out of 5 stars
1 year ago
Gorgeous smell, but doesn't play well with acidic skin pH
So initially I fell in love with the gorgeous scent of this soap. It perfumes the whole bathroom, and I have a sensitive nose, so I definitely have high standards. But much to my surprise and disappointment, my very acidic pH skin turned the fragrance into something gross, I was so sad. I made it a hand soap and that's working out great, and I'm back to my kojic acid citrus body wash bar which plays really well with my pH. And my bathroom still smells gorgeous.
NG
Nicole G.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Nothing but love for this body wash!
The Kitsch Moisturizing Tart Cherry Solid Body Wash is amazing! The rich, creamy lather feels so luxurious and leaves my skin incredibly soft, silky, and deeply hydrated—no dryness at all. The scent is absolutely perfect, a sweet yet refreshing cherry aroma that lingers just enough. This body wash is a true indulgence, and I can’t recommend it enough!
SS
Sydney S.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Doesn't leave skin feeling tight
The moisturizing tart cherry solid body wash is great. The scent is there, but not overpowering and my skin doesn't feel tight after use as it can with bar soaps. The body wash bar itself lasts a long time and is a great addition to the Kitsch line up.
Loading...
Loading...
Frequently Asked Questions
La barra de gel de baño Kitsch es una alternativa eficaz al gel de baño líquido tradicional, diseñada para limpiar y nutrir tu piel sin residuos plásticos. Repleta de ingredientes respetuosos con la piel, crea una espuma rica y cremosa con un aroma irresistible. Es ideal para viajes, de larga duración y libre de sulfatos, parabenos y otros químicos agresivos, ¡ofreciéndote una limpieza que te encantará!
¡Sí! Nuestra barra de gel de baño limpiador de cereza ácida está hecha con ingredientes suaves y respetuosos con la piel, sin sulfatos ni irritantes, lo que la hace ideal para todo tipo de piel.
Simplemente humedece la barra con agua tibia corriente y masajea sobre la piel hasta formar una espuma suave. También puedes usarla con nuestra bolsa de ahorro para barra de gel de baño Bottle-Free Beauty® para una espuma aún mayor.
Aunque tiene una fórmula suave y sin sulfatos, está diseñada para usarse únicamente como gel de baño.
Depende del uso, pero una pastilla puede reemplazar varias botellas de gel de ducha, lo que suele durar semanas o incluso meses. Dura aún más si se guarda con cuidado.
Para prolongar su vida útil, mantenla seca entre usos. Prueba nuestra jabonera autodrenante o nuestra bolsa para barras para guardarlas fácilmente y que se sequen rápidamente.
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.