Pulisce in profondità il viso e il corpo con curcuma che ama la pelle, acido ialuronico idratante, e burro di karité nutriente
Infuso con acido kojico per aiutare a schiarire la pelle per una carnagione uniforme
Formulato per aiutare la tua pelle a risplendere dall'interno, attenuando l'aspetto delle macchie scure e dell'iperpigmentazione
Schiuma che rinnova la tua routine dalla testa ai piedi con curcuma che ama la pelle, acido ialuronico idratante e burro di karité nutriente
Riduce le bottiglie di plastica usa e getta:la nostra formula concentrata in barra contiene gli ingredienti attivi equivalenti a una bottiglia da 16 oz di gel doccia liquido
Privo di parabeni, ftalati, siliconi e solfati
Prodotto negli USA, Vegano, Cruelty Free, Certificato Leaping Bunny
Inumidisci la barra con acqua calda e massaggiala sulla pelle, lavorandola in una schiuma delicata. Risciacqua e segui con il tuo idratante preferito per un'ulteriore idratazione.
Consiglio: Per un'esperienza di pulizia del corpo completa, abbinalo al Guanto Esfoliante Kitsch per aiutare a rinfrescare e rinnovare la tua pelle.
Prima dell'uso, esegui un test di sensibilità su aree come l'interno del braccio o il lato del collo per verificare la sensibilità della pelle. Interrompere l'uso se si verifica irritazione. Non adatto alla pelle sensibile.
Acido Cogico
L'Acido Kojico, ricco di antiossidanti, agisce sulle macchie scure e sulla pigmentazione per aiutare a schiarire e uniformare l'incarnato.
Curcuma
Aiuta la pelle a risplendere dall'interno grazie alla curcuma, ricca di antiossidanti e antimicrobici, che agisce per guarire la pelle e attenuare le discromie.
Acido ialuronico
L'acido ialuronico è un moltiplicatore di idratazione che aiuta ad attirare e trattenere l'acqua per una pelle immediatamente idratata e rimpolpata.
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.
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 nello sviluppo di alcun prodotto che lo mostra.
{
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: 4,
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 per il viso e il corpo all'acido kojico per l'iperpigmentazione`;
let bundleHandle = `barretta-per-il-viso-e-il-corpo-allacido-kojico-per-liperpigmentazione`;
let bundleCount = 4;
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 per il viso e il corpo all'acido kojico per l'iperpigmentazione
$ 420.00
$ 420.00
Shampoo all'acqua di riso per la crescita dei capelli
$ 373.00
$ 373.00
Balsamo all'acqua di riso per la crescita dei capelli
$ 373.00
$ 373.00
Barretta per il viso e il corpo all'acido kojico per l'iperpigmentazione
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 alla barra illuminante all'acido cogico di Kitsch
1. Illumina la pelle dall'interno
Ravviva la naturale luminosità della tua pelle con acido cogico illuminante, curcuma benefica per la pelle, acido ialuronico idratante e burro di karité nutriente.
2. Uniforma l'incarnato
Agisce sul tono della pelle irregolare, levigandolo e rinnovandolo gradualmente a ogni pulizia.
3. Schiarisce le macchie scure e la pigmentazione
La sua formula rinnovatrice della pelle aiuta a ridurre la comparsa di macchie scure causate dal sole, cicatrici e iperpigmentazione.
4. Deterge il viso e il corpo
Questa saponetta per tutto il corpo insapona la pelle dalla testa ai piedi per una pulizia tonificante, senza aggiunta di acqua, conservanti e flaconi.
I like this Kojic bar! When I first got it in the mail, I didn’t even have the box open and I could smell the fragrance from the bar, so it is very strong. Some people may not mind, but others who are sensitive to smell should take note. The ridges on the bar makes it easier to grip onto the sides to hold when using it, especially in the shower. I make sure to take it out of the shower for it to dry so it stays in tact as long as possible.
I gradually saw a few areas of my skin subtly brighten after multiple uses over 2 weeks, but I did notice that my skin felt a bit more sensitive being out in the sun, so I have to make sure I’m applying sunscreen everyday, at least a couple times a day. I noticed one of my darker sunspots on the side of my face has gotten lighter, and that it seems to be doing good at slowly tackling any minor scars or reducing redness from acne. On my arms, it has helped blur the “farmer’s tan lines” on my biceps, but my forearms only look slightly lighter overall.
The only thing that I haven’t noticed a difference are the little freckles across my nose and cheeks. If anything, they seem a little more noticeable. But since there are many, I’m sure it will be much longer for me to notice any changes. Overall, it is a subtle transformation for me, helping to even out and brighten my skin tone. This isn’t an overnight change kind of product, where you’ll have instant results, and will take many more uses over time to notice a bigger impact, but I think it…
MH
Mandi H.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Only a weeks use!
I have only been using this on my face for a week (and only every other day) and I can already see some of my dark spots lighting up! And my over all skin tone evening out. The picture on the left was taken on December 1 and the one on the right was taken December 8th. I’m excited to see what next week will bring.
K
Krista
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Life saver for my inflammatory rash!
A few weeks ago, I woke up to a rash all over my face and arms, a clear indication of my inflammation. On the left, you'll see the rash on day two. Using the bar every two days, I witnessed a remarkable transformation - my rash dried up and disappeared within a week! Having faced similar breakouts before that lasted for months, with prescriptions offering no respite, I'm grateful for Kitsch's remarkable product!
PV
Punky Val (.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
2 years ago
I love it!!
I was a bit skeptical about this soap since my skin is a combination and it might dry my face too easily, but that's not the case. It leaves my skin very soft and I can even use it to take my makeup off! My rosacea has improved since I started using it and my skin looks brighter. I'm very happy with it.
ΦΝ
Φωτεινή Ν.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
In LOVE with this bar!!!
If you have to buy one item from kitsch for your skin/ body let this be it!
I have very sensitive skin from my face to my body so I want to start by saying this bar did not make my skin dry at all while using it, which has been a problem for me with any other clarrifying soap I have used.
I used to have little pipmly bumbps on my arms (in the tricep area)- it got rid of those. The kind of purlpy shade my underarms used to have? Gone! Spots from shaving I used to have on my legs? Not anymore! Use it with an exfoliating body brush with bristles and you will have new skin!
In my face I have oily-sensitive skin and a good cleanser was imposible for me to find BUT this bar did the trick! My skin also used to be irritaded and had red spots all over but this bar after only one week of use relieved it- say goodbye to dull skin!
As for the smell, personaly I ADORE it! It is very citrucy and fresh, plus it fills up the whole room and it's like you are using a very nice, clean air freshener! I must say that despite me loving it, it can be overpowering for some people so take that into consideration.
Finally, the size is HUGE and I could not be happier with that! It gats foamy very easy so no need to rub it a lot (you would be wasting product). I have been using it for 2 months now everyday for my face and 2 times/week for my body and I have quite a lot of it left (definately for another month)!
ES
Emily S.
Verified Buyer
I recommend this product
Rated 4 out of 5 stars
1 year ago
Working, slowly but surely
I’ve been have been washing my face with the soap every morning and night, after taking my make up off, for a moth now. I think you can see my marks starting to fade. I’ll keep going as the soap makes my face feel really clean and soft and it smells absolutely amazing.
BT
bella t.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
GET THIS NOW!
the photo i've linked is chafing i've experienced in my thighs from the summer heat over the years due to my huge legs rubbing together. i've had this soap for like 3 weeks and it's already completely cleared up my dark spots. i was really sceptical about this but im not kidding when i say this is a definite need.
KH
Kim H.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
WOW!
I have. A million things to say but I’ll keep it short. I’ve only used this bar a handful of times. See the difference for yourself, even my skin is clearing up as a whole 🫨
PR
P R.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
5 months ago
Really works on dark spots!
Can’t believe just using the soap has lightened dark spots that laser treatments and expensive fade creams didn’t. Works amazing on surgical scars too. Not harsh on my sensitive skin. Lasts a long time in the saver bag that I hang on a hook. Photos after 6 months of use in the shower.
T
Trish
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
5 months ago
It WORKS!
I have tried so many products over the years to get rid of my dark spots on my face, even home remedies, but nothing worked. This truly works! I am so very thrilled to write this review and add my pictures. I never do reviews, let alone put my picture out there, but you MUST see the change that I saw in a short period of time!
Loading...
Loading...
Frequently Asked Questions
L'acido cogico ha ottime proprietà schiarenti e illuminanti per la pelle, aiutando a contrastare e attenuare macchie scure, iperpigmentazione e tono della pelle non uniforme.
Sebbene questo prodotto sia abbastanza delicato da essere utilizzato quotidianamente, consigliamo di effettuare un patch test sul lato interno dell'armatura del collo per verificare la sensibilità della pelle prima di utilizzarlo così frequentemente. Se si verifica un'irritazione, dovresti ridurre la frequenza di utilizzo o provare una delle nostre altre body bar realizzate per pelli più sensibili.
Puoi insaponare delicatamente sotto l'acqua corrente e applicarlo su corpo e viso, ma per un'esperienza di pulizia del corpo ottimale, abbinalo al guanto esfoliante Kitsch per rinfrescare e rinnovare la pelle.
Sì! Questa saponetta delicata e coccolosa per la pelle è stata creata per essere sicura da usare sia sul corpo che sul viso. Tuttavia, consigliamo di evitare il contatto con occhi e labbra per ridurre il rischio di irritazioni in quelle aree sensibili.
Il nostro Brightening Kojic Acid Solid Face & Body Wash è specificamente progettato per l'uso su corpo e viso per aiutare a illuminare e purificare la pelle. Sebbene sia ottimo per la pelle, non è formulato per la cura dei capelli. Capelli e cuoio capelluto hanno esigenze diverse, quindi è meglio usare prodotti realizzati per il tuo tipo di capelli e le tue preoccupazioni.
Sconsigliamo questo prodotto alle persone con pelle sensibile.
In media, una saponetta per il corpo e il viso può durare 50-100 utilizzi, a seconda dell'uso individuale. La longevità della saponetta varia in base a fattori quali la quantità utilizzata per lavaggio e la conservazione tra un utilizzo e l'altro. Per massimizzare la sua durata, consigliamo di lasciarla asciugare completamente tra un utilizzo e l'altro e di conservarla in un luogo asciutto.
Gli ingredienti chiave sono l'acido cogico per uniformare e illuminare l'incarnato, la curcuma per ravvivare la luminosità, l'acido ialuronico per un'idratazione ultra e il burro di karité per un nutrimento profondo. Questi ingredienti lavorano insieme per fornire una pulizia rinfrescante e illuminante.
Sì, il detergente solido viso e corpo illuminante all'acido cogico è l'ingrediente perfetto per contrastare e attenuare gradualmente le macchie scure causate dall'esposizione al sole, le cicatrici e l'iperpigmentazione, contribuendo a uniformare il tono della pelle nel tempo.
Questo prodotto non è consigliato per pelli sensibili. Prima dell'uso, effettuare un test localizzato su aree come l'interno del braccio o il lato del collo per verificare la sensibilità della pelle. Interrompere l'uso in caso di irritazione.
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.