Formulado con perlas de jojoba biodegradables para eliminar suavemente la piel seca y escamosa, alisar bultos y asperezas, y preparar la piel para que las cremas hidratantes se absorban mejor.
Enriquecido conmanteca de karité + aloe para hidratar y calmar durante la limpieza: la piel se siente suave y tranquila, nunca tirante.
Fórmula de baja irritación que es lo suficientemente suave para piel sensible y aun así ofrece una mejora visible de la textura.
Exfoliación sostenible—las perlas de jojoba son biodegradables y respetuosas con el planeta.
Limpio y consciente: Libre de parabenos, ftalatos, CMR directos y PFAS; vegano, libre de crueldad animal, sin gluten, y hecho con ingredientes ecológicos en envases reciclados/FSC.
La piel se siente más suave y refinada justo después de usarlo—las zonas secas y ásperas se suavizan visiblemente.
Tu hidratante actúa mejor porque la piel muerta se elimina suavemente.
Hidratación + exfoliación en un solo paso—sin tirantez, solo confort equilibrado.
Lo suficientemente suave para piel sensible gracias a su fórmula de baja irritación y bien pensada.
Se siente bien usarlo y sentirse bien al respecto—ingredientes limpios con diseño sostenible.
Uso recomendado:
Piel sensible: Usar 2–3 veces por semana, luego aumentar gradualmente la frecuencia.
Piel normal: Seguro para uso diario una vez que la piel se haya acostumbrado.
Consejo profesional: Combínalo con la Bolsa porta jabones Kitsch para un almacenamiento fácil y un secado más rápido.
Perlas/Ésteres de Jojoba
Estas perlas biodegradables y suaves exfolian las células muertas de la piel sin causar irritación, dejando la piel fresca e hidratada. Son seguras para pieles sensibles y respetuosas con el medio ambiente, ofreciendo una forma no abrasiva de eliminar las zonas ásperas.
Manteca de karité
Revitaliza tu piel con la manteca de karité rica en vitaminas que ayuda a hidratar para promover una piel más suave, tersa y más hidratada.
Ingredientes
Girasolato de Sodio, Cocoato de Sodio, Miristato de Sodio, Aqua/Agua/Eau, Glicerina, Manteca de Karité de Sodio, Fragancia (Parfum)*, Manteca de Cacao de Sodio, Ésteres de Jojoba, Manteca de Butyrospermum Parkii (Karité), Laurato de Glicerilo, Laurato de Laurilo, Poligliceril-4 Caprato, Cloruro de Sodio, Diacetato de Glutamato Tetrasódico, Jugo de Hoja de Aloe Barbadensis, Limoneno, Cocoato de Potasio, Oleato de Potasio, Aceite/Extracto de Lavándula, Cumarina, Linalol, Acetato de Linalilo, Olivato de Potasio, Pineno, Ácido Cítrico.
{
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 = `Barra exfoliante de jojoba`;
let bundleHandle = `jojoba-bead-exfoliating-body-wash-bar`;
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:
Barra exfoliante de jojoba
$27.00
$27.00
Mascarilla de Coco Hidratante y Acondicionadora
$39.00
$39.00
Gorro de ducha - Rosa con lunares
$56.00
$56.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 = `Barra exfoliante de jojoba`;
let bundleHandle = `jojoba-bead-exfoliating-body-wash-bar`;
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 = 'Añadir selección al carrito';
this.$dispatch('update-cart', { cart: response });
this.$dispatch('toggle-cart-drawer');
});
}
}">
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">
As a person with Keratosis Pilaris (those pesky little red bumps on my arms and legs), the Jojoba Bead Exfoliating Body Wash Bar is DEFINITELY a new staple in my shower routine!
To be 100% transparent, I wasn't as excited to try the Jojoba Bead Bar because I figured that it would be too gentle and not really exfoliate since it is a more natural product.... HOW DARE I DOUBT KITSCH, EVER!! After using it, I am SO in love with this bar that I put it on Auto-Ship!
I JUST tried this bar for the very first time, and I'm not kidding, I literally said, "WOW!" out loud after I stepped out of the shower! My skin feels SOO CLEAN and SMOOTH and SOFT, I can't stop rubbing my arm, haha!
The little beads are the absolute PERFECT texture - not too hard to the point of scratching you, but not too soft to where they don't even work! They are JUST RIGHT and feel like a massage for your skin!
Thank you, KITSCH, for another ABSOLUTELY AMAZING product that helps me feel beautiful💛
Y
Yeisy
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Great for smooth, hydrated skin!
As someone with dry, sensitive skin, I really enjoyed using this soap. It didn’t irritate my skin, which is what I worry about most when I try a new product. The natural scent of the ingredients in the bar is very subtle, and didn’t bother me at all. I usually use a very hydrating soap from another brand and this is definitely comparable. My skin felt smooth and hydrated after using. It has a pretty good lather and feels so yummy while you’re using it. Another thing I look for is that products don’t leave any residue and I certainly didn’t feel any with this product.
LW
Lea W.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Luxurious
The jojoba body wash bar makes mounds of thick, luxurious suds that leave my skin feeling soft and hydrated. While I didn’t experience much exfoliation from my bar, my skin did feel very smooth and moisturized after using this bar. Body bars often dry my skin out so the hydration was a nice surprise. The scent is very mild and neutral-just a slight clean scent. Definitely recommend this body wash but more as a hydrating wash than a brightening or exfoliating wash.
T
Tamisha
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Body Bar
I love the wash bar. Straight out the box it smells so good and it looks decreative. I like how it leaves my skin so soft also while removing dirt from my skin. I feel like the soap gives my body a deep clean. It does a good job at cleaning.
K
Kacie
Verified Buyer
I recommend this product
Rated 4 out of 5 stars
1 year ago
Buttery Soft and Smooth!
This bar feels so soft and light when being spread over your skin with water. I was shocked at how gentle and silky it felt when I first used it. It also father's up very well, but more of a light and airy, bubbly lather than a rich and creamy one. I would highly recommend using this bar to help your skin feel more hydrated and smooth.
AO
Andrea O.
Verified Buyer
I recommend this product
Rated 4 out of 5 stars
1 year ago
Great option for whole body exfoliation, with no skin stripping!
Loved using this bar for the first time after a day spent gardening. My skin felt really clean and smooth. It felt soft till the next day. The bar doesn't last very long, however, so make sure to get a couple: it's worth it. Made my 60 year old skin look less "crepey". Pretty scent, but I wish it were stronger.
B
Barb
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Amazing soap!
I use the jojoba bead soap after I’ve used the glycolic acid soap, the combination is perfect for my skin. Jojoba bead soap does what it says! No more bumpy dry skin, it is soft as silk. Thank you, Kitsch! I’ll be re-purchasing soon!
M
Mandy
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Very nice
I am loving this jojoba solid body wash. It has a very light pleasant fragrance that is not overpowering. It feels nice in my hand and produces a nice lather when I am washing my body. I noticed a very slight exfoliating effect when using this but not enough that I would skip my normal sugar scrub. Very nice solid body wash!
EC
Ellen C.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
10 months ago
Jojoba bead exfoliating body wash bar
I like it. It really has helped my skin … I use it everytime I shower and it has helped my dry flaky skin. I wish it had a stronger pleasant scent . It does smell fine. It doesn’t smell bad at all I would just like a little flowery or something. It is also lasting very well. Thanks for the great product!
SM
Sheila M.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
9 months ago
So Good!
I could feel the difference - softer skin, of course - after just one use. I could actually see a difference after the second use. I didn't realize my skin had become so dry. Those little beads are like the perfect back scratch but all over. A word of caution: Like a good back scratch it is possible to overdo it. This is a great alternative to the sugar scrub bar.
Loading...
Loading...
Frequently Asked Questions
Sí. Está formulado con ingredientes poco irritantes y diseñado para afinar suavemente la textura sin causar irritación.
Comienza con 2 o 3 veces por semana y ajústalo según la tolerancia y las necesidades de textura de tu piel. (Inferencia basada en el uso típico de una barra exfoliante corporal).
La manteca de karité y el aloe proporcionan hidratación y alivio durante la limpieza, para que la piel se sienta equilibrada, no tirante.
La exfoliación procede de perlas de jojoba biodegradables (sin microplásticos), y la barra se envía en cajas de cartón con certificación FSC y envases de papel reciclado con mayor contenido de PCR.
Es una pastilla de jabón corporal sólida con forma de 6 estriada, diseñada para un mejor agarre y una cobertura eficaz.
Perlas de Jojoba: Exfoliación suave, biodegradable, suaviza la piel.
Jugo de hoja de Aloe Barbadensis: Calma e hidrata, ideal para pieles sensibles o irritadas.
Manteca de Karité: Nutre y contribuye a una espuma cremosa para una piel suave.
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.