Formulato con carbone per detossinare la pelle e aiutare a rimuovere l'eccesso di olio
Crea una schiuma delicata per pulire e rivitalizzare la pelle senza seccarla o privarla dei suoi oli naturali
Ideale per la pulizia quotidiana (specialmente come saponetta per le ascelle)
Senza parabeni, ftalati, siliconi, solfati e fragranze artificiali
Prodotto negli Stati Uniti con ingredienti di qualità
Activated Charcoal detoxifies skin, drawing out impurities, pollutants, and excess oils for visibly clearer skin
Creates a mild, gentle lather that cleanses and reinvigorates skin without stripping or drying it out
Ideal for daily cleansing — works especially well as an underarm bar
Charcoal controls oil and draws away pore-clogging impurities for a deep, refreshing clean
Gentle enough for all skin types, including sensitive skin — moisturizes while it cleanses
Refreshing Sage & Mint fragrance for an invigorating shower experience
Free of parabens, phthalates, silicones, sulfates & artificial fragrance
Made in the USA from Globally Sourced Ingredients, Vegan, Cruelty-Free, Leaping Bunny Certified
Eco-friendly bar format reduces single-use plastic — equivalent to saving two bottles of liquid body wash
Come ottenere una pelle chiara e rinfrescata: Sotto la doccia, inumidire la barretta per creare una schiuma. Usare la schiuma o far scorrere la barretta sulla pelle per pulire a fondo il corpo. Godetevi la sensazione di una pelle rinvigorita e pulita! Suggerimento: utilizzare con il guanto esfoliante Kitsch.
Carbone attivo
Il carbone aiuta a purificare e detergere la pelle da sporco, impurità e oli in eccesso, donandole al contempo un aspetto naturale e luminoso.
Ingredienti
Ingredienti: Cocoato di sodio, Girasole di sodio, Fragranza naturale*, Carbone, Ossido di ferro**, Tocoferoli misti**.
*Profumo naturale derivato da piante. **Colore naturale
Senza parabeni, ftalati, siliconi, solfati e profumi artificiali.
Fragranza: Salvia e Menta
Siamo certificati Leaping Bunny! Il logo Leaping Bunny è l'unico simbolo riconosciuto a livello internazionale che garantisce ai consumatori che non sono stati effettuati nuovi test sugli animali durante lo sviluppo di qualsiasi prodotto che lo mostri.
{
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 detergente per il corpo disintossicante al carbone`;
let bundleHandle = `carbon-desintoxicante-barra-limpiacuerpo`;
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 detergente per il corpo disintossicante al carbone
$ 327.00
$ 327.00
Turbante Asciugamano XL per Capelli – Terracotta a Quadri
$ 888.00
$ 888.00
Dischetti detergenti all'acido kojico per viso e corpo
$ 537.00
$ 537.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 detergente per il corpo disintossicante al carbone`;
let bundleHandle = `carbon-desintoxicante-barra-limpiacuerpo`;
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 detergente per il corpo disintossicante al carbone
$ 327.00
$ 327.00
+
Turbante Asciugamano XL per Capelli – Terracotta a Quadri
$ 888.00
$ 888.00
+
Dischetti detergenti all'acido kojico per viso e corpo
Barretta detergente per il corpo disintossicante al carbone
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">
4 motivi per cui milioni di donne stanno passando alle barrette al carbone vegetale
1. Combatte le tossine
Il carbone attivo è in grado di rimuovere non solo i batteri, ma anche impurità di ogni tipo, tra cui inquinanti, tossine, veleni, grasso in eccesso, sostanze chimiche e microparticelle.
2. Pori più puliti
Il carbone ha la straordinaria capacità di controllare l'olio e di rimuovere le impurità che si accumulano nei pori.
3. Ottimo per tutti i tipi di pelle
Il sapone al carbone è molto benefico anche per le pelli più sensibili. Elimina l'olio in eccesso dalla pelle, ma idrata e nutre anche la pelle secca.
4. Tonifica e rassoda
Il carbone di legna agisce per rendere la pelle più soda e compatta in modo rapido. È un ottimo strumento da utilizzare come parte del vostro regime di bellezza generale.
Frequently Asked Questions
The Kitsch Charcoal Detoxifying Body Wash Bar is a solid alternative to traditional liquid body wash, designed to cleanse and detoxify skin without the plastic waste. Formulated with activated charcoal to draw out impurities and excess oils, it creates a gentle, invigorating lather. Free from sulfates, parabens, and artificial fragrance.
In the shower, wet the bar to create lather. Glide bar or suds over the skin for a thorough body cleanse. Apply gently in circles and wait one minute before rinsing. Pro tip: pair with the Kitsch Exfoliating Glove to help refresh & renew your skin.
Although this formula is gentle and sulfate-free, it is designed to be used as a body wash. For facial cleansing, we recommend a product formulated specifically for the face.
It depends on use, but one bar can replace multiple bottles of body wash — typically lasting weeks or even months with careful storage.
Keep the bar dry between uses to extend its life. Try our Self-Draining Soap Dish or Bottle-Free Beauty® Body Wash Bar Saver Bag for easy storage and quick drying.
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.