Deterge delicatamente senza seccare la pelle, ideale per l’uso quotidiano
Con fresche note di sale marino, ambra e legni di mare
Lascia la pelle avvolta in una fragranza acquatica legnosa
Formula solida senza plastica : più prodotto, meno sprechi
Schiuma ricca per una detersione delicata e piacevole
Sostenibile e perfetta da portare in viaggio : compatta, senza perdite e di lunga durata
Design ergonomico con superficie scanalata per una presa sicura
Senza parabeni, ftalati e solfati per una detersione delicata e rispettosa della pelle
Prodotta negli Stati Uniti, vegana, cruelty-free e certificata Leaping Bunny
Massaggia delicatamente la barra tra le mani o direttamente sulla pelle fino a ottenere una schiuma ricca e cremosa. Risciacqua accuratamente.
Consiglio: abbinala al guanto esfoliante Kitsch per aiutare a rivitalizzare e rinnovare la pelle.
Glicerina
Un umettante che attira l’umidità nella pelle per mantenerla morbida e idratata.
Ingredienti
Palmitato di sodio, Cocoato di sodio e/o Palm Kernelate di sodio, Acqua, Glicerina, Profumo (Parfum), Laurato di laurile, Acido stearico, Cloruro di sodio, Metil cocoil taurato di sodio, Diacetato di glutammato tetrasodico, Estratto di foglie di rosmarino, Acetato di tocoferile (vitamina E), Tetrametil acetilottaidronaftaleni, Olio di scorza di arancia amara, Limonene, Vanillina, Citronellolo, Cumarina, Biossido di titanio (CI 77891), Ossidi di ferro (CI 77491, CI 77499, CI 77492)1
1Coloranti di origine naturale
Siamo certificati Leaping Bunny! Questo marchio è l’unico riconosciuto a livello internazionale che garantisce l’assenza di test sugli animali nello sviluppo dei prodotti.
{
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 detergente corpo Amber Shores`;
let bundleHandle = `barra-detergente-corpo-amber-shores`;
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:
Barra detergente corpo Amber Shores
$16.00
$16.00
Sacchettino porta sapone - Cioccolato
$10.00
$10.00
Guanto esfoliante - Nero
$20.00
$20.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 detergente corpo Amber Shores`;
let bundleHandle = `barra-detergente-corpo-amber-shores`;
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');
});
}
}">
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">
This really is a level up from other soaps. It smells good, lathers well, and is so moisturizing that I don’t even need lotion after the shower.
CM
Cherie M.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
6 months ago
Great scent
It lathers so well and still smells good hours later. It smells amazing. Not a fruity, floral which is nice. Strong winter or fall scent vibe.
G
GF
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
6 months ago
Lovely
The amber shores body wash body doesn't irritate my skin, it rinses off easily and leaves my skin feeling soft, and it smells divine!
S
Sierra
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
6 months ago
A cozy clean surprise.
I was really satisfied with the Kitsch Amber Shores Body Wash Bar. It has such a warm, cozy, comforting scent while still being gentle on my skin. It lathers beautifully, rinses clean no residue and never leaves that tight or dry feeling.
MM
mary m.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
6 months ago
my first body bar and i’m hooked!
I had the opportunity to test this product and the scent is amazing, my entire bathroom smelled heavenly but the scent was not overpowering!! the lather was wonderful and it didn’t leave my skin feeling dry like typical bar soap does. the bar also lasts forever and a little lather goes a long way. this is my fist body bar but certainly not my last!
J
Jennifer
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
6 months ago
A must Have
This soap bar is so warm and inviting! The aroma fills my bathroom after I use it with a luxurious scent and leaves my skin feeling soft and hydrated!
J
Jordan
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
6 months ago
Great scent and felt clean.
The scent was not too strong and it kept my skin clean and hydrated.
HH
Heather H.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
6 months ago
100% recommend!
This amber shores cleansing bar did not disappoint! Rich, luxurious lather that smells heavenly & the fragrance lasts for hours after washing. Kitsch has knocked another one out of the park!!
VL
Victoria L.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
6 months ago
This is amazing!
I love love love this product. The scent is amazing and the lather is also amazing. It smells just like the hair perfume!
J
Julia
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 months ago
Wish it were a moisturizing liquid body wash!
As much as I love the smell of this bar soap I truly wish it would be made into a moisturizing liquid soap due to the fact that it leaves my body very dry after using it. It cleans well but it would be best if it left skin silky soft like the rice water bar soap.
Loading...
Loading...
Frequently Asked Questions
La barra detergente corpo Kitsch è un’alternativa solida al bagnoschiuma tradizionale. Formulata con ingredienti delicati sulla pelle, crea una schiuma ricca e cremosa lasciando una fragranza irresistibile. Ideale per viaggiare, di lunga durata e senza solfati, parabeni o ingredienti aggressivi, per una pelle pulita e una piacevole sensazione di benessere.
Basta inumidire la barra con acqua tiepida e massaggiarla sulla pelle fino a ottenere una schiuma delicata. Può essere utilizzata anche con un sacchetto porta-sapone per una schiuma ancora più abbondante.
Sebbene la formula sia delicata e priva di solfati, è pensata esclusivamente per l’uso sul corpo.
Dipende dall’uso, ma una barra può sostituire più flaconi di bagnoschiuma e dura generalmente settimane o anche mesi. Con una corretta conservazione dura ancora più a lungo.
Per prolungarne la durata e mantenerla asciutta tra un utilizzo e l’altro, consigliamo di utilizzare un portasapone drenante o una rete porta-sapone, ideali per favorire un’asciugatura rapida.
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.