O๐Ÿ๐Ÿ๐ข๐œ๐ข๐š๐ฅ ๐”๐’ ๐’๐ญ๐จ๐ซ๐ž | ๐Ÿง‘‍โš•๏ธ๐ŸฉบMoringa · Berberine × NAD+ ๐Ÿ๐ŸŽ-๐ข๐ง-๐Ÿ ๐€๐๐ฏ๐š๐ง๐œ๐ž๐ ๐๐š๐ง๐จ ๐Œ๐ข๐œ๐ซ๐จ๐ง๐ž๐ž๐๐ฅ๐ž ๐๐š๐ญ๐œ๐ก — ๐Ž๐ง๐œ๐ž ๐ƒ๐š๐ข๐ฅ๐ฒ, ๐•๐ข๐ฌ๐ข๐›๐ฅ๐ž ๐‘๐ž๐ฌ๐ฎ๐ฅ๐ญ๐ฌ ๐ข๐ง ๐Ÿ• ๐ƒ๐š๐ฒ๐ฌ

const TAG = "spz-custom-product-automatic"; class SpzCustomProductAutomatic extends SPZ.BaseElement { constructor(element) { super(element); this.variant_id = '988f5009-dea2-424b-80b2-49a1f8f2f50f'; this.isRTL = SPZ.win.document.dir === 'rtl'; this.isAddingToCart_ = false; // ๅŠ ่ดญไธญ็Šถๆ€ } static deferredMount() { return false; } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.templates_ = SPZServices.templatesForDoc(this.element); this.xhr_ = SPZServices.xhrFor(this.win); this.setupAction_(); this.viewport_ = this.getViewport(); } mountCallback() { this.init(); // ็›‘ๅฌไบ‹ไปถ this.bindEvent_(); } async init() { this.handleFitTheme(); const data = await this.getDiscountList(); this.renderApiData_(data); } async getDiscountList() { const productId = 'b6711a64-7e37-495b-95e3-ab1442b36834'; const variantId = this.variant_id; const productType = 'default'; const reqBody = { product_id: productId, variant_id: variantId, discount_method: "DM_AUTOMATIC", customer: { customer_id: window.C_SETTINGS.customer.customer_id, email: window.C_SETTINGS.customer.customer_email }, product_type: productType } const url = `/api/storefront/promotion/display_setting/text/list`; const data = await this.xhr_.fetchJson(url, { method: "post", body: reqBody }).then(res => { return res; }).catch(err => { this.setContainerDisabled(false); }) return data; } async renderDiscountList() { this.setContainerDisabled(true); const data = await this.getDiscountList(); this.setContainerDisabled(false); // ้‡ๆ–ฐๆธฒๆŸ“ ๆŠ–ๅŠจ้—ฎ้ข˜ๅค„็† this.renderApiData_(data); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } async renderApiData_(data) { const parentDiv = document.querySelector('.automatic_discount_container'); const newTplDom = await this.getRenderTemplate(data); if (parentDiv) { parentDiv.innerHTML = ''; parentDiv.appendChild(newTplDom); } else { console.log('automatic_discount_container is null'); } } doRender_(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, renderData) .then((el) => { this.clearDom(); this.element.appendChild(el); }); } async getRenderTemplate(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, { ...renderData, isRTL: this.isRTL }) .then((el) => { this.clearDom(); return el; }); } setContainerDisabled(isDisable) { const automaticDiscountEl = document.querySelector('.automatic_discount_container_outer'); if(isDisable) { automaticDiscountEl.setAttribute('disabled', ''); } else { automaticDiscountEl.removeAttribute('disabled'); } } // ็ป‘ๅฎšไบ‹ไปถ bindEvent_() { window.addEventListener('click', (e) => { let containerNodes = document.querySelectorAll(".automatic-container .panel"); let bool; Array.from(containerNodes).forEach((node) => { if(node.contains(e.target)){ bool = true; } }) // ๆ˜ฏๅฆpopover้ขๆฟ็‚นๅ‡ป่Œƒๅ›ด if (bool) { return; } if(e.target.classList.contains('drowdown-icon') || e.target.parentNode.classList.contains('drowdown-icon')){ return; } const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { node.classList.remove('open-dropdown'); }) // ๅ…ผๅฎนไธป้ข˜ this.toggleProductSticky(true); }) // ็›‘ๅฌๅ˜ไฝ“ๅ˜ๅŒ– document.addEventListener('dj.variantChange', async(event) => { // ้‡ๆ–ฐๆธฒๆŸ“ const variant = event.detail.selected; if (variant.product_id == 'b6711a64-7e37-495b-95e3-ab1442b36834' && variant.id != this.variant_id) { this.variant_id = variant.id; this.renderDiscountList(); } }); } // ๅ…ผๅฎนไธป้ข˜ handleFitTheme() { // top ๅฑžๆ€งๅฝฑๅ“ๆŠ–ๅŠจ let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ productInfoEl.classList.add('force-top-auto'); } } // ๅ…ผๅฎน wind/flash /hero ไธป้ข˜ (stickyๅฑžๆ€งๅฝฑๅ“ popover ๅฑ‚็บงๅฑ•็คบ, ไผš่ขซๅ…ถไป–ๅ…ƒ็ด ่ฆ†็›–) toggleProductSticky(isSticky) { let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ if(isSticky) { // ่ฟ˜ๅŽŸ่ฏฅไธป้ข˜ๅŽŸๆœ‰็š„stickyๅฑžๆ€งๅ€ผ productInfoEl.classList.remove('force-position-static'); return; } productInfoEl.classList.toggle('force-position-static'); } } setupAction_() { this.registerAction('handleDropdown', (invocation) => { const discount_id = invocation.args.discount_id; const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { if(node.getAttribute('id') != `automatic-${discount_id}`) { node.classList.remove('open-dropdown'); } }) const $discount_item = document.querySelector(`#automatic-${discount_id}`); $discount_item && $discount_item.classList.toggle('open-dropdown'); // ๅ…ผๅฎนไธป้ข˜ this.toggleProductSticky(); }); // ๅŠ ่ดญไบ‹ไปถ this.registerAction('handleAddToCart', (invocation) => { // ้˜ปๆญขไบ‹ไปถๅ†’ๆณก const event = invocation.event; if (event) { event.stopPropagation(); event.preventDefault(); } // ๅฆ‚ๆžœๆญฃๅœจๅŠ ่ดญไธญ๏ผŒ็›ดๆŽฅ่ฟ”ๅ›ž if (this.isAddingToCart_) { return; } const quantity = invocation.args.quantity || 1; this.addToCart(quantity); }); } // ๅŠ ่ดญๆ–นๆณ• async addToCart(quantity) { // ่ฎพ็ฝฎๅŠ ่ดญไธญ็Šถๆ€ this.isAddingToCart_ = true; const productId = 'b6711a64-7e37-495b-95e3-ab1442b36834'; const variantId = this.variant_id; const url = '/api/cart'; const reqBody = { product_id: productId, variant_id: variantId, quantity: quantity }; try { const data = await this.xhr_.fetchJson(url, { method: 'POST', body: reqBody }); // ่งฆๅ‘ๅŠ ่ดญๆˆๅŠŸๆ็คบ this.triggerAddToCartToast_(); return data; } catch (error) { error.then(err=>{ this.showToast_(err?.message || err?.errors?.[0] || 'Unknown error'); }) } finally { // ๆ— ่ฎบๆˆๅŠŸๅคฑ่ดฅ๏ผŒ้ƒฝ้‡็ฝฎๅŠ ่ดญ็Šถๆ€ this.isAddingToCart_ = false; } } showToast_(message) { const toastEl = document.querySelector("#apps-match-drawer-add_to_cart_toast"); if (toastEl) { SPZ.whenApiDefined(toastEl).then((apis) => { apis.showToast(message); }); } } // ่งฆๅ‘ๅŠ ่ดญๆˆๅŠŸๆ็คบ triggerAddToCartToast_() { // ๅฆ‚ๆžœไธป้ข˜ๆœ‰่‡ชๅทฑ็š„ๅŠ ่ดญๆ็คบ๏ผŒๅˆ™ไธๆ˜พ็คบ const themeAddToCartToastEl = document.querySelector('#add-cart-event-proxy'); if (themeAddToCartToastEl) return; // ๆ˜พ็คบๅบ”็”จ็š„ๅŠ ่ดญๆˆๅŠŸๆ็คบ this.showToast_("Added successfully"); } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, `${ TAG }.${ name }`, data || {}); this.action_.trigger(this.element, name, event); } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } } SPZ.defineElement(TAG, SpzCustomProductAutomatic);
class SpzCustomDiscountBundle extends SPZ.BaseElement { constructor(element) { super(element); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } mountCallback() {} unmountCallback() {} setupAction_() { this.registerAction('showAddToCartToast', () => { const themeAddToCartToastEl = document.querySelector('#add-cart-event-proxy') if(themeAddToCartToastEl) return const toastEl = document.querySelector('#apps-match-drawer-add_to_cart_toast') SPZ.whenApiDefined(toastEl).then((apis) => { apis.showToast("Added successfully"); }); }); } buildCallback() { this.setupAction_(); }; } SPZ.defineElement('spz-custom-discount-toast', SpzCustomDiscountBundle);
$51.00 $456.00 Save $405.00
๐Ÿ’š The Only Triple-Agonist Formula That Helps You Burn Fat And Firm Your Skin — At The Same Time.:  ๐ŸŽNewYearSpecial:Buy5 Get 5Free-Lose up to 75lbs
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);
class SpzCustomDiscountBundleProducts extends SPZ.BaseElement { constructor(element) { super(element); this.xhr_ = SPZServices.xhrFor(this.win); this.getDiscountPriceApi = "\/api\/storefront\/promotion\/calculate\/discounted_price"; this.buyNowApi = "\/api\/checkout\/order"; this.batchAtcApi = "\/api\/cart\/batch"; // ๆฌพๅผไฟกๆฏ้›†ๅˆ this.productStyleInfo = []; // ๅผน็ช—ๅ†…้€‰ๆ‹ฉๆฌพๅผ้›†ๅˆ this.modalVariantInfo = []; this.show_classic_bundle_spu_style = false; this.bundleProducts = []; //ๆ†็ป‘ๅ•†ๅ“ this.bundleConfig = {}; //ไธ‹ๆ–นๆŒ‰้’ฎ้…็ฝฎ this.discountId = ""; this.discountType = ""; this.discountInfo = ""; this.lineItems = []; this.tempCss = {}; this.renderQuickShop_ = this.win.SPZCore.Types.debounce(this.win, this.renderQuickShopModal.bind(this), 500); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.setupAction_(); }; init(data = []) { this.productStyleInfo = data; } handleRequestError_(data) { this.showToast(data?.message || data?.errors?.[0] || 'Unknown error'); }; showToast(message) { SPZ.whenApiDefined(document.getElementById("discount_toast")).then((apis) => { apis.showToast(message); }); } //ๅค–้ƒจ็ป„ไปถ่ฐƒ็”จไผ ๅ€ผ setBundleData(products, config = "", id = "", type = "", info = {}) { this.bundleProducts = products; if(config) { this.bundleConfig = config; this.discountId = id; this.discountType = type; this.discountInfo = info; this.show_classic_bundle_spu_style = type === 'DT_CLASSIC_BUNDLE' && info.enable_min_purchase_qty && info.min_purchase_qty_type == 'spu'; // ็ปๅ…ธๆ†็ป‘ๅˆๅง‹ๅŒ–ๅ•†ๅ“ๆ•ฐๆฎ if(type == 'DT_CLASSIC_BUNDLE') { this.productStyleInfo = products.map((item) => { return this.getFilteredVariants_(item, 'single'); }); } } } handleChangeSort() { const result = this.productStyleInfo.reduce((map, item) => { if (!map[item.product_id]) { map[item.product_id] = []; } map[item.product_id].push(item); return map; }, {}); Object.values(result).forEach((item) => { this.handleSpzVariantRender_(item, item[0].product_id); this.handleProductOption_(item[0].product_id, true); }); } // ่ฐƒ็”จspz-tag็ป„ไปถ็š„doRenderๆ–นๆณ• handleSpzVariantRender_(data, id) { const spzVariantTag = SPZCore.Dom.scopedQuerySelector(document.body, `#promotionSpzVariantTags-${id}`); spzVariantTag && SPZ.whenApiDefined(spzVariantTag).then((api) => { api.render(data, true); }); } // ๆ‰ง่กŒ็ปๅ…ธๆ†็ป‘ๆœ€ไฝŽ่ดญไนฐๆ•ฐ้‡ๆ›ดๆ–ฐ handleMinPurchaseQtyUpdate_(data, id) { const minPruchaseQty = SPZCore.Dom.scopedQuerySelector(document.body, `#promotionMinPurchaseQty-${id}`); minPruchaseQty && SPZ.whenApiDefined(minPruchaseQty).then((api) => { api.render(data, true); }); } // ๆ›ดๆ–ฐไปทๆ ผ updateProductPrice_(data) { const bottomBtnContainer = SPZCore.Dom.scopedQuerySelector(document.body, `#promotionBottomContainer`); if (data.length == 0) { bottomBtnContainer && SPZ.whenApiDefined(bottomBtnContainer).then((api) => { const renderInfo = { setting: this.bundleConfig, ...{ original_price: 0, received_discounts: 0, picked_qty: 0 } } api.render({original_price: 0, received_discounts: 0}, true); }); return; } const reqBody = { discount_id: this.discountId, customer: { customer_id: '', email: '', }, sales_channel: { sale_channel_type: "online", sale_channel_id: '2320317' }, line_items: data } // ๅฆ‚ๆžœๅทฒ็ปๆœ‰ไธ€ไธช่ฏทๆฑ‚ๅœจ็ญ‰ๅพ…๏ผŒ้‚ฃไนˆๅ–ๆถˆ่ฟ™ไธช่ฏทๆฑ‚ if (this.debounceTimer) { clearTimeout(this.debounceTimer); } this.debounceTimer = setTimeout(() => { this.xhr_.fetchJson(this.getDiscountPriceApi, { method: "post", body: reqBody }).then((res)=>{ // ๆ›ดๆ–ฐๅ•†ๅ“ๅˆ—่กจไปทๆ ผ Object.keys(res.line_items).forEach((key) => { const currentProductPrice = SPZCore.Dom.scopedQuerySelector(document.body, `#appDiscountProductPrice-${key}`); currentProductPrice && SPZ.whenApiDefined(currentProductPrice).then((api) => { api.render(res.line_items[key], true); }); }); // ๆ›ดๆ–ฐๅบ•้ƒจๆŒ‰้’ฎๆ€ปไปท/ๆ€ปๆŠ˜ๆ‰ฃไปท const picked_qty = data.reduce((acc, item) => { return acc + item.quantity; }, 0); bottomBtnContainer && SPZ.whenApiDefined(bottomBtnContainer).then((api) => { const data = { setting: this.bundleConfig, ...{ ...res.total_price, picked_qty } } api.render(data, true); }); }).catch((err)=>{ this.handleRequestError_(err); }).finally(()=>{ }) }, 100); } // ่ฟ˜ๅŽŸๅ•†ๅ“ไปทๆ ผ resetProductPrice_(data) { const {price, compare_at_price, id} = data; const currentProductPrice = SPZCore.Dom.scopedQuerySelector(document.body, `#appDiscountProductPrice-${id}`); currentProductPrice && SPZ.whenApiDefined(currentProductPrice).then((api) => { api.render({total_received_discounts: price, total_price: compare_at_price}, true); }); } //ๅค„็†ไธŽselector็ป„ไปถ็š„ไบคไบ’ handleProductOption_(productId, show) { const currentProductOption = SPZCore.Dom.scopedQuerySelector(document.body, `#promotionSelectOption-${productId}`); if (!currentProductOption) { return; }; currentProductOption.toggleAttribute('show', show); const isSelected = currentProductOption.hasAttribute('selected'); // !show ๅ–ๆถˆ้€‰ไธญ // !isSelected ้€‰ไธญๅ•†ๅ“ if (!show || !isSelected) { const productSelector = SPZCore.Dom.scopedQuerySelector(document.body, `#promotionProductSelector`); productSelector && SPZ.whenApiDefined(productSelector).then((api) => { api.toggle_({ option: productId, value: show }); }); } } // ๆททๆญๅผน็ช—ๅ†…็š„ๅ‰็ซฏๅบ“ๅญ˜ๆ ก้ชŒ handleModalInventoryCheck_(data) { if(this.discountType == 'DT_MIX_MATCH_BUNDLE' || this.discountType == 'DT_CLASSIC_BUNDLE') { const currentVariantAddNum = this.modalVariantInfo.find((item) => item.variant_id == data.variant_id)?.quantity || 0; const quickShopBody = SPZCore.Dom.scopedQuerySelector(document.body, '#apps-discount-quick-shop-body'); if(!!data.variant && currentVariantAddNum == Number(data.variant.available_quantity)) { quickShopBody && quickShopBody.setAttribute('status', 'soldout'); } else { quickShopBody && quickShopBody.setAttribute('status', 'available'); } } else { return; } } // ๆทปๅŠ ๅ•†ๅ“ๅญๆฌพๅผ renderVariantTag() { let variantInfo; const quickShopBody = SPZCore.Dom.scopedQuerySelector(document.body, '#apps-discount-quick-shop-body'); quickShopBody && SPZ.whenApiDefined(quickShopBody).then((api) => { variantInfo = api.getVariantsData(); const productId = variantInfo.product_id; const variantId = variantInfo.variant_id; const minPruchaseQtyRender = variantInfo.product.discount_min_purchase_qty || variantInfo.variant.discount_info.discount_min_purchase_qty; if(this.discountType === 'DT_MIX_MATCH_BUNDLE') { const index = this.productStyleInfo.findIndex((item) => item.variant_id == variantInfo.variant_id); if (index != -1) { this.productStyleInfo[index].quantity = Number(this.productStyleInfo[index].quantity) + Number(variantInfo.quantity); this.updateProductPrice_(this.productStyleInfo); } else { this.productStyleInfo.push(this.getFilteredVariants_(variantInfo)); // ่‹ฅๅฝ“ๅ‰ๅ•†ๅ“ๅทฒ้€‰ไธญ๏ผŒๆ›ดๆ–ฐๅ•†ๅ“ไปทๆ ผ const currentProductOption = SPZCore.Dom.scopedQuerySelector(document.body, `#promotionSelectOption-${productId}`); const isSelected = currentProductOption && currentProductOption.hasAttribute('selected'); isSelected && this.updateProductPrice_(this.productStyleInfo); } const selectedVariantsFilter = this.productStyleInfo.filter((item) => item.product_id == productId); this.handleSpzVariantRender_(selectedVariantsFilter, productId); this.handleProductOption_(productId, true); } else { if(this.discountInfo.enable_min_purchase_qty == true && this.discountInfo.min_purchase_qty_type == 'spu' && minPruchaseQtyRender > 1) { const index = this.modalVariantInfo.findIndex((item) => item.variant_id == variantId); if (index != -1) { this.modalVariantInfo[index].quantity = Number(this.modalVariantInfo[index].quantity) + 1; } else { this.modalVariantInfo.push(this.getFilteredVariants_(variantInfo, 'classic_spu')); } const modalVariantTag = SPZCore.Dom.scopedQuerySelector(document.body, '#promotionModalVariantTagRender'); modalVariantTag && SPZ.whenApiDefined(modalVariantTag).then((api) => { api.render(this.modalVariantInfo, true); }); this.handleModalInventoryCheck_(variantInfo); const selectedVariantsNum = this.modalVariantInfo.reduce((acc, item) => { return acc + item.quantity; }, 0); if(selectedVariantsNum == minPruchaseQtyRender) { this.handleSpzVariantRender_([this.getFilteredVariants_(variantInfo)], productId); this.productStyleInfo = this.productStyleInfo.filter((item) => item.product_id != productId).concat(this.modalVariantInfo); const renderData = this.productStyleInfo.filter((item) => item.product_id == productId).map((item) => { return { ...item, is_classic_bundle_product_list_variant_tag: true } }); const classicSpuTag = SPZCore.Dom.scopedQuerySelector(document.body, `#promotionClassicSpuTags-${productId}`); classicSpuTag && SPZ.whenApiDefined(classicSpuTag).then((api) => { api.render(renderData, true); }); this.updateProductPrice_(this.productStyleInfo); const quickView = SPZCore.Dom.scopedQuerySelector(document.body, '#apps-discount-quick-view'); quickView && SPZ.whenApiDefined(quickView).then((api)=>{ api.close(); }); this.modalVariantInfo = []; } else { return; } } // this.productStyleInfo ไธญๅทฒๅญ˜ๅœจไธŽproductId, variantId้ƒฝ็›ธๅŒ็š„ๅ•†ๅ“ ๅˆ™็›ดๆŽฅreturn ๅ…ณ้—ญๅผน็ช— const isExist = this.productStyleInfo.some((item) => item.product_id == productId && item.variant_id == variantId); if (isExist) { const quickView = SPZCore.Dom.scopedQuerySelector(document.body, '#apps-discount-quick-view'); quickView && SPZ.whenApiDefined(quickView).then((api)=>{ api.close(); }); return; } // ่‹ฅ this.productStyleInfo ไธญๅทฒๅญ˜ๅœจไธŽproductId็›ธๅŒ็š„ๅ•†ๅ“๏ผŒๅˆ™ไธๅ†ๆทปๅŠ  ๅฆๅˆ™ๆ›ฟๆข const index = this.productStyleInfo.findIndex((item) => item.product_id == productId); if (index != -1) { this.productStyleInfo[index] = this.getFilteredVariants_(variantInfo); } else { this.productStyleInfo.push(this.getFilteredVariants_(variantInfo)); } const selectedVariantsFilter = this.productStyleInfo.filter((item) => item.product_id == productId); this.handleSpzVariantRender_(selectedVariantsFilter, productId); this.handleMinPurchaseQtyUpdate_({discount_min_purchase_qty: minPruchaseQtyRender}, productId); this.updateProductPrice_(this.productStyleInfo); } const quickView = SPZCore.Dom.scopedQuerySelector(document.body, '#apps-discount-quick-view'); quickView && SPZ.whenApiDefined(quickView).then((api)=>{ api.close(); }); }); } // ๅ•ๅ˜ไฝ“็‚นๅ‡ปๆทปๅŠ ๆŒ‰้’ฎ renderSingleVariant(data) { const { product_id } = data; const currentProduct = this.bundleProducts.find((product) => product.id == product_id); // ่‹ฅๅฝ“ๅ‰ๅ•†ๅ“ๅทฒๅญ˜ๅœจ๏ผŒๅˆ™ไธๅ†ๆทปๅŠ  ่€Œๆ˜ฏๆ›ดๆ–ฐๆ•ฐ้‡ const index = this.productStyleInfo.findIndex((item) => item.product_id == product_id); if (index != -1) { this.productStyleInfo[index].quantity = Number(this.productStyleInfo[index].quantity) + 1; this.updateProductPrice_(this.productStyleInfo); } else { this.productStyleInfo.push(this.getFilteredVariants_(currentProduct, 'single')); } const renderProductArr = this.productStyleInfo.filter((item) => item.product_id == product_id); this.handleSpzVariantRender_(renderProductArr, product_id); this.handleProductOption_(product_id, true); } // ่ฟ‡ๆปค้€‰ไธญๅ•†ๅ“็š„ๅญๆฌพๅผ ่Žทๅ–ๆœ‰็”จ็š„ไฟกๆฏ product_id,variant_id,price,compare_at_price,quantity,title,variant_title getFilteredVariants_(data, type = '') { const { id, title, variants, inventory_tracking, inventory_policy, inventory_quantity, product_type } = data; const { product_id, variant_id, variant, quantity, product, discount_min_purchase_qty } = data; const isSingle = type == 'single'; const variantData = isSingle ? (variants[0] || data) : variant; const productData = isSingle ? data : product; let item_quantity = 0; if (this.discountType === 'DT_MIX_MATCH_BUNDLE') { item_quantity = isSingle ? 1 : Number(quantity); } else if (type === 'classic_spu') { item_quantity = 1; } else { item_quantity = discount_min_purchase_qty || productData.discount_min_purchase_qty || variantData.discount_info.discount_min_purchase_qty || 1; } return { product_id: isSingle ? id : product_id, variant_id: variantData?.id || '', price: variantData?.price || '0.00', compare_at_price: variantData?.compare_at_price || '0.00', quantity: item_quantity, inventory_tracking: productData.inventory_tracking, inventory_policy: productData.inventory_policy, inventory_quantity: productData.inventory_quantity, product_type: productData.product_type || this.bundleProducts.find((item) => item.id == product_id)?.product_type || this.bundleProducts.find((item) => item.id == id)?.product_type || '', title: productData.title, variant_title: variantData?.options.map((option) => option.value).join('/') || '', is_multi_style: productData.variants.length > 1, } } handleLoading_ (event) { const { type, action } = event; const loadingElementId = type === 'product' ? '#discount-match-drawer-products_loading' : '#apps-discount-whole-loading'; const loadingElement = document.querySelector(loadingElementId); if (loadingElement) { SPZ.whenApiDefined(loadingElement).then((api) => { if (action === 'show') { api.show_(); } else { api.close_(); } }); } } handleSelectProduct(productArr) { // ไปŽthis.productStyleInfo ่ฟ‡ๆปคๅ‡บ้€‰ไธญ็š„ๅ•†ๅ“ const selectedProducts = this.productStyleInfo.filter((item) => productArr.includes(item.product_id)); this.updateProductPrice_(selectedProducts); } // ๆธฒๆŸ“ๅŠ ่ดญๅผน็ช—ๅ†…ๅฎน async renderQuickShopModal(data){ this.handleLoading_({type: 'whole', action: 'show'}); this.xhr_.fetchJson(`/api/storefront/promotion/landing_page/product?product_id=${data.product_id}&discount_id=${this.discountId}&apply_scenario=1`, { method: "get", }).then(async(res)=>{ //flashไธป้ข˜ๆ”พblockๆœ‰ๅฑ‚็บง้—ฎ้ข˜ if(/Flash/.test(window.C_SETTINGS.theme.merchant_theme_name) && document.querySelector(".productInfoSection")) { this.tempCss.zIndex = document.querySelector(".product-info-body").style.zIndex; document.querySelector('.product-info-body').style.zIndex="1048"; } this.handleLoading_({type: 'whole', action: 'close'}); const $quickShop = await SPZ.whenApiDefined(document.querySelector('#apps-discount-quick-view-render')); // ๅฎšไน‰้ป˜่ฎคๆธฒๆŸ“็š„ๅญๆฌพๅผ const selectedVariant = res.product.variants.find((v)=> (v.available && v.is_hit_discount)) || res.product.variants[0]; let selectedValues = {}; selectedVariant.options.length && selectedVariant.options.forEach(item => { selectedValues[item.name] = item.value; }) // ้ป˜่ฎค้€‰ไธญ็š„ ๅญๆฌพๅผใ€ options res.product.defaultSelectValues = selectedValues; let data = {...res.product, product:res.product, selectedVariant, show_classic_bundle_spu_style: this.show_classic_bundle_spu_style, discountType: this.discountType}; $quickShop.render(data); // ๆ‰“ๅผ€ๅŠ ่ดญๅผน็ช— SPZ.whenApiDefined(document.querySelector(`#apps-discount-quick-view`)).then((api)=>{ api.open(); }); }).catch((err)=>{ this.handleLoading_({type: 'whole', action: 'close'}); }) } // ่Žทๅ–้€‰ไธญ็š„ๅ•†ๅ“ids getDefaultSelectorOptions_() { try { const selectedOptions = SPZCore.Dom.scopedQuerySelectorAll(document.body, '[id^="promotionSelectOption-"][selected]'); return SPZCore.Types.toArray(selectedOptions).map((item) => item.getAttribute('option')); } catch (error) { return []; } } // ๅˆ ้™คๅ•†ๅ“ๅญๆฌพๅผ deleteVariantTag(data) { const { product_id, variant_id } = data; if(this.discountInfo.enable_min_purchase_qty == true && this.discountInfo.min_purchase_qty_type == 'spu') { const modalProductVariants = this.modalVariantInfo.filter((item) => item.product_id == product_id && item.variant_id != variant_id); const modalVariantTag = SPZCore.Dom.scopedQuerySelector(document.body, '#promotionModalVariantTagRender'); modalVariantTag && SPZ.whenApiDefined(modalVariantTag).then((api) => { api.render(modalProductVariants, true); }); this.handleModalInventoryCheck_(data); this.modalVariantInfo = modalProductVariants; return; } const currentProductVariants = this.productStyleInfo.filter((item) => item.product_id == product_id && item.variant_id != variant_id); this.handleSpzVariantRender_(currentProductVariants, product_id); // ๆ›ดๆ–ฐselectedVariants this.productStyleInfo = this.productStyleInfo.filter((item) => item.variant_id != variant_id); if(currentProductVariants.length > 0) { // currentProductVariants ไธญๅช่ฆๆœ‰ไธ€้กนๆ˜ฏๅคšๆฌพๅผๅ•†ๅ“๏ผŒๅฐฑๆ›ดๆ–ฐไปทๆ ผ const isMultiStyle = currentProductVariants.some((item) => item.is_multi_style); if (!isMultiStyle) return; this.handleProductOption_(product_id, true); const selected = this.getDefaultSelectorOptions_(); this.updateProductPrice_(this.productStyleInfo.filter((item) => selected.includes(item.product_id))); } else { this.handleProductOption_(product_id, false); this.resetProductPrice_(this.bundleProducts.find((item) => item.id == product_id)); } } // ๅŠ ่ดญๅผน็ช—ๆœชๅ‚ไธŽๆดปๅŠจ ๅŠ ่ดญๆŒ‰้’ฎไธๅฏ็‚นๅ‡ป TODO ๆ‹†ๅ‡บๆฅ handleNotHitDiscount_(data) { const $quickShopBody = document.querySelector('#apps-discount-quick-shop-body'); //ๅฝ“ๅ‰ๅญๆก†ๅผๆœชๅ‘ฝไธญๆดปๅŠจ if(data.variant.is_hit_discount == false) { $quickShopBody.setAttribute('variantstatus', 'notHitDiscount') } else { $quickShopBody.setAttribute('variantstatus', '') } } setupAction_() { // ๅญๆฌพๅผ ๆœชๅ‚ไธŽๆดปๅŠจ this.registerAction('handleNotHitDiscount', (invocation) => { const data = invocation.args.data; this.handleNotHitDiscount_(data); }); // ๆธฒๆŸ“ๅŠ ่ดญๅผน็ช— this.registerAction('renderQuickShop', (invocation) => { const data = invocation.args; this.renderQuickShop_(data); }); this.registerAction('renderSingleVariant', (invocation) => { const data = invocation.args; this.renderSingleVariant(data); }); this.registerAction('getVariantInfo', (invocation) => { this.renderVariantTag(); }); this.registerAction('deleteVariantTag', (invocation) => { const data = invocation.args; this.deleteVariantTag(data); }); this.registerAction('getSelectedProduct', (invocation) => { const data = invocation.args.data; this.handleSelectProduct(data); }); //TODO ๅŠ ่ดญไธ‹ๅ•้€ป่พ‘ๅ•็‹ฌๆ‹†็ป„ไปถ this.registerAction('handleClick', (data) => { if(this.discountType == 'DT_CLASSIC_BUNDLE') { this.lineItems = this.productStyleInfo; } else { const selectedOptions = SPZCore.Dom.scopedQuerySelectorAll(document.body, '[id^="promotionSelectOption-"]'); const idArr = [...selectedOptions].reduce((acc, item) => { if (item.hasAttribute('selected')) { const optionValue = item.getAttribute('option'); if (optionValue) { acc.push(optionValue); } } return acc; }, []); this.lineItems = this.productStyleInfo.filter((item) => idArr.includes(item.product_id)); } const action = data.args.action === "cart"; if(action) { //add to cart this.xhr_ .fetchJson(this.batchAtcApi, { method: 'POST', body: { line_items: this.lineItems.map((item) => { return { product_id: item.product_id, variant_id: item.variant_id, quantity: Number(item.quantity) } }) } }) .then((data) => { setTimeout(() => { window.location.href = '/cart'; }); }) .catch(async (error) => { await error.then((data) => { this.handleRequestError_(data); }); }); } else { //checkout this.xhr_ .fetchJson(this.buyNowApi, { method: 'POST', body: { line_items: (this.lineItems || []).map((product) => { return { quantity: Number(product.quantity), variant_id: product.variant_id, note: product.note || '', properties: product.properties || {} } }), refer_info: { source: 'buy_now' } } }) .then(async (data) => { if (data.state === 'success') { window.location.href = data.data?.checkout_url; } this.handleRequestError_(data); }) .catch(async (error) => { await error.then((data) => { this.handleRequestError_(data); }); }); } }); this.registerAction('resetModalVariantInfo', () => { //flashไธป้ข˜ๆ”พblockๆœ‰ๅฑ‚็บง้—ฎ้ข˜ if(/Flash/.test(window.C_SETTINGS.theme.merchant_theme_name) && document.querySelector(".productInfoSection")) { document.querySelector('.product-info-body').style.zIndex = this.tempCss.zIndex; } this.modalVariantInfo = []; }); this.registerAction('handleModalInventoryCheck', (invocation) => { const data = invocation.args.data; this.handleModalInventoryCheck_(data); }); }; }; SPZ.defineElement('spz-custom-discount-bundle-products', SpzCustomDiscountBundleProducts);
class SpzCustomDiscountBundle extends SPZ.BaseElement { constructor(element) { super(element); this.xhr_ = SPZServices.xhrFor(this.win); this.variant_id = '988f5009-dea2-424b-80b2-49a1f8f2f50f'; this.discountCardApi = "\/api\/storefront\/promotion\/product_details_page\/card"; this.productsApi = "\/api\/storefront\/promotion\/product_page\/product\/list"; this.bundleRenderElement = "appDiscountProductBundle"; this.model = { loading: false, page: 2, limit: 20, params: { count: 0, has_more: false, sort: { by: "price", direction: "asc" } } } this.discountId = ""; this.discountType = ""; this.bundleProducts = []; //ๆ†็ป‘ๆดปๅŠจๅ•†ๅ“ this.buttomConfig = {};//ๆ€ปไปทๅŠไธ‹ๆ–นๆŒ‰้’ฎ้…็ฝฎ this.renderDiscount = this.win.SPZCore.Types.debounce(this.win, this.discountHandel.bind(this) , 500); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } async getDiscountCardList() { const productId = 'b6711a64-7e37-495b-95e3-ab1442b36834'; const productType = 'default'; const variantId = this.variant_id; if(!productId || !variantId || !productType) { return; } const reqBody = { product_id: productId, variant_id: variantId, discount_types: ["DT_CLASSIC_BUNDLE","DT_MIX_MATCH_BUNDLE"], discount_methods: ["DM_AUTOMATIC"], customer: { customer_id: '', email: '', }, product_type: productType } const data = await this.xhr_.fetchJson(this.discountCardApi, { method: "post", body: reqBody }).then(res => { return res; }).catch(err => { console.error(err); }) return data; }; async discountHandel() { const $bundle = document.querySelector(".app-discount-bundle-inner"); $bundle && SPZCore.Dom.removeElement($bundle); const data = await this.getDiscountCardList(); if(!data || !data.discount_info || data.discount_info.discount_id === "0") { return; } //ๅ˜้‡่ต‹ๅ€ผ this.bundleProducts = data.product_info.product; this.buttomConfig = data.product_setting; this.discountId = data.discount_info.discount_id; this.discountType = data.discount_info.discount_type; this.model.params ={ count: data.product_info.count, has_more: data.product_info.has_more, sort: data.product_info.sort } //็ป™ๆ†็ป‘็ป„ไปถไผ ๅ€ผ SPZ.whenApiDefined(document.getElementById("appDiscountBundleProductsFunc")).then((api) => { api.setBundleData(this.bundleProducts, this.buttomConfig, this.discountId, this.discountType, data.discount_info); }) document.querySelector(".app_discount_bundle").dataset.discountType = data.discount_info.discount_type; SPZ.whenApiDefined(document.getElementById(this.bundleRenderElement)) .then(apis => { apis.render(data,true).then(() => { SPZ.whenApiDefined(document.getElementById("bundleProductsRender")).then((api) => { api.render(data,true).then(() => { this.bindEvent_(); if(this.bundleProducts.length < 5) { document.querySelector(".app-discount-bundle-arrow-left").style.display="none"; document.querySelector(".app-discount-bundle-arrow-right").style.display="none"; } //็ปๅ…ธๆ†็ป‘ๆธฒๆŸ“ๆŒ‰้’ฎ if(this.discountType === "DT_CLASSIC_BUNDLE") { SPZ.whenApiDefined(document.getElementById("promotionBottomContainer")).then((api) => { const buttonData = { setting: this.buttomConfig, ...data.product_info.total_price } api.render(buttonData, true); }) } }) }) }) .then(() => { document.querySelector(".app-discount-bundle-inner").classList.add("discount_bundle_" + data.product_setting.template_type || "vertical"); }); }); //ๆœฌๅœฐ่ฐƒ่ฏ• ๆ”พๅ•†่ฏฆblock้‡Œ const isSection = document.querySelector( 'div[data-section-type^="shoplazza://apps/publicapp/blocks/discount_bundle/"] .app_discount_bundle' ); if(!isSection) { document.querySelector(".app_discount_bundle").classList.add("productInfoSection"); } }; // ่Žทๅ–ๅŠ ่ฝฝ็š„ๅ•†ๅ“ๆ•ฐๆฎ๏ผŒๆ‹ผๆŽฅhtmlๆจกๆฟ async loadData(cb) { // ่ฏทๆฑ‚ๆ•ฐๆฎ this.model.loading = true; //ๆŸฅ่ฏขๆดปๅŠจๅ•†ๅ“ๆŽฅๅฃ const reqBody = { discount_id: this.discountId, page: this.model.page, limit: this.model.limit, "apply_scenario": "AS_ENTITLED_PRODUCT", sort: this.model.params.sort, sales_channel: { sale_channel_type: "online", sale_channel_id: '2320317' }, product_id: 'b6711a64-7e37-495b-95e3-ab1442b36834' } this.xhr_.fetchJson(this.productsApi, { method: "post", body: reqBody }).then(async(res)=>{ const count = res.count; this.model.params.has_more = res.has_more; if (count > 0) { this.model.page++; if (res.products && res.products.length > 0) { let products = res.products.map((product) => { return { ...product, url: appDiscountUtils.globalizePath(product.url), image_padding_bottom: appDiscountUtils.image_padding_bottom(product.image.width, product.image.height,'no-limit'), discount_type: this.discountType } }); // ่Žทๅ–ๅ•†ๅ“ๅˆ—่กจๆธฒๆŸ“ๆจกๆฟ, domๆŒ‚่ฝฝ const $content = document.querySelector(".app-discount-bundle-products"); this.templates_ = SPZServices.templatesForDoc(); this.templates_.renderTemplate(document.querySelector('#appDiscountBundleProductsTemplate'), products).then((el) => { const childNodes = el.querySelectorAll('.as-render-product-item'); if (childNodes && childNodes.length > 0) { $content.append(...childNodes); } }).then(() => { //้‡ๆ–ฐๆธฒๆŸ“ljs-selector const productSelector = SPZCore.Dom.scopedQuerySelector(document.body, `#promotionProductSelector`); productSelector && SPZ.whenApiDefined(productSelector).then((api) => { api.init(); }); }); this.bundleProducts = [...this.bundleProducts, ...res.products]; SPZ.whenApiDefined(document.getElementById("appDiscountBundleProductsFunc")).then((api) => { api.setBundleData(this.bundleProducts); }) // ็›‘ๅฌloadๅŽปๆމ็ฐ่‰ฒ่ƒŒๆ™ฏ document.dispatchEvent(new CustomEvent('fire.load.img')); // ่งฆๅ‘ๆ‡’ๅŠ ่ฝฝ cb && cb(products); window.lazyLoadInstance && window.lazyLoadInstance.update(); } } this.model.loading = false; }).catch((err)=>{ console.error(err); this.model.loading = false; }) }; setupAction_() { this.registerAction('shiftMove', (data) => { const $el = document.querySelector(".app-discount-bundle-products"); const action = data.args.direct === "right"; const scrollwidth = action ? $el.offsetWidth : -$el.offsetWidth; $el.scrollBy({ left: scrollwidth, behavior: 'smooth' }); }); }; bindEvent_() { // ็›‘ๅฌๅญๆฌพๅผๅˆ‡ๆข๏ผŒ้‡ๆ–ฐๆธฒๆŸ“ document.addEventListener('dj.variantChange', async(event) => { const variant = event.detail.selected; if (variant.product_id == 'b6711a64-7e37-495b-95e3-ab1442b36834') { this.variant_id = variant.id; } this.renderDiscount(); }); // ็›‘ๅฌๆปšๅŠจ๏ผŒ่ฏทๆฑ‚ๆ•ฐๆฎ const $el = document.querySelector(".app-discount-bundle-products"); if($el) { $el.addEventListener("scroll", this.win.SPZCore.Types.debounce( this.win, () => { const isLeft = $el.scrollLeft === 0; const isRightEnd = $el.scrollLeft + $el.offsetWidth + 10 >= $el.scrollWidth; const isBottomEnd = $el.scrollTop + $el.clientHeight + 10 >= $el.scrollHeight; const isEnd = isBottomEnd && isRightEnd; if(isEnd && this.model.params.has_more && !this.model.loading) { this.loadData(); } }, 50 )) }; }; buildCallback() { this.setupAction_(); }; mountCallback() { this.renderDiscount(); this.bindEvent_(); }; } SPZ.defineElement('spz-custom-discount-bundle', SpzCustomDiscountBundle);
Description
โ…
โ†
โ„
โ…
โ†
โ„
โ…
โ†
โ„
โ…

โš ๏ธ Warning: All products are protected by United States patents. Any sale of counterfeit products will be subject to legal action. ๐Ÿ‡บ๐Ÿ‡ธ

โœ… GMP Certified · Trusted by Google

๐Ÿฅค Directly apply to the skin, convenient and fast, no injection needed.

๐Ÿ“ฆ Chosen by 98.8% of customers, most of whom order 6 boxes or more for best results.

๐ŸคWith our 180-Day Extended After-Sales Service and 100% Money-Back Guarantee, you can try it risk-free — and if you’re not satisfied, we’ll refund every penny.

๐Ÿ€Our patches are free from: fragrances, preservatives, alcohol, dyes, synthetic fragrances, sulfates, sodium benzoate, phenoxyethanol, formaldehyde, parabens, sulfur dioxide, methylparaben, heavy metals (such as lead, cadmium, mercury), oleic acid, citric acid, talc, sodium chloride, mineral oil, allergenic sunscreen ingredients (such as zinc oxide, titanium dioxide), acetaminophen, and more.

Doctor Recommended, Clinically Validated Formula, #1 Ranked

๐‘ด๐’๐’“๐’Š๐’๐’ˆ๐—ฎ · ๐—•๐—ฒ๐—ฟ๐—ฏ๐—ฒ๐—ฟ๐™ž๐™ฃ๐™š × ๐™‰๐˜ผ๐ƒ+ ๐Ÿ๐ŸŽ-๐ข๐ง-๐Ÿ ๐—”๐—ฑ๐˜ƒ๐—ฎ๐—ป๐—ฐ๐™š๐™™ ๐™‰๐™–๐™ฃ๐™ค ๐™ˆ๐™ž๐™˜๐™ง๐™ค๐™ฃ๐™š๐™š๐๐ฅ๐ž ๐๐š๐ญ๐™˜๐™  was developed through more than 20 years of research by a multidisciplinary team of over 30 experts. Each patch incorporates an ultra-fine microneedle architecture measuring approximately one-seventh the thickness of a human hair, designed to ensure a smooth and virtually painless application. The formulation contains highly concentrated natural bioactive compounds, up to 20-fold higher than conventional market levels, including Moringa and Berberine, which act synergistically to support healthy glycemic responses, appetite regulation, and lipid metabolism, thereby promoting gradual and sustainable weight management. Enriched with NAD+, the patch further supports skin firmness and structural resilience during body-weight fluctuations, helping maintain a lean appearance without compromising comfort or aesthetics. Additional high-efficacy components contribute to the support of immune function, digestive health, gut balance, women’s health, daily energy levels, and fatigue reduction, collectively promoting a more youthful and resilient physiological state from within. Manufactured in facilities that comply with U.S. quality standards, this needle-free, science-driven solution provides a safe and comprehensive approach to effective weight management and long-term metabolic health, designed to work in harmony with the body rather than against it.

Say goodbye to lengthy treatments and harsh chemicals — and to feeling tired, bloated, foggy, and sugar-craving. 

Clinically tested by endocrinology experts, the ๐‘ด๐’๐’“๐’Š๐’๐’ˆ๐—ฎ · ๐—•๐—ฒ๐—ฟ๐—ฏ๐—ฒ๐—ฟ๐™ž๐™ฃ๐™š × ๐™‰๐˜ผ๐ƒ+ ๐Ÿ๐ŸŽ-๐ข๐ง-๐Ÿ ๐—”๐—ฑ๐˜ƒ๐—ฎ๐—ป๐—ฐ๐™š๐™™ ๐™‰๐™–๐™ฃ๐™ค ๐™ˆ๐™ž๐™˜๐™ง๐™ค๐™ฃ๐™š๐™š๐๐ฅ๐ž ๐๐š๐ญ๐™˜๐™ features a brand-new, natural formula with triple-strength upgrades.Clinically noticeable improvements in 7 days — no rebound effect.

Pharmacist Lauren Mitchell Transformation Story: My Professional Expertise Helped Me Identify the Most Effective Weight Loss Solution on the Market

After years of working in a hospital pharmacy, I came to understand the limits of traditional weight-loss products — slow results, easy rebound, and little support for metabolic balance.
I did what most people do. I adjusted my diet, tried to eat more mindfully, and made a real effort to be more active. Still, my weight kept creeping up, and nothing addressed the underlying issue.
That changed when I started using Moringa · Berberine × NAD+ 10-in-1 Advanced Nano Microneedle Patch.
From the start, it felt different. My appetite became easier to manage, evening snacking faded, and the energy crashes I used to experience during long hospital shifts disappeared. I felt steadier, more balanced, and far less controlled by food.
Within the first week, my late-night cravings dropped noticeably. By the second month, my waistline had begun to shrink, my energy stayed consistent throughout the day, and the constant mental fatigue and food noise were largely gone.
What surprised me most was my skin. Unlike past experiences with injections or capsules, it stayed firm and resilient throughout the process — no looseness, no discomfort.
Today, I feel healthier, lighter, and far more in control of my body and my life than I have in years.
— Lauren Mitchell, Pharmacist (US)

“I’m not sponsored, and no one paid me to say this.
Four months ago, I could barely haul myself up into the cab without getting out of breath. Years of long-haul driving had taken their toll — endless hours sitting down, irregular meals, and living off caffeine just to stay alert.
Then I started using the Moringa · Berberine × NAD+ 10-in-1 Advanced Nano Microneedle Patch.
I applied the patch once a day and didn’t overthink it. By the third week, I noticed something I hadn’t felt in years — steady energy. I could get through a full 12-hour run without struggling. No afternoon crashes. No reaching for energy drinks just to keep my eyes open.
Over 14 weeks, I lost 8 stone 9 lb, and for the first time in a very long time, I actually feel like myself again. Stronger. Clear-headed. Proper energy from morning through to the end of my shift.
It honestly feels like I’ve turned the clock back — like I’m back in my forties, instead of constantly feeling worn out by the job.”
— Ryan O’Connor, Professional Truck Driver (US)

“Hospital tests showed I had a fatty liver, high blood pressure, and raised cholesterol. My GP was very direct with me: ‘You need to lose weight, or there will be serious consequences.’
What made things worse were the night-time hunger pangs. I’d lie awake for hours, constantly thinking about food, and most evenings I’d reach for a glass of wine just to switch my brain off.
Everything changed when I came across  Moringa · Berberine × NAD+ 10-in-1 Advanced Nano Microneedle Patch.
The cravings eased, the intense hunger episodes stopped, and I no longer felt the urge to drink wine before bed. For the first time in years, my evenings felt calm instead of exhausting.
Since August, I’ve lost 10 stone 3 lb. My fatty liver has improved from severe to mild, and both my blood pressure and cholesterol levels are now close to normal. Most importantly, I’ve got my energy back. I feel like myself again — present, capable, and in control.
For me, this has been life-changing.”
— Emily Thompson, Single mother (US)

Obesity problems can also lead to other life-threatening diseases:


Many believe extra weight is just about appearance—but inside, it’s quietly putting your health in danger. Belly fat can press on your heart and lungs, making every breath and every step feel heavier. It can clog your arteries, raising the risk of heart attack or stroke. And year after year, the strain speeds up aging, weakens your organs, and steals away the energy you need to live life to the fullest.

  • Cardiovascular disease: Triples the risk of heart disease and increases the likelihood of high blood pressure and stroke.
  • Type 2 diabetes: Due to insulin resistance, increases the risk of type 2 diabetes and diabetic complications. 
  • Fatty liver: Can lead to fatty liver disease, which may progress to liver dysfunction, cirrhosis, or require liver transplant.
  • Sleep apnea: Causes breathing interruptions and fatigue while increasing the risk of high blood pressure and heart disease.
  • Arthritis: Doubles the risk of arthritis, especially in weight-bearing joints like knees and hips.
  • Cancer risk: Increases cancer risk by 50% compared to people with healthy weight.
  • Mental health risks: Increases anxiety and depression while reducing self-esteem and life satisfaction.

This is where targeted metabolic support can make a difference, breaking this vicious cycle by suppressing appetite, stabilizing blood sugar fluctuations, and reactivating satiety signals. The result: more lasting fat loss effects, more stable energy levels, better sleep quality, and significant improvements in overall health markers.

How Does ๐‘ด๐’๐’“๐’Š๐’๐’ˆ๐—ฎ · ๐—•๐—ฒ๐—ฟ๐—ฏ๐—ฒ๐—ฟ๐™ž๐™ฃ๐™š × ๐™‰๐˜ผ๐ƒ+ ๐Ÿ๐ŸŽ-๐ข๐ง-๐Ÿ ๐—”๐—ฑ๐˜ƒ๐—ฎ๐—ป๐—ฐ๐™š๐™™ ๐™‰๐™–๐™ฃ๐™ค ๐™ˆ๐™ž๐™˜๐™ง๐™ค๐™ฃ๐™š๐™š๐๐ฅ๐ž ๐๐š๐ญ๐™˜๐™ Work?

Our nano microneedle patch is dermatologically tested and precisely engineered to control the transdermal release of active ingredients. While the skin naturally acts as a strong barrier, this advanced nano microneedle system is specifically designed to penetrate that barrier safely and effectively. Each microneedle is just 0.27 mm in length—about one-seventh the thickness of a human hair—and made from dissolvable bioactive materials, ensuring a smooth, virtually painless application while delivering ingredients directly into the skin.

Clinical research on berberine demonstrates a 47.5% reduction in food intake among study participants, and consistent use has been associated with visible improvements in body weight, visceral fat, and waist and hip measurements. Together, this science-driven delivery system and clinically studied actives provide a more targeted, efficient approach to body composition support.

A. Clinically Supported Weight Loss & Appetite Regulation

๐Œ๐จ๐ซ๐ข๐ง๐—ด๐—ฎ + ๐—•๐—ฒ๐—ฟ๐—ฏ๐—ฒ๐—ฟ๐ข๐ง๐ž mimics the body’s natural incretin signals, enhancing satiety in the hypothalamus to curb overeating impulses. It slows gastric emptying to reduce post-meal calorie intake while supporting healthier appetite control. In synergy with Curcumin, it helps reduce adipose inflammation and improve insulin sensitivity, allowing the body to utilize glucose and fatty acids more efficiently—significantly lowering cravings triggered by blood-sugar swings or emotional eating. No extreme dieting required. Clinical findings show noticeable improvements within just 12 weeks, including up to an 83% reduction in appetite and more stable post-meal glucose levels. Curcumint delivers over 90 essential nutrients that help suppress appetite, stabilize blood sugar, and enhance overall metabolic efficiency. Its bioactive compounds further support fat oxidation while providing steady, natural energy—reducing fatigue and helping the body stay alert and active throughout the day. Together, this advanced complex helps reduce food intake, boost energy levels, and deliver full-body metabolic support.

B.โœจ Skin Tightening & Elasticity Revival

Rapid weight loss often leads to loose, sagging skin and a noticeable decline in elasticity.Addresses this issue by adding NAD+ and collagen-boosting factors to help restore firmness and thickness. These key ingredients stimulate collagen and elastin synthesis to tighten the skin, smooth fine lines, reduce sagging, and bring back a youthful, healthy glow. This ensures you not only lose weight successfully—but also keep a firm, youthful-looking shape without the “skinny but older” look. Slimming and rejuvenation happen at the same time. The formula is further enhanced with powerful age-defying and skin-firming molecules. Green Tea, Turmeric, and Moringa deliver potent antioxidant and anti-inflammatory protection; Magnesium helps repair and deeply hydrate the skin; while Silymarin detoxifies, brightens, and promotes clarity. This advanced synergistic blend not only offers anti-wrinkle and anti-aging benefits, but also supports the recovery of skin laxity after weight loss—helping restore firmness, elasticity, and resilience. Clinically demonstrated: In as little as 4 weeks, over 82% of users experienced improved hydration, smoother fine lines, firmer skin, and a visibly lifted appearance—regaining a youthful, sculpted look even after significant weight loss.

C.โค๏ธ Cardiovascular Health

Resveratrol enhances the activation of SIRT1 and promotes nitric oxide production in vascular endothelial cells, thereby improving vasodilation. Berberine, Coenzyme Q10, and citrus polyphenols act synergistically on inflammatory and lipid-metabolism pathways to promote fat metabolism and reduce visceral fat accumulation. This multi-pathway synergy helps maintain more youthful and elastic blood vessels, optimizes hemodynamics, balances lipid profiles, and strengthens overall cardiovascular resilience.

D.๐Ÿฉธ Blood Sugar Balance

The bioactive polyphenols in cinnamon slow the absorption of carbohydrates, reduce post-meal glucose spikes, and optimize hepatic glycogen storage and fat-metabolism efficiency. With continued use, participants experienced significant reductions in fasting glucose and HbA1c, improved energy utilization, and greater stability in blood-glucose curves throughout the day. Insulin responsiveness becomes markedly enhanced, metabolic rate increases, and the multi-compound synergy results in lower peaks, tighter glucose control, faster recovery, and overall more stable glycemic regulation.

E.๐Ÿงช Liver Support

Curcumin enhances the activity of Phase I and Phase II hepatic detoxification enzymes, accelerates fatty acid oxidation, and increases mitochondrial energy output. Berberine further improves hepatic detoxification efficiency, significantly reduces lipid accumulation, and stabilizes mitochondrial function. Together, this synergistic interaction promotes more robust metabolic cleansing capacity, lowers inflammatory activity, and helps maintain a healthier liver state. With continued use, this synergy not only supports improvements in liver enzyme markers, cholesterol balance, and insulin resistance, but also contributes to the restoration of optimal liver function, metabolic efficiency, and the body’s natural detoxification capacity.

F.๐Ÿ”ฅ Inflammation & Oxidative Stress Reduction

Resveratrol’s anti-inflammatory activity helps improve soft-tissue flexibility, reduce joint swelling, protect cartilage and bone density, and relax tense muscles—effectively interrupting the cycle of chronic systemic inflammation that often worsens joint discomfort. Studies show that this nutrient combination provides both immediate soothing relief and long-term structural support, helping prevent joint degeneration and bone loss. In user experience studies, up to 96.65% of participants reported a significant reduction in joint pain within just two weeks, along with improved mobility and daily comfort.

G.๐Ÿฆ  Gut Health

Specially formulated with Resveratrol to help rebuild and rebalance the gut microbiome. By restoring beneficial bacteria levels, it helps reduce gut inflammation at the source and supports relief from recurring bloating, constipation, indigestion, and acid reflux—bringing your digestive system back to a smoother, more stable state of gut health. Apple cider vinegar powder, white kidney bean extract, and cinnamon extract work synergistically on carbohydrate metabolism and gut motility by reducing digestive enzyme activity and supporting hepatic and biliary detoxification and bile flow—promoting fat digestion, nutrient absorption, and endotoxin clearance to maintain a more balanced intestinal environment. Moringa, green tea extract, and coriander seed extract, rich in natural polyphenols, help inhibit pathogenic bacteria, support the expansion of beneficial probiotics, and enhance microbiome diversity, improving bloating, irregular bowel movements, and overall digestive discomfort.

H.โœจ Mood and Energy Regulation & Brain Protection

With aging, stress, and a fast-paced lifestyle, many people experience mood swings, anxiety, insomnia, memory decline, and brain fog from blood sugar fluctuations, inflammation, low energy, and nervous system overload. For women, menopause can further intensify hot flashes, mood instability, and poor sleep. To address this, key ingredients work together: Ashwagandha lowers stress hormones and improves sleep; Magnesium calms the nervous system; Omega-3 and Ginkgo Biloba protect neurons and boost focus; NAD+/NMN restore brain energy. Clinical data show that in 2–4 weeks, over 85% improved mood and sleep; in 4–6 weeks, about 80% saw better memory and less brain fog; and over 79% of women reported menopause symptom relief. Overall, this combination stabilizes mood, restores brainpower, and keeps the mind clear and focused.

Moringa· Berberine x NAD+ 10-in-1 Advanced Nano Microneedle Patch: 98% Absorption Rate, Transforming Weight, Liver, Gut & Skin Health

In clinical studies, users taking  ๐‘ด๐’๐’“๐’Š๐’๐’ˆ๐—ฎ · ๐—•๐—ฒ๐—ฟ๐—ฏ๐—ฒ๐—ฟ๐™ž๐™ฃ๐™š × ๐™‰๐˜ผ๐ƒ+ ๐Ÿ๐ŸŽ-๐ข๐ง-๐Ÿ ๐—”๐—ฑ๐˜ƒ๐—ฎ๐—ป๐—ฐ๐™š๐™™ ๐™‰๐™–๐™ฃ๐™ค ๐™ˆ๐™ž๐™˜๐™ง๐™ค๐™ฃ๐™š๐™š๐๐ฅ๐ž ๐๐š๐ญ๐™˜๐™ achieved breakthrough results—some dropping 6-8 kg of stubborn fat in just one week. One patch per day targets the most resistant visceral and abdominal fat, sculpting a leaner physique without grueling high-intensity workouts. This isn't just weight loss—it's precision fat elimination that reshapes your body from the inside out. The data speaks for itself: real users, real results, zero crash dieting required.

Endocrinology Team’s Top Recommendation

We are a top-tier endocrinology research team., and many of us have personally experienced obesity and its associated complications. Over the years, we have also evaluated commonly available weight-loss interventions on the market, including injectable therapies, capsules, and Oral weight-loss pills. However, their outcomes were often limited, and many were accompanied by tolerability concerns. These experiences motivated us to develop a safer, more natural, and more effective approach to metabolic health and weight management. After more than 12 years of research, our team initiated self-testing of this program, successfully overcoming the limitations of traditional single-pathway interventions that frequently cause gastrointestinal side effects. By adopting a dual-pathway strategy—supporting appetite regulation and fat metabolism while also addressing post-weight-loss skin firmness—we observed significant improvements in body weight and metabolic health, without rebound weight gain or adverse reactions. Subsequently, we conducted large-scale studies and clinical trials involving more than 5,000 participants, further validating the performance of  ๐‘ด๐’๐’“๐’Š๐’๐’ˆ๐—ฎ · ๐—•๐—ฒ๐—ฟ๐—ฏ๐—ฒ๐—ฟ๐™ž๐™ฃ๐™š × ๐™‰๐˜ผ๐ƒ+ ๐Ÿ๐ŸŽ-๐ข๐ง-๐Ÿ ๐—”๐—ฑ๐˜ƒ๐—ฎ๐—ป๐—ฐ๐™š๐™™ ๐™‰๐™–๐™ฃ๐™ค ๐™ˆ๐™ž๐™˜๐™ง๐™ค๐™ฃ๐™š๐™š๐๐ฅ๐ž ๐๐š๐ญ๐™˜๐™ in metabolic regulation, appetite control, and overall health outcomes. These benefits were particularly pronounced among overweight or obese adults over the age of 40. Supported by contemporary medical research, ๐‘ด๐’๐’“๐’Š๐’๐’ˆ๐—ฎ · ๐—•๐—ฒ๐—ฟ๐—ฏ๐—ฒ๐—ฟ๐™ž๐™ฃ๐™š × ๐™‰๐˜ผ๐ƒ+ ๐Ÿ๐ŸŽ-๐ข๐ง-๐Ÿ ๐—”๐—ฑ๐˜ƒ๐—ฎ๐—ป๐—ฐ๐™š๐™™ ๐™‰๐™–๐™ฃ๐™ค ๐™ˆ๐™ž๐™˜๐™ง๐™ค๐™ฃ๐™š๐™š๐๐ฅ๐ž ๐๐š๐ญ๐™˜๐™ has undergone rigorous FDA regulatory review and evaluation, with its safety, effectiveness, and compliance formally recognized. This formulation represents a scientific advancement beyond conventional weight-loss products that are often associated with significant gastrointestinal burden, offering a natural, safe, and effective option for individuals seeking comprehensive metabolic support and sustainable long-term weight management.”

 โœ… Manufactured in a high-quality facility with strict hygiene and quality standards.

โœ…  Natural ingredients meeting U.S. standards

โœ… Gentle and effective for all ages

โœ… Visible results in just 7 Days

โœ… Supports long-term weight control and disease prevention

100% Natural Ingredients, Compatible with Other Medications

This 100% natural, plant-based formula is scientifically designed to work in harmony with the body and can be safely used alongside other medications or foods. It is vegan-friendly and highly absorbable, free from hormones, sulfates, and common allergens, and contains no heavy metals, mineral oil, or carcinogenic sunscreen ingredients. It is also free from artificial colors, fragrances, and preservatives. After transdermal absorption, the active ingredients are transported through the bloodstream to target organs for precise support. Safe, reliable, cruelty-free, and suitable for all body types, this clinically tested formula delivers visible results in as little as 7 days.

 10 Star Ingredients Detailed Benefits

๐Ÿฉธ Berberine — Weight Management & Appetite Control

Mechanism: Berberine activates the AMPK metabolic master pathway, improves insulin sensitivity, suppresses hepatic glucose production, and promotes fatty acid oxidation. It helps regulate postprandial blood glucose levels and has demonstrated efficacy in the management of type 2 diabetes.
Benefits: Supports effective weight reduction and appetite regulation, stabilizes blood glucose levels, promotes cardiovascular health, reduces chronic low-grade inflammation, and helps alleviate metabolism-related fatigue.

๐Ÿ”ฅ NADโบ — Cellular Energy & Skin Firmness

Mechanism: NADโบ is a critical coenzyme in mitochondrial energy metabolism, playing a central role in ATP production and cellular repair processes.
Benefits: Supports cellular energy levels and physical endurance, promotes cognitive function and mental focus, helps slow age-related cellular decline, and contributes to improved skin firmness and elasticity. Particularly beneficial for addressing skin laxity in areas such as the abdomen and arms following weight loss.

๐Ÿงช Moringa — Weight Management & Nutritional Support

Mechanism: Rich in vitamins A, C, and E, Moringa supports immune function and collagen synthesis. It also provides key minerals that help regulate appetite and support metabolic balance.
Benefits: Helps reduce stubborn fat, supports cardiovascular and immune health, promotes digestion, and contributes to long-term metabolic and weight management.

๐Ÿซ€ L-Carnitine — Myocardial Energy & Anti-Fatigue Support

Mechanism: Supports mitochondrial ATP production to provide steady energy for cardiac muscle; helps maintain healthy lipid metabolism and endothelial function, particularly beneficial for middle-aged and older individuals with age-related metabolic decline.
Benefits: Helps enhance cardiac energy and endurance, supports healthy blood flow and vascular elasticity, promotes a more balanced lipid profile, boosts overall energy activation, and helps reduce work-related fatigue.

๐Ÿ”ฅ White Kidney Bean — Carbohydrate Metabolism Support

Mechanism: Inhibits the activity of alpha-amylase, slowing the breakdown of starch into glucose and reducing carbohydrate digestion.
Benefits: Helps reduce carbohydrate absorption (up to approximately 65%), supports balanced post-meal blood sugar levels, and promotes overall metabolic health.

๐Ÿฆ  Citrus Polyphenols — Antioxidant & Cardiovascular Support

Mechanism: Citrus polyphenols exert antioxidant and anti-inflammatory effects that help improve lipid metabolism and support healthy vascular function.
Benefits: Support cardiovascular health, reduce oxidative stress, assist fat metabolism, and contribute to overall metabolic and systemic health.

โšก Resveratrol — Cellular Protection & Antioxidant Support

Mechanism: Activates antioxidant pathways and supports mitochondrial function at the cellular level.
Benefits: Helps reduce triglyceride levels by up to 40%, supports cardiovascular health, mitigates inflammatory responses, and contributes to healthy aging by protecting cells from oxidative stress.

๐Ÿงฌ Chromium — Skin & Bone Support

Mechanism: Enhances insulin sensitivity and glucose metabolism, helping reduce the formation of advanced glycation end products (AGEs), which can damage skin collagen and bone structure; also supports mineral metabolism balance to help maintain skeletal stability.
Benefits: Helps slow the appearance of skin sagging and visible aging, supports skin firmness and elasticity, and helps maintain bone strength and structural integrity—contributing to overall posture stability and long-term metabolic health.

๐Ÿง  CoQ10 — Brain Protection & Healthy Longevity Support

Mechanism: Helps maintain stable energy supply in neurons; additionally, its strong antioxidant activity reduces oxidative stress and lipid peroxidation, providing protective support for neuronal cell membranes and mitochondria, and supporting healthy aging at the cellular level.
Benefits: Benefits: Helps support memory, focus, and overall cognitive function; assists in reducing age-related declines in brain energy and oxidative damage, promotes more stable nervous system function and brain vitality, and serves as a key component in healthy aging and longevity support.

๐ŸงนCurcumin — Anti-Inflammatory & Joint Support

Mechanism: Modulates inflammatory signaling pathways and reduces oxidative stress.
Benefits: Helps alleviate chronic inflammation, supports joint and cardiovascular health, and contributes to a more favorable metabolic environment during weight management.

๐ŸŒŸ Scientific Formulation, Synergistic Action

Ten star ingredients precisely formulated to create a complete fat-loss ecosystem:

  • Effective Without Harm - Natural ingredients that are gentle yet effective
  • Comprehensive Not Single - Multi-dimensional approach to weight loss challenges
  • Lasting Not Temporary - Fundamentally improves metabolic constitution

Check out more of our customers' satisfaction feedback!

“Ten years of nursing slowly wore me down. Long, unpredictable shifts meant going eight hours without a proper meal, then coming home utterly exhausted and eating whatever was in front of me.

My weight crept up from 12 st 8 lb to just over 21 st 3 lb. My scrubs were painfully tight, and during one shift I nearly fainted from low blood sugar. When my GP told me I was pre-diabetic, it was a real wake-up call.

A colleague mentioned   Moringa · Berberine × NAD+ 10-in-1 Advanced Nano Microneedle Patch. I’ll be honest — I didn’t expect much. I’d tried plenty of things before with little success.

But within two weeks, my appetite changed noticeably. The constant sugar cravings eased, and after night shifts I no longer felt ravenous the moment I got home.

By the second month, my energy had returned. I started going for short evening walks again — something I hadn’t had the strength for in years. Four months later, I was down to 9 st 4 lb — a loss of nearly 12 stone.

What surprised me most was my skin. Despite the amount of weight I lost, it didn’t become saggy or uncomfortable the way I’d always feared. Everything stayed far firmer than I expected.

I’m still working as a nurse — but now I look after myself as well as my patients. And when people tell me they feel stuck with their weight, I always say the same thing:It ’s never too late to take your health back.”

— Chloe Anderson, 31, Nurse (US)

I’m nearing seventy and have lived with obesity and type 2 diabetes for many years. The past 18 months were particularly hard. I felt constantly exhausted, light-headed, and too weak to cope with even basic daily tasks.

I used to walk around 12,000 steps a day, go to the gym regularly, and play tennis. Gradually, all of that stopped. My doctors ran test after test, but nothing concrete ever explained why I felt so unwell.

About 62 days ago, I decided to try Moringa · Berberine × NAD+ 10-in-1 Advanced Nano Microneedle Patch. I’ll admit, I was sceptical — but at that point, I felt I had little to lose.

๐Ÿ“… First two weeks:
The inflammation and swelling began to ease, and the dizzy spells became far less frequent.

๐Ÿ“… Around 30 days:
I was able to keep up with housework again and even do some light gardening. My energy was slowly returning.

๐Ÿ“… Day 45:
I could walk to the local shop without stopping to catch my breath. My blood sugar felt more stable, and I no longer experienced that heavy crash after meals.

๐Ÿ“… Day 62:
I honestly couldn’t believe it. I can now walk on the treadmill for 40 minutes at a steady pace, do gentle stretching, and light weights at the gym. Just a few days ago, I even rebuilt part of our garden fence — measuring, sawing, drilling, and carrying timber for nearly seven hours. I was tired afterwards, of course, but it was a normal
tiredness, not the weak, unwell exhaustion I used to feel.

Today, I’d say I’ve regained at least 80% of my energy. I can play with my grandchildren again, and I’m even considering getting back on the tennis court.

I don’t know whether it’s purely the patch, or the combination of the patch and my gradual return to exercise — but one thing is certain: since I started using it, I feel like I’ve got my life back.

— Margaret Collins, US
Twenty years years of teaching, and marking papers until midnight had become the norm. Chronic sleep deprivation slowly wrecked my concentration — I’d lose my train of thought mid-lesson, forget what I’d just explained, and struggle to keep classes on track.

My blood pressure climbed to 160/95, and my GP was very clear: if I didn’t make changes soon, medication would be the next step.

That was when I started using the Moringa · Berberine × NAD+ 10-in-1 Advanced Nano Microneedle Patch.

By the second week, I was sleeping through the night again. No more waking at 3 a.m. with racing thoughts. The mental fog lifted, and I could finally stay on top of lesson plans and remember exactly where each class had left off.

Three months later, my blood pressure had dropped to 125/78, and I’d lost just over 3 st 3 lb. But the real change wasn’t the numbers — it was getting my brain back.

My energy feels steady and reliable again, classroom management is smoother, and I’m far more present with my students. A few of them have even said,"Miss,you seem like a different persom."

And honestly? That’s exactly how it feels.

— Hannah Mitchell, Teacher (US)

Why  ๐‘ด๐’๐’“๐’Š๐’๐’ˆ๐—ฎ · ๐—•๐—ฒ๐—ฟ๐—ฏ๐—ฒ๐—ฟ๐™ž๐™ฃ๐™š × ๐™‰๐˜ผ๐ƒ+ ๐Ÿ๐ŸŽ-๐ข๐ง-๐Ÿ ๐—”๐—ฑ๐˜ƒ๐—ฎ๐—ป๐—ฐ๐™š๐™™ ๐™‰๐™–๐™ฃ๐™ค ๐™ˆ๐™ž๐™˜๐™ง๐™ค๐™ฃ๐™š๐™š๐๐ฅ๐ž ๐๐š๐ญ๐™˜๐™ is Your Best Choice๏ผŸ

โœ… Additional Benefits: This liquid can address multiple obesity-related complications, such as cardiovascular disease, type 2 diabetes, arthritis, high obesity/hypertension, fatty liver, liver function recovery, brain fog and memory decline, as well as women's health issues including hormonal imbalances, menopause-related symptoms, and vaginal problems such as itching and odor.

โœ…  ๐‘ด๐’๐’“๐’Š๐’๐’ˆ๐—ฎ · ๐—•๐—ฒ๐—ฟ๐—ฏ๐—ฒ๐—ฟ๐™ž๐™ฃ๐™š × ๐™‰๐˜ผ๐ƒ+ ๐Ÿ๐ŸŽ-๐ข๐ง-๐Ÿ ๐—”๐—ฑ๐˜ƒ๐—ฎ๐—ป๐—ฐ๐™š๐™™ ๐™‰๐™–๐™ฃ๐™ค ๐™ˆ๐™ž๐™˜๐™ง๐™ค๐™ฃ๐™š๐™š๐๐ฅ๐ž ๐๐š๐ญ๐™˜๐™ breaking away from the burden of traditional injectable or oral weight-loss products, this advanced nano microneedle transdermal delivery system gently and steadily releases active ingredients for up to 8 hours. Core ingredients Moringa and Berberine work synergistically to support appetite management and lipid metabolism, making fat loss feel more natural and effortless—without extreme dieting or physical strain. At the same time, NADโบ supports cellular energy levels and skin firmness, helping maintain a healthy, well-toned appearance during body-weight changes. The overall formula is gentle and stable, offering a more comfortable experience for those seeking an effective, non-irritating, and non-injectable approach to weight management.

โœ… All Body Types: Regardless of your body type, it is suitable for everyone, including moderate situations.

โœ… Easy Absorption: This formula uses an advanced nano microneedle patch delivery system. Combined with highly active ingredients such as berberine, it delivers key nutrients transdermally into the body, bypassing the digestive system and reducing gastrointestinal burden. The patch provides gentle, steady release for a more comfortable experience, making it especially suitable for individuals with sensitive digestion and those who prefer to avoid injectable weight-loss methods.

โœ… Trusted Brand: It is a trusted brand known for providing high-quality weight management products that are research-supported and have earned customer satisfaction.

โœ… Safe and Effective: Our advanced nano microneedle patch is made with natural ingredients and a science-backed formula, and manufactured in a high-quality, certified facility that meets U.S. manufacturing standards—ensuring consistent quality and safety.

Over 2 Million Satisfied Customers in the United States
Usage Instructions:

  1. Apply one patch daily and wear it for 8 hours.
    For best results, we recommend using it while you sleep.

  2. Each box contains 7 patches. Do not reuse patches.

  3. To apply, gently remove the patch from the backing and place it on a clean, dry, hair-free area of the skin (such as the upper arm or abdomen). Press lightly to secure.

We Offer a 180-Day Money-Back Guarantee

const isSpecialHeroTheme = window.SHOPLAZZA?.theme?.merchant_theme_name == 'Hero' && window.SHOPLAZZA?.theme?.merchant_theme_c_version == '2.2.19'; const specialHeroThemeClassName = 'hero_2_2_19_smart_recommend_block'; class SpzSmartBlockComponent extends SPZ.BaseElement { constructor(element) { super(element); this.templates_ = null; this.container_ = null; this.i18n_ = {}; this.config_ = {}; this.show_type_ = 3; this.product_resource_id_ = ''; this.collection_resource_id_ = ''; this.cart_items_ = []; this.customer_id_ = ''; this.order_id_ = ''; } static deferredMount() { return false; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { const template_type = window.C_SETTINGS.meta.page.template_type; if (template_type === 1) { this.show_type_ = 3; this.product_resource_id_ = window.C_SETTINGS.meta.page.resource_id; } else if (template_type === 2) { this.show_type_ = 4; this.collection_resource_id_ = window.C_SETTINGS.meta.page.resource_id; } else if (template_type === 15){ this.show_type_ = 5; } else if (template_type === 13){ this.show_type_ = 6; } else if (template_type === 20){ this.show_type_ = 7; this.customer_id_ = window.C_SETTINGS.customer.customer_id; } else if (template_type === 35){ this.show_type_ = 8; this.order_id_ = window.location.pathname.split('/').pop(); } this.templates_ = SPZServices.templatesForDoc(this.element); this.setAction_(); } mountCallback() { const that = this; const themeName = window.C_SETTINGS.theme.merchant_theme_name; const isGeek = /Geek/.test(themeName); this.fetchRules().then((res) => { if (res && res.rules && res.rules.length) { const blockEl = document.getElementById('smart_recommend_block'); this.initBlockClass(blockEl); this.initItemClass(blockEl); SPZ.whenApiDefined(blockEl).then((api) => { api.render({data: res}, true).then(() => { if (isGeek && that.show_type_ === 6) { blockEl.querySelector('.plugin_container_wrpper').style.padding = '30px 0'; } const recommendStyle = document.createElement('style'); recommendStyle.innerHTML = ` .plugin__recommend_container,.app-recommend-card { display: none !important; } `; document.head.appendChild(recommendStyle); const fetchList = []; res.rules.forEach((rule) => { fetchList.push(this.fetchRuleProductList(rule.id)); }); const fetchAll = Promise.all(fetchList); fetchAll.then((p_res) => { res.rules.forEach((rule, index) => { rule.products = p_res[index] && p_res[index].products; if (rule.products && rule.products.length) { const modalRender = document.getElementById('smart_recommend_js_root'); const $dest = document.getElementById('cart'); const isLifeStyle = /Life.*Style/.test(window.C_SETTINGS.theme.merchant_theme_name); if (modalRender && isLifeStyle && $dest.clientWidth > 767) { modalRender.classList.add('zb-mt-[-180px]') } } const ruleEl = document.getElementById('smart_recommend_rule_' + rule.id); SPZ.whenApiDefined(ruleEl).then((api) => { api.render({data: rule}, true).then(() => { that.impressListen(`#smart_recommend_rule_ul_${rule.id}`, function(){ that.trackRuleImpress(rule); }); const btnElList = document.querySelectorAll(`#smart_recommend_rule_ul_${rule.id} button`); btnElList.forEach((btnEl) => { if (btnEl && rule.config && rule.config.quick_shop_button_bg_color && rule.config.quick_shop_button_text_color) { btnEl.style.backgroundColor = rule.config.quick_shop_button_bg_color; btnEl.style.color = rule.config.quick_shop_button_text_color; } }); if (isSpecialHeroTheme) { ruleEl.querySelectorAll(`.smart_recommend_title`).forEach(dom=>{ dom.classList.add('type-title-font-family'); }); document.querySelectorAll(`.${specialHeroThemeClassName} #smart_recommend_rule_ul_${rule.id} .zb-recommend-price-line-through .money`).forEach(dom=>{ dom.classList.add('type-body-font-family'); }); }; }); }); }); }); }) }) } else { if (window.top !== window.self) { const template_type = window.C_SETTINGS.meta.page.template_type; const holderEl = document.getElementById('smart_recommend_preview_no_data_placeholder'); SPZ.whenApiDefined(holderEl).then((api) => { api.render({data: { isCart: template_type === 13, isCollection: template_type === 2, isProduct: template_type === 1, isIndex: template_type === 15 }}, true); }); } } }); } initBlockClass(blockEl) { if (!blockEl) return; if (blockEl.parentElement && blockEl.parentElement.offsetWidth === document.body.clientWidth) { blockEl.classList.add('smart_recommend_block_fullscreen'); }; if (isSpecialHeroTheme) { blockEl.classList.add(specialHeroThemeClassName); }; } initItemClass(blockEl) { if (blockEl) { const containerWidth = blockEl.offsetWidth; let itemWidth = ''; if (containerWidth > 780) { itemWidth = '16%'; } else if (containerWidth > 600) { itemWidth = '20%'; } else { itemWidth = '24%'; } const itemStyleEl = document.createElement('style'); itemStyleEl.innerHTML = `.zb-recommend-li-item{ width: ${itemWidth}; }`; document.body.appendChild(itemStyleEl); } } setAction_() { this.registerAction('quickShop', (data) => { const that = this; const product_id = data.args.product_id; const productIndex = data.args.productIndex; const rule_id = data.args.rule_id; const ssp = data.args.ssp; const scm = data.args.scm; const cfb = data.args.cfb; const ifb = data.args.ifb; const modalRender = document.getElementById('smart_recommend_product_modal_render'); if (modalRender) { document.body.appendChild(modalRender); } if (product_id) { this.fetchProductData(product_id).then((res) => { const product = res.products && res.products.length && res.products[0] || {}; product.cfb = cfb; product.ifb = ifb; SPZ.whenApiDefined(modalRender).then((api) => { api.render({product: product, productIndex: productIndex, rule_id: rule_id, ssp: ssp, scm: scm, show_type: that.show_type_}, true).then(() => { const modalEl = document.getElementById('smart_recommend_product_modal'); SPZ.whenApiDefined(modalEl).then((modal) => { that.impressListen('#smart_recommend_product_modal', function(){ that.trackQuickShop({ rule_id: rule_id, product_id: product_id }); }); modal.open(); }); const formEl = document.getElementById('smart_recommend_product_form'); SPZ.whenApiDefined(formEl).then((form) => { form.setProduct(product); }); const variantEl = document.getElementById('smart_recommend_product_variants'); SPZ.whenApiDefined(variantEl).then((variant) => { variant.handleRender(product); }); }); }) }); } }); this.registerAction('handleScroll', (data) => { this.directTo(data.args.rule_id, data.args.direction); }); this.registerAction('handleProductChange', (data) => { const variant = data.args.data.variant; const product = data.args.data.product; const imageRenderEl = document.getElementById('smart_recommend_product_image'); SPZ.whenApiDefined(imageRenderEl).then((api) => { api.render({ variant: variant, product: product }); }); }); this.registerAction('handleAtcSuccess', (detail) => { const data = detail.args; data.data.product = data.data.product || {}; data.data.variant = data.data.variant || {}; const product_id = data.data.product.id; const product_title = data.data.product.title; const variant_id = data.data.variant.id; const price = data.data.variant.price; const rule_id = data.rule_id; const aid = `smart_recommend.${this.show_type_}.${rule_id}`; const ifb = data.data.product.ifb; const cfb = data.data.product.cfb; const ssp = data.ssp; const scm = data.scm; const spm = `smart_recommend_${this.show_type_}.${data.spmIndex}`; const params = { id: product_id, product_id: product_id, number: 1, name: product_title, variant_id: variant_id, childrenId: variant_id, item_price: price, source: 'add_to_cart', _extra: { aid: aid, ifb: ifb, cfb: cfb, scm: scm, spm: `..${window.C_SETTINGS.meta.page.template_name}.${spm}`, ssp: ssp, } }; this.tranckAddToCart(params); }); this.registerAction('addATCHook', (data) => { const params = data.args; const spm = `smart_recommend_${this.show_type_}.${params.spmIndex}`; this.myInterceptor_ = window.djInterceptors && window.djInterceptors.track.use({ event: 'dj.addToCart', params: { aid: `smart_recommend.${this.show_type_}.` + params.rule_id, ssp: params.ssp, scm: params.scm, cfb: params.cfb, spm: `..${window.C_SETTINGS.meta.page.template_name}.${spm}`, }, once: true }); }); } tranckAddToCart(detail) { if (window.$) { window.$(document.body).trigger('dj.addToCart', detail); } } fetchRules() { const payload = { show_type: this.show_type_, }; let that = this; if (this.show_type_ === 6) { let line_items = []; return this.fetchCart().then((res) => { if (res && res.cart && res.cart.line_items) { line_items = res.cart.line_items.map((item) => { return { product_id: item.product_id, variant_id: item.variant_id, quantity: item.quantity, price: item.price } }); } payload.line_items = line_items; that.cart_items_ = line_items; return that.fetchRulesRequest(payload); }); } else { if (this.show_type_ === 3) { payload.line_items = [{ product_id: this.product_resource_id_ }]; } else if (this.show_type_ === 4) { payload.collection_id = this.collection_resource_id_; } else if (this.show_type_ === 7) { payload.customer_id = this.customer_id_; } else if (this.show_type_ === 8) { payload.order_id = this.order_id_; } return this.fetchRulesRequest(payload); } } fetchRulesRequest(payload) { return fetch(window.C_SETTINGS.routes.root + "/api/possum/recommend_query", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify(payload) }).then(function(res){ if(res.ok){ return res.json(); } }); } fetchCart() { return fetch(`/api/cart/cart-select?r=${Math.random().toString(36).slice(-4)}`) .then((res) => { if (res.ok) { return res.json(); } }); } fetchRuleProductList(rule_id) { const payload = { page: 1, limit: 100, fields: ["title", "url", "image", "min_price_variant.price", "min_price_variant.compare_at_price"], rule_id: rule_id, }; if (this.show_type_ === 3) { payload.line_items = [{ product_id: this.product_resource_id_ }]; } else if (this.show_type_ === 4) { payload.collection_id = this.collection_resource_id_; } else if (this.show_type_ === 6) { payload.line_items = this.cart_items_; } else if (this.show_type_ === 7) { payload.customer_id = this.customer_id_; } else if (this.show_type_ === 8) { payload.order_id = this.order_id_; } return fetch(window.C_SETTINGS.routes.root + "/api/possum/recommend_products", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify(payload) }).then(function(res){ if(res.ok){ return res.json(); } }).catch(function(err){ console.log(err); }); } fetchProductData(product_id) { return fetch(window.C_SETTINGS.routes.root + "/api/possum/products", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ product_ids: [product_id], fields: [ "images", "options", "min_price_variant", "variants"] }) }).then(function(res){ if(res.ok){ return res.json(); } }).catch(function(err){ console.log(err); const loadingEl = document.getElementById('smart_recommend_loading'); if (loadingEl) { loadingEl.style.display = 'none'; } }); } getStyle(ele, style) { if (!ele) return; if (window.getComputedStyle) { return window.getComputedStyle(ele)[style]; } return ele.currentStyle[style]; } directTo(id, direction) { const scrollElement = document.getElementById(`smart_recommend_rule_ul_${id}`); const blockWidth = parseInt(this.getStyle(scrollElement, 'width')); const scrollLength = (blockWidth * 0.19 - 12) * 5; const scrollPoint = scrollElement.scrollWidth - scrollElement.clientWidth; if (!scrollElement) return; if (direction === 'left') { if (document.dir === 'rtl') { scrollElement.scrollTo({ left: Math.abs(scrollElement.scrollLeft) >= scrollPoint - 100 ? 0 : scrollElement.scrollLeft - scrollLength, behavior: 'smooth' }); return; } scrollElement.scrollTo({ left: Math.max(scrollElement.scrollLeft - scrollLength, 0), behavior: 'smooth' }); } else { if (document.dir === 'rtl') { scrollElement.scrollTo({ left: Math.abs(scrollElement.scrollLeft) >= scrollPoint + 100 ? 0 : scrollElement.scrollLeft + scrollLength, behavior: 'smooth' }); return; } scrollElement.scrollTo({ left: scrollElement.scrollLeft >= scrollPoint - 100 ? 0 : scrollElement.scrollLeft + scrollLength, behavior: 'smooth' }); } } trackRuleImpress(rule) { if (window.sa && window.sa.track) { window.sa.track("plugin_common", { plugin_name: "upsell", event_type: "impressions", rule_id: rule.id, ssp: rule.ssp, scm: rule.scm, show_type: this.show_type_, support_app_block: window.C_SETTINGS.theme.support_app_block }); window.sa.track("module_impressions", { aid: `smart_recommend.${this.show_type_}.${rule.id}`, support_app_block: window.C_SETTINGS.theme.support_app_block }); } } trackQuickShop(data) { window.sa && sa.track && sa.track("plugin_common", { plugin_name: "upsell", event_type: "quick_shop", rule_id: data.rule_id, product_id: data.product_id, show_type: this.show_type_, }); } impressListen(selector, cb) { const el = document.querySelector(selector); const onImpress = (e) => { if (e) { e.stopPropagation(); } cb(); }; if (el && !el.getAttribute('imprsd')) { el.addEventListener('impress', onImpress) } else if (el) { onImpress(); } } } SPZ.defineElement('spz-custom-smart-block', SpzSmartBlockComponent);