ULTRA 360 Men's Max Multivitamin

Sale price $39.99
const TAG = 'spz-custom-flash-sale-tag'; class SpzCustomFlashSaleTag extends SPZ.BaseElement { constructor(element) { super(element); this.variants_ = []; this.dataId_ = []; }; buildCallback = () => { if (this.element.hasAttribute('data-id')) { this.dataId_ = this.element.getAttribute('data-id'); } if (this.dataId_) { const scriptElement = document.querySelector("#" + this.dataId_); try { this.variants_ = JSON.parse(scriptElement.textContent); if (this.variants_.length === 1) { const currentSelectVariant = this.variants_[0]; currentSelectVariant.variant_id = currentSelectVariant.id; this.doRenderTag_(currentSelectVariant); } } catch (error) { console.log('error', error); } } this.setupAction_(); }; doRenderTag_ = (currentSelectVariant) => { if (!currentSelectVariant) { this.childElement.setAttribute('hidden', ''); return; } this.childElement = this.element.querySelector('div'); const currentVariant = this.variants_.find(item => item?.id == currentSelectVariant?.variant_id); if (Array.isArray(currentVariant?.flashsale_info)) { this.childElement.setAttribute('hidden', ''); return; } const flashSaleInfo = currentVariant?.flashsale_info; if (!flashSaleInfo?.discount_id) { this.childElement.setAttribute('hidden', ''); return; } const currentTime = (new Date().getTime() / 1000); const isValid = (flashSaleInfo.ends_at === -1 || (flashSaleInfo.ends_at && Math.min(currentTime, flashSaleInfo.ends_at))); if (!isValid) { this.childElement.setAttribute('hidden', ''); return } const flashSaleTagName = flashSaleInfo?.color_setting_promotional_copy || ''; if (!flashSaleTagName) { this.childElement.setAttribute('hidden', ''); return } const flashSaleTagDoms = this.element.querySelectorAll('[role="flash-sale-tag-tile"]'); if (!flashSaleTagDoms?.length) { this.childElement.setAttribute('hidden', ''); return } this.childElement.removeAttribute('hidden', ''); ;[...flashSaleTagDoms].forEach(item => { item.innerHTML = flashSaleTagName; }) }; setupAction_ = () => { this.registerAction('renderTag', async (invocation) => { this.doRenderTag_(invocation.args.data); }); }; setData_ = (variants) => { this.variants_ = variants; }; isLayoutSupported = (layout) => { return layout == SPZCore.Layout.CONTAINER; }; } SPZ.defineElement(TAG, SpzCustomFlashSaleTag)
const TAG = "spz-custom-product-automatic"; class SpzCustomProductAutomatic extends SPZ.BaseElement { constructor(element) { super(element); this.variant_id = 'c317a9dc-0cec-4f2f-95ae-102b6b50ea23'; this.isRTL = SPZ.win.document.dir === 'rtl'; } 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 = '04fb1a51-af8b-4fd2-b88e-5fa0e35b704c'; const variantId = this.variant_id; const productType = ''; 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 == '04fb1a51-af8b-4fd2-b88e-5fa0e35b704c' && 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(); }); } 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);
Size : 90
Quantity
  • Description
  • Label Directions
  • Supplement Facts
  • How It Works

ULTRA 360 Men’s Multi Max 

90 Coated Caplets, 45 Servings per container

180 Coated Caplets, 90 Servings per container

Vitamin World® ULTRA 360 Men’s Multi Max is a high-potency daily multivitamin tailored to men’s unique health needs. This complete formula delivers essential nutrients plus specialized support for energy, metabolism, mental performance, stamina, and sexual wellness.*

Key Benefits

  • Complete daily nutritional support for men*

  • Promotes natural energy production and metabolism*

  • Supports sexual health and stamina*

  • Enhances focus, mental clarity, and athletic performance*

Key Ingredients

B-Complex Vitamins – Essential for converting food into energy (ATP) and fueling daily performance*

Saw Palmetto – Traditionally used for prostate health and urinary flow support*

Pumpkin Seed Oil – Offers vitamins and anti-inflammatory compounds to support urinary tract health*

FREE OF: Artificial Color, Artificial Flavor, Added Sweetener, Preservatives, Milk, Soy, Lactose, Wheat, Fish, Gluten, Eggs, Gelatin, Yeast.

MADE IN USA, with domestic and imported ingredients

QUALITY ASSURED: Scientifically formulated and manufactured in GMP facilities. Tested to ensure our high quality and purity standards.

 

Pairs Well With

  • L-Arginine – For circulation and nitric oxide support*

  • Zinc + Magnesium (ZMA) – For testosterone, recovery, and immune health*

  • Omega-3 Fish Oil – To support cardiovascular and brain function*

Who is this for?

Men seeking complete daily nutritional support—especially those looking to boost energy, metabolism, focus, stamina, and sexual wellness while supporting prostate and overall vitality.


See more Vitamin World ULTRA 360 Multivitamin for Men

 

WARNING: This product is intended for use by men and is not intended for use by women. If you are taking any medications, planning any medical or surgical procedure or have any medical condition, consult your doctor before use. Discontinue use and consult your doctor if any adverse reactions occur. Not intended for use by persons under the age of 18. Keep out of reach of children.
Store at room temperature.
Do not use if seal under cap is broken or missing.

⚠ CALIFORNIA WARNING: Can expose you to lead, a reproductive toxicant. See www.P65Warnings.ca.gov.

*These statements have not been evaluated by the Food and Drug Administration. These products are not intended to diagnose, treat, cure or prevent any disease.

For adult men, take 2 caplets daily with a meal.
Vitamin A(as Beta Carotene)1,667 mcg RAE 185%
Vitamin C(as Ascorbic acid)500 mg 556%
Vitamin D3(as Cholecalciferol)50 mcg (2,000 IU) 250%
Vitamin E(as d-alpha-tocopheryl acetate)20 mg (30 IU) 133%
Vitamin K1(as Phytonadione)75 mcg 63%
Thiamine (B1)(as Thiamine Mononitrate)75 mg 6250%
Riboflavin75 mg 5769%
Niacin(as Niacinamide)75 mg 469%
Vitamin B6(as Pyridoxine HCl)75 mg 4412%
Folate667 mcg DFE (400 mcg Folic Acid) 167%
Viatmin B12(as Cyanocobalamin)100 mcg 4167%
Biotin5,000 mcg 16667%
Pantothenic Acid(as d-Calcium Pantothenate)75 mg 1500%
Choline(as Choline Bitartrate)4 mg <1%
Calcium(as Calcium Carbonate, Calcium Citrate)100 mg 8%
Iodine(as Potassium Iodide)150 mcg 100%
Magnesium(as Magnesium Oxide)50 mg 12%
Zinc(as Zinc Oxide)15 mg 136%
Selenium(as Sodium Selenate)200 mcg 364%
Copper(as Copper Oxide)2 mg 222%
Managanese(as Manganese Gluconate)2 mg 87%
Chromium(as Chromium Picolinate)200 mcg 571%
Molybdenum(as Sodium Molybdate)72 mcg 160%
Potassium(as Potassium Chloride)30 mg <1%
Inositol10 mg **
Alpha Lipoic Acid100 mg **
L-Arginine HCl50 mg **
L-Cysteine HCl50 mg **
Acetyl-L-Carnitine HCl50 mg **
Saw Palmetto (fruit)50 mg **
Pumpkin Seed30 mg **
Resveratrol(50% Trans-Resveratrol)25 mg **
Citrus Bioflavonoids25 mg **
Grape Seed 4:1 Extract25 mg **
Green Tea Leaf Extract (50% EGCG)10 mg **
Bilberry 4:1 Extract (fruit)6 mg **
Alfalfa (Aerial)5 mg **
Lycopene1 mg **
Lutein2 mg **

The ULTRA 360 Max Multivitamin for Men is specifically formulated to go beyond meeting your basic nutritional needs. The key nutrients for men are chosen specifically to support powerful athletic performance, stamina, and sexual wellbeing.*