ULTRA 360 Women's 50+ Multivitamin

Sale price $22.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 = '5c5148f3-5bf3-4f7b-b8e8-c2ce1f5ff02e'; 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 = 'eb0e50eb-95b1-471e-b33b-77938799af64'; 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 == 'eb0e50eb-95b1-471e-b33b-77938799af64' && 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

ULTRA 360 Women’s 50+ Multivitamin

ULTRA 360 Women’s Multi 50+ Coated Caplets- Targeted Nutrition for Women 50 and Beyond

Feel confident, energized, and supported through every stage of perimenopause and postmenopausal life with ULTRA 360 Women’s Multivitamin 50+ by Vitamin World. This comprehensive multivitamin is specifically formulated to meet the changing nutritional needs of women aged 50 and over. Packed with activated B vitamins, chelated minerals, botanical adaptogens, and potent antioxidants, this formula helps support bone density, hormone balance, immune strength, and graceful aging—so you can keep doing what you love with vitality and clarity.*

Key Benefits

  • Supports bone strength and density, heart health, and cognitive function*

  • Promotes healthy skin, hair, and nails with key vitamins and minerals*

  • Boosts energy metabolism and immune system resilience* 

  • Formulated with antioxidants to help combat free radicals and cellular aging*

Key Ingredients

- Calcium, Magnesium, Vitamin D3: For bone density and muscle function*

- B Vitamins: To support energy and mental clarity*

-Black cohosh root, Panax ginseng, Dong Quai root, St. John’s Wort Extract, and Red Raspberry Leaf for perimenopause and menopause support, to help restore lost energy and vitality .*

- Vitamin A, C, E & Zinc: For immune defense and healthy skin*

- Biotin and Collagen: For hair, nail, and cellular health*

- Citrus Bioflavonoid Complex, Grape Seed Extract, Elderberry Extract,Black Currant, Resveratrol for powerful antioxidant support.*

 

FREE OF: 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

Who is this for?

Women aged 50+ who want a comprehensive multivitamin that supports hormonal balance, energy, and aging gracefully—ideal for postmenopausal health and vitality.

 

WARNING: Do not use if pregnant or nursing. If you are taking any medications, planning any medical or surgical procedure or have any medical condition, consult your doctor before use. Avoid this product if you are allergic to ragweed or daisy-like flowers. 

Discontinue use if you experience any abdominal discomfort. Consult your doctor if any adverse reactions occur. Not intended for use by children or persons under the age of 18.

Store at room temperature. Do not use if seal under cap is broken or missing.

Contains ingredients that may result in a variation of color and appearance over time.

⚠ 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 women, take 2 caplets daily with a meal.
Vitamin A(as Beta Carotene)1000 mcg RAE 111%
Vitamin C(as Ascorbic Acid)120 mg 133%
Vitamin D3(as Cholecalciferol)50 mcg (2,000 IU) 250%
Vitamin E(as d-alpha tocopheryl acetate)20 mg (30 IU) 133%
Vitamin K-1(as Phytonadione)10 mcg 8%
Thiamine (B1)(as Thiamine Mononitrate)30 mg 2500%
Riboflavin30 mg 2308%
Niacin(as Niacinamide)30 mg 188%
Vitamin B6(as Pyridoxine)30 mg 1765%
Folate667 mcg DFE (400 mcg Folic Acid) 167%
Vitamin B-12(as Cyanocobalamin)30 mcg 1250%
Biotin500 mcg 1667%
Pantothenic Acid(as d-Calcium Pantothenate)30 mg 600%
Calcium(as Calcium Carbonate, dicalcium phosphate, Calcium Citrate)522 mg 40%
Iodine(as Potassium Iodide)150 mcg 100%
Magnesium(as Magnesium Oxide)100 mg 24%
Zinc(as Zinc Oxide)15 mg 136%
Selenium(as Sodium Selenate)100 mcg 182%
Copper(as Copper Oxide)2 mg 222%
Manganese(as Manganese Gluconate)2 mg 87%
Chromium(as Chromium Picolinate)200 mcg 571%
Molybdenum(as Sodium Molybdate)75 mcg 167%
Potassium(as Potassium Chloride)30 mg <1%
Boron(as Boron Aspartate)2 mg **
Vanadium10 mcg **
Woman's 50+ Bioactive Blend
Citrus Bioflavonoid Complex (Peel), Grape Seed 4:1 Extract, Elderberry 4:1 Extract (Fruit), Black Currant (Fruit), Resveratrol (Root), Lutein, Lycopene44 mg **
Woman's 50+ Herbal Blend
St. John's Wort Extract (Hypericum perforatum) (Whole Herb), Black Cohosh (Actaea racemosa) (Root), Dong Quai (Angelica sinensis) (Root), Red Raspberry (Rubus idaeus) (Leaf), Chasteberry (Vitex angus-castus) (Fruit)42 mg **
Panax Ginseng (Root)20 mg **
Cranberry 25:1 Extract (Fruit)
equivalent to 100 mg of Whole Cranberries4 mg **
Turmeric 3:1 Extract (Root)
5% Curcuminoids50 mg **
Woman's 50+ Collagen Blend
Hydrolyzed Collagen (Solugel® 5000), Silica, Inositol, Choline Bitartrate50 mg **