Formulato con perle di jojoba biodegradabili per rimuovere delicatamente pelle secca e squamosa, levigare irregolarità e ruvidità, e preparare la pelle affinché le creme idratanti vengano assorbite meglio.
Arricchito conburro di karité + aloe per idratare e lenire durante la detersione: la pelle appare morbida e calma, mai secca.
Formula a bassa irritazione delicata abbastanza per pelli sensibili ma comunque capace di migliorare visibilmente la grana della pelle.
Esfoliazione sostenibile—le perle di jojoba sono biodegradabili e rispettose dell’ambiente.
Pulito e consapevole: Senza parabeni, ftalati, CMR diretti e PFAS; vegano, cruelty-free, senza glutine e realizzato con ingredienti ecologici in confezione riciclata/FSC.
La pelle appare più liscia e raffinata subito dopo l’uso—le zone secche e ruvide sono visibilmente ammorbidite.
La tua crema idratante funziona meglio perché la pelle morta viene rimossa delicatamente.
Idratazione + esfoliazione in un solo passaggio—senza tensione, solo comfort equilibrato.
Abbastanza delicato per pelli sensibili grazie alla sua formula a bassa irritazione e ben studiata.
Piacevole da usare e da cui sentirsi bene—ingredienti puliti con design sostenibile.
Uso raccomandato:
Pelle sensibile: Usare 2–3 volte a settimana, quindi aumentare gradualmente l’uso.
Pelle normale: Sicuro per l’uso quotidiano una volta che la pelle si è abituata.
Consiglio professionale: Abbinalo alla Sacchettino porta sapone Kitsch per una conservazione facile e un’asciugatura più rapida.
Perle/Esteri di jojoba
Queste perle biodegradabili e delicate esfoliano le cellule morte della pelle senza irritarla, lasciandola fresca e idratata. Sono sicure per le pelli sensibili e per l'ambiente, offrendo un modo non abrasivo per rimuovere le zone ruvide.
Burro di Karité
Ravviva la pelle con il Burro di Karité, ricco di vitamine, che aiuta a idratare la pelle per renderla più morbida, liscia e idratata.
Ingredienti
Sodium Sunflowerate, Sodium Cocoate, Sodium Myristate, Acqua, Glicerina, Sodium Shea Butterate, Fragranza (Parfum)*, Sodium Cocoa Butterate, Esteri di Jojoba, Burro di Karité (Butyrospermum Parkii), Glyceryl Laurate, Lauryl Laurate, Polyglyceryl-4 Caprate, Cloruro di Sodio, Tetrasodium Glutamate Diacetate, Succo di Foglia di Aloe Barbadensis, Limonene, Potassium Cocoate, Potassium Oleate, Olio/Estratto di Lavanda, Cumarina, Linalool, Acetato di Linalile, Potassium Olivate, Pinene, Acido Citrico
{
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 = `Barretta esfoliante per il corpo alle perle di jojoba`;
let bundleHandle = `jojoba-perle-esfolianti-lavaggio-corpo-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');
});
}
}">
Acquistati spesso insieme
+
Total price:
Barretta esfoliante per il corpo alle perle di jojoba
$ 327.00
$ 327.00
Maschera Nutriente e Idratante con olio di cocco
$ 467.00
$ 467.00
Cuffia da doccia - rosa con pois
$ 677.00
$ 677.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 = `Barretta esfoliante per il corpo alle perle di jojoba`;
let bundleHandle = `jojoba-perle-esfolianti-lavaggio-corpo-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 = 'Aggiungi la selezione al carrello';
this.$dispatch('update-cart', { cart: response });
this.$dispatch('toggle-cart-drawer');
});
}
}">
Acquistati spesso insieme
Barretta esfoliante per il corpo alle perle di jojoba
Barretta esfoliante per il corpo alle perle di jojoba
Registratevi per ricevere una notifica quando questo articolo sarà di nuovo disponibile.
Inserire un indirizzo e-mail valido.
Grazie per esserti iscritto/a! Ti invieremo un'e-mail quando il prodotto sarà disponibile.
{
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ì. È formulato con ingredienti a basso potere irritante e progettato per affinare delicatamente la grana della pelle senza causare irritazioni.
Inizia con 2-3 volte alla settimana e regola in base alla tolleranza della tua pelle e alle sue esigenze. (Conclusione basata sull'uso tipico di una saponetta esfoliante per il corpo).
No, il burro di karité e l'aloe forniscono idratazione e leniscono durante la detersione, quindi la pelle risulta equilibrata e non tesa.
L'esfoliazione è ottenuta grazie a microsfere di jojoba biodegradabili (senza microplastiche) e la saponetta viene spedita in cartoni certificati FSC con imballaggi in carta riciclata ad alto contenuto di PCR.
È una saponetta solida per il corpo a forma di 6 con scanalature, progettata per garantire una presa sicura e una copertura efficiente.
Perle di jojoba: esfoliazione delicata, biodegradabili, levigano la pelle.
Succo di foglie di aloe barbadensis: lenisce e idrata, ideale per pelli sensibili o irritate.
Burro di karité: nutre e contribuisce a creare una schiuma cremosa per una pelle morbida.
Il prezzo di confronto rappresenta il prezzo al quale il prodotto era precedentemente offerto o il prezzo di mercato stimato per articoli comparabili venduti altrove. Poiché i prezzi possono variare frequentemente, non possiamo garantire che il prezzo di confronto rifletta il prezzo di mercato corrente in un determinato momento.
Scegliendo una selezione si ottiene un aggiornamento completo della pagina.