Wir sind Leaping Bunny zertifiziert! Das Leaping Bunny-Logo ist das einzige international anerkannte Symbol, das den Verbrauchern garantiert, dass bei der Entwicklung eines Produkts, das dieses Logo trägt, keine neuen Tierversuche durchgeführt wurden.
{
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 = `Süßkirsch-Reinigungsgel`;
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');
});
}
}">
Häufig zusammen gekauft
+
Total price:
Süßkirsch-Reinigungsgel
$ 281.00
$ 281.00
Satin Duschhaube - Kirschen
$ 677.00
$ 677.00
Übergroße Satin-Haube mit Kirschmotiv
$ 514.00
$ 514.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 = `Süßkirsch-Reinigungsgel`;
let bundleHandle = `cleansing-tart-cherry-body-wash`;
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 = 'Auswahl in den Warenkorb legen';
this.$dispatch('update-cart', { cart: response });
this.$dispatch('toggle-cart-drawer');
});
}
}">
Registrieren Sie sich, um eine Benachrichtigung zu erhalten, wenn dieser Artikel wieder auf Lager ist.
Bitte geben Sie eine gültige E-Mail Adresse ein.
Danke für die Anmeldung! Wir schicken Ihnen eine E-Mail, sobald das Produkt wieder verfügbar ist.
{
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
Der Duschgel-Riegel Kitsch ist eine wirksame Alternative zu herkömmlichen flüssigen Duschgels und wurde entwickelt, um Ihre Haut ohne Plastikmüll zu reinigen und zu pflegen. Vollgepackt mit hautfreundlichen Inhaltsstoffen erzeugt es einen reichhaltigen, cremigen Schaum mit einem unwiderstehlichen Duft. Es ist reisefreundlich, langanhaltend und frei von Sulfaten, Parabenen und anderen aggressiven Chemikalien und sorgt für eine Sauberkeit, die Sie lieben werden!
Ja! Unser reinigender Duschgel mit Sauerkirsche besteht aus sanften, hautfreundlichen Inhaltsstoffen und ist sulfat- und reizstofffrei, sodass er ideal für alle Hauttypen ist.
Befeuchten Sie den Riegel einfach mit warmem, fließendem Wasser und massieren Sie ihn in Ihre Haut ein, bis sich ein weicher Schaum bildet. Sie können es auch mit unserem Bottle-Free Beauty® Body Wash Bar Saver Pouch für noch mehr Schaum verwenden.
Obwohl es eine sanfte, sulfatfreie Formel hat, ist es ausschließlich zur Verwendung als Duschgel gedacht.
Es hängt von der Verwendung ab, aber eine Tablette kann mehrere Flaschen Duschgel ersetzen, die oft Wochen oder sogar Monate halten. Bei sorgfältiger Lagerung hält es sogar noch länger.
Um die Lebensdauer zu verlängern, halten Sie es zwischen den Anwendungen trocken. Probieren Sie unsere selbstentleerende Seifenschale oder unseren Duschgel-Sparbeutel zur einfachen, schnell trocknenden Aufbewahrung.
Der Vergleichspreis entspricht dem Preis, zu dem das Produkt zuvor angeboten wurde, oder dem geschätzten Marktpreis vergleichbarer Artikel bei anderen Anbietern. Da Preise häufig schwanken, können wir nicht garantieren, dass der Vergleichspreis zu einem bestimmten Zeitpunkt dem aktuellen Marktpreis entspricht.
Wenn du dich für eine Auswahl entscheidest, wird die Seite komplett aktualisiert.