RevivaDerma Face & Body Scar Gel - Clinically proven to soften, flatten and fade surgical scars, acne marks, burns, keloids and trauma-related scars

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 = "78458e12-461f-49b2-8fb3-4dabccfdcc36"; // 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 == '69ecab4d-4ecc-4e82-877d-0d214d260b29' && 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: "69ecab4d-4ecc-4e82-877d-0d214d260b29", 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
$29.97 $79.97 Save $50.00
Package:  2PCS ✨Best Seller 🔥$14.99 each🔥
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

Healing that shows. Comfort that lasts. Confidence restored.

Experience skin that feels like yours again—with Bazeec™.

We are proud to introduce Bazeec™ RevivaDerma Face & Body Scar Gel, a professional-grade skincare solution crafted for effective scar care. Its advanced formula is designed to visibly reduce the appearance of both new and old scars, including surgical scars, stretch marks, keloids, acne marks, burns, warts, skin tags, and varicose veins.

Clinically tested and dermatologist-approved, this lightweight, fast-absorbing gel allows active botanical extracts to penetrate deeply, supporting the skin’s natural scar repair process. Clinical results show visible improvement in new scars within one week, and significant reduction in older scars within two weeks!

Why Professionals Choose Bazeec™ RevivaDerma Over Other brands

LET'S SEE WHAT OUR CUSTOMERS HAVE TO SAY AND JOIN THE 2,000+ PATIENTS WHO ARE TREATING SKIN ISSUES TODAY:

"I had a noticeable scar on my forehead after an accident, and it always made me self-conscious. After using Bazeec™ RevivaDerma for just a few weeks, I noticed the redness fading and the scar becoming smoother and less raised. Now it blends so much better with my skin. I finally feel comfortable leaving the house without makeup. This gel really gave me back my confidence!" - Cecille, 38, Oregon

"Following surgery, I was left with a long red scar on my arm. A friend recommended Bazeec™ RevivaDerma, and I’m so glad I tried it. Within a month, the scar started to lighten, and the texture improved a lot. It no longer feels tight or itchy, and it’s so much less visible than before. I love how gentle the gel is and how quickly it absorbs—zero irritation." - Winona, 40, Washington

"After my C-section, I was left with a thick scar across my lower abdomen. It always felt tight and made me insecure. I started using Bazeec™ RevivaDerma, and within weeks I noticed real changes—the scar became softer, less red, and much smoother. Now it’s barely noticeable, and I feel so much more confident in my own skin again. This gel has been a true lifesaver for my recovery journey." - Mary, 36, Chicago

"My hands had several scars and dark patches from old injuries that never healed well. After applying Bazeec™ RevivaDerma twice a day, I saw a clear change in just weeks—the roughness softened, the scars lightened, and my skin tone evened out. My hands now look healthier and feel smoother. I’ve tried so many products before, but this is the first one that gave me such noticeable results." - Gail, 50, New York

What kinds of scars are we talking about?

Scars can take many forms—raised hypertrophic scars that remain within the wound area, firm keloids that extend beyond the injury, atrophic scars such as acne marks or chickenpox depressions, as well as post-surgical or trauma scars from C-sections or accidents. Burns and contracture scars may even tighten the skin, limiting movement. Regardless of type, scars often bring redness, itching, tightness, and tenderness—causing not only physical discomfort but also impacting confidence and quality of life.

Introducing Bazeec™ RevivaDerma Face & Body Scar Gel

IMPROVE SCAR APPEARANCE

The powerful formula stimulates natural cell renewal and collagen formation, lighten scar color making scars smoother and softer

That’s why finding a safe, effective, and non-invasive solution for scar care is essential. Bazeec™ RevivaDerma Face & Body Scar Gel was specially developed for this purpose, using a clinically proven multi-action approach that works at the root of the problem. Its medical-grade silicone matrix forms a breathable, invisible layer over the skin, locking in hydration and supporting collagen balance while gradually softening and flattening raised scar tissue. This precise yet gentle method visibly enhances scar appearance and texture, restoring smoothness and comfort over time—without the risks, pain, or downtime of surgery or invasive procedures.

How It Works: Activating Your Skin’s Natural Repair Process with Precision

This advanced topical formula helps retain vital moisture, regulate excess collagen buildup, and gradually soften and mature scars. Enriched with esterified vitamin C, it also works to reduce pigmentation, encouraging a more natural and even skin recovery. By supporting the skin’s own healing process, Bazeec™ RevivaDerma Face & Body Scar Gel not only addresses the root causes of scar formation but also enhances texture, flexibility, and softness. The result is skin that feels more comfortable, looks smoother, and blends more seamlessly over time—one of the many reasons it has become a trusted favorite in daily scar care routines.

💡 Why People Love It

This isn’t just about surface-level cosmetic change—it’s about supporting your skin’s natural repair cycle to safely, effectively, and comfortably restore a smoother, softer, and more natural look.

✅ Noticeable softening and fading of scars in as little as 2–3 weeks
✅ Gentle, painless, and non-invasive—suitable even for sensitive skin
✅ Lightweight gel absorbs quickly, forming an invisible, breathable shield
✅ Versatile use: ideal for face, arms, abdomen, legs, and more
✅ Simple twice-daily application—no mess, no residue
✅ Free from fragrances, alcohol, parabens, and hormones for safe daily care
✅ Trusted and recommended by dermatological experts

Bazeec™ RevivaDerma Face & Body Scar Gel is regarded as a breakthrough in at-home scar care. Backed by clinical studies, it has been shown to effectively soften, flatten, and visibly reduce the appearance of surgical scars, acne marks, burns, and other skin injuries. With consistent use, it offers a safe, non-invasive alternative to costly professional treatments—making advanced scar management more accessible for everyday use.

Key Healing Ingredients:

🌿Centella Asiatica Extract

Celebrated in dermatology as a powerful wound-healing botanical, Centella Asiatica stimulates fibroblast activity, promotes collagen remodelling, and improves circulation in scarred tissue. Clinically recognised for reducing scar thickness and enhancing elasticity, it helps scars soften and blend more naturally with surrounding skin.

🌼Chamomilla Flower Extract

Rich in flavonoids and bisabolol, Chamomile is widely known for its calming and anti-inflammatory properties. It reduces redness, irritation, and sensitivity in scar tissue, creating a more balanced environment for skin recovery while soothing discomfort often associated with healing scars.

🌵Aloe Barbadensis Extract

Often referred to as "nature's healing gel". Aloe Vera is highly effective at providing deep hydration, reducing inflammation, and accelerating the repair of damaged skin. It supports epidermal regeneration, helps scars fade faster, and restores suppleness to areas affected by trauma or burns.

🌱Thymus Vulgaris Extract

Derived from thyme, this extract offers strong antimicrobial and antioxidant properties. It protects healing skin from bacterial colonisation, minimises the risk of post-injury complications, and enhances overall scar care by creating a healthier skin environment.

🌰Juglans Regia Shell Extract

Walnut shell extract provides gentle keratolytic and antioxidant effects. By promoting mild exfoliation, it encourages the removal of damaged surface cells and supports smoother texture. Its high polyphenol content also helps defend scar tissue against oxidative stress, allowing clearer and more even-toned skin to emerge.

🧅Allium Cepa Bulb Extract

A clinically studied anti-scar agent, onion bulb extract reduces excessive fibroblast proliferation and helps regulate collagen synthesis. It has been shown to diminish scar height, relieve redness, and improve overall scar pliability, making it a cornerstone ingredient in advanced scar formulations.

Based on Clinical Results

Bazeec™ HAS BEEN CHOSEN BY OVER 9 MILLION CUSTOMERS IN THE USA

With over 9 million boxes sold and the number 1 solution recommended by dermatologists and pharmacists, Bazeec™ is quickly becoming the preferred choice for skin repair. Our clinical trials show a 100% absence of allergic reactions and 98.7% satisfaction. We're so confident that we offer a 90-day, 100% money-back guarantee: get results or your money back, no questions asked. 

Clinically Proven Results You Can Trust

In a two-month study with over 8,000 participants aged 10 to 75:

✅ 100% reported zero allergic reactions — gentle on all skin types
✅ 99.8% experienced pain-free use — no discomfort, unlike harsh treatments
✅ 99.5% saw no new marks or scarring during use
✅ 98.7% had long-lasting, non-rebounding results
✅ 98.7% were fully satisfied — calling it the solution they’ve been waiting for

DEEPLY REPAIR SCARS WITHOUT DAMAGING THE SKIN

  • Moisturizes Skin
  • Soften damaged skin
  • Lighten scar pigment
  • Forms a protective film

EASY TO USE

  1. Keep the scarred area dry and clean before application.
  2. Apply a small amount to your scar and let it dry.
  3. With our quick drying formula, you can rest easy without worrying about it rubbing off.
  4. Apply twice daily for best results - morning night consistently.

Specifications:

Ingredients: Centella Asiatica Extract, Chamomilla Flower Extract, Aloe Barbadensis Extract, Thymus Vulgaris Extract, Juglans Regia Shell Extract, Allium Cepa Bulb Extract

Net content: 28g

Shelf Life: 3 years

OUR COMMITMENT TO YOU

📦 Global Insured Shipping 

Every order is shipped with tracking, so you can monitor its journey from our warehouse to your doorstep. In the unlikely event of loss or theft, we provide insurance coverage to ensure you are fully compensated.

 💰 Satisfaction Guarantee 

If your item arrives damaged or doesn't meet your expectations, we offer a hassle-free replacement or full refund.

 ✉️ 24/7 Support 

Our dedicated customer service team is available around the clock to assist with any inquiries. Expect a response within 24 hours, 7 days a week.