Korea WartClear Intensive Ampoule

Free shipping
Hot
/** * 优惠码组件模型类 * 处理优惠码的显示和交互逻辑 */ class SpzCustomDiscountCodeModel extends SPZ.BaseElement { constructor(element) { super(element); // 复制按钮和内容的类名 this.copyBtnClass = "discount_code_btn" this.copyClass = "discount_code_value" } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { // 初始化服务 this.action_ = SPZServices.actionServiceForDoc(this.element); this.templates_ = SPZServices.templatesForDoc(this.element); this.xhr_ = SPZServices.xhrFor(this.win); } /** * 渲染优惠码组件 * @param {Object} data - 渲染数据 */ doRender_(data) { return this.templates_ .findAndRenderTemplate(this.element, Object.assign(this.getDefaultData(), data) ) .then((el) => { this.clearDom(); this.element.appendChild(el); // 绑定复制代码功能 this.copyCode(el, data); }); } /** * 获取渲染模板 * @param {Object} data - 渲染数据 */ getRenderTemplate(data) { const renderData = Object.assign(this.getDefaultData(), data); return this.templates_ .findAndRenderTemplate(this.element, renderData) .then((el) => { this.clearDom(); return el; }); } /** * 清除DOM内容 */ clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } /** * 获取默认数据 * @returns {Object} 默认数据对象 */ getDefaultData() { return { isMobile: appDiscountUtils.judgeMobile(), isRTL: appDiscountUtils.judgeRTL(), image_domain: this.win.SHOPLAZZA.image_domain, copyBtnClass: this.copyBtnClass, copyClass: this.copyClass } } /** * 复制优惠码功能 * @param {Element} el - 当前元素 */ copyCode(el) { const copyBtnList = el.querySelectorAll(`.${this.copyBtnClass}`); if (copyBtnList.length > 0) { copyBtnList.forEach(item => { item.onclick = async () => { // 确保获取正确的元素和内容 const codeElement = item.querySelector(`.${this.copyClass}`); if (!codeElement) return; // 获取纯文本内容 const textToCopy = codeElement.innerText.trim(); // 尝试使用现代API,如果失败则使用备用方案 try { if (navigator.clipboard && navigator.clipboard.writeText) { await navigator.clipboard.writeText(textToCopy); } else { throw new Error('Clipboard API not available'); } // 显示复制成功提示 this.showCopySuccessToast(textToCopy, el); } catch (err) { console.error('Modern clipboard API failed, trying fallback...', err); // 使用备用复制方案 this.fallbackCopy(textToCopy, el); } const discountId = item.dataset["discountId"]; // 跳转决策: is_redirection + link(可选覆盖) const setting = { is_redirection: item.dataset["redirection"] === "true", link: item.dataset["link"], }; const landingUrl = `/promotions/discount-default/${discountId}`; const finalUrl = appDiscountUtils.resolveDiscountHref(setting, landingUrl); if (finalUrl && appDiscountUtils.inProductBody(this.element)) { this.win.open(finalUrl, '_blank', 'noopener'); } } }) } } /** * 使用 execCommand 的复制方案 * @param {string} codeText - 要复制的文本 * @param {Element} el - 当前元素 */ fallbackCopy(codeText, el) { const textarea = this.win.document.createElement('textarea'); textarea.value = codeText; // 设置样式使文本框不可见 textarea.style.position = 'fixed'; textarea.style.left = '-9999px'; textarea.style.top = '0'; // 添加 readonly 属性防止移动端虚拟键盘弹出 textarea.setAttribute('readonly', 'readonly'); this.win.document.body.appendChild(textarea); textarea.focus(); textarea.select(); try { this.win.document.execCommand('copy'); // 显示复制成功提示 this.showCopySuccessToast(codeText, el); } catch (err) { console.error('Copy failed:', err); } this.win.document.body.removeChild(textarea); } /** * 创建 Toast 元素 * @returns {Element} 创建的 Toast 元素 */ createToastEl_() { const toast = document.createElement('ljs-toast'); toast.setAttribute('layout', 'nodisplay'); toast.setAttribute('hidden', ''); toast.setAttribute('id', 'discount-code-toast'); toast.style.zIndex = '1051'; return toast; } /** * 挂载 Toast 元素到 body * @returns {Element} 挂载的 Toast 元素 */ mountToastToBody_() { const existingToast = this.win.document.getElementById('discount-code-toast'); if (existingToast) { return existingToast; } const toast = this.createToastEl_(); this.win.document.body.appendChild(toast); return toast; } /** * 复制成功的提醒 * @param {string} codeText - 要复制的文本 * @param {Element} el - 当前元素 */ showCopySuccessToast(codeText, el) { const $toast = this.mountToastToBody_(); SPZ.whenApiDefined($toast).then(toast => { toast.showToast("Discount code copied !"); this.codeCopyInSessionStorage(codeText); }); } /** * 复制优惠码成功后要存一份到本地存储中,购物车使用 * @param {string} codeText - 要复制的文本 */ codeCopyInSessionStorage(codeText) { try { sessionStorage.setItem('other-copied-coupon', codeText); } catch (error) { console.error(error) } } } // 注册自定义元素 SPZ.defineElement('spz-custom-discount-code-model', SpzCustomDiscountCodeModel);
/** * Custom discount code component that handles displaying and managing discount codes * @extends {SPZ.BaseElement} */ class SpzCustomDiscountCode extends SPZ.BaseElement { constructor(element) { super(element); // API endpoint for fetching discount codes this.getDiscountCodeApi = "\/api\/storefront\/promotion\/code\/list"; // Debounce timer for resize events this.timer = null; // Current variant ID this.variantId = "a57704e1-7d98-4a4b-95f3-081e2be8e3ff"; // Store discount code data this.discountCodeData = {} } /** * Check if layout is supported * @param {string} layout - Layout type * @return {boolean} */ isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } /** * Initialize component after build */ buildCallback() { this.templates_ = SPZServices.templatesForDoc(); this.viewport_ = this.getViewport(); // Bind methods to maintain context this.render = this.render.bind(this); this.resize = this.resize.bind(this); this.switchVariant = this.switchVariant.bind(this); } /** * Setup component when mounted */ mountCallback() { this.getData(); // Add event listeners this.viewport_.onResize(this.resize); this.win.document.addEventListener('dj.variantChange', this.switchVariant); } /** * Cleanup when component is unmounted */ unmountCallback() { this.viewport_.removeResize(this.resize); this.win.document.removeEventListener('dj.variantChange', this.switchVariant); // 清除定时器 if (this.timer) { clearTimeout(this.timer); this.timer = null; } } /** * Handle resize events with debouncing */ resize() { if (this.timer) { clearTimeout(this.timer) this.timer = null; } this.timer = setTimeout(() => { if (appDiscountUtils.inProductBody(this.element)) { this.render(); } else { this.renderSkeleton(); } }, 200); } /** * Handle variant changes * @param {Event} event - Variant change event */ switchVariant(event) { const variant = event.detail.selected; if (variant.product_id == '0afdd86d-5833-4afc-8996-04cc0311b070' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } /** * Fetch discount code data from API */ getData() { if (appDiscountUtils.inProductBody(this.element)) { const reqBody = { product_id: "0afdd86d-5833-4afc-8996-04cc0311b070", variant_id: this.variantId, product_type: "default", } if (!reqBody.product_id || !reqBody.variant_id) return; this.discountCodeData = {}; this.win.fetch(this.getDiscountCodeApi, { method: "POST", body: JSON.stringify(reqBody), headers: { "Content-Type": "application/json" } }).then(async (response) => { if (response.ok) { let data = await response.json(); if (data.list && data.list.length > 0) { data.list[0].product_setting.template_config = JSON.parse(data.list[0].product_setting.template_config); // Format timestamps to local timezone const zone = this.win.SHOPLAZZA.shop.time_zone; data.list = data.list.map(item => { if(+item.ends_at !== -1) { item.ends_at = appDiscountUtils.convertTimestampToFormat(+item.ends_at, zone); } item.starts_at = appDiscountUtils.convertTimestampToFormat(+item.starts_at, zone); return item; }); } this.discountCodeData = data; this.render(); } else { this.clearDom(); } }).catch(err => { console.error("discount_code", err) this.clearDom(); }); } else { this.renderSkeleton(); } } /** * Clear component DOM except template */ clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } /** * Render discount codes with formatted dates */ render() { // Render using discount code model SPZ.whenApiDefined(document.querySelector('#spz_custom_discount_code_model')).then(renderApi => { renderApi.doRender_({ discountCodeData: this.discountCodeData }) }).catch(err => { this.clearDom(); }) } renderSkeleton() { // Render template for non-product pages this.templates_ .findAndRenderTemplate(this.element, { isMobile: appDiscountUtils.judgeMobile() }) .then((el) => { this.clearDom(); this.element.appendChild(el); }) .catch(err => { this.clearDom(); }); } } // Register custom element SPZ.defineElement('spz-custom-discount-code', SpzCustomDiscountCode);
Sold 0 only 999999999 item(s) left
$24.97 $29.97 Save $5.00
Package:  Buy 1
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-1651799308132').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);
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Share the love
Description

🌟 Trusted by Over 9,000,000 Satisfied Customers!

Say Goodbye to Warts, Moles, Skin Tags & Dark Spots — Safely at Home!

Experience the Power of Korean Dermatology Science —
Bazeec™ Korea WartClear Intensive Ampoule

Forget expensive treatments, painful procedures, and ineffective creams.

Bazeec™ Korea WartClear Intensive Ampoule uses cutting-edge Korean dermatological technology to offer a safe, non-invasive solution you can use at home.


Its powerful ingredients penetrate deep into the skin, precisely targeting warts, moles, skin tags, and dark spots — without cutting, burning, or irritation.

❤️ Real User Testimonials

“I tried many things, but only this worked. After using it daily, a large mole on my back slowly shrank and disappeared — no scar left behind. It made a real difference in my skin and confidence. Highly recommend!”
Sharon H., NY

“I saw so many good reviews and finally gave it a try — glad I did! In just 6 days, my mole and skin tag vanished. My skin feels smooth and clear. It’s gentle, painless, and super easy to use at home. No chemicals or doctor visits. A game-changer!”
Gloria A., PA

“Used it on a stubborn wart on my finger. Within days it dried up and began to peel off naturally. I love that there’s no harsh smell or burning. It just works.”
Daniel H., Texas

✅ Why Choose Bazeec™ WartClear Intensive Ampoule?

Deep Penetration, Targeted Action
Advanced ingredients work beneath the skin’s surface for visible results.

Non-Invasive & Pain-Free
No needles, lasers, or harsh chemicals — just gentle, effective care.

Promotes Natural Skin Regeneration
Stimulates collagen production for scar-free healing.

Fast, Visible Results
Most users see improvement in days, with full results in 3 weeks.

Cost-Effective Alternative
No need for expensive doctor visits or painful surgeries.

Convenient & Easy to Use
Compact design, ideal for home use anytime.

🔬 How It Works: Advanced Plant-Based Wart & Mole Removal Science

Bazeec™ Korea WartClear Intensive Ampoule delivers visible results through a 3-step precision mechanism that blends advanced micro-delivery technology with clinically proven botanical actives—designed to eliminate skin tags, moles, and dark spots safely, effectively, and without scarring.

✅ Step 1: Micro-Reedle Delivery for Deep Penetration
Formulated with ultra-fine Bazeec™ micro-needles, this ampoule gently opens microscopic channels on the skin surface—boosting active ingredient absorption by up to 15x compared to conventional creams. These reedle structures are 100% plant-based and safe for daily use, providing a painless, non-invasive way to deliver ingredients exactly where they’re needed.

✅ Step 2: Targeted Breakdown of Abnormal Skin Growths
At the core of this ampoule lies Terminalia Chebula Extract, a powerful antioxidant known for its ability to selectively dissolve unwanted skin tissues such as warts, tags, and moles—without damaging surrounding healthy skin. Over time, it promotes the natural breakdown and detachment of abnormal growths.

✅ Step 3: Soothe, Repair, and Renew
As Terminalia Chebula works to dissolve imperfections, Tremella Mushroom Extract and Centella Asiatica step in to calm inflammation, accelerate healing, and deeply hydrate the skin. These ingredients support collagen regeneration and skin barrier repair, ensuring a scar-free recovery and restoring your skin’s smooth, radiant appearance.

💡 Why It Works:
Unlike harsh acids or painful devices, Bazeec™ uses a biologically intelligent approach—working with your skin to restore clarity, not against it. No downtime. No irritation. Just a science-backed path to blemish-free skin.

🌿 Potent Natural Ingredients for Clear, Radiant Skin

Bazeec™ Korea WartClear Intensive Ampoule is powered by a highly concentrated botanical blend that delivers visible results — safely and gently. Each drop is packed with clinically studied ingredients that work together to dissolve skin imperfections and restore healthy, smooth skin.

✨ Haritaki (Terminalia Chebula) Extract
A powerful antioxidant-rich fruit known for reducing warts, dark spots, and skin blemishes. It helps support collagen production and defends against oxidative stress, promoting smoother texture and a more even skin tone.

✨ Snow Mushroom Extract (Tremella Fuciformis)
Often called "plant-based hyaluronic acid," snow mushroom extract deeply hydrates, boosts elasticity, and calms irritation. It’s ideal for post-treatment recovery and strengthening the skin’s moisture barrier.

✨ Centella Asiatica (Cica)
A trusted herbal extract that soothes inflammation, accelerates healing, and supports natural collagen regeneration. It helps fade blemishes, minimize scarring, and improve skin firmness.

You can now experience professional skincare results with the soothing, hydrating, and repairing power of these high-performance ingredients—all in one bottle.

🧪 Dermatologist-Recommended & Clinically Tested

Bazeec™ Korea WartClear Intensive Ampoule has undergone multicenter clinical trials and long-term safety studies, meeting strict FDA and CE standards.
Its proven effectiveness makes it a professional-grade solution you can trust — without leaving home.

🧪 Backed by Clinical Research – Visible Results in Just 4 Weeks

98% of users reported a visible reduction in warts and moles after 4 weeks of continuous use—thanks to Terminalia Chebula's ability to safely break down abnormal skin growths.
91% saw improved skin tone and brightness, as the triple herbal complex worked to balance pigmentation and restore a healthy glow.
94% experienced scar-free healing, supported by snow mushroom's deep hydration and Centella's regenerative properties.

🌟 How to Use

Clean the affected area thoroughly.

Apply a thin layer of Bazeec™ Ampoule to the target area.

Use twice daily — morning and night — for best results.

Avoid direct sunlight during use; apply sunscreen if needed.

📦 What's Included:
1 x Bazeec™ Korea WartClear Intensive Ampoule (50ml)

Application Guide + Skin Care Tips

90-Day Satisfaction Guarantee