✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
1/15
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾
1/15

✨Peel Shot Glow Rice Ampoule Duo - Serums for Brightening, Exfoliating, and Moisturizing🌾

$24.99
$49.99
Save $25.00
Option
Please select a option
Quantity
/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1539149753700').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);

HURRY! ONLY 894 LEFT IN STOCK.
98% of customer buy 2-4 items to use daily and as gifts for their loved ones...
SOLD OUT FAST. GET 50% OFF NOW!!⚡


This product is definitely worth the money. If you are not satisfied within 30 days, we will refund your money!

  • 🏪 PalPay-certified merchants in good standing.
  • 👍Facebook officially recommends high-quality merchants.
  • 💵The merchant deposit of GBP 100,000 has been paid to PayPal.
  • ✅Support PalPay and global credit card payments.
  • 🔒Google SSL security certificate guarantees your privacy.
  • 🛫Global super-fast air transportation.
  • 👏Up to 30 days after-sales guarantee.
  • 🎁💐Don't forget to get some for your family and friends, as it's a unique gift idea.

*Our goods are authentic, with genuine patents; counterfeits must be investigated! Customers, please identify our products!


🌾PeelShot Rice Ampoule

Dual-Action Peeling & Absorption | Smooth, Radiant Skin Instantly | Innovative Rice-Based Formula

👀Highlights
• Removes Whiteheads and Blackheads and Dead skin cells with Thick particles
• Soothing plant-derived gommage for a non-irritating peeling experience
• It visibly brightens and revitalizes, leaving your skin looking refreshed and radiant

🧪STUDY RESULTS
• Up to 125.22% in Skin texture
• Up to 160% in Pore count and size
• Up to 192.65% in Reduction of Whiteheads

💦Value Proposition
• Infused with black rice extract and niacinamide, it removes blackheads while brightening and revitalizing the skin
• A next-generation fermented ingredient featuring
PENTAVITIN, known as moisture magnet, combined with rice
• Moisturizing Clarity with Niacinamide & Natural
Moisturizing Factors - After clearing away excess sebum and dead skin cells, this ampoule, rich in niacinamide and natural moisturizing factors (NMF), helps refine texture, resulting in a smooth, revitalized complexion
• 4-in-1 Exfoliating Complex: AHA, BHA, PHA & Oil-Soluble Peeling - Combining both water- and oil-soluble exfoliants, this ampoule works as a booster for your skin's natural turnover cycle, refining texture without irritation for smoother, healthier-looking skin

🧴How to Use
Step 01.
• After Cleansing, light par your face dry and apply an approptiate amout
Step 02.
• Gently massage in circular motions, then rinse off with lukewarm water
Step 03.
• Use 2-3 times a week, and as impurities are cleared, the visible amout may decrease, allowing you to reduce the frequency of use

Specs

Capacity: 80ml

Target Area: Face

Skin Type: All Skin Types