Formulado con 0,7% de ácido glicólico para exfoliar suavemente, eliminar las células muertas de la piel, suavizar la textura áspera o irregular y promover una piel más luminosa y uniforme.
Apunta a las zonas con textura, descamadas, apagadas o irregulares en el rostro y el cuerpo, ayudando a revelar con el tiempo una piel más clara y suave.
Hidratación con aloe que calma y minimiza la irritación, proporcionando una limpieza que no reseca y deja la piel fresca, no tirante.
Uso dual para rostro + cuerpo para tratar bultos, congestión y tono desigual de la cabeza a los pies.
Suave pero eficaz—formulado para quienes usan AHA por primera vez y para pieles sensibles, con un enfoque de baja irritación.
Aroma fresco de pepino y eucalipto calmante para una experiencia de lavado fresca y revitalizante.
Simplifica tu rutina de cuidado de la piel con esta barra apta para rostro y cuerpo.
El uso regular promueve una piel mucho más uniforme, luminosa y saludable, con menos arrugas.
Fragancia natural para un aroma limpio, ligero y relajante.
Diseño de fácil agarre con forma acanalada para un mejor manejo y aplicación.
Sostenible y apta para viajar—sin plástico, sin derrames, solo una barra compacta que dura
Hecho en EE.UU., Vegano, Libre de crueldad.
1pc Glycolic Acid Resurfacing Face and Body Wash
Cómo usar:
Masajea suavemente la barra entre las manos o directamente sobre la piel húmeda para crear una espuma rica. Déjala actuar durante al menos un minuto antes de enjuagar.
Uso recomendado:
Piel sensible: Comienza con 2-3 veces por semana y aumenta gradualmente.
Piel normal: Apto para uso diario una vez que la piel se haya adaptado.
Consejo profesional: Combínalo con la bolsa Kitsch para barras de jabón para un almacenamiento fácil y un secado más rápido.
Ácido Glicólico
Un exfoliante suave que suaviza la textura de la piel, difumina las manchas oscuras y limpia los poros, revelando una piel fresca y luminosa.
Zumo de hoja de aloe
Calma e hidrata la piel, equilibrando los efectos exfoliantes del ácido glicólico para una limpieza suave que no reseca.
Ingredientes
Sodium Palmate, Sodium Shea Butterate, Sodium Cocoate y/o Sodium Palm Kernelate, Glicerina, Agua/Aqua/Eau, Sodium Cocoa Butterate, Fragancia (Parfum)*, Ácido Glicólico, Sodium Soyate, Sodium Isostearoyl Lactylate, Cloruro de Sodio, Lauryl Laurate, Aceite de Semilla de Uva (Vitis Vinifera), Sodium Vegate, Tetrasodium Glutamate Diacetate, Ácido Cítrico, Dióxido de Titanio (CI 77891), Extracto de Hamamelis Virginiana, Harina de Avena Sativa (Avena), Jugo de Hoja de Aloe Barbadensis (Aloe), Extracto de Hoja de Rosmarinus Officinalis (Romero), Óxido de Cromo Verde (CI 77288), Gluconato de Sodio. Óxidos de Hierro (CI 77492, CI 77499)**
{
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 = `Gel exfoliante facial y corporal con ácido glicólico`;
let bundleHandle = `barra-exfoliante-de-acido-glicolico`;
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');
});
}
}">
Comprados juntos frecuentemente
+
Total price:
Gel exfoliante facial y corporal con ácido glicólico
$ 327.00
$ 327.00
Gel exfoliante facial y corporal con ácido glicólico
Register to receive a notification when this item comes back in stock.
Please enter a valid email address.
Thanks for signing up! We'll send you an email when the product becomes available.
{
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">
It’s hard for me to buy anything that doesn’t make my face hurt or burn. I have acne and rosacea. I can’t ever find anything that doesn’t irritate my skin. The stuff actually help clear my acne up and that’s embarrassing because I’m like almost 60 years old and duh I shouldn’t go through puberty like this lol. All I can say is this product is actually worked for me and I hope it works for somebody else I mean, can’t don’t know unless you try. I do recommend this. It’s pretty good stuff. Smells good too even makes my bathroom smell good I don’t even need a deodorizer in my bathroom because the soap smells so good thank you!
K
Kristan
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
10 months ago
Amazing!
2 month update on the glycolic acid bar! I love what this has done for my face! I had some acne scars on my forehead from stress and hormonal acne. This bar has not only helped with minimizing breakouts, but has also very clearly faded the scaring. Amazing! Thanks Kitsch for yet another wonderful product!
RD
Rebekah D.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
9 months ago
Got bumps?
Use this fabulous soap as directed and bumps be gone. I'm referring to the tiny bumps some gals get on the skin. They're called keratosis pilaris. They're common, harmless and are the result of excess keratin buildup in the hair follicles. There's something in this soap that just about obliterates them with just one wash. Follow the directions and leave it on your skin for at least one minute before rinsing.
KP
K P.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
7 months ago
The very best for dry flaky skin
I wanted to write to you and tell you how wonderful I find your product,
Glycolic Acid Face & Body Wash Bar.
I am 75 years old and have suffered with extremely dry skin all my life.
I feel like I have tried every moisturizing product on the market, none alieveating my dry skin condition.
I took a chance on this product (and actually ordered a few more to try), and I have to share with you what a change this product has made to my skin.
I always had dry flaky skin, no matter what products I used in the shower and after, but this!!! I noticed a change after the second or third use. At first I chalked it up to new after shower lotion I was using. But even when I switched lotions, my skin had a noticeable improvement.
I can't thank you enough for this wonderful product. Please don't change a thing and I promise to continue purchasing it.
YT
Yvonne T.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Eco-friendly indeed!
Glycolic acid is one ingredient in skincare that I use! I have acne-prone/combination skin and it didn't have any type of disruptions with the formula inside the bar. The bar lathers up really nice and leaves no residue when rinsing off. The scent is different but not offensive. This bar brightened up my skintone, texture was more evened out, and the smooth soft touch got rave reviews from my family so much that they want to try!
D
Donna
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
11 months ago
I love it!
I decided to attempt this using the bar subsequent to utilizing Ultra Sensitive Shampoo and body wash, and the outcome was favorable, with no adverse skin reactions, which is a definite advantage. I exercise caution regarding the products I apply to my skin, and this has been beneficial for a month.
JS
Jamie S.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
9 months ago
My granddaughter loves it!
She mainly uses it on her body and she loves it. She says her skin feels nice. Her little white bumps on the back of her arms have gone away. She says this stuff is great and her back where her hair lays on her shoulders stopped breaking out. She's in love with this product. Thank you Kitsch for giving my granddaughter some magic 💚
CM
Cynthia M.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
9 months ago
Lovely feel and smell.
I bought this Glycolic Acid body soap AND the Kojic Acid & Tumeric body soap. I like them both but this one smells heavenly and leaves my skin so soft afterward. I tend to have dry skin especially on my face and this leaves me soft and smooth without drying me out. It’s also great for shaving my legs!
SF
Stephanie f.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 months ago
Just try it you won't regret it.
I don’t usually write reviews, but I HAD to for this. I’ve been using the glycolic acid bar from Kitsch and I am seriously blown away by the results.
I had small, stubborn milia (those little white bumps) near my eye that would not go away no matter what I tried. After using this bar consistently, they are completely gone. I took before and after photos because I couldn’t believe it myself — and yes, these are real results with no makeup and no filters.
My skin feels smoother, looks clearer, and just overall healthier. It doesn’t leave my skin feeling stripped or dry either, which I was worried about at first. It actually feels clean AND soft after using it.
I’ve tried a lot of products, including higher-end ones, and this honestly surprised me in the best way. It works.
I’m now a loyal Kitsch customer and will absolutely keep using this. If you’re on the fence — try it. It made a real difference for me.
E
Edita
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Skin feels great
I love that this bar is both full face and body. I love the cute design and the perfect size! It lathers up nicely and works so well. I prefer to use it on my body, but I tried it on the face and it does the job without drying my skin. My skin is left clean and comfortable and threaded for the next skin care steps.
Loading...
Loading...
Frequently Asked Questions
Sí. Es un limpiador exfoliante 2 en 1 diseñado para suavizar la textura y uniformar el tono en la cara y el cuerpo.
Las personas principiantes o con piel sensible deben empezar con 2-3 veces por semana; una vez aclimatadas, las personas con piel normal/tolerante pueden usarlo a diario.
La fórmula combina ácido glicólico con aloe para minimizar la irritación y proporcionar una limpieza sin resecar, dejando la piel fresca, sin tirantez.
Masajea suavemente la pastilla entre las manos o directamente sobre la piel para crear una espuma rica, déjala actuar durante al menos un minuto y luego enjuaga.
Sí. La dosis de ácido glicólico al 0,7 % está calibrada para ser eficaz pero suave, y la infusión de aloe calma aún más la piel sensible.
Sí. Kitsch recomienda realizar una prueba cutánea con todos los productos consumibles antes de su uso completo.
El precio de referencia representa el precio al que se ofrecía anteriormente el producto o el precio de mercado estimado de artículos comparables en otros establecimientos. Dado que los precios suelen fluctuar, no podemos garantizar que el precio de referencia refleje el precio de mercado vigente en un momento determinado.
Ο ορισμός μιας επιλογής έχει ως αποτέλεσμα την πλήρη ανανέωση της σελίδας.