View all
🎁 Free Shipping on all Orders Over $80
🎁 Free Shipping on all Orders Over $80
Shop now
🎁 Free Shipping on all Orders Over $80
🎁 Free Shipping on all Orders Over $80
function getTotalHeightIncludingMargin(element) { if (!element) return 0; const style = window.getComputedStyle(element); const marginTop = parseFloat(style.marginTop); const marginBottom = parseFloat(style.marginBottom); return element.offsetHeight + marginTop + marginBottom; } function updateAnnouncementContainerHeight() { const socialLinksHeight = getTotalHeightIncludingMargin(socialLinks); const announcementHeight = getTotalHeightIncludingMargin(announcement); const height = Math.max(socialLinksHeight, announcementHeight); announcementContainer.style.height = height + 'px'; } function resetAnnouncementContainerHeight() { announcementContainer.style.height = 'auto'; } const socialLinks = document.getElementById('socialLinks'); const announcement = document.querySelector('.pc-announcement'); const announcementContainer = document.querySelector('.announcement-container'); const resizeObserver = new ResizeObserver(() => { if (window.matchMedia("(min-width: 960px)").matches) { updateAnnouncementContainerHeight(); }else { resetAnnouncementContainerHeight(); } }); if (socialLinks) { resizeObserver.observe(socialLinks); } if (announcement) { resizeObserver.observe(announcement); }
function setSearchUrl(searchValue) { return Promise.resolve({ url: '/search?q=' + searchValue }); } exportFunction('setSearchUrl', setSearchUrl);
OlderIn Fashion
const marketSlot = document.querySelector(".plugin_c_market"); if(marketSlot) { marketSlot.remove(); }
const SITE = (window.C_SETTINGS || window[atob('U0hPUExBWlpB')])?.routes?.root || ''; const MARKET_THEME_SETTINGS = `${SITE}/api/markets/theme_setting`; const MARKET_COUNTRIES = `${SITE}/api/markets/countries`; const IP_MATCHING_MARKET = `${SITE}/api/front/station`; const MARKET_LANGUAGES = `${SITE}/api/markets/:id/active_languages`; const URL_REDIRECT = '_market_redirected'; const COOKIE_TIPS_NAME = 'market_no_tips'; const COOKIE_TIPS_EXPIRES = 1000 * 60 * 60 * 24 * 14; const MARKET_COUNTRY_COOKIE = '_shoplazza_market_country'; const MARKET_MODAL_LOADED = '__market_modal_loaded__'; const PROPERTY_SELECTED = 'selected'; const MARKET_PC_HEADER_TRIGGER = 'market-pc-header-trigger'; const MARKET_PC_HEADER_COUNTRY_SELECT_TITLE = 'market-pc-header-country-select-title'; const MARKET_PC_HEADER_LANGUAGE_SELECT_TITLE = 'market-pc-header-language-select-title'; const MARKET_PC_HEADER_LANGUAGE_SELECT_SUB_TITLE = 'market-pc-header-language-select-sub-title'; const MARKET_PC_HEADER_COUNTRY_SELECT_SUB_TITLE = 'market-pc-header-country-select-sub-title'; const MARKET_FLAG = 'market-flag'; const MARKET_SELECT_VALUE = 'market-select-value'; const MARKET_CURRENCY = 'market-currency'; const MARKET_CURRENCY_SYMBOL = 'market-currency-symbol'; const MARKET_SELECT_ITEM = 'market-select-item'; const MARKET_SELECT_ITEM_ID = 'market-select-item-id'; const MARKET_SELECT_LIST = 'market-select-list'; const MARKET_LANGUAGE_SELECT = 'market-language-select'; const MARKET_COUNTRY_SELECT = 'market-country-select'; const MARKET_MODAL = 'market-modal'; const MARKET_GATEWAY_REDIRECT_MODAL = 'market-gateway-redirect-modal'; const MARKET_RESELECT_MODAL = 'market-reselect-modal'; const MARKET_MODAL_FLAG = 'market-modal-flag'; const MARKET_MODAL_COUNTRY_CODE = 'market-modal-country-code'; const MARKET_MODAL_CURRENCY_SYMBOL = 'market-modal-currency-symbol'; const MARKET_MODAL_CLOSE = 'market-modal-close'; const MARKET_MODAL_CONFIRM = 'market-modal-confirm'; const MARKET_MODAL_RESELECT = 'market-modal-reselect'; const MARKET_MODAL_RESELECT_COUNTRY_SELECT = 'market-modal-reselect-country-select'; const DATA_SECTION_TYPE = 'data-section-type'; const SECTION_TYPE_HEADER = 'header'; const SECTION_TYPE_FOOTER = 'footer'; class SpzCustomMarket extends SPZ.BaseElement { constructor(element) { super(element); this.global = null; this.useCountrySelect_ = false; this.useLanguageSelect_ = false; this.useModal_ = false; this.isSingleSelectMode_ = false; this.blockSectionPosition_ = ''; this.isEditMode = false; this.ipMatchingMarket = null; this.marketCountryList = []; this.marketLanguages = []; this.toast = null; } static deferredMount() { return false; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { console.debug('Geolocation'); this.xhr_ = SPZServices.xhrFor(this.win); const platform = SPZServices.platformFor(this.win); this.isIOS_ = platform.isIos(); this.action_ = SPZServices.actionServiceForDoc(this.element); this.global = this.win.C_SETTINGS || this.win[atob('U0hPUExBWlpB')]; this.isEditMode = new URLSearchParams(this.win.location.search).get('preview_theme_id') && new URLSearchParams(this.win.location.search).get('oseid'); this.init_(); } showToast_(content) { if (!this.toast) { this.toast = self.document.createElement('ljs-toast'); this.toast.setAttribute('layout', 'nodisplay'); this.toast.setAttribute('hidden', ''); this.toast.setAttribute('duration', '2000'); this.element.appendChild(this.toast); } SPZ.whenApiDefined(this.toast).then((apis) => { apis.showToast(content); }); } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, `${TAG}.${name}`, data); this.action_.trigger(this.element, name, event); } findBlockSectionPosition() { let current = this.element; while (current) { const dataSectionType = current.getAttribute(DATA_SECTION_TYPE); if ( dataSectionType === SECTION_TYPE_HEADER || dataSectionType === SECTION_TYPE_FOOTER ) { return dataSectionType; } current = current.parentElement; } return ''; } async initSettings_() { await this.getMarketThemeSettings_(); if (this.useCountrySelect_) { this.element.setAttribute('use-country-select', true); } if (this.useLanguageSelect_) { this.element.setAttribute('use-language-select', true); } if (this.useModal_) { this.element.setAttribute('use-modal', true); } if ( (this.useCountrySelect_ && !this.useLanguageSelect_) || (!this.useCountrySelect_ && this.useLanguageSelect_) ) { this.isSingleSelectMode_ = true; } this.blockSectionPosition_ = this.findBlockSectionPosition(); this.isPCLayout_ = this.win.matchMedia('(min-width: 960px)').matches; } renderMarketSelectTemplateNode_(clonedTemplate, data) { this.renderTemplateImg_(clonedTemplate, MARKET_FLAG, { src: data?.flag, width: '24', height: '24', }); this.renderTemplateElement_( clonedTemplate, MARKET_SELECT_VALUE, data.value ); this.renderTemplateElement_( clonedTemplate, MARKET_CURRENCY, data?.currency ); this.renderTemplateElement_( clonedTemplate, MARKET_CURRENCY_SYMBOL, data?.currencySymbol ); } bindDropdownOpenClickEvent_(triggerElement, dropdown) { if (!triggerElement) return; const triggerOpen = () => { SPZ.whenApiDefined(dropdown).then((apis) => { if (!dropdown.hasAttribute('open')) { apis.open(triggerElement); } }); }; if (this.isIOS_) { triggerElement.addEventListener('touchstart', triggerOpen); } else { triggerElement.addEventListener('click', triggerOpen); } } createDropdown_() { const dropdown = self.document.createElement('ljs-dropdown'); dropdown.setAttribute('layout', 'nodisplay'); if (this.blockSectionPosition_ === 'header') { dropdown.setAttribute('overlay-style', 'top: 4px;'); dropdown.setAttribute('placement', 'bottomRight'); } else if (this.blockSectionPosition_ === 'footer') { dropdown.setAttribute('overlay-style', 'top: -4px;'); dropdown.setAttribute('placement', 'top'); } return dropdown; } createDropdownIcon_() { const svgElement = document.createElementNS("http://www.w3.org/2000/svg", "svg"); svgElement.setAttribute("class", "market-rotate-180"); svgElement.setAttribute("width", "16"); svgElement.setAttribute("height", "16"); const path1 = document.createElementNS("http://www.w3.org/2000/svg", "path"); path1.setAttribute("d", "M7.47 5.172a.75.75 0 0 1 1.06 0l4.596 4.596a.75.75 0 1 1-1.06 1.06L7.468 6.232a.75.75 0 0 1 0-1.06Z"); path1.setAttribute("fill", "currentColor"); const path2 = document.createElementNS("http://www.w3.org/2000/svg", "path"); path2.setAttribute("d", "M8.533 5.172a.75.75 0 0 1 0 1.06l-4.596 4.596a.75.75 0 1 1-1.061-1.06l4.596-4.596a.75.75 0 0 1 1.06 0Z"); path2.setAttribute("fill", "currentColor"); svgElement.appendChild(path1); svgElement.appendChild(path2); return svgElement; } renderDropdownListWithClickEvent_({ triggerElement, dataList, subTitleRole, listElementWithTemplate, defaultValue, itemHandler, shouldUpdateSelectedItem = false, }) { const dropdown = this.createDropdown_(); const itemTemplate = SPZCore.Dom.scopedQuerySelector( listElementWithTemplate, 'template' ); const clonedItemTemplate = itemTemplate.cloneNode(true); const fragment = self.document.createDocumentFragment(); dataList.forEach((data) => { const tempParentNode = self.document.createElement('div'); const clonedTemplate = self.document.importNode( clonedItemTemplate.content, true ); tempParentNode.appendChild(clonedTemplate); tempParentNode.firstElementChild.classList.add( 'market-select-item' ); this.renderMarketSelectTemplateNode_(tempParentNode, data); const selectItemElement = SPZCore.Dom.scopedQuerySelector( tempParentNode, `[role="${MARKET_SELECT_ITEM}"]` ); if (!selectItemElement) { return; } if (defaultValue === data.value) { if (shouldUpdateSelectedItem) { const clonedSelectItemElement = selectItemElement.cloneNode(true); triggerElement.replaceChild( clonedSelectItemElement, triggerElement.firstElementChild ); } selectItemElement.setAttribute(PROPERTY_SELECTED, ''); } selectItemElement.setAttribute(MARKET_SELECT_ITEM_ID, data.value); fragment.appendChild(tempParentNode.firstElementChild); }); let value = defaultValue; listElementWithTemplate.addEventListener( 'click', (e) => { if (this.isEditMode) { this.showToast_('编辑器下不支持切换国家'); SPZ.whenApiDefined(dropdown).then((apis) => { apis.close(); }); return; } let targetElement = e.target; while (targetElement) { if ( !targetElement || targetElement.getAttribute(MARKET_SELECT_ITEM_ID) ) { break; } targetElement = targetElement.parentNode; } if ( !targetElement || !targetElement.hasAttribute(MARKET_SELECT_ITEM_ID) ) { return; } const selectValue = targetElement.getAttribute(MARKET_SELECT_ITEM_ID); if (value === selectValue) { SPZ.whenApiDefined(dropdown).then((apis) => { apis.close(); }); return; } const selectedData = dataList.find((c) => c.value === selectValue); if (shouldUpdateSelectedItem) { const tempParentNode = self.document.createElement('div'); const clonedTemplate = self.document.importNode( clonedItemTemplate.content, true ); tempParentNode.appendChild(clonedTemplate); this.renderMarketSelectTemplateNode_(tempParentNode, selectedData); tempParentNode.firstElementChild.classList.add( 'market-select-item' ); triggerElement.replaceChild( tempParentNode.firstElementChild, triggerElement.firstElementChild ); } value = selectValue; itemHandler?.(selectedData); SPZ.whenApiDefined(dropdown).then((apis) => { apis.close(); }); }, false ); listElementWithTemplate.removeChild(itemTemplate); listElementWithTemplate.appendChild(fragment); listElementWithTemplate.classList.add('market-select-list'); dropdown.appendChild(listElementWithTemplate); if (subTitleRole) { this.renderSelectTitle_(dropdown, subTitleRole); } return dropdown; } createSelect_({ parent, defaultValue, dataList, listElementWithTemplate, itemHandler, titleRole, }) { const triggerElement = self.document.createElement('div'); triggerElement.classList.add('market-select'); const displayElement = self.document.createElement('div'); triggerElement.appendChild(displayElement); triggerElement.appendChild(this.createDropdownIcon_()); const dropdown = this.renderDropdownListWithClickEvent_({ triggerElement, dataList, listElementWithTemplate, defaultValue, itemHandler, shouldUpdateSelectedItem: true, }); this.bindDropdownOpenClickEvent_(triggerElement, dropdown); const dropdownContainer = self.document.createElement('div'); dropdownContainer.appendChild(triggerElement); dropdownContainer.appendChild(dropdown); dropdownContainer.classList.add('market-select-container'); this.renderSelectTitle_(dropdownContainer, titleRole); parent.appendChild(dropdownContainer); } getListElementWithTemplate_(role) { const template = SPZCore.Dom.scopedQuerySelector( this.element, `[role="${role}"]` ); if (template) { const clonedTemplate = template.cloneNode(true); const tempParent = self.document.createElement("div"); tempParent.appendChild(clonedTemplate.content); const listElementWithTemplate = SPZCore.Dom.scopedQuerySelector( tempParent, `[role="${MARKET_SELECT_LIST}"]` ); return listElementWithTemplate; } return null; } renderSelectTitle_(parent, role) { if (!parent || !role) { return; } const template = SPZCore.Dom.scopedQuerySelector( this.element, `[role="${role}"]` ); const content = self.document.importNode(template.content, true); parent.insertBefore(content, parent.firstElementChild); parent.firstElementChild.classList.add( role.includes('sub') ? 'market-pc-header-select-sub-title' : 'market-pc-header-select-title' ); } initSelect_(rootNode, options) { const parent = rootNode || this.element; if (this.useCountrySelect_) { this.createSelect_({ parent, titleRole: options?.shouldRenderSelectTitle ? MARKET_PC_HEADER_COUNTRY_SELECT_TITLE : undefined, defaultValue: this.getDefaultCountryValue_(), dataList: this.marketCountryList.map(this.mapCountryRenderData_), listElementWithTemplate: this.getListElementWithTemplate_( MARKET_COUNTRY_SELECT ), itemHandler: this.handleCountrySelectChange_.bind(this), }); } if (this.useLanguageSelect_) { this.createSelect_({ parent, titleRole: options?.shouldRenderSelectTitle ? MARKET_PC_HEADER_LANGUAGE_SELECT_TITLE : undefined, defaultValue: this.getDefaultLanguageValue_(), dataList: this.marketLanguages.map(this.mapLanguageRenderData_), listElementWithTemplate: this.getListElementWithTemplate_( MARKET_LANGUAGE_SELECT ), itemHandler: this.handleLanguageSelectChange_.bind(this), }); } } initPcHeaderTriggerElement() { const headerTriggerElementTemplate = SPZCore.Dom.scopedQuerySelector( this.element, `[role="${MARKET_PC_HEADER_TRIGGER}"]` ); const headerTriggerElement = self.document.importNode( headerTriggerElementTemplate.content, true ); const parentDivElement = self.document.createElement('div'); parentDivElement.setAttribute('role', MARKET_PC_HEADER_TRIGGER); parentDivElement.appendChild(headerTriggerElement); this.element.removeChild(headerTriggerElementTemplate); return parentDivElement; } initPanelWithSelect_() { const triggerElement = this.initPcHeaderTriggerElement(); const dropdown = this.createDropdown_(); const panelElement = self.document.createElement('div'); panelElement.classList.add('market-panel'); this.initSelect_(panelElement, {shouldRenderSelectTitle: true}); dropdown.appendChild(panelElement); this.bindDropdownOpenClickEvent_(triggerElement, dropdown); this.element.appendChild(triggerElement); this.element.insertBefore(dropdown, triggerElement); } initSingleSelectDropdown_() { const triggerElement = this.initPcHeaderTriggerElement(); let dropdown; if (this.useCountrySelect_) { dropdown = this.renderDropdownListWithClickEvent_({ triggerElement, subTitleRole: MARKET_PC_HEADER_COUNTRY_SELECT_SUB_TITLE, dataList: this.marketCountryList.map(this.mapCountryRenderData_), listElementWithTemplate: this.getListElementWithTemplate_( MARKET_COUNTRY_SELECT ), defaultValue: this.getDefaultCountryValue_(), itemHandler: this.handleCountrySelectChange_.bind(this), }); } else if (this.useLanguageSelect_) { dropdown = this.renderDropdownListWithClickEvent_({ triggerElement, subTitleRole: MARKET_PC_HEADER_LANGUAGE_SELECT_SUB_TITLE, dataList: this.marketLanguages.map(this.mapLanguageRenderData_), listElementWithTemplate: this.getListElementWithTemplate_( MARKET_LANGUAGE_SELECT ), defaultValue: this.getDefaultLanguageValue_(), itemHandler: this.handleLanguageSelectChange_.bind(this), }); } if (dropdown) { this.bindDropdownOpenClickEvent_(triggerElement, dropdown); this.element.appendChild(triggerElement); this.element.appendChild(dropdown); } } initEntry_() { if (this.blockSectionPosition_ === SECTION_TYPE_HEADER) { if (this.isSingleSelectMode_) { this.initSingleSelectDropdown_(); } else if (this.useCountrySelect_ && this.useLanguageSelect_) { this.initPanelWithSelect_(); } } this.initSelect_(this.element); } async initData_() { const promises = []; if (this.useCountrySelect_ || this.useModal_) { promises.push(this.getCountryList_(), this.getIpMatchingMarket_()); } if (this.useLanguageSelect_) { promises.push(this.getMarketLanguages_(this.global.market.market_id)); } return Promise.all(promises).then((results) => { const ipMatchingMarket = results.find((result) => result.hasOwnProperty('matching_station') ); const marketCountryList = results.find((result) => result.hasOwnProperty('data') ); if (ipMatchingMarket && marketCountryList) { this.ipMatchingMarket = ipMatchingMarket?.matching_station?.find?.( (item) => item.type === 'multiple_market' ) || { img: marketCountryList.length ? marketCountryList?.[0]?.detail && marketCountryList[0].detail?.flag : '', }; } }); } initModal_() { if ( this.isEditMode || !this.ipMatchingMarket?.market_id || !this.useModal_ || this.hasCookie_(COOKIE_TIPS_NAME) || this.win[MARKET_MODAL_LOADED] ) { return; } this.win[MARKET_MODAL_LOADED] = true; const redirectParam = new URLSearchParams(this.win.location.search).get( URL_REDIRECT ); if (redirectParam) { this.initModalEntry_(MARKET_GATEWAY_REDIRECT_MODAL); } else if ( this.ipMatchingMarket.market_id !== this.global?.market?.market_id ) { this.initModalEntry_(MARKET_MODAL); } } async init_() { await this.initSettings_(); await this.initData_(); this.initEntry_(); this.initModal_(); } getDefaultCountryValue_() { return this.getCookie_(MARKET_COUNTRY_COOKIE) || this.marketCountryList[0]?.country_code; } mapCountryRenderData_(country) { return { flag: country?.detail?.flag || '', value: country?.country_code, currency: country?.currency, currencySymbol: country?.symbol?.val || '', url: country?.url, }; } handleCountrySelectChange_(selectedData) { this.setCookie_(MARKET_COUNTRY_COOKIE, selectedData.value); this.handleChangeURL_(selectedData.url); } getDefaultLanguageValue_() { return this.marketLanguages?.find?.( (lang) => lang.code === this.global?.market?.market_lang )?.name; } mapLanguageRenderData_(language) { return { value: language.name, url: language.url, }; } handleLanguageSelectChange_(selectedData) { this.handleChangeURL_(selectedData.url); } renderTemplateElement_(parent, role, value) { const elements = SPZCore.Dom.scopedQuerySelectorAll( parent, `[role="${role}"]` ); elements.forEach((element) => { if (element && value) { element.innerHTML = value; } }); } renderTemplateImg_(parent, role, options) { const flagElement = SPZCore.Dom.scopedQuerySelector( parent, `[role="${role}"]` ); if (flagElement && options?.src && options?.height && options?.width) { const spzImg = self.document.createElement('ljs-img'); spzImg.setAttribute('src', options.src); spzImg.setAttribute('layout', 'responsive'); spzImg.setAttribute('width', options.width); spzImg.setAttribute('height', options.height); spzImg.setAttribute( 'style', `width: ${options.width}px; height: ${options.height}px;` ); flagElement.appendChild(spzImg); } } handleChangeURL_(url) { if (!!url) { let {origin, pathname, search} = this.win.location; pathname = pathname.replace(SITE, url != '/' ? url : ''); this.win.location.href = `${origin}${pathname}${search}`; } else { this.win.location.reload(true); } } initModalEntry_(role) { const marketModalTemplate = SPZCore.Dom.scopedQuerySelector( this.element, `[role="${role}"]` ); if (marketModalTemplate) { const tempParentNode = self.document.createElement('div'); const clonedTemplate = self.document.importNode( marketModalTemplate.content, true ); tempParentNode.appendChild(clonedTemplate); this.renderTemplateImg_(tempParentNode, MARKET_MODAL_FLAG, { src: this.ipMatchingMarket?.img, width: '80', height: '80', }); this.renderTemplateElement_( tempParentNode, MARKET_MODAL_COUNTRY_CODE, this.ipMatchingMarket?.name ); this.renderTemplateElement_( tempParentNode, MARKET_MODAL_CURRENCY_SYMBOL, this.ipMatchingMarket?.currency_with_symbol ); const lightbox = self.document.createElement('ljs-lightbox'); lightbox.setAttribute('layout', 'nodisplay'); lightbox.appendChild(tempParentNode.firstElementChild); self.document.body.appendChild(lightbox); SPZ.whenApiDefined(lightbox).then((apis) => { SPZCore.Dom.scopedQuerySelectorAll( lightbox, `[role="${MARKET_MODAL_CLOSE}"]` ).forEach((ele) => { ele.addEventListener('click', () => { this.setCookie_(COOKIE_TIPS_NAME, 1, COOKIE_TIPS_EXPIRES); apis.close(); }); }); const marketModalConfirmElement = SPZCore.Dom.scopedQuerySelector( lightbox, `[role="${MARKET_MODAL_CONFIRM}"]` ); if (marketModalConfirmElement && this.ipMatchingMarket?.url) { marketModalConfirmElement.addEventListener('click', () => { this.setCookie_(COOKIE_TIPS_NAME, 1, COOKIE_TIPS_EXPIRES); this.setCookie_(MARKET_COUNTRY_COOKIE, this.ipMatchingMarket?.name); this.handleChangeURL_(this.ipMatchingMarket?.url); }); } const marketModalReselectElement = SPZCore.Dom.scopedQuerySelector( lightbox, `[role="${MARKET_MODAL_RESELECT}"]` ); if (marketModalReselectElement) { marketModalReselectElement.addEventListener('click', () => { this.setCookie_(COOKIE_TIPS_NAME, 1, COOKIE_TIPS_EXPIRES); const marketReselectTemplate = SPZCore.Dom.scopedQuerySelector( this.element, `[role="${MARKET_RESELECT_MODAL}"]` ); if (marketReselectTemplate && lightbox.firstElementChild) { const clonedTemplate = self.document.importNode( marketReselectTemplate.content, true ); const selectParent = SPZCore.Dom.scopedQuerySelector( clonedTemplate, `[role="${MARKET_MODAL_RESELECT_COUNTRY_SELECT}"]` ); if (selectParent) { this.createSelect_({ parent: selectParent, defaultValue: this.getDefaultCountryValue_(), dataList: this.marketCountryList.map( this.mapCountryRenderData_ ), listElementWithTemplate: this.getListElementWithTemplate_( MARKET_COUNTRY_SELECT ), itemHandler: this.handleCountrySelectChange_.bind(this), }); } lightbox.replaceChild(clonedTemplate, lightbox.firstElementChild); SPZCore.Dom.scopedQuerySelectorAll( lightbox, `[role="${MARKET_MODAL_CLOSE}"]` ).forEach((ele) => { ele.addEventListener('click', () => { this.setCookie_(COOKIE_TIPS_NAME, 1, COOKIE_TIPS_EXPIRES); apis.close(); }); }); } }); } apis.open(); }); } } async getMarketThemeSettings_() { return this.xhr_.fetchJson(MARKET_THEME_SETTINGS).then((res) => { this.useCountrySelect_ = !!res.country_selector_enabled; this.useLanguageSelect_ = !!res.language_selector_enabled && this.global?.market?.market_id; this.useModal_ = !!res.redirect_pop_enabled; return res; }); } async getCountryList_() { return this.xhr_.fetchJson(MARKET_COUNTRIES).then((res) => { this.marketCountryList = res.data.length ? res.data : []; return res; }); } async getIpMatchingMarket_() { return this.xhr_.fetchJson(IP_MATCHING_MARKET, { method: 'POST', body: { stations: [], }, }); } async getMarketLanguages_(marketId) { return this.xhr_ .fetchJson(MARKET_LANGUAGES.replace(/:id/gim, marketId)) .then((res) => { this.marketLanguages = res?.languages?.length ? res.languages : []; return res; }); } hasCookie_(name) { const m = self.document.cookie .split(';') .filter((pair) => pair.trim().startsWith(name + '=')); return !!(m && m[0]); } getCookie_(name) { const m = self.document.cookie .split(';') .filter((pair) => pair.trim().startsWith(name + '=')); return m && m[0] ? m[0].split('=')[1] : null; } setCookie_(name, value, expires) { const expiresDate = new Date(Date.now() + expires).toGMTString(); self.document.cookie = `${name}=${encodeURIComponent( value )};expires=${expiresDate};path=/`; } } SPZ.defineElement('spz-custom-market', SpzCustomMarket);
Region/Country
Region/Country
(
)
Language
Language
Switch to
based on your location
Purchase with
Get shipping options for
Set to
based on your location
Purchase with
Get shipping options for
Modify Country/Region
function setSearchUrl(searchValue) { return Promise.resolve({ url: '/search?q=' + searchValue }); } exportFunction('setSearchUrl', setSearchUrl);
function setSearchUrl(searchValue) { return Promise.resolve({ url: '/search?q=' + searchValue }); } exportFunction('setSearchUrl', setSearchUrl);
Search
Account
Log in
Create an account
${data.data.count > 99 ? '99+' : data.data.count}
Cart
Your cart is reserved for
${data.mm}
m
${data.ss}
s
!
${data.line_items.map(item => { return `
${item.product_title}
${item.options.map(o => `
${o.name}:
${o.value}
`).join('')} ${(item.parsedProperties || []).map((propertie)=>{ if (propertie.isImage){ return `
${propertie.name}:
View image
` }else{ return `
${propertie.name}:
${propertie.value}
` } }).join('')}
Free gift
*${item.quantity}
${ (item.discount_applications || []).map(discount_item => { const discount_item_amount = discount_item.discount_amount || discount_item.amount || ''; return `
${discount_item.title}
(-
)
` }).join('') }
`; }).join('')}
Add order note
Add order note
Add order note
Add order note
Total:
${data.total_discount > 0 ? ( `
Save
${data.discount_applications.length > 0 && data.discount_applications.map(item => { return `
${item.title}:
` }).join('')}
` ) : ''}
Check out
Taxes and shipping calculated at checkout
Your cart is currently empty.
Close
New Arrivals
Best Sellers
Women
Women
Women's Dresses
Women's Dresses
Women's Summer Dresses
Women's Tunic Dresses
Women's Beach Dresses
Women's Casual Dresses
Women's Boho Dresses
Women's Linen Dresses
Women's Cotton Dresses
Women's Floral Dresses
Women's Maxi Dresses
Women's Midi Dresses
Women's Mini Dresses
Women's Shirt Dresses
Women's Blazer Dresses
Women's Collar Dresses
Women's Elegant Dresses
Women's Formal Dresses
Women's Swing Dresses
Women's A-Line Dresses
Women's Sweater Dresses
Women's Cotton And Linen Dresses
Women's Cocktail & Party Dresses
Women's Sling & Suspender Dresses
Dresses For Women Over 40
Dresses For Women Over 50
Dresses For Women Over 60
Dresses For Women Over 70
Women's Skirts
Women's Tops & Shirts & Blouses
Women's Tops & Shirts & Blouses
Women's Blouses
Women's Knit Tops
Women's Tunic Tops
Women's Shirts
Women's T Shirts
Women's Hoodies & Sweatshirts
Women's Vests & Tank Tops
Women's Suits & Two Pieces
Women's Suits & Two Pieces
Women's Dress Suits
Women's Pants Suits
Women's Shorts Suits
Women's Skirts Suits
Women's Jumpsuits
Women's Bodysuits
Women's Blazers
Women's Coats & Jackets
Women's Coats & Jackets
Women's Coats
Women's Jackets
Women's Jeans & Denim
Women's Jeans & Denim
Women's Denim Shirts
Women's Denim Shorts
Women's Denim Jackets
Women's Denim Dresses & Skirts
Women's Cardigans
Women's Sweaters
Plus Size Clothing
Plus Size Clothing
Plus Size Dresses For Women
Plus Size Tops For Women
Women's Pants & Trousers & Bottoms
Women's Pants & Trousers & Bottoms
Women's Shorts
Women's Leggings
Women's Sweatpants & Joggers
Women's Activewear
Women's Activewear
Women's Yoga Clothes
Women's Yoga Tops
Women's Yoga Pants
Women's Sports Bras
Women's Swimsuits
Women's Swimsuits
Women's Bikinis
Women's Hats & Caps
Women's Jewellery
Men
Men
Men Clothing
Men Clothing
Men's Tops
Men's Suits
Men's Coats
Men's Jackets
Men's Sweaters
Men's Pants
Men's Shorts
Cigar Humidors
Cigar Humidors
Travel Humidors
Cabinet Humidors
Desktop Humidors
Electric Humidors
Shoes
Shoes
Women's Shoes
Women's Shoes
Women's Sandals
Women's Slippers
Women's Wedges
Women's Boots
Women's Beach Shoes
Women's Casual Shoes
Women's Canvas Shoes
Women's Heels & Pumps
Women's Flats & Loafers
Women's Athletic Shoes & Sneakers
Men's Shoes
Men's Shoes
Men's Beach Shoes
Men's Sandals
Men's Slippers
Handbags
Handbags
Women's Handbags & Wallets
Women's Handbags & Wallets
Women's Backpacks
Women's Tote Bags
Women's Crossbody Bags
Women's Shoulder Bags
Women's Clutches & Evening Bags
Women's Messenger Bags
Women's Wallets & Purses
Men's Handbags & Wallets
Work
Work
Men
Men
All Men's Work Footwear
Work Boots
Work Shoes
Steel Toe Boots
Alloy Toe Boots
Composite Toe Boots
Non Slip Shoes
Waterproof Work Boots
Lightweight Work Boots
Women
Women
All Women's Work Footwear
Work Boots
Work Shoes
Steel Toe Boots
Alloy Toe Boots
Composite Toe Boots
Waterproof Work Boots
Non Slip Shoes
Lightweight Work Boots
Shop By Features
Shop By Features
Metal Free
Oil Resistant
Static Dissipative
Puncture Resistant
Electrical Hazard Protection
Shop By Jobs
Shop By Jobs
Mining
Logging
Roofing
Welding
Kitchen
Truckers
Plumbers
Carpentry
Electricians
Lawn Care
Gardening
Ironworkers
Landscaping
Utility Workers
Security Guards
Concrete & Masons
Farmers & Ranchers
Warehouse Workers
Construction Workers
Industrial Mechanic & Machinist Work Boots
Beauty & Hair
Beauty & Hair
Wigs
Wigs
Short Wigs
Long Wigs
Curly Wigs
Straight Wigs
Synthetic Wigs
Lace Front Wigs
Real Human Hair Wigs
Wigs For Black Women
Wigs For Older Women
Nail Art
Nail Art
Press On Nails
Sunglasses
Sunglasses
Women's Sunglasses
Women's Sunglasses
Women's Polarized Sunglasses
Women's Sports Sunglasses
Sunglasses For Women Over 40
Sunglasses For Women Over 50
Sunglasses For Women Over 60
Sunglasses For Women Over 70
Men's Sunglasses
Men's Sunglasses
Men's Polarized Sunglasses
Men's Sports Sunglasses
Sunglasses For Men Over 40
Sunglasses For Men Over 50
Sunglasses For Men Over 60
Sunglasses For Men Over 70
Pet Supplies
Pet Supplies
Dog Supplies
Dog Supplies
Dog Clothes
Dog Sunglasses
Cat Supplies
Bird Supplies
const marketSlot = document.querySelector(".plugin_c_market"); if(marketSlot) { marketSlot.remove(); }
const SITE = (window.C_SETTINGS || window[atob('U0hPUExBWlpB')])?.routes?.root || ''; const MARKET_THEME_SETTINGS = `${SITE}/api/markets/theme_setting`; const MARKET_COUNTRIES = `${SITE}/api/markets/countries`; const IP_MATCHING_MARKET = `${SITE}/api/front/station`; const MARKET_LANGUAGES = `${SITE}/api/markets/:id/active_languages`; const URL_REDIRECT = '_market_redirected'; const COOKIE_TIPS_NAME = 'market_no_tips'; const COOKIE_TIPS_EXPIRES = 1000 * 60 * 60 * 24 * 14; const MARKET_COUNTRY_COOKIE = '_shoplazza_market_country'; const MARKET_MODAL_LOADED = '__market_modal_loaded__'; const PROPERTY_SELECTED = 'selected'; const MARKET_PC_HEADER_TRIGGER = 'market-pc-header-trigger'; const MARKET_PC_HEADER_COUNTRY_SELECT_TITLE = 'market-pc-header-country-select-title'; const MARKET_PC_HEADER_LANGUAGE_SELECT_TITLE = 'market-pc-header-language-select-title'; const MARKET_PC_HEADER_LANGUAGE_SELECT_SUB_TITLE = 'market-pc-header-language-select-sub-title'; const MARKET_PC_HEADER_COUNTRY_SELECT_SUB_TITLE = 'market-pc-header-country-select-sub-title'; const MARKET_FLAG = 'market-flag'; const MARKET_SELECT_VALUE = 'market-select-value'; const MARKET_CURRENCY = 'market-currency'; const MARKET_CURRENCY_SYMBOL = 'market-currency-symbol'; const MARKET_SELECT_ITEM = 'market-select-item'; const MARKET_SELECT_ITEM_ID = 'market-select-item-id'; const MARKET_SELECT_LIST = 'market-select-list'; const MARKET_LANGUAGE_SELECT = 'market-language-select'; const MARKET_COUNTRY_SELECT = 'market-country-select'; const MARKET_MODAL = 'market-modal'; const MARKET_GATEWAY_REDIRECT_MODAL = 'market-gateway-redirect-modal'; const MARKET_RESELECT_MODAL = 'market-reselect-modal'; const MARKET_MODAL_FLAG = 'market-modal-flag'; const MARKET_MODAL_COUNTRY_CODE = 'market-modal-country-code'; const MARKET_MODAL_CURRENCY_SYMBOL = 'market-modal-currency-symbol'; const MARKET_MODAL_CLOSE = 'market-modal-close'; const MARKET_MODAL_CONFIRM = 'market-modal-confirm'; const MARKET_MODAL_RESELECT = 'market-modal-reselect'; const MARKET_MODAL_RESELECT_COUNTRY_SELECT = 'market-modal-reselect-country-select'; const DATA_SECTION_TYPE = 'data-section-type'; const SECTION_TYPE_HEADER = 'header'; const SECTION_TYPE_FOOTER = 'footer'; class SpzCustomMarket extends SPZ.BaseElement { constructor(element) { super(element); this.global = null; this.useCountrySelect_ = false; this.useLanguageSelect_ = false; this.useModal_ = false; this.isSingleSelectMode_ = false; this.blockSectionPosition_ = ''; this.isEditMode = false; this.ipMatchingMarket = null; this.marketCountryList = []; this.marketLanguages = []; this.toast = null; } static deferredMount() { return false; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { console.debug('Geolocation'); this.xhr_ = SPZServices.xhrFor(this.win); const platform = SPZServices.platformFor(this.win); this.isIOS_ = platform.isIos(); this.action_ = SPZServices.actionServiceForDoc(this.element); this.global = this.win.C_SETTINGS || this.win[atob('U0hPUExBWlpB')]; this.isEditMode = new URLSearchParams(this.win.location.search).get('preview_theme_id') && new URLSearchParams(this.win.location.search).get('oseid'); this.init_(); } showToast_(content) { if (!this.toast) { this.toast = self.document.createElement('ljs-toast'); this.toast.setAttribute('layout', 'nodisplay'); this.toast.setAttribute('hidden', ''); this.toast.setAttribute('duration', '2000'); this.element.appendChild(this.toast); } SPZ.whenApiDefined(this.toast).then((apis) => { apis.showToast(content); }); } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, `${TAG}.${name}`, data); this.action_.trigger(this.element, name, event); } findBlockSectionPosition() { let current = this.element; while (current) { const dataSectionType = current.getAttribute(DATA_SECTION_TYPE); if ( dataSectionType === SECTION_TYPE_HEADER || dataSectionType === SECTION_TYPE_FOOTER ) { return dataSectionType; } current = current.parentElement; } return ''; } async initSettings_() { await this.getMarketThemeSettings_(); if (this.useCountrySelect_) { this.element.setAttribute('use-country-select', true); } if (this.useLanguageSelect_) { this.element.setAttribute('use-language-select', true); } if (this.useModal_) { this.element.setAttribute('use-modal', true); } if ( (this.useCountrySelect_ && !this.useLanguageSelect_) || (!this.useCountrySelect_ && this.useLanguageSelect_) ) { this.isSingleSelectMode_ = true; } this.blockSectionPosition_ = this.findBlockSectionPosition(); this.isPCLayout_ = this.win.matchMedia('(min-width: 960px)').matches; } renderMarketSelectTemplateNode_(clonedTemplate, data) { this.renderTemplateImg_(clonedTemplate, MARKET_FLAG, { src: data?.flag, width: '24', height: '24', }); this.renderTemplateElement_( clonedTemplate, MARKET_SELECT_VALUE, data.value ); this.renderTemplateElement_( clonedTemplate, MARKET_CURRENCY, data?.currency ); this.renderTemplateElement_( clonedTemplate, MARKET_CURRENCY_SYMBOL, data?.currencySymbol ); } bindDropdownOpenClickEvent_(triggerElement, dropdown) { if (!triggerElement) return; const triggerOpen = () => { SPZ.whenApiDefined(dropdown).then((apis) => { if (!dropdown.hasAttribute('open')) { apis.open(triggerElement); } }); }; if (this.isIOS_) { triggerElement.addEventListener('touchstart', triggerOpen); } else { triggerElement.addEventListener('click', triggerOpen); } } createDropdown_() { const dropdown = self.document.createElement('ljs-dropdown'); dropdown.setAttribute('layout', 'nodisplay'); if (this.blockSectionPosition_ === 'header') { dropdown.setAttribute('overlay-style', 'top: 4px;'); dropdown.setAttribute('placement', 'bottomRight'); } else if (this.blockSectionPosition_ === 'footer') { dropdown.setAttribute('overlay-style', 'top: -4px;'); dropdown.setAttribute('placement', 'top'); } return dropdown; } createDropdownIcon_() { const svgElement = document.createElementNS("http://www.w3.org/2000/svg", "svg"); svgElement.setAttribute("class", "market-rotate-180"); svgElement.setAttribute("width", "16"); svgElement.setAttribute("height", "16"); const path1 = document.createElementNS("http://www.w3.org/2000/svg", "path"); path1.setAttribute("d", "M7.47 5.172a.75.75 0 0 1 1.06 0l4.596 4.596a.75.75 0 1 1-1.06 1.06L7.468 6.232a.75.75 0 0 1 0-1.06Z"); path1.setAttribute("fill", "currentColor"); const path2 = document.createElementNS("http://www.w3.org/2000/svg", "path"); path2.setAttribute("d", "M8.533 5.172a.75.75 0 0 1 0 1.06l-4.596 4.596a.75.75 0 1 1-1.061-1.06l4.596-4.596a.75.75 0 0 1 1.06 0Z"); path2.setAttribute("fill", "currentColor"); svgElement.appendChild(path1); svgElement.appendChild(path2); return svgElement; } renderDropdownListWithClickEvent_({ triggerElement, dataList, subTitleRole, listElementWithTemplate, defaultValue, itemHandler, shouldUpdateSelectedItem = false, }) { const dropdown = this.createDropdown_(); const itemTemplate = SPZCore.Dom.scopedQuerySelector( listElementWithTemplate, 'template' ); const clonedItemTemplate = itemTemplate.cloneNode(true); const fragment = self.document.createDocumentFragment(); dataList.forEach((data) => { const tempParentNode = self.document.createElement('div'); const clonedTemplate = self.document.importNode( clonedItemTemplate.content, true ); tempParentNode.appendChild(clonedTemplate); tempParentNode.firstElementChild.classList.add( 'market-select-item' ); this.renderMarketSelectTemplateNode_(tempParentNode, data); const selectItemElement = SPZCore.Dom.scopedQuerySelector( tempParentNode, `[role="${MARKET_SELECT_ITEM}"]` ); if (!selectItemElement) { return; } if (defaultValue === data.value) { if (shouldUpdateSelectedItem) { const clonedSelectItemElement = selectItemElement.cloneNode(true); triggerElement.replaceChild( clonedSelectItemElement, triggerElement.firstElementChild ); } selectItemElement.setAttribute(PROPERTY_SELECTED, ''); } selectItemElement.setAttribute(MARKET_SELECT_ITEM_ID, data.value); fragment.appendChild(tempParentNode.firstElementChild); }); let value = defaultValue; listElementWithTemplate.addEventListener( 'click', (e) => { if (this.isEditMode) { this.showToast_('编辑器下不支持切换国家'); SPZ.whenApiDefined(dropdown).then((apis) => { apis.close(); }); return; } let targetElement = e.target; while (targetElement) { if ( !targetElement || targetElement.getAttribute(MARKET_SELECT_ITEM_ID) ) { break; } targetElement = targetElement.parentNode; } if ( !targetElement || !targetElement.hasAttribute(MARKET_SELECT_ITEM_ID) ) { return; } const selectValue = targetElement.getAttribute(MARKET_SELECT_ITEM_ID); if (value === selectValue) { SPZ.whenApiDefined(dropdown).then((apis) => { apis.close(); }); return; } const selectedData = dataList.find((c) => c.value === selectValue); if (shouldUpdateSelectedItem) { const tempParentNode = self.document.createElement('div'); const clonedTemplate = self.document.importNode( clonedItemTemplate.content, true ); tempParentNode.appendChild(clonedTemplate); this.renderMarketSelectTemplateNode_(tempParentNode, selectedData); tempParentNode.firstElementChild.classList.add( 'market-select-item' ); triggerElement.replaceChild( tempParentNode.firstElementChild, triggerElement.firstElementChild ); } value = selectValue; itemHandler?.(selectedData); SPZ.whenApiDefined(dropdown).then((apis) => { apis.close(); }); }, false ); listElementWithTemplate.removeChild(itemTemplate); listElementWithTemplate.appendChild(fragment); listElementWithTemplate.classList.add('market-select-list'); dropdown.appendChild(listElementWithTemplate); if (subTitleRole) { this.renderSelectTitle_(dropdown, subTitleRole); } return dropdown; } createSelect_({ parent, defaultValue, dataList, listElementWithTemplate, itemHandler, titleRole, }) { const triggerElement = self.document.createElement('div'); triggerElement.classList.add('market-select'); const displayElement = self.document.createElement('div'); triggerElement.appendChild(displayElement); triggerElement.appendChild(this.createDropdownIcon_()); const dropdown = this.renderDropdownListWithClickEvent_({ triggerElement, dataList, listElementWithTemplate, defaultValue, itemHandler, shouldUpdateSelectedItem: true, }); this.bindDropdownOpenClickEvent_(triggerElement, dropdown); const dropdownContainer = self.document.createElement('div'); dropdownContainer.appendChild(triggerElement); dropdownContainer.appendChild(dropdown); dropdownContainer.classList.add('market-select-container'); this.renderSelectTitle_(dropdownContainer, titleRole); parent.appendChild(dropdownContainer); } getListElementWithTemplate_(role) { const template = SPZCore.Dom.scopedQuerySelector( this.element, `[role="${role}"]` ); if (template) { const clonedTemplate = template.cloneNode(true); const tempParent = self.document.createElement("div"); tempParent.appendChild(clonedTemplate.content); const listElementWithTemplate = SPZCore.Dom.scopedQuerySelector( tempParent, `[role="${MARKET_SELECT_LIST}"]` ); return listElementWithTemplate; } return null; } renderSelectTitle_(parent, role) { if (!parent || !role) { return; } const template = SPZCore.Dom.scopedQuerySelector( this.element, `[role="${role}"]` ); const content = self.document.importNode(template.content, true); parent.insertBefore(content, parent.firstElementChild); parent.firstElementChild.classList.add( role.includes('sub') ? 'market-pc-header-select-sub-title' : 'market-pc-header-select-title' ); } initSelect_(rootNode, options) { const parent = rootNode || this.element; if (this.useCountrySelect_) { this.createSelect_({ parent, titleRole: options?.shouldRenderSelectTitle ? MARKET_PC_HEADER_COUNTRY_SELECT_TITLE : undefined, defaultValue: this.getDefaultCountryValue_(), dataList: this.marketCountryList.map(this.mapCountryRenderData_), listElementWithTemplate: this.getListElementWithTemplate_( MARKET_COUNTRY_SELECT ), itemHandler: this.handleCountrySelectChange_.bind(this), }); } if (this.useLanguageSelect_) { this.createSelect_({ parent, titleRole: options?.shouldRenderSelectTitle ? MARKET_PC_HEADER_LANGUAGE_SELECT_TITLE : undefined, defaultValue: this.getDefaultLanguageValue_(), dataList: this.marketLanguages.map(this.mapLanguageRenderData_), listElementWithTemplate: this.getListElementWithTemplate_( MARKET_LANGUAGE_SELECT ), itemHandler: this.handleLanguageSelectChange_.bind(this), }); } } initPcHeaderTriggerElement() { const headerTriggerElementTemplate = SPZCore.Dom.scopedQuerySelector( this.element, `[role="${MARKET_PC_HEADER_TRIGGER}"]` ); const headerTriggerElement = self.document.importNode( headerTriggerElementTemplate.content, true ); const parentDivElement = self.document.createElement('div'); parentDivElement.setAttribute('role', MARKET_PC_HEADER_TRIGGER); parentDivElement.appendChild(headerTriggerElement); this.element.removeChild(headerTriggerElementTemplate); return parentDivElement; } initPanelWithSelect_() { const triggerElement = this.initPcHeaderTriggerElement(); const dropdown = this.createDropdown_(); const panelElement = self.document.createElement('div'); panelElement.classList.add('market-panel'); this.initSelect_(panelElement, {shouldRenderSelectTitle: true}); dropdown.appendChild(panelElement); this.bindDropdownOpenClickEvent_(triggerElement, dropdown); this.element.appendChild(triggerElement); this.element.insertBefore(dropdown, triggerElement); } initSingleSelectDropdown_() { const triggerElement = this.initPcHeaderTriggerElement(); let dropdown; if (this.useCountrySelect_) { dropdown = this.renderDropdownListWithClickEvent_({ triggerElement, subTitleRole: MARKET_PC_HEADER_COUNTRY_SELECT_SUB_TITLE, dataList: this.marketCountryList.map(this.mapCountryRenderData_), listElementWithTemplate: this.getListElementWithTemplate_( MARKET_COUNTRY_SELECT ), defaultValue: this.getDefaultCountryValue_(), itemHandler: this.handleCountrySelectChange_.bind(this), }); } else if (this.useLanguageSelect_) { dropdown = this.renderDropdownListWithClickEvent_({ triggerElement, subTitleRole: MARKET_PC_HEADER_LANGUAGE_SELECT_SUB_TITLE, dataList: this.marketLanguages.map(this.mapLanguageRenderData_), listElementWithTemplate: this.getListElementWithTemplate_( MARKET_LANGUAGE_SELECT ), defaultValue: this.getDefaultLanguageValue_(), itemHandler: this.handleLanguageSelectChange_.bind(this), }); } if (dropdown) { this.bindDropdownOpenClickEvent_(triggerElement, dropdown); this.element.appendChild(triggerElement); this.element.appendChild(dropdown); } } initEntry_() { if (this.blockSectionPosition_ === SECTION_TYPE_HEADER) { if (this.isSingleSelectMode_) { this.initSingleSelectDropdown_(); } else if (this.useCountrySelect_ && this.useLanguageSelect_) { this.initPanelWithSelect_(); } } this.initSelect_(this.element); } async initData_() { const promises = []; if (this.useCountrySelect_ || this.useModal_) { promises.push(this.getCountryList_(), this.getIpMatchingMarket_()); } if (this.useLanguageSelect_) { promises.push(this.getMarketLanguages_(this.global.market.market_id)); } return Promise.all(promises).then((results) => { const ipMatchingMarket = results.find((result) => result.hasOwnProperty('matching_station') ); const marketCountryList = results.find((result) => result.hasOwnProperty('data') ); if (ipMatchingMarket && marketCountryList) { this.ipMatchingMarket = ipMatchingMarket?.matching_station?.find?.( (item) => item.type === 'multiple_market' ) || { img: marketCountryList.length ? marketCountryList?.[0]?.detail && marketCountryList[0].detail?.flag : '', }; } }); } initModal_() { if ( this.isEditMode || !this.ipMatchingMarket?.market_id || !this.useModal_ || this.hasCookie_(COOKIE_TIPS_NAME) || this.win[MARKET_MODAL_LOADED] ) { return; } this.win[MARKET_MODAL_LOADED] = true; const redirectParam = new URLSearchParams(this.win.location.search).get( URL_REDIRECT ); if (redirectParam) { this.initModalEntry_(MARKET_GATEWAY_REDIRECT_MODAL); } else if ( this.ipMatchingMarket.market_id !== this.global?.market?.market_id ) { this.initModalEntry_(MARKET_MODAL); } } async init_() { await this.initSettings_(); await this.initData_(); this.initEntry_(); this.initModal_(); } getDefaultCountryValue_() { return this.getCookie_(MARKET_COUNTRY_COOKIE) || this.marketCountryList[0]?.country_code; } mapCountryRenderData_(country) { return { flag: country?.detail?.flag || '', value: country?.country_code, currency: country?.currency, currencySymbol: country?.symbol?.val || '', url: country?.url, }; } handleCountrySelectChange_(selectedData) { this.setCookie_(MARKET_COUNTRY_COOKIE, selectedData.value); this.handleChangeURL_(selectedData.url); } getDefaultLanguageValue_() { return this.marketLanguages?.find?.( (lang) => lang.code === this.global?.market?.market_lang )?.name; } mapLanguageRenderData_(language) { return { value: language.name, url: language.url, }; } handleLanguageSelectChange_(selectedData) { this.handleChangeURL_(selectedData.url); } renderTemplateElement_(parent, role, value) { const elements = SPZCore.Dom.scopedQuerySelectorAll( parent, `[role="${role}"]` ); elements.forEach((element) => { if (element && value) { element.innerHTML = value; } }); } renderTemplateImg_(parent, role, options) { const flagElement = SPZCore.Dom.scopedQuerySelector( parent, `[role="${role}"]` ); if (flagElement && options?.src && options?.height && options?.width) { const spzImg = self.document.createElement('ljs-img'); spzImg.setAttribute('src', options.src); spzImg.setAttribute('layout', 'responsive'); spzImg.setAttribute('width', options.width); spzImg.setAttribute('height', options.height); spzImg.setAttribute( 'style', `width: ${options.width}px; height: ${options.height}px;` ); flagElement.appendChild(spzImg); } } handleChangeURL_(url) { if (!!url) { let {origin, pathname, search} = this.win.location; pathname = pathname.replace(SITE, url != '/' ? url : ''); this.win.location.href = `${origin}${pathname}${search}`; } else { this.win.location.reload(true); } } initModalEntry_(role) { const marketModalTemplate = SPZCore.Dom.scopedQuerySelector( this.element, `[role="${role}"]` ); if (marketModalTemplate) { const tempParentNode = self.document.createElement('div'); const clonedTemplate = self.document.importNode( marketModalTemplate.content, true ); tempParentNode.appendChild(clonedTemplate); this.renderTemplateImg_(tempParentNode, MARKET_MODAL_FLAG, { src: this.ipMatchingMarket?.img, width: '80', height: '80', }); this.renderTemplateElement_( tempParentNode, MARKET_MODAL_COUNTRY_CODE, this.ipMatchingMarket?.name ); this.renderTemplateElement_( tempParentNode, MARKET_MODAL_CURRENCY_SYMBOL, this.ipMatchingMarket?.currency_with_symbol ); const lightbox = self.document.createElement('ljs-lightbox'); lightbox.setAttribute('layout', 'nodisplay'); lightbox.appendChild(tempParentNode.firstElementChild); self.document.body.appendChild(lightbox); SPZ.whenApiDefined(lightbox).then((apis) => { SPZCore.Dom.scopedQuerySelectorAll( lightbox, `[role="${MARKET_MODAL_CLOSE}"]` ).forEach((ele) => { ele.addEventListener('click', () => { this.setCookie_(COOKIE_TIPS_NAME, 1, COOKIE_TIPS_EXPIRES); apis.close(); }); }); const marketModalConfirmElement = SPZCore.Dom.scopedQuerySelector( lightbox, `[role="${MARKET_MODAL_CONFIRM}"]` ); if (marketModalConfirmElement && this.ipMatchingMarket?.url) { marketModalConfirmElement.addEventListener('click', () => { this.setCookie_(COOKIE_TIPS_NAME, 1, COOKIE_TIPS_EXPIRES); this.setCookie_(MARKET_COUNTRY_COOKIE, this.ipMatchingMarket?.name); this.handleChangeURL_(this.ipMatchingMarket?.url); }); } const marketModalReselectElement = SPZCore.Dom.scopedQuerySelector( lightbox, `[role="${MARKET_MODAL_RESELECT}"]` ); if (marketModalReselectElement) { marketModalReselectElement.addEventListener('click', () => { this.setCookie_(COOKIE_TIPS_NAME, 1, COOKIE_TIPS_EXPIRES); const marketReselectTemplate = SPZCore.Dom.scopedQuerySelector( this.element, `[role="${MARKET_RESELECT_MODAL}"]` ); if (marketReselectTemplate && lightbox.firstElementChild) { const clonedTemplate = self.document.importNode( marketReselectTemplate.content, true ); const selectParent = SPZCore.Dom.scopedQuerySelector( clonedTemplate, `[role="${MARKET_MODAL_RESELECT_COUNTRY_SELECT}"]` ); if (selectParent) { this.createSelect_({ parent: selectParent, defaultValue: this.getDefaultCountryValue_(), dataList: this.marketCountryList.map( this.mapCountryRenderData_ ), listElementWithTemplate: this.getListElementWithTemplate_( MARKET_COUNTRY_SELECT ), itemHandler: this.handleCountrySelectChange_.bind(this), }); } lightbox.replaceChild(clonedTemplate, lightbox.firstElementChild); SPZCore.Dom.scopedQuerySelectorAll( lightbox, `[role="${MARKET_MODAL_CLOSE}"]` ).forEach((ele) => { ele.addEventListener('click', () => { this.setCookie_(COOKIE_TIPS_NAME, 1, COOKIE_TIPS_EXPIRES); apis.close(); }); }); } }); } apis.open(); }); } } async getMarketThemeSettings_() { return this.xhr_.fetchJson(MARKET_THEME_SETTINGS).then((res) => { this.useCountrySelect_ = !!res.country_selector_enabled; this.useLanguageSelect_ = !!res.language_selector_enabled && this.global?.market?.market_id; this.useModal_ = !!res.redirect_pop_enabled; return res; }); } async getCountryList_() { return this.xhr_.fetchJson(MARKET_COUNTRIES).then((res) => { this.marketCountryList = res.data.length ? res.data : []; return res; }); } async getIpMatchingMarket_() { return this.xhr_.fetchJson(IP_MATCHING_MARKET, { method: 'POST', body: { stations: [], }, }); } async getMarketLanguages_(marketId) { return this.xhr_ .fetchJson(MARKET_LANGUAGES.replace(/:id/gim, marketId)) .then((res) => { this.marketLanguages = res?.languages?.length ? res.languages : []; return res; }); } hasCookie_(name) { const m = self.document.cookie .split(';') .filter((pair) => pair.trim().startsWith(name + '=')); return !!(m && m[0]); } getCookie_(name) { const m = self.document.cookie .split(';') .filter((pair) => pair.trim().startsWith(name + '=')); return m && m[0] ? m[0].split('=')[1] : null; } setCookie_(name, value, expires) { const expiresDate = new Date(Date.now() + expires).toGMTString(); self.document.cookie = `${name}=${encodeURIComponent( value )};expires=${expiresDate};path=/`; } } SPZ.defineElement('spz-custom-market', SpzCustomMarket);
Region/Country
Region/Country
(
)
Language
Language
Switch to
based on your location
Purchase with
Get shipping options for
Set to
based on your location
Purchase with
Get shipping options for
Modify Country/Region
Log in
Create an account
New Arrivals
Best Sellers
Women
Women's Dresses
Women's Summer Dresses
Women's Tunic Dresses
Women's Beach Dresses
Women's Casual Dresses
Women's Boho Dresses
Women's Linen Dresses
Women's Cotton Dresses
Women's Floral Dresses
Women's Maxi Dresses
Women's Midi Dresses
Women's Mini Dresses
Women's Shirt Dresses
Women's Blazer Dresses
Women's Collar Dresses
Women's Elegant Dresses
Women's Formal Dresses
Women's Swing Dresses
Women's A-Line Dresses
Women's Sweater Dresses
Women's Cotton And Linen Dresses
Women's Cocktail & Party Dresses
Women's Sling & Suspender Dresses
Dresses For Women Over 40
Dresses For Women Over 50
Dresses For Women Over 60
Dresses For Women Over 70
Women's Skirts
Women's Tops & Shirts & Blouses
Women's Blouses
Women's Knit Tops
Women's Tunic Tops
Women's Shirts
Women's T Shirts
Women's Hoodies & Sweatshirts
Women's Vests & Tank Tops
Women's Suits & Two Pieces
Women's Dress Suits
Women's Pants Suits
Women's Shorts Suits
Women's Skirts Suits
Women's Jumpsuits
Women's Bodysuits
Women's Blazers
Women's Coats & Jackets
Women's Coats
Women's Jackets
Women's Jeans & Denim
Women's Denim Shirts
Women's Denim Shorts
Women's Denim Jackets
Women's Denim Dresses & Skirts
Women's Cardigans
Women's Sweaters
Plus Size Clothing
Plus Size Dresses For Women
Plus Size Tops For Women
Women's Pants & Trousers & Bottoms
Women's Shorts
Women's Leggings
Women's Sweatpants & Joggers
Women's Activewear
Women's Yoga Clothes
Women's Yoga Tops
Women's Yoga Pants
Women's Sports Bras
Women's Swimsuits
Women's Bikinis
Women's Hats & Caps
Women's Jewellery
SALE
Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress
$44.88
$98.99
-
55%
Men
Men Clothing
Men's Tops
Men's Suits
Men's Coats
Men's Jackets
Men's Sweaters
Men's Pants
Men's Shorts
Cigar Humidors
Travel Humidors
Cabinet Humidors
Desktop Humidors
Electric Humidors
Mature Men's Autumn and Winter Jacquard Knitted Lapel Long Sleeve Jacket Sweater
$79.99
Shoes
Women's Shoes
Women's Sandals
Women's Slippers
Women's Wedges
Women's Boots
Women's Beach Shoes
Women's Casual Shoes
Women's Canvas Shoes
Women's Heels & Pumps
Women's Flats & Loafers
Women's Athletic Shoes & Sneakers
Men's Shoes
Men's Beach Shoes
Men's Sandals
Men's Slippers
SALE
Mature Women Casual And Comfortable Bow Slippers
$29.99
$59.99
-
50%
Handbags
Women's Handbags & Wallets
Women's Backpacks
Women's Tote Bags
Women's Crossbody Bags
Women's Shoulder Bags
Women's Clutches & Evening Bags
Women's Messenger Bags
Women's Wallets & Purses
Men's Handbags & Wallets
SALE
New Trendy Casual Weaving Handbag For Women
$48.88
$98.88
-
51%
Work
Men
All Men's Work Footwear
Work Boots
Work Shoes
Steel Toe Boots
Alloy Toe Boots
Composite Toe Boots
Non Slip Shoes
Waterproof Work Boots
Lightweight Work Boots
Women
All Women's Work Footwear
Work Boots
Work Shoes
Steel Toe Boots
Alloy Toe Boots
Composite Toe Boots
Waterproof Work Boots
Non Slip Shoes
Lightweight Work Boots
Shop By Features
Metal Free
Oil Resistant
Static Dissipative
Puncture Resistant
Electrical Hazard Protection
Shop By Jobs
Mining
Logging
Roofing
Welding
Kitchen
Truckers
Plumbers
Carpentry
Electricians
Lawn Care
Gardening
Ironworkers
Landscaping
Utility Workers
Security Guards
Concrete & Masons
Farmers & Ranchers
Warehouse Workers
Construction Workers
Industrial Mechanic & Machinist Work Boots
SALE
OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots
$79.99
$118.99
-
33%
Beauty & Hair
Wigs
Short Wigs
Long Wigs
Curly Wigs
Straight Wigs
Synthetic Wigs
Lace Front Wigs
Real Human Hair Wigs
Wigs For Black Women
Wigs For Older Women
Nail Art
Press On Nails
SALE
Mature Women Fashion Personalized Striped Nails
$26.99
$59.99
-
55%
Sunglasses
Women's Sunglasses
Women's Polarized Sunglasses
Women's Sports Sunglasses
Sunglasses For Women Over 40
Sunglasses For Women Over 50
Sunglasses For Women Over 60
Sunglasses For Women Over 70
Men's Sunglasses
Men's Polarized Sunglasses
Men's Sports Sunglasses
Sunglasses For Men Over 40
Sunglasses For Men Over 50
Sunglasses For Men Over 60
Sunglasses For Men Over 70
SALE
Fashion Casual Elderly Men Sunglasses With Plastic Glasses Frame
$37.99
$59.99
-
37%
Pet Supplies
Dog Supplies
Dog Clothes
Dog Sunglasses
Cat Supplies
Bird Supplies
SALE
Cotton Dog Clothes For Winter
$32.30
$59.99
-
46%
More links
${function() { var linkList = [ { id: 73703525, index: 1, title: "New Arrivals", url: '/collections/new-arrivals', target: '', tag: "", product0: null , children: [ ] }, { id: 73703527, index: 2, title: "Best Sellers", url: '/collections/best-sellers', target: '_blank', tag: "", product0: null , children: [ ] }, { id: 73703529, index: 3, title: "Women", url: '/collections/womens-clothing', target: '', tag: "", product0: {"id":"ed8d5ee1-69b3-4391-8790-7cc0a03e3d08","title":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","brief":"For Mature & Elderly Over 40, 50, 60 & 70","vendor":"","vendor_url":"","has_only_default_variant":false,"requires_shipping":true,"taxable":false,"published":true,"handle":"older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress","spu":"CJLY2052928","need_variant_image":true,"updated_at":"2024-12-09T13:48:52Z","created_at":"2024-06-04T14:58:23Z","mixed_wholesale":false,"min_price_variant":{"id":"ab57992a-dafb-400d-ac6b-bf2fddabbb47","title":"Black-4XL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292807GT","barcode":"","position":1,"option1":"Black","option2":"4XL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":""},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"360","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=ab57992a-dafb-400d-ac6b-bf2fddabbb47","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Size","value":"4XL"}],"off_ratio":55},"tags":"","available":true,"price_min":"44.88","price":"44.88","price_max":"44.88","compare_at_price_min":"98.99","compare_at_price":"98.99","compare_at_price_max":"98.99","retail_price_min":"98.99","retail_price_max":"98.99","url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress","published_at":"2024-06-04T14:58:23Z","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"options":[{"id":"61223206-7857-41dc-9214-a7a3b40ec33e","name":"Color","position":1,"values":["Black","Blue","Light Green","Pink","Watermelon Red","White","Yellow"]},{"id":"74001053-2c91-47d4-a5f9-5c4fb61f0459","name":"Size","position":2,"values":["4XL","5XL","L","M","S","XL","XXL","XXXL"]}],"variants":[{"id":"ab57992a-dafb-400d-ac6b-bf2fddabbb47","title":"Black-4XL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292807GT","barcode":"","position":1,"option1":"Black","option2":"4XL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"360","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=ab57992a-dafb-400d-ac6b-bf2fddabbb47","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Size","value":"4XL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"9a86d7e1-5fc8-4e57-bada-a8d6973fd446","title":"Black-5XL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292808HS","barcode":"","position":2,"option1":"Black","option2":"5XL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"370","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=9a86d7e1-5fc8-4e57-bada-a8d6973fd446","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Size","value":"5XL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"0a3d545c-7f55-4655-8f01-a807f1040d30","title":"Black-L","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292803CX","barcode":"","position":3,"option1":"Black","option2":"L","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"320","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=0a3d545c-7f55-4655-8f01-a807f1040d30","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Size","value":"L"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"05d51d35-837d-413d-9430-e31e77703baa","title":"Black-M","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292802BY","barcode":"","position":4,"option1":"Black","option2":"M","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"310","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=05d51d35-837d-413d-9430-e31e77703baa","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Size","value":"M"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"a5a8c82d-a4c6-4a39-86ac-e2eda2275b2b","title":"Black-S","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292801AZ","barcode":"","position":5,"option1":"Black","option2":"S","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"300","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=a5a8c82d-a4c6-4a39-86ac-e2eda2275b2b","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Size","value":"S"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"f7f48313-c8ee-465b-9a7a-8ed28ab8cdcf","title":"Black-XL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292804DW","barcode":"","position":6,"option1":"Black","option2":"XL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"330","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=f7f48313-c8ee-465b-9a7a-8ed28ab8cdcf","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Size","value":"XL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"e6e94805-be50-4e16-8ce6-c47362483627","title":"Black-XXL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292805EV","barcode":"","position":7,"option1":"Black","option2":"XXL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"340","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=e6e94805-be50-4e16-8ce6-c47362483627","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Size","value":"XXL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"4b68975e-e628-4b20-82fd-6406e7eb689c","title":"Black-XXXL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292806FU","barcode":"","position":8,"option1":"Black","option2":"XXXL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"350","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=4b68975e-e628-4b20-82fd-6406e7eb689c","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Size","value":"XXXL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"f9835b5b-feec-483f-9bac-f3a8a740b66a","title":"Blue-4XL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292847UF","barcode":"","position":9,"option1":"Blue","option2":"4XL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"360","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=f9835b5b-feec-483f-9bac-f3a8a740b66a","available_quantity":999999999,"options":[{"name":"Color","value":"Blue"},{"name":"Size","value":"4XL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"6ca021a1-892a-4778-8967-6dbd7337f20d","title":"Blue-5XL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292848VE","barcode":"","position":10,"option1":"Blue","option2":"5XL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"370","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=6ca021a1-892a-4778-8967-6dbd7337f20d","available_quantity":999999999,"options":[{"name":"Color","value":"Blue"},{"name":"Size","value":"5XL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"b71e4c49-486f-491d-9565-8a2095e0520f","title":"Blue-L","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292843QJ","barcode":"","position":11,"option1":"Blue","option2":"L","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"320","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=b71e4c49-486f-491d-9565-8a2095e0520f","available_quantity":999999999,"options":[{"name":"Color","value":"Blue"},{"name":"Size","value":"L"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"1f817c07-7dc5-4563-b783-6ec81194d74c","title":"Blue-M","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292842PK","barcode":"","position":12,"option1":"Blue","option2":"M","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"310","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=1f817c07-7dc5-4563-b783-6ec81194d74c","available_quantity":999999999,"options":[{"name":"Color","value":"Blue"},{"name":"Size","value":"M"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"441522f3-7b93-4c97-bd66-c16ecca2e604","title":"Blue-S","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292841OL","barcode":"","position":13,"option1":"Blue","option2":"S","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"300","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=441522f3-7b93-4c97-bd66-c16ecca2e604","available_quantity":999999999,"options":[{"name":"Color","value":"Blue"},{"name":"Size","value":"S"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"ed29458b-7147-406c-b99e-bad6f31766cc","title":"Blue-XL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292844RI","barcode":"","position":14,"option1":"Blue","option2":"XL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"330","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=ed29458b-7147-406c-b99e-bad6f31766cc","available_quantity":999999999,"options":[{"name":"Color","value":"Blue"},{"name":"Size","value":"XL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"46098198-09fc-4d77-8e5b-9f2ce8c4ab0c","title":"Blue-XXL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292845SH","barcode":"","position":15,"option1":"Blue","option2":"XXL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"340","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=46098198-09fc-4d77-8e5b-9f2ce8c4ab0c","available_quantity":999999999,"options":[{"name":"Color","value":"Blue"},{"name":"Size","value":"XXL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"586cc92d-4eb2-41d9-801b-933cde08df50","title":"Blue-XXXL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292846TG","barcode":"","position":16,"option1":"Blue","option2":"XXXL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"350","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=586cc92d-4eb2-41d9-801b-933cde08df50","available_quantity":999999999,"options":[{"name":"Color","value":"Blue"},{"name":"Size","value":"XXXL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"2cd53f42-ebc6-4c00-b1a8-e7192ad7a945","title":"Light Green-4XL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292839MN","barcode":"","position":17,"option1":"Light Green","option2":"4XL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"360","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=2cd53f42-ebc6-4c00-b1a8-e7192ad7a945","available_quantity":999999999,"options":[{"name":"Color","value":"Light Green"},{"name":"Size","value":"4XL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"5221acb1-a883-4989-8bf8-21618eb763a7","title":"Light Green-5XL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292840NM","barcode":"","position":18,"option1":"Light Green","option2":"5XL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"370","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=5221acb1-a883-4989-8bf8-21618eb763a7","available_quantity":999999999,"options":[{"name":"Color","value":"Light Green"},{"name":"Size","value":"5XL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"6fee5140-11eb-4343-a13b-6fec8d1fbe99","title":"Light Green-L","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292835IR","barcode":"","position":19,"option1":"Light Green","option2":"L","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"320","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=6fee5140-11eb-4343-a13b-6fec8d1fbe99","available_quantity":999999999,"options":[{"name":"Color","value":"Light Green"},{"name":"Size","value":"L"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"736789e9-4829-47f8-b474-ec212eea5672","title":"Light Green-M","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292834HS","barcode":"","position":20,"option1":"Light Green","option2":"M","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"310","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=736789e9-4829-47f8-b474-ec212eea5672","available_quantity":999999999,"options":[{"name":"Color","value":"Light Green"},{"name":"Size","value":"M"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"4f41932a-ddb0-4c88-940b-3f14afae0a41","title":"Light Green-S","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292833GT","barcode":"","position":21,"option1":"Light Green","option2":"S","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"300","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=4f41932a-ddb0-4c88-940b-3f14afae0a41","available_quantity":999999999,"options":[{"name":"Color","value":"Light Green"},{"name":"Size","value":"S"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"7504445f-2531-49d8-995f-786ea6ff5e19","title":"Light Green-XL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292836JQ","barcode":"","position":22,"option1":"Light Green","option2":"XL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"330","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=7504445f-2531-49d8-995f-786ea6ff5e19","available_quantity":999999999,"options":[{"name":"Color","value":"Light Green"},{"name":"Size","value":"XL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"0e73218d-4f46-4d23-9c6e-17839e95a3a9","title":"Light Green-XXL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292837KP","barcode":"","position":23,"option1":"Light Green","option2":"XXL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"340","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=0e73218d-4f46-4d23-9c6e-17839e95a3a9","available_quantity":999999999,"options":[{"name":"Color","value":"Light Green"},{"name":"Size","value":"XXL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"c7b7bb54-0f49-4a29-a828-48752555478b","title":"Light Green-XXXL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292838LO","barcode":"","position":24,"option1":"Light Green","option2":"XXXL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"350","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=c7b7bb54-0f49-4a29-a828-48752555478b","available_quantity":999999999,"options":[{"name":"Color","value":"Light Green"},{"name":"Size","value":"XXXL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"03f4c45f-6d8f-48d3-8294-b1db1bc741f0","title":"Pink-4XL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292831EV","barcode":"","position":25,"option1":"Pink","option2":"4XL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"360","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=03f4c45f-6d8f-48d3-8294-b1db1bc741f0","available_quantity":999999999,"options":[{"name":"Color","value":"Pink"},{"name":"Size","value":"4XL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"a42d7911-28d2-4785-a734-bca2282a9f03","title":"Pink-5XL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292832FU","barcode":"","position":26,"option1":"Pink","option2":"5XL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"370","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=a42d7911-28d2-4785-a734-bca2282a9f03","available_quantity":999999999,"options":[{"name":"Color","value":"Pink"},{"name":"Size","value":"5XL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"c69cddeb-4d2f-453d-aac3-1357dbdb87e8","title":"Pink-L","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292827AZ","barcode":"","position":27,"option1":"Pink","option2":"L","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"320","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=c69cddeb-4d2f-453d-aac3-1357dbdb87e8","available_quantity":999999999,"options":[{"name":"Color","value":"Pink"},{"name":"Size","value":"L"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"9385c9a5-3a3b-4ca0-913e-20fc57852ad6","title":"Pink-M","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292826ZA","barcode":"","position":28,"option1":"Pink","option2":"M","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"310","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=9385c9a5-3a3b-4ca0-913e-20fc57852ad6","available_quantity":999999999,"options":[{"name":"Color","value":"Pink"},{"name":"Size","value":"M"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"fcc968fc-86f2-4433-8629-caf9725d6ad8","title":"Pink-S","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292825YB","barcode":"","position":29,"option1":"Pink","option2":"S","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"300","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=fcc968fc-86f2-4433-8629-caf9725d6ad8","available_quantity":999999999,"options":[{"name":"Color","value":"Pink"},{"name":"Size","value":"S"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"9749f925-6f70-421b-b7e9-652144df91de","title":"Pink-XL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292828BY","barcode":"","position":30,"option1":"Pink","option2":"XL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"330","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=9749f925-6f70-421b-b7e9-652144df91de","available_quantity":999999999,"options":[{"name":"Color","value":"Pink"},{"name":"Size","value":"XL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"9d135578-641c-4246-a80d-7fb029c7f6eb","title":"Pink-XXL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292829CX","barcode":"","position":31,"option1":"Pink","option2":"XXL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"340","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=9d135578-641c-4246-a80d-7fb029c7f6eb","available_quantity":999999999,"options":[{"name":"Color","value":"Pink"},{"name":"Size","value":"XXL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"3dee0eda-1cae-43b4-b3c9-d472f787a060","title":"Pink-XXXL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292830DW","barcode":"","position":32,"option1":"Pink","option2":"XXXL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"350","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=3dee0eda-1cae-43b4-b3c9-d472f787a060","available_quantity":999999999,"options":[{"name":"Color","value":"Pink"},{"name":"Size","value":"XXXL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"0b007915-e8f0-42c5-bcf3-bb140301565c","title":"Watermelon Red-4XL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292855CX","barcode":"","position":33,"option1":"Watermelon Red","option2":"4XL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"360","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=0b007915-e8f0-42c5-bcf3-bb140301565c","available_quantity":999999999,"options":[{"name":"Color","value":"Watermelon Red"},{"name":"Size","value":"4XL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"4b4732d9-a57f-4a97-b20f-45ec4aa3c36e","title":"Watermelon Red-5XL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292856DW","barcode":"","position":34,"option1":"Watermelon Red","option2":"5XL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"370","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=4b4732d9-a57f-4a97-b20f-45ec4aa3c36e","available_quantity":999999999,"options":[{"name":"Color","value":"Watermelon Red"},{"name":"Size","value":"5XL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"f020d92a-5c02-4f6a-ac9a-2d9e40fa3ec8","title":"Watermelon Red-L","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292851YB","barcode":"","position":35,"option1":"Watermelon Red","option2":"L","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"320","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=f020d92a-5c02-4f6a-ac9a-2d9e40fa3ec8","available_quantity":999999999,"options":[{"name":"Color","value":"Watermelon Red"},{"name":"Size","value":"L"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"a7efb0c3-e6c8-4d3b-b024-5dc39d7f0836","title":"Watermelon Red-M","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292850XC","barcode":"","position":36,"option1":"Watermelon Red","option2":"M","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"310","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=a7efb0c3-e6c8-4d3b-b024-5dc39d7f0836","available_quantity":999999999,"options":[{"name":"Color","value":"Watermelon Red"},{"name":"Size","value":"M"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"cb8226f1-19e9-48eb-9634-0631d5a69ddc","title":"Watermelon Red-S","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292849WD","barcode":"","position":37,"option1":"Watermelon Red","option2":"S","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"300","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=cb8226f1-19e9-48eb-9634-0631d5a69ddc","available_quantity":999999999,"options":[{"name":"Color","value":"Watermelon Red"},{"name":"Size","value":"S"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"ed6a40ac-9efa-4552-94c4-4ac28b24a33f","title":"Watermelon Red-XL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292852ZA","barcode":"","position":38,"option1":"Watermelon Red","option2":"XL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"330","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=ed6a40ac-9efa-4552-94c4-4ac28b24a33f","available_quantity":999999999,"options":[{"name":"Color","value":"Watermelon Red"},{"name":"Size","value":"XL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"b73fd5ba-7cd8-4acc-ac70-6d50fd3ddc4b","title":"Watermelon Red-XXL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292853AZ","barcode":"","position":39,"option1":"Watermelon Red","option2":"XXL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"340","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=b73fd5ba-7cd8-4acc-ac70-6d50fd3ddc4b","available_quantity":999999999,"options":[{"name":"Color","value":"Watermelon Red"},{"name":"Size","value":"XXL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"6c090eaf-70c4-4426-afa2-7d6c91fcd779","title":"Watermelon Red-XXXL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292854BY","barcode":"","position":40,"option1":"Watermelon Red","option2":"XXXL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"350","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=6c090eaf-70c4-4426-afa2-7d6c91fcd779","available_quantity":999999999,"options":[{"name":"Color","value":"Watermelon Red"},{"name":"Size","value":"XXXL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"8b155dc9-ab0f-44b1-ab15-2f94fd508610","title":"White-4XL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292815OL","barcode":"","position":41,"option1":"White","option2":"4XL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"360","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=8b155dc9-ab0f-44b1-ab15-2f94fd508610","available_quantity":999999999,"options":[{"name":"Color","value":"White"},{"name":"Size","value":"4XL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"eaac2a2c-2825-4782-ab65-3d75e7a04857","title":"White-5XL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292816PK","barcode":"","position":42,"option1":"White","option2":"5XL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"370","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=eaac2a2c-2825-4782-ab65-3d75e7a04857","available_quantity":999999999,"options":[{"name":"Color","value":"White"},{"name":"Size","value":"5XL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"9d96a7b3-0b45-4f9a-b935-f0b822321589","title":"White-L","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292811KP","barcode":"","position":43,"option1":"White","option2":"L","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"320","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=9d96a7b3-0b45-4f9a-b935-f0b822321589","available_quantity":999999999,"options":[{"name":"Color","value":"White"},{"name":"Size","value":"L"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"13ce5626-c041-4cd9-84ce-69f978470fa9","title":"White-M","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292810JQ","barcode":"","position":44,"option1":"White","option2":"M","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"310","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=13ce5626-c041-4cd9-84ce-69f978470fa9","available_quantity":999999999,"options":[{"name":"Color","value":"White"},{"name":"Size","value":"M"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"b0ce969a-b8cc-49e9-aca9-5f5adbe34101","title":"White-S","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292809IR","barcode":"","position":45,"option1":"White","option2":"S","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"300","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=b0ce969a-b8cc-49e9-aca9-5f5adbe34101","available_quantity":999999999,"options":[{"name":"Color","value":"White"},{"name":"Size","value":"S"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"d9f0af22-b86b-4604-b08c-24c50d39f07d","title":"White-XL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292812LO","barcode":"","position":46,"option1":"White","option2":"XL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"330","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=d9f0af22-b86b-4604-b08c-24c50d39f07d","available_quantity":999999999,"options":[{"name":"Color","value":"White"},{"name":"Size","value":"XL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"fa51aa86-b777-4f06-a993-271bec486a24","title":"White-XXL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292813MN","barcode":"","position":47,"option1":"White","option2":"XXL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"340","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=fa51aa86-b777-4f06-a993-271bec486a24","available_quantity":999999999,"options":[{"name":"Color","value":"White"},{"name":"Size","value":"XXL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"a36d6057-661d-4ebb-b58e-b611a760ba89","title":"White-XXXL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292814NM","barcode":"","position":48,"option1":"White","option2":"XXXL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"350","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=a36d6057-661d-4ebb-b58e-b611a760ba89","available_quantity":999999999,"options":[{"name":"Color","value":"White"},{"name":"Size","value":"XXXL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"da1f95de-5d04-4c55-a4e8-745a6d1fc0b3","title":"Yellow-4XL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292823WD","barcode":"","position":49,"option1":"Yellow","option2":"4XL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"360","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=da1f95de-5d04-4c55-a4e8-745a6d1fc0b3","available_quantity":999999999,"options":[{"name":"Color","value":"Yellow"},{"name":"Size","value":"4XL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"eb79ad0c-fccd-49ce-ba8d-ce7ad6e013db","title":"Yellow-5XL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292824XC","barcode":"","position":50,"option1":"Yellow","option2":"5XL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"370","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=eb79ad0c-fccd-49ce-ba8d-ce7ad6e013db","available_quantity":999999999,"options":[{"name":"Color","value":"Yellow"},{"name":"Size","value":"5XL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"2f3c9c6b-a49c-4b32-b423-76bf38285650","title":"Yellow-L","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292819SH","barcode":"","position":51,"option1":"Yellow","option2":"L","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"320","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=2f3c9c6b-a49c-4b32-b423-76bf38285650","available_quantity":999999999,"options":[{"name":"Color","value":"Yellow"},{"name":"Size","value":"L"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"ffdad694-beb3-4e7c-b9f5-49775eb59c24","title":"Yellow-M","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292818RI","barcode":"","position":52,"option1":"Yellow","option2":"M","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"310","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=ffdad694-beb3-4e7c-b9f5-49775eb59c24","available_quantity":999999999,"options":[{"name":"Color","value":"Yellow"},{"name":"Size","value":"M"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"6d9b31c7-2cb0-42ae-addc-08e2f9314e23","title":"Yellow-S","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292817QJ","barcode":"","position":53,"option1":"Yellow","option2":"S","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"300","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=6d9b31c7-2cb0-42ae-addc-08e2f9314e23","available_quantity":999999999,"options":[{"name":"Color","value":"Yellow"},{"name":"Size","value":"S"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"11793b0a-0366-4e6d-9185-4dad0d982a58","title":"Yellow-XL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292820TG","barcode":"","position":54,"option1":"Yellow","option2":"XL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"330","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=11793b0a-0366-4e6d-9185-4dad0d982a58","available_quantity":999999999,"options":[{"name":"Color","value":"Yellow"},{"name":"Size","value":"XL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"84215864-008a-41d9-b24a-65324572b927","title":"Yellow-XXL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292821UF","barcode":"","position":55,"option1":"Yellow","option2":"XXL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"340","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=84215864-008a-41d9-b24a-65324572b927","available_quantity":999999999,"options":[{"name":"Color","value":"Yellow"},{"name":"Size","value":"XXL"}],"off_ratio":55,"flashsale_info":[],"sales":null},{"id":"b7fec330-0fea-45c5-b721-bfb1755f32a6","title":"Yellow-XXXL","weight_unit":"g","inventory_quantity":0,"sku":"CJLY205292822VE","barcode":"","position":56,"option1":"Yellow","option2":"XXXL","option3":"","image":{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},"wholesale_price":[{"price":44.88,"min_quantity":1}],"weight":"350","compare_at_price":"98.99","price":"44.88","retail_price":"98.99","available":true,"url":"\/products\/older-women-casual-summer-v-neck-lace-up-puff-sleeve-cotton-dress?variant=b7fec330-0fea-45c5-b721-bfb1755f32a6","available_quantity":999999999,"options":[{"name":"Color","value":"Yellow"},{"name":"Size","value":"XXXL"}],"off_ratio":55,"flashsale_info":[],"sales":null}],"images":[{"src":"\/\/img.staticdj.com\/9e4503015a6d732f5f13869a38536cab.jpeg","path":"9e4503015a6d732f5f13869a38536cab.jpeg","width":693,"height":693,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/01b8b69ff7bb42852667a391a5b1cebc.jpeg","path":"01b8b69ff7bb42852667a391a5b1cebc.jpeg","width":1201,"height":1201,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/3e04a1786a11177529071bcbe7bca7f2.jpeg","path":"3e04a1786a11177529071bcbe7bca7f2.jpeg","width":1201,"height":1201,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/48d7e559a87295f1173bde5492b8340d.jpeg","path":"48d7e559a87295f1173bde5492b8340d.jpeg","width":1201,"height":1201,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/885e7701e5c090f9769d5f35154293cc.jpeg","path":"885e7701e5c090f9769d5f35154293cc.jpeg","width":1201,"height":1201,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/e6911bae63c4c26b5d82930cee0c1fce.jpeg","path":"e6911bae63c4c26b5d82930cee0c1fce.jpeg","width":1278,"height":1920,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":0.665625},{"src":"\/\/img.staticdj.com\/e1ad5e7582bf84726997f40b165fa51e.jpeg","path":"e1ad5e7582bf84726997f40b165fa51e.jpeg","width":1278,"height":1920,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":0.665625},{"src":"\/\/img.staticdj.com\/266603dc0f22f4cea3ebff46ddf553d2.jpeg","path":"266603dc0f22f4cea3ebff46ddf553d2.jpeg","width":1278,"height":1920,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":0.665625},{"src":"\/\/img.staticdj.com\/bac6da3a9d5929962beb96c3529957a3.jpeg","path":"bac6da3a9d5929962beb96c3529957a3.jpeg","width":800,"height":1200,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":0.6666666666666666},{"src":"\/\/img.staticdj.com\/f48b09739b4388f01e8b5d4509abb6d6.jpeg","path":"f48b09739b4388f01e8b5d4509abb6d6.jpeg","width":1278,"height":1920,"alt":"Older Women Casual Summer V-neck Lace-up Puff Sleeve Plus Size Dress","aspect_ratio":0.665625}],"retail_price":"98.99","off_ratio":55,"price_varies":true} , children: [ { title: "Women's Dresses", url: '/collections/womens-dresses', target: '', tag: "", children: [ { title: "Women's Summer Dresses", url: '/collections/womens-summer-dresses', target: '', tag: "", }, { title: "Women's Tunic Dresses", url: '/collections/womens-tunic-dresses', target: '', tag: "", }, { title: "Women's Beach Dresses", url: '/collections/womens-beach-dresses', target: '', tag: "", }, { title: "Women's Casual Dresses", url: '/collections/womens-casual-dresses', target: '', tag: "", }, { title: "Women's Boho Dresses", url: '/collections/womens-boho-dresses', target: '', tag: "", }, { title: "Women's Linen Dresses", url: '/collections/womens-linen-dresses', target: '', tag: "", }, { title: "Women's Cotton Dresses", url: '/collections/womens-cotton-dresses', target: '', tag: "", }, { title: "Women's Floral Dresses", url: '/collections/womens-floral-dresses', target: '', tag: "", }, { title: "Women's Maxi Dresses", url: '/collections/womens-maxi-dresses', target: '', tag: "", }, { title: "Women's Midi Dresses", url: '/collections/womens-midi-dresses', target: '', tag: "", }, { title: "Women's Mini Dresses", url: '/collections/womens-mini-dresses', target: '', tag: "", }, { title: "Women's Shirt Dresses", url: '/collections/womens-shirt-dresses', target: '', tag: "", }, { title: "Women's Blazer Dresses", url: '/collections/womens-blazer-dresses', target: '', tag: "", }, { title: "Women's Collar Dresses", url: '/collections/mature-womens-collar-dresses', target: '_blank', tag: "", }, { title: "Women's Elegant Dresses", url: '/collections/womens-elegant-dresses', target: '', tag: "", }, { title: "Women's Formal Dresses", url: '/collections/womens-formal-dresses', target: '_blank', tag: "", }, { title: "Women's Swing Dresses", url: '/collections/womens-swing-dresses', target: '_blank', tag: "", }, { title: "Women's A-Line Dresses", url: '/collections/womens-a-line-dresses', target: '_blank', tag: "", }, { title: "Women's Sweater Dresses", url: '/collections/womens-sweater-dresses', target: '', tag: "", }, { title: "Women's Cotton And Linen Dresses", url: '/collections/womens-cotton-and-linen-dresses', target: '_blank', tag: "", }, { title: "Women's Cocktail & Party Dresses", url: '/collections/womens-cocktail-party-dresses', target: '', tag: "", }, { title: "Women's Sling & Suspender Dresses", url: '/collections/womens-sling-dresses', target: '_blank', tag: "", }, { title: "Dresses For Women Over 40", url: '/collections/dresses-for-women-over-40', target: '', tag: "", }, { title: "Dresses For Women Over 50", url: '/collections/dresses-for-women-over-50', target: '', tag: "", }, { title: "Dresses For Women Over 60", url: '/collections/dresses-for-women-over-60', target: '', tag: "", }, { title: "Dresses For Women Over 70", url: '/collections/dresses-for-women-over-70', target: '', tag: "", }, ] }, { title: "Women's Skirts", url: '/collections/womens-skirts', target: '_blank', tag: "", children: [ ] }, { title: "Women's Tops & Shirts & Blouses", url: '/collections/womens-tops', target: '', tag: "", children: [ { title: "Women's Blouses", url: '/collections/womens-blouses', target: '', tag: "", }, { title: "Women's Knit Tops", url: '/collections/womens-knit-tops', target: '_blank', tag: "", }, { title: "Women's Tunic Tops", url: '/collections/womens-tunic-tops', target: '', tag: "", }, { title: "Women's Shirts", url: '/collections/womens-shirts', target: '', tag: "", }, { title: "Women's T Shirts", url: '/collections/womens-t-shirts', target: '', tag: "", }, { title: "Women's Hoodies & Sweatshirts", url: '/collections/womens-hoodies-sweatshirts', target: '', tag: "", }, ] }, { title: "Women's Vests & Tank Tops", url: '/collections/womens-vests', target: '_blank', tag: "", children: [ ] }, { title: "Women's Suits & Two Pieces", url: '/collections/womens-suits', target: '', tag: "", children: [ { title: "Women's Dress Suits", url: '/collections/womens-dress-suits', target: '_blank', tag: "", }, { title: "Women's Pants Suits", url: '/collections/mature-womens-pants-suits', target: '_blank', tag: "", }, { title: "Women's Shorts Suits", url: '/collections/womens-shorts-suits', target: '_blank', tag: "", }, { title: "Women's Skirts Suits", url: '/collections/womens-skirts-suits', target: '_blank', tag: "", }, ] }, { title: "Women's Jumpsuits", url: '/collections/womens-jumpsuits', target: '', tag: "", children: [ ] }, { title: "Women's Bodysuits", url: '/collections/womens-bodysuits', target: '_blank', tag: "", children: [ ] }, { title: "Women's Blazers", url: '/collections/womens-blazers', target: '', tag: "", children: [ ] }, { title: "Women's Coats & Jackets", url: '/collections/womens-coats-and-jackets', target: '', tag: "", children: [ { title: "Women's Coats", url: '/collections/womens-coats', target: '', tag: "", }, { title: "Women's Jackets", url: '/collections/womens-jackets', target: '', tag: "", }, ] }, { title: "Women's Jeans & Denim", url: '/collections/womens-jeans-denim', target: '_blank', tag: "", children: [ { title: "Women's Denim Shirts", url: '/collections/womens-denim-shirts', target: '_blank', tag: "", }, { title: "Women's Denim Shorts", url: '/collections/womens-denim-shorts', target: '_blank', tag: "", }, { title: "Women's Denim Jackets", url: '/collections/womens-denim-jackets', target: '_blank', tag: "", }, { title: "Women's Denim Dresses & Skirts", url: '/collections/womens-denim-dresses-skirts', target: '_blank', tag: "", }, ] }, { title: "Women's Cardigans", url: '/collections/mature-womens-cardigans', target: '_blank', tag: "", children: [ ] }, { title: "Women's Sweaters", url: '/collections/womens-sweaters', target: '', tag: "", children: [ ] }, { title: "Plus Size Clothing", url: '/collections/plus-size-clothing', target: '', tag: "", children: [ { title: "Plus Size Dresses For Women", url: '/collections/plus-size-dresses', target: '', tag: "", }, { title: "Plus Size Tops For Women", url: '/collections/plus-size-tops', target: '', tag: "", }, ] }, { title: "Women's Pants & Trousers & Bottoms", url: '/collections/womens-pants', target: '', tag: "", children: [ { title: "Women's Shorts", url: '/collections/womens-shorts', target: '_blank', tag: "", }, { title: "Women's Leggings", url: '/collections/womens-leggings', target: '', tag: "", }, { title: "Women's Sweatpants & Joggers", url: '/collections/womens-sweatpants-joggers', target: '_blank', tag: "", }, ] }, { title: "Women's Activewear", url: '/collections/womens-activewear', target: '_blank', tag: "", children: [ { title: "Women's Yoga Clothes", url: '/collections/womens-yoga-clothes', target: '_blank', tag: "", }, { title: "Women's Yoga Tops", url: '/collections/womens-yoga-tops', target: '_blank', tag: "", }, { title: "Women's Yoga Pants", url: '/collections/womens-yoga-pants', target: '_blank', tag: "", }, { title: "Women's Sports Bras", url: '/collections/mature-womens-sports-bras', target: '_blank', tag: "", }, ] }, { title: "Women's Swimsuits", url: '/collections/womens-swimsuits', target: '_blank', tag: "", children: [ { title: "Women's Bikinis", url: '/collections/womens-bikinis', target: '_blank', tag: "", }, ] }, { title: "Women's Hats & Caps", url: '/collections/womens-hats-caps', target: '', tag: "", children: [ ] }, { title: "Women's Jewellery", url: '/collections/mature-womens-jewellery', target: '', tag: "", children: [ ] }, ] }, { id: 73703671, index: 4, title: "Men", url: '/collections/mens-clothing', target: '', tag: "", product0: {"id":"f31ba223-9ab0-4d25-a11d-d7d8f18b92c3","title":"Mature Men's Autumn and Winter Jacquard Knitted Lapel Long Sleeve Jacket Sweater","brief":"","vendor":"Kakaclo","vendor_url":"","has_only_default_variant":false,"requires_shipping":true,"taxable":false,"published":true,"handle":"mature-mens-autumn-and-winter-jacquard-knitted-lapel-long-sleeve-jacket-sweater","spu":"FSZM02555","need_variant_image":true,"updated_at":"2025-01-13T01:55:58Z","created_at":"2025-01-03T06:37:10Z","mixed_wholesale":false,"min_price_variant":{"id":"fbdae9c5-2858-4a27-8fa6-9f4fa84c6b32","title":"Black-M","weight_unit":"g","inventory_quantity":0,"sku":"FSZM02555_B_M_NUB","barcode":"","position":1,"option1":"Black","option2":"M","option3":"","image":{"src":"\/\/img.staticdj.com\/f94e55c7dca75e94f8c5155c8c734f51.jpeg","path":"f94e55c7dca75e94f8c5155c8c734f51.jpeg","width":600,"height":800,"alt":""},"wholesale_price":[{"price":79.99,"min_quantity":1}],"weight":"900","compare_at_price":"0","price":"79.99","retail_price":"0","available":true,"url":"\/products\/mature-mens-autumn-and-winter-jacquard-knitted-lapel-long-sleeve-jacket-sweater?variant=fbdae9c5-2858-4a27-8fa6-9f4fa84c6b32","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Size","value":"M"}],"off_ratio":0},"tags":"","available":true,"price_min":"79.99","price":"79.99","price_max":"79.99","compare_at_price_min":"0","compare_at_price":"0","compare_at_price_max":"0","retail_price_min":"0","retail_price_max":"0","url":"\/products\/mature-mens-autumn-and-winter-jacquard-knitted-lapel-long-sleeve-jacket-sweater","published_at":"2025-01-03T06:37:10Z","image":{"src":"\/\/img.staticdj.com\/f94e55c7dca75e94f8c5155c8c734f51.jpeg","path":"f94e55c7dca75e94f8c5155c8c734f51.jpeg","width":600,"height":800,"alt":"Mature Men's Autumn and Winter Jacquard Knitted Lapel Long Sleeve Jacket Sweater","aspect_ratio":0.75},"options":[{"id":"15cb2fce-5da8-44ee-929d-ebe00fae25a2","name":"Color","position":1,"values":["Black"]},{"id":"ac148725-ff73-4fba-a896-221e0207ae2b","name":"Size","position":2,"values":["M","L","XL","XXL","3XL"]}],"variants":[{"id":"fbdae9c5-2858-4a27-8fa6-9f4fa84c6b32","title":"Black-M","weight_unit":"g","inventory_quantity":0,"sku":"FSZM02555_B_M_NUB","barcode":"","position":1,"option1":"Black","option2":"M","option3":"","image":{"src":"\/\/img.staticdj.com\/f94e55c7dca75e94f8c5155c8c734f51.jpeg","path":"f94e55c7dca75e94f8c5155c8c734f51.jpeg","width":600,"height":800,"alt":"Mature Men's Autumn and Winter Jacquard Knitted Lapel Long Sleeve Jacket Sweater","aspect_ratio":0.75},"wholesale_price":[{"price":79.99,"min_quantity":1}],"weight":"900","compare_at_price":"0","price":"79.99","retail_price":"0","available":true,"url":"\/products\/mature-mens-autumn-and-winter-jacquard-knitted-lapel-long-sleeve-jacket-sweater?variant=fbdae9c5-2858-4a27-8fa6-9f4fa84c6b32","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Size","value":"M"}],"off_ratio":0,"flashsale_info":[],"sales":null},{"id":"9df85651-6144-4626-bd85-4c71b04bfcda","title":"Black-L","weight_unit":"g","inventory_quantity":0,"sku":"FSZM02555_B_L_NUB","barcode":"","position":2,"option1":"Black","option2":"L","option3":"","image":{"src":"\/\/img.staticdj.com\/f94e55c7dca75e94f8c5155c8c734f51.jpeg","path":"f94e55c7dca75e94f8c5155c8c734f51.jpeg","width":600,"height":800,"alt":"Mature Men's Autumn and Winter Jacquard Knitted Lapel Long Sleeve Jacket Sweater","aspect_ratio":0.75},"wholesale_price":[{"price":79.99,"min_quantity":1}],"weight":"900","compare_at_price":"0","price":"79.99","retail_price":"0","available":true,"url":"\/products\/mature-mens-autumn-and-winter-jacquard-knitted-lapel-long-sleeve-jacket-sweater?variant=9df85651-6144-4626-bd85-4c71b04bfcda","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Size","value":"L"}],"off_ratio":0,"flashsale_info":[],"sales":null},{"id":"7e69a94e-2060-4288-b544-7db3e98eef41","title":"Black-XL","weight_unit":"g","inventory_quantity":0,"sku":"FSZM02555_B_XL_NUB","barcode":"","position":3,"option1":"Black","option2":"XL","option3":"","image":{"src":"\/\/img.staticdj.com\/f94e55c7dca75e94f8c5155c8c734f51.jpeg","path":"f94e55c7dca75e94f8c5155c8c734f51.jpeg","width":600,"height":800,"alt":"Mature Men's Autumn and Winter Jacquard Knitted Lapel Long Sleeve Jacket Sweater","aspect_ratio":0.75},"wholesale_price":[{"price":79.99,"min_quantity":1}],"weight":"900","compare_at_price":"0","price":"79.99","retail_price":"0","available":true,"url":"\/products\/mature-mens-autumn-and-winter-jacquard-knitted-lapel-long-sleeve-jacket-sweater?variant=7e69a94e-2060-4288-b544-7db3e98eef41","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Size","value":"XL"}],"off_ratio":0,"flashsale_info":[],"sales":null},{"id":"38c8e24c-905b-4c70-909b-06bef6579cb2","title":"Black-XXL","weight_unit":"g","inventory_quantity":0,"sku":"FSZM02555_B_XXL_NUB","barcode":"","position":4,"option1":"Black","option2":"XXL","option3":"","image":{"src":"\/\/img.staticdj.com\/f94e55c7dca75e94f8c5155c8c734f51.jpeg","path":"f94e55c7dca75e94f8c5155c8c734f51.jpeg","width":600,"height":800,"alt":"Mature Men's Autumn and Winter Jacquard Knitted Lapel Long Sleeve Jacket Sweater","aspect_ratio":0.75},"wholesale_price":[{"price":79.99,"min_quantity":1}],"weight":"900","compare_at_price":"0","price":"79.99","retail_price":"0","available":true,"url":"\/products\/mature-mens-autumn-and-winter-jacquard-knitted-lapel-long-sleeve-jacket-sweater?variant=38c8e24c-905b-4c70-909b-06bef6579cb2","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Size","value":"XXL"}],"off_ratio":0,"flashsale_info":[],"sales":null},{"id":"6dd5f644-c38b-4e97-a150-19a5d4da9ea6","title":"Black-3XL","weight_unit":"g","inventory_quantity":0,"sku":"FSZM02555_B_3XL_NUB","barcode":"","position":5,"option1":"Black","option2":"3XL","option3":"","image":{"src":"\/\/img.staticdj.com\/f94e55c7dca75e94f8c5155c8c734f51.jpeg","path":"f94e55c7dca75e94f8c5155c8c734f51.jpeg","width":600,"height":800,"alt":"Mature Men's Autumn and Winter Jacquard Knitted Lapel Long Sleeve Jacket Sweater","aspect_ratio":0.75},"wholesale_price":[{"price":79.99,"min_quantity":1}],"weight":"900","compare_at_price":"0","price":"79.99","retail_price":"0","available":true,"url":"\/products\/mature-mens-autumn-and-winter-jacquard-knitted-lapel-long-sleeve-jacket-sweater?variant=6dd5f644-c38b-4e97-a150-19a5d4da9ea6","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Size","value":"3XL"}],"off_ratio":0,"flashsale_info":[],"sales":null}],"images":[{"src":"\/\/img.staticdj.com\/f94e55c7dca75e94f8c5155c8c734f51.jpeg","path":"f94e55c7dca75e94f8c5155c8c734f51.jpeg","width":600,"height":800,"alt":"Mature Men's Autumn and Winter Jacquard Knitted Lapel Long Sleeve Jacket Sweater","aspect_ratio":0.75},{"src":"\/\/img.staticdj.com\/4a7f507eb2db0d68af710afe56662e81.jpeg","path":"4a7f507eb2db0d68af710afe56662e81.jpeg","width":600,"height":800,"alt":"Mature Men's Autumn and Winter Jacquard Knitted Lapel Long Sleeve Jacket Sweater","aspect_ratio":0.75},{"src":"\/\/img.staticdj.com\/fb929dab8a88e42b9de9ed55a51afedd.jpeg","path":"fb929dab8a88e42b9de9ed55a51afedd.jpeg","width":600,"height":800,"alt":"Mature Men's Autumn and Winter Jacquard Knitted Lapel Long Sleeve Jacket Sweater","aspect_ratio":0.75}],"retail_price":"0","off_ratio":0,"price_varies":true} , children: [ { title: "Men Clothing", url: '/collections/mens-clothing', target: '', tag: "", children: [ { title: "Men's Tops", url: '/collections/mens-tops', target: '_blank', tag: "", }, { title: "Men's Suits", url: '/collections/mens-suits', target: '_blank', tag: "", }, { title: "Men's Coats", url: '/collections/mens-coats', target: '', tag: "", }, { title: "Men's Jackets", url: '/collections/mens-jackets', target: '', tag: "", }, { title: "Men's Sweaters", url: '/collections/mens-sweaters', target: '', tag: "", }, { title: "Men's Pants", url: '/collections/mens-pants', target: '', tag: "", }, { title: "Men's Shorts", url: '/collections/mens-shorts', target: '', tag: "", }, ] }, { title: "Cigar Humidors", url: '/collections/cigar-humidors', target: '_blank', tag: "", children: [ { title: "Travel Humidors", url: '/collections/travel-humidors', target: '_blank', tag: "", }, { title: "Cabinet Humidors", url: '/collections/cabinet-humidors', target: '_blank', tag: "", }, { title: "Desktop Humidors", url: '/collections/desktop-humidors', target: '_blank', tag: "", }, { title: "Electric Humidors", url: '/collections/electric-humidors', target: '_blank', tag: "", }, ] }, ] }, { id: 73703699, index: 5, title: "Shoes", url: '/collections/shoes', target: '', tag: "", product0: {"id":"6046e6d6-80c6-4c24-97ab-d443eb801324","title":"Mature Women Casual And Comfortable Bow Slippers","brief":"","vendor":"CJ","vendor_url":"https:\/\/www.cjdropshipping.com","has_only_default_variant":false,"requires_shipping":true,"taxable":false,"published":true,"handle":"mature-women-casual-and-comfortable-bow-slippers","spu":"CJYD2090732","need_variant_image":true,"updated_at":"2025-01-13T01:58:19Z","created_at":"2024-11-16T08:48:29Z","mixed_wholesale":false,"min_price_variant":{"id":"20df8584-c7f0-4e98-a96b-bcd37260edc8","title":"35-Beige White","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073203CX","barcode":"","position":1,"option1":"35","option2":"Beige White","option3":"","image":{"src":"\/\/img.staticdj.com\/480f7a30300a50bdc401da2fbf1136d8.jpeg","path":"480f7a30300a50bdc401da2fbf1136d8.jpeg","width":750,"height":750,"alt":""},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"160","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=20df8584-c7f0-4e98-a96b-bcd37260edc8","available_quantity":999999999,"options":[{"name":"Size","value":"35"},{"name":"Color","value":"Beige White"}],"off_ratio":50},"tags":"","available":true,"price_min":"29.99","price":"29.99","price_max":"29.99","compare_at_price_min":"59.99","compare_at_price":"59.99","compare_at_price_max":"59.99","retail_price_min":"59.99","retail_price_max":"59.99","url":"\/products\/mature-women-casual-and-comfortable-bow-slippers","published_at":"2024-11-16T08:48:29Z","image":{"src":"\/\/img.staticdj.com\/6339759e348a57649ce8e8020916c209.jpeg","path":"6339759e348a57649ce8e8020916c209.jpeg","width":600,"height":600,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"options":[{"id":"71ccdaef-50b2-4c3a-9b67-7bb0fce85690","name":"Size","position":1,"values":["35","36","37","38","39","40","41","42"]},{"id":"68ef54ad-d6c4-412a-8445-592998e4c2b4","name":"Color","position":2,"values":["Beige White","Black","Yellow"]}],"variants":[{"id":"20df8584-c7f0-4e98-a96b-bcd37260edc8","title":"35-Beige White","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073203CX","barcode":"","position":1,"option1":"35","option2":"Beige White","option3":"","image":{"src":"\/\/img.staticdj.com\/480f7a30300a50bdc401da2fbf1136d8.jpeg","path":"480f7a30300a50bdc401da2fbf1136d8.jpeg","width":750,"height":750,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"160","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=20df8584-c7f0-4e98-a96b-bcd37260edc8","available_quantity":999999999,"options":[{"name":"Size","value":"35"},{"name":"Color","value":"Beige White"}],"off_ratio":50,"flashsale_info":[],"sales":null},{"id":"2a5f4aeb-1261-4750-b135-66de65948e31","title":"35-Black","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073202BY","barcode":"","position":2,"option1":"35","option2":"Black","option3":"","image":{"src":"\/\/img.staticdj.com\/6339759e348a57649ce8e8020916c209.jpeg","path":"6339759e348a57649ce8e8020916c209.jpeg","width":600,"height":600,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"160","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=2a5f4aeb-1261-4750-b135-66de65948e31","available_quantity":999999999,"options":[{"name":"Size","value":"35"},{"name":"Color","value":"Black"}],"off_ratio":50,"flashsale_info":[],"sales":null},{"id":"803ad067-7904-4322-aeb6-e882d27eec61","title":"35-Yellow","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073201AZ","barcode":"","position":3,"option1":"35","option2":"Yellow","option3":"","image":{"src":"\/\/img.staticdj.com\/abe5eda70918aec12c6927a0ec436483.jpeg","path":"abe5eda70918aec12c6927a0ec436483.jpeg","width":750,"height":750,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"160","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=803ad067-7904-4322-aeb6-e882d27eec61","available_quantity":999999999,"options":[{"name":"Size","value":"35"},{"name":"Color","value":"Yellow"}],"off_ratio":50,"flashsale_info":[],"sales":null},{"id":"557671b6-011b-4f0e-972d-57c69c703909","title":"36-Beige White","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073206FU","barcode":"","position":4,"option1":"36","option2":"Beige White","option3":"","image":{"src":"\/\/img.staticdj.com\/480f7a30300a50bdc401da2fbf1136d8.jpeg","path":"480f7a30300a50bdc401da2fbf1136d8.jpeg","width":750,"height":750,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"180","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=557671b6-011b-4f0e-972d-57c69c703909","available_quantity":999999999,"options":[{"name":"Size","value":"36"},{"name":"Color","value":"Beige White"}],"off_ratio":50,"flashsale_info":[],"sales":null},{"id":"51dbb9dc-0d96-4f27-bc52-9a4e1832ea17","title":"36-Black","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073205EV","barcode":"","position":5,"option1":"36","option2":"Black","option3":"","image":{"src":"\/\/img.staticdj.com\/6339759e348a57649ce8e8020916c209.jpeg","path":"6339759e348a57649ce8e8020916c209.jpeg","width":600,"height":600,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"180","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=51dbb9dc-0d96-4f27-bc52-9a4e1832ea17","available_quantity":999999999,"options":[{"name":"Size","value":"36"},{"name":"Color","value":"Black"}],"off_ratio":50,"flashsale_info":[],"sales":null},{"id":"ada409ff-d1a0-4b07-b6fa-0e47b5195778","title":"36-Yellow","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073204DW","barcode":"","position":6,"option1":"36","option2":"Yellow","option3":"","image":{"src":"\/\/img.staticdj.com\/abe5eda70918aec12c6927a0ec436483.jpeg","path":"abe5eda70918aec12c6927a0ec436483.jpeg","width":750,"height":750,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"180","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=ada409ff-d1a0-4b07-b6fa-0e47b5195778","available_quantity":999999999,"options":[{"name":"Size","value":"36"},{"name":"Color","value":"Yellow"}],"off_ratio":50,"flashsale_info":[],"sales":null},{"id":"9415ef8d-e599-43e8-a813-1edc1a7a5d76","title":"37-Beige White","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073209IR","barcode":"","position":7,"option1":"37","option2":"Beige White","option3":"","image":{"src":"\/\/img.staticdj.com\/480f7a30300a50bdc401da2fbf1136d8.jpeg","path":"480f7a30300a50bdc401da2fbf1136d8.jpeg","width":750,"height":750,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"200","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=9415ef8d-e599-43e8-a813-1edc1a7a5d76","available_quantity":999999999,"options":[{"name":"Size","value":"37"},{"name":"Color","value":"Beige White"}],"off_ratio":50,"flashsale_info":[],"sales":null},{"id":"574d0327-4ab7-4de7-9715-77ca774664bb","title":"37-Black","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073208HS","barcode":"","position":8,"option1":"37","option2":"Black","option3":"","image":{"src":"\/\/img.staticdj.com\/6339759e348a57649ce8e8020916c209.jpeg","path":"6339759e348a57649ce8e8020916c209.jpeg","width":600,"height":600,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"200","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=574d0327-4ab7-4de7-9715-77ca774664bb","available_quantity":999999999,"options":[{"name":"Size","value":"37"},{"name":"Color","value":"Black"}],"off_ratio":50,"flashsale_info":[],"sales":null},{"id":"6c34f183-f354-41a4-b9e9-d8d684ed1fcd","title":"37-Yellow","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073207GT","barcode":"","position":9,"option1":"37","option2":"Yellow","option3":"","image":{"src":"\/\/img.staticdj.com\/abe5eda70918aec12c6927a0ec436483.jpeg","path":"abe5eda70918aec12c6927a0ec436483.jpeg","width":750,"height":750,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"200","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=6c34f183-f354-41a4-b9e9-d8d684ed1fcd","available_quantity":999999999,"options":[{"name":"Size","value":"37"},{"name":"Color","value":"Yellow"}],"off_ratio":50,"flashsale_info":[],"sales":null},{"id":"24d6a835-d956-41cb-b314-3a7c827377ec","title":"38-Beige White","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073221UF","barcode":"","position":10,"option1":"38","option2":"Beige White","option3":"","image":{"src":"\/\/img.staticdj.com\/480f7a30300a50bdc401da2fbf1136d8.jpeg","path":"480f7a30300a50bdc401da2fbf1136d8.jpeg","width":750,"height":750,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"220","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=24d6a835-d956-41cb-b314-3a7c827377ec","available_quantity":999999999,"options":[{"name":"Size","value":"38"},{"name":"Color","value":"Beige White"}],"off_ratio":50,"flashsale_info":[],"sales":null},{"id":"f2610436-a15a-436f-b07d-dc134e2d5c12","title":"38-Black","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073220TG","barcode":"","position":11,"option1":"38","option2":"Black","option3":"","image":{"src":"\/\/img.staticdj.com\/6339759e348a57649ce8e8020916c209.jpeg","path":"6339759e348a57649ce8e8020916c209.jpeg","width":600,"height":600,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"220","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=f2610436-a15a-436f-b07d-dc134e2d5c12","available_quantity":999999999,"options":[{"name":"Size","value":"38"},{"name":"Color","value":"Black"}],"off_ratio":50,"flashsale_info":[],"sales":null},{"id":"c6c5d8b0-3357-45f3-9d17-e9b81e4cab4e","title":"38-Yellow","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073219SH","barcode":"","position":12,"option1":"38","option2":"Yellow","option3":"","image":{"src":"\/\/img.staticdj.com\/abe5eda70918aec12c6927a0ec436483.jpeg","path":"abe5eda70918aec12c6927a0ec436483.jpeg","width":750,"height":750,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"220","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=c6c5d8b0-3357-45f3-9d17-e9b81e4cab4e","available_quantity":999999999,"options":[{"name":"Size","value":"38"},{"name":"Color","value":"Yellow"}],"off_ratio":50,"flashsale_info":[],"sales":null},{"id":"887aad78-1bfa-4990-a4c9-79f41b9bab94","title":"39-Beige White","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073218RI","barcode":"","position":13,"option1":"39","option2":"Beige White","option3":"","image":{"src":"\/\/img.staticdj.com\/480f7a30300a50bdc401da2fbf1136d8.jpeg","path":"480f7a30300a50bdc401da2fbf1136d8.jpeg","width":750,"height":750,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"240","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=887aad78-1bfa-4990-a4c9-79f41b9bab94","available_quantity":999999999,"options":[{"name":"Size","value":"39"},{"name":"Color","value":"Beige White"}],"off_ratio":50,"flashsale_info":[],"sales":null},{"id":"35fadb6a-6c8d-4819-9e00-751d6fa191e4","title":"39-Black","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073217QJ","barcode":"","position":14,"option1":"39","option2":"Black","option3":"","image":{"src":"\/\/img.staticdj.com\/6339759e348a57649ce8e8020916c209.jpeg","path":"6339759e348a57649ce8e8020916c209.jpeg","width":600,"height":600,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"240","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=35fadb6a-6c8d-4819-9e00-751d6fa191e4","available_quantity":999999999,"options":[{"name":"Size","value":"39"},{"name":"Color","value":"Black"}],"off_ratio":50,"flashsale_info":[],"sales":null},{"id":"c0af45a4-9123-484a-84bc-230db4e32241","title":"39-Yellow","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073216PK","barcode":"","position":15,"option1":"39","option2":"Yellow","option3":"","image":{"src":"\/\/img.staticdj.com\/abe5eda70918aec12c6927a0ec436483.jpeg","path":"abe5eda70918aec12c6927a0ec436483.jpeg","width":750,"height":750,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"240","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=c0af45a4-9123-484a-84bc-230db4e32241","available_quantity":999999999,"options":[{"name":"Size","value":"39"},{"name":"Color","value":"Yellow"}],"off_ratio":50,"flashsale_info":[],"sales":null},{"id":"cb060d75-da53-473c-b4be-de25193fd794","title":"40-Beige White","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073215OL","barcode":"","position":16,"option1":"40","option2":"Beige White","option3":"","image":{"src":"\/\/img.staticdj.com\/480f7a30300a50bdc401da2fbf1136d8.jpeg","path":"480f7a30300a50bdc401da2fbf1136d8.jpeg","width":750,"height":750,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"260","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=cb060d75-da53-473c-b4be-de25193fd794","available_quantity":999999999,"options":[{"name":"Size","value":"40"},{"name":"Color","value":"Beige White"}],"off_ratio":50,"flashsale_info":[],"sales":null},{"id":"155a9034-ce64-4517-ae8c-c974fe182c47","title":"40-Black","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073214NM","barcode":"","position":17,"option1":"40","option2":"Black","option3":"","image":{"src":"\/\/img.staticdj.com\/6339759e348a57649ce8e8020916c209.jpeg","path":"6339759e348a57649ce8e8020916c209.jpeg","width":600,"height":600,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"260","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=155a9034-ce64-4517-ae8c-c974fe182c47","available_quantity":999999999,"options":[{"name":"Size","value":"40"},{"name":"Color","value":"Black"}],"off_ratio":50,"flashsale_info":[],"sales":null},{"id":"1e63692f-7942-4b23-8784-04a7a53c02d8","title":"40-Yellow","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073213MN","barcode":"","position":18,"option1":"40","option2":"Yellow","option3":"","image":{"src":"\/\/img.staticdj.com\/abe5eda70918aec12c6927a0ec436483.jpeg","path":"abe5eda70918aec12c6927a0ec436483.jpeg","width":750,"height":750,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"260","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=1e63692f-7942-4b23-8784-04a7a53c02d8","available_quantity":999999999,"options":[{"name":"Size","value":"40"},{"name":"Color","value":"Yellow"}],"off_ratio":50,"flashsale_info":[],"sales":null},{"id":"27158f8f-fdaa-4511-93de-63d1d636ea1f","title":"41-Beige White","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073212LO","barcode":"","position":19,"option1":"41","option2":"Beige White","option3":"","image":{"src":"\/\/img.staticdj.com\/480f7a30300a50bdc401da2fbf1136d8.jpeg","path":"480f7a30300a50bdc401da2fbf1136d8.jpeg","width":750,"height":750,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"280","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=27158f8f-fdaa-4511-93de-63d1d636ea1f","available_quantity":999999999,"options":[{"name":"Size","value":"41"},{"name":"Color","value":"Beige White"}],"off_ratio":50,"flashsale_info":[],"sales":null},{"id":"f6925db9-e069-40bd-8316-61ed71309571","title":"41-Black","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073211KP","barcode":"","position":20,"option1":"41","option2":"Black","option3":"","image":{"src":"\/\/img.staticdj.com\/6339759e348a57649ce8e8020916c209.jpeg","path":"6339759e348a57649ce8e8020916c209.jpeg","width":600,"height":600,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"280","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=f6925db9-e069-40bd-8316-61ed71309571","available_quantity":999999999,"options":[{"name":"Size","value":"41"},{"name":"Color","value":"Black"}],"off_ratio":50,"flashsale_info":[],"sales":null},{"id":"8b3d6183-cd7a-49ae-8d42-3a36800a89ea","title":"41-Yellow","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073210JQ","barcode":"","position":21,"option1":"41","option2":"Yellow","option3":"","image":{"src":"\/\/img.staticdj.com\/abe5eda70918aec12c6927a0ec436483.jpeg","path":"abe5eda70918aec12c6927a0ec436483.jpeg","width":750,"height":750,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"280","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=8b3d6183-cd7a-49ae-8d42-3a36800a89ea","available_quantity":999999999,"options":[{"name":"Size","value":"41"},{"name":"Color","value":"Yellow"}],"off_ratio":50,"flashsale_info":[],"sales":null},{"id":"cf08fc2f-3505-4a98-9d10-456974737e69","title":"42-Beige White","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073224XC","barcode":"","position":22,"option1":"42","option2":"Beige White","option3":"","image":{"src":"\/\/img.staticdj.com\/480f7a30300a50bdc401da2fbf1136d8.jpeg","path":"480f7a30300a50bdc401da2fbf1136d8.jpeg","width":750,"height":750,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"300","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=cf08fc2f-3505-4a98-9d10-456974737e69","available_quantity":999999999,"options":[{"name":"Size","value":"42"},{"name":"Color","value":"Beige White"}],"off_ratio":50,"flashsale_info":[],"sales":null},{"id":"c3db9977-f40d-4a95-bf80-0889e8d94a55","title":"42-Black","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073223WD","barcode":"","position":23,"option1":"42","option2":"Black","option3":"","image":{"src":"\/\/img.staticdj.com\/6339759e348a57649ce8e8020916c209.jpeg","path":"6339759e348a57649ce8e8020916c209.jpeg","width":600,"height":600,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"300","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=c3db9977-f40d-4a95-bf80-0889e8d94a55","available_quantity":999999999,"options":[{"name":"Size","value":"42"},{"name":"Color","value":"Black"}],"off_ratio":50,"flashsale_info":[],"sales":null},{"id":"11109218-adf5-4d99-bb00-aa02bb1474e7","title":"42-Yellow","weight_unit":"g","inventory_quantity":0,"sku":"CJYD209073222VE","barcode":"","position":24,"option1":"42","option2":"Yellow","option3":"","image":{"src":"\/\/img.staticdj.com\/abe5eda70918aec12c6927a0ec436483.jpeg","path":"abe5eda70918aec12c6927a0ec436483.jpeg","width":750,"height":750,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},"wholesale_price":[{"price":29.99,"min_quantity":1}],"weight":"300","compare_at_price":"59.99","price":"29.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-casual-and-comfortable-bow-slippers?variant=11109218-adf5-4d99-bb00-aa02bb1474e7","available_quantity":999999999,"options":[{"name":"Size","value":"42"},{"name":"Color","value":"Yellow"}],"off_ratio":50,"flashsale_info":[],"sales":null}],"images":[{"src":"\/\/img.staticdj.com\/6339759e348a57649ce8e8020916c209.jpeg","path":"6339759e348a57649ce8e8020916c209.jpeg","width":600,"height":600,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/c4f04ff386e8a5f440b381e859c5f878.jpeg","path":"c4f04ff386e8a5f440b381e859c5f878.jpeg","width":600,"height":600,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/abe5eda70918aec12c6927a0ec436483.jpeg","path":"abe5eda70918aec12c6927a0ec436483.jpeg","width":750,"height":750,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/480f7a30300a50bdc401da2fbf1136d8.jpeg","path":"480f7a30300a50bdc401da2fbf1136d8.jpeg","width":750,"height":750,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/63f77c2e02f3671edb88c89f8d746785.jpeg","path":"63f77c2e02f3671edb88c89f8d746785.jpeg","width":750,"height":750,"alt":"Mature Women Casual And Comfortable Bow Slippers","aspect_ratio":1}],"retail_price":"59.99","off_ratio":50,"price_varies":true} , children: [ { title: "Women's Shoes", url: '/collections/womens-shoes', target: '', tag: "", children: [ { title: "Women's Sandals", url: '/collections/womens-sandals', target: '', tag: "", }, { title: "Women's Slippers", url: '/collections/womens-slippers', target: '', tag: "", }, { title: "Women's Wedges", url: '/collections/womens-wedges', target: '', tag: "", }, { title: "Women's Boots", url: '/collections/womens-boots', target: '', tag: "", }, { title: "Women's Beach Shoes", url: '/collections/womens-beach-shoes', target: '', tag: "", }, { title: "Women's Casual Shoes", url: '/collections/womens-casual-shoes', target: '', tag: "", }, { title: "Women's Canvas Shoes", url: '/collections/womens-canvas-shoes', target: '', tag: "", }, { title: "Women's Heels & Pumps", url: '/collections/womens-heels-pumps', target: '', tag: "", }, { title: "Women's Flats & Loafers", url: '/collections/womens-flats-loafers', target: '', tag: "", }, { title: "Women's Athletic Shoes & Sneakers", url: '/collections/womens-athletic-shoes-sneakers', target: '', tag: "", }, ] }, { title: "Men's Shoes", url: '/collections/mens-shoes', target: '', tag: "", children: [ { title: "Men's Beach Shoes", url: '/collections/mens-beach-shoes', target: '', tag: "", }, { title: "Men's Sandals", url: '/collections/mens-sandals', target: '', tag: "", }, { title: "Men's Slippers", url: '/collections/mens-slippers', target: '', tag: "", }, ] }, ] }, { id: 73703731, index: 6, title: "Handbags", url: '/collections/handbags', target: '', tag: "", product0: {"id":"c4aeba8a-44d5-4a75-b4eb-df45eec0bb3b","title":"New Trendy Casual Weaving Handbag For Women","brief":"For Mature & Elderly Over 40, 50, 60 & 70","vendor":"","vendor_url":"","has_only_default_variant":false,"requires_shipping":true,"taxable":false,"published":true,"handle":"new-trendy-casual-weaving-handbag-for-women","spu":"CJNS1775044","need_variant_image":true,"updated_at":"2024-10-29T15:48:51Z","created_at":"2023-11-28T13:33:41Z","mixed_wholesale":false,"min_price_variant":{"id":"a979a6c9-41d1-42e9-9796-eb1b237c743c","title":"Beige","weight_unit":"g","inventory_quantity":0,"sku":"CJNS177504402BY","barcode":"","position":1,"option1":"Beige","option2":"","option3":"","image":{"src":"\/\/img.staticdj.com\/c5edff21602431b47def487c272048cd.jpeg","path":"c5edff21602431b47def487c272048cd.jpeg","width":800,"height":800,"alt":""},"wholesale_price":[{"price":48.88,"min_quantity":1}],"weight":"260","compare_at_price":"98.88","price":"48.88","retail_price":"98.88","available":true,"url":"\/products\/new-trendy-casual-weaving-handbag-for-women?variant=a979a6c9-41d1-42e9-9796-eb1b237c743c","available_quantity":999999999,"options":[{"name":"Color","value":"Beige"}],"off_ratio":51},"tags":"","available":true,"price_min":"48.88","price":"48.88","price_max":"48.88","compare_at_price_min":"98.88","compare_at_price":"98.88","compare_at_price_max":"98.88","retail_price_min":"98.88","retail_price_max":"98.88","url":"\/products\/new-trendy-casual-weaving-handbag-for-women","published_at":"2023-11-28T13:33:41Z","image":{"src":"\/\/img.staticdj.com\/a3fd1c3a6353c988e2a31f71d9c78e1f.jpeg","path":"a3fd1c3a6353c988e2a31f71d9c78e1f.jpeg","width":800,"height":800,"alt":"New Trendy Casual Weaving Handbag For Women","aspect_ratio":1},"options":[{"id":"d7a0eb6f-5843-4909-8c79-e235ef6a9b1e","name":"Color","position":1,"values":["Beige","Khaki"]}],"variants":[{"id":"a979a6c9-41d1-42e9-9796-eb1b237c743c","title":"Beige","weight_unit":"g","inventory_quantity":0,"sku":"CJNS177504402BY","barcode":"","position":1,"option1":"Beige","option2":"","option3":"","image":{"src":"\/\/img.staticdj.com\/c5edff21602431b47def487c272048cd.jpeg","path":"c5edff21602431b47def487c272048cd.jpeg","width":800,"height":800,"alt":"New Trendy Casual Weaving Handbag For Women","aspect_ratio":1},"wholesale_price":[{"price":48.88,"min_quantity":1}],"weight":"260","compare_at_price":"98.88","price":"48.88","retail_price":"98.88","available":true,"url":"\/products\/new-trendy-casual-weaving-handbag-for-women?variant=a979a6c9-41d1-42e9-9796-eb1b237c743c","available_quantity":999999999,"options":[{"name":"Color","value":"Beige"}],"off_ratio":51,"flashsale_info":[],"sales":null},{"id":"58738151-f4fb-4f53-a26b-99481c602fc3","title":"Khaki","weight_unit":"g","inventory_quantity":0,"sku":"CJNS177504401AZ","barcode":"","position":2,"option1":"Khaki","option2":"","option3":"","image":{"src":"\/\/img.staticdj.com\/29b6183b5305c38ed454fac97cb08408.jpeg","path":"29b6183b5305c38ed454fac97cb08408.jpeg","width":800,"height":800,"alt":"New Trendy Casual Weaving Handbag For Women","aspect_ratio":1},"wholesale_price":[{"price":48.88,"min_quantity":1}],"weight":"260","compare_at_price":"98.88","price":"48.88","retail_price":"98.88","available":true,"url":"\/products\/new-trendy-casual-weaving-handbag-for-women?variant=58738151-f4fb-4f53-a26b-99481c602fc3","available_quantity":999999999,"options":[{"name":"Color","value":"Khaki"}],"off_ratio":51,"flashsale_info":[],"sales":null}],"images":[{"src":"\/\/img.staticdj.com\/a3fd1c3a6353c988e2a31f71d9c78e1f.jpeg","path":"a3fd1c3a6353c988e2a31f71d9c78e1f.jpeg","width":800,"height":800,"alt":"New Trendy Casual Weaving Handbag For Women","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/29b6183b5305c38ed454fac97cb08408.jpeg","path":"29b6183b5305c38ed454fac97cb08408.jpeg","width":800,"height":800,"alt":"New Trendy Casual Weaving Handbag For Women","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/c5edff21602431b47def487c272048cd.jpeg","path":"c5edff21602431b47def487c272048cd.jpeg","width":800,"height":800,"alt":"New Trendy Casual Weaving Handbag For Women","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/f4ce8bb3563f3911af567a804a7855f6.jpeg","path":"f4ce8bb3563f3911af567a804a7855f6.jpeg","width":800,"height":800,"alt":"New Trendy Casual Weaving Handbag For Women","aspect_ratio":1}],"retail_price":"98.88","off_ratio":51,"price_varies":true} , children: [ { title: "Women's Handbags & Wallets", url: '/collections/womens-handbags-wallets', target: '', tag: "", children: [ { title: "Women's Backpacks", url: '/collections/womens-backpacks', target: '', tag: "", }, { title: "Women's Tote Bags", url: '/collections/womens-tote-bags', target: '', tag: "", }, { title: "Women's Crossbody Bags", url: '/collections/womens-crossbody-bags', target: '', tag: "", }, { title: "Women's Shoulder Bags", url: '/collections/womens-shoulder-bags', target: '', tag: "", }, { title: "Women's Clutches & Evening Bags", url: '/collections/womens-clutches-evening-bags', target: '', tag: "", }, { title: "Women's Messenger Bags", url: '/collections/womens-messenger-bags', target: '', tag: "", }, { title: "Women's Wallets & Purses", url: '/collections/womens-wallets-purses', target: '', tag: "", }, ] }, { title: "Men's Handbags & Wallets", url: '/collections/mens-handbags-wallets', target: '', tag: "", children: [ ] }, ] }, { id: 73703751, index: 7, title: "Work", url: '/collections/shop-all-work-boots', target: '_blank', tag: "", product0: {"id":"3d8b7aa9-9069-48c1-b44c-762e69fe687a","title":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","brief":"For Mature & Elderly Over 40, 50, 60 & 70","vendor":"OUXX Footwear","vendor_url":"","has_only_default_variant":false,"requires_shipping":true,"taxable":false,"published":true,"handle":"men-women-steel-toe-waterproof-astm-f2413-18-work-boots","spu":"","need_variant_image":true,"updated_at":"2024-10-29T15:47:10Z","created_at":"2024-04-19T07:10:42Z","mixed_wholesale":false,"min_price_variant":{"id":"a80d3494-7767-4176-8947-2f9f287d9720","title":"Black-6.5","weight_unit":"kg","inventory_quantity":0,"sku":"OX022M6H5","barcode":"609397172781","position":1,"option1":"Black","option2":"6.5","option3":"","image":{"src":"\/\/img.staticdj.com\/7cb4b36eb32e2565f92fe69af4710839.webp","path":"7cb4b36eb32e2565f92fe69af4710839.webp","width":1500,"height":1500,"alt":""},"wholesale_price":[{"price":79.99,"min_quantity":1}],"weight":"1.5","compare_at_price":"118.99","price":"79.99","retail_price":"118.99","available":true,"url":"\/products\/men-women-steel-toe-waterproof-astm-f2413-18-work-boots?variant=a80d3494-7767-4176-8947-2f9f287d9720","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Men's Size US","value":"6.5"}],"off_ratio":33},"tags":"6 inch","available":true,"price_min":"79.99","price":"79.99","price_max":"79.99","compare_at_price_min":"118.99","compare_at_price":"118.99","compare_at_price_max":"118.99","retail_price_min":"118.99","retail_price_max":"118.99","url":"\/products\/men-women-steel-toe-waterproof-astm-f2413-18-work-boots","published_at":"2024-04-19T07:10:42Z","image":{"src":"\/\/img.staticdj.com\/7cb4b36eb32e2565f92fe69af4710839.webp","path":"7cb4b36eb32e2565f92fe69af4710839.webp","width":1500,"height":1500,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},"options":[{"id":"c7fbee0c-94ca-4116-9f5e-6bc59e04d9c0","name":"Color","position":1,"values":["Black"]},{"id":"f1627a79-999f-4342-9c0e-4d3381636ef5","name":"Men's Size US","position":2,"values":["6.5","7","7.5","8","8.5","9","9.5","10","10.5","11","11.5","12","12.5","13","14"]}],"variants":[{"id":"a80d3494-7767-4176-8947-2f9f287d9720","title":"Black-6.5","weight_unit":"kg","inventory_quantity":0,"sku":"OX022M6H5","barcode":"609397172781","position":1,"option1":"Black","option2":"6.5","option3":"","image":{"src":"\/\/img.staticdj.com\/7cb4b36eb32e2565f92fe69af4710839.webp","path":"7cb4b36eb32e2565f92fe69af4710839.webp","width":1500,"height":1500,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},"wholesale_price":[{"price":79.99,"min_quantity":1}],"weight":"1.5","compare_at_price":"118.99","price":"79.99","retail_price":"118.99","available":true,"url":"\/products\/men-women-steel-toe-waterproof-astm-f2413-18-work-boots?variant=a80d3494-7767-4176-8947-2f9f287d9720","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Men's Size US","value":"6.5"}],"off_ratio":33,"flashsale_info":[],"sales":null},{"id":"af265fa9-31f7-4f0f-bc78-a7821bb5206f","title":"Black-7","weight_unit":"kg","inventory_quantity":0,"sku":"OX022M7","barcode":"609397172798","position":2,"option1":"Black","option2":"7","option3":"","image":{"src":"\/\/img.staticdj.com\/7cb4b36eb32e2565f92fe69af4710839.webp","path":"7cb4b36eb32e2565f92fe69af4710839.webp","width":1500,"height":1500,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},"wholesale_price":[{"price":79.99,"min_quantity":1}],"weight":"1.5","compare_at_price":"118.99","price":"79.99","retail_price":"118.99","available":true,"url":"\/products\/men-women-steel-toe-waterproof-astm-f2413-18-work-boots?variant=af265fa9-31f7-4f0f-bc78-a7821bb5206f","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Men's Size US","value":"7"}],"off_ratio":33,"flashsale_info":[],"sales":null},{"id":"258a971a-5dce-4ffd-a690-c9005d207bb8","title":"Black-7.5","weight_unit":"kg","inventory_quantity":0,"sku":"OX022M7H5","barcode":"609397172804","position":3,"option1":"Black","option2":"7.5","option3":"","image":{"src":"\/\/img.staticdj.com\/7cb4b36eb32e2565f92fe69af4710839.webp","path":"7cb4b36eb32e2565f92fe69af4710839.webp","width":1500,"height":1500,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},"wholesale_price":[{"price":79.99,"min_quantity":1}],"weight":"1.5","compare_at_price":"118.99","price":"79.99","retail_price":"118.99","available":true,"url":"\/products\/men-women-steel-toe-waterproof-astm-f2413-18-work-boots?variant=258a971a-5dce-4ffd-a690-c9005d207bb8","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Men's Size US","value":"7.5"}],"off_ratio":33,"flashsale_info":[],"sales":null},{"id":"0396d0af-d12f-4b7d-b1ac-320eb23a61fc","title":"Black-8","weight_unit":"kg","inventory_quantity":0,"sku":"OX022M8","barcode":"609397172811","position":4,"option1":"Black","option2":"8","option3":"","image":{"src":"\/\/img.staticdj.com\/7cb4b36eb32e2565f92fe69af4710839.webp","path":"7cb4b36eb32e2565f92fe69af4710839.webp","width":1500,"height":1500,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},"wholesale_price":[{"price":79.99,"min_quantity":1}],"weight":"1.5","compare_at_price":"118.99","price":"79.99","retail_price":"118.99","available":true,"url":"\/products\/men-women-steel-toe-waterproof-astm-f2413-18-work-boots?variant=0396d0af-d12f-4b7d-b1ac-320eb23a61fc","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Men's Size US","value":"8"}],"off_ratio":33,"flashsale_info":[],"sales":null},{"id":"71670972-287a-49d8-9adf-6b46adc88c68","title":"Black-8.5","weight_unit":"kg","inventory_quantity":0,"sku":"OX022M8H5","barcode":"609397172828","position":5,"option1":"Black","option2":"8.5","option3":"","image":{"src":"\/\/img.staticdj.com\/7cb4b36eb32e2565f92fe69af4710839.webp","path":"7cb4b36eb32e2565f92fe69af4710839.webp","width":1500,"height":1500,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},"wholesale_price":[{"price":79.99,"min_quantity":1}],"weight":"1.5","compare_at_price":"118.99","price":"79.99","retail_price":"118.99","available":true,"url":"\/products\/men-women-steel-toe-waterproof-astm-f2413-18-work-boots?variant=71670972-287a-49d8-9adf-6b46adc88c68","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Men's Size US","value":"8.5"}],"off_ratio":33,"flashsale_info":[],"sales":null},{"id":"1d19bfda-903e-4fb8-b447-15ebaac41400","title":"Black-9","weight_unit":"kg","inventory_quantity":0,"sku":"OX022M9","barcode":"609397172835","position":6,"option1":"Black","option2":"9","option3":"","image":{"src":"\/\/img.staticdj.com\/7cb4b36eb32e2565f92fe69af4710839.webp","path":"7cb4b36eb32e2565f92fe69af4710839.webp","width":1500,"height":1500,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},"wholesale_price":[{"price":79.99,"min_quantity":1}],"weight":"1.5","compare_at_price":"118.99","price":"79.99","retail_price":"118.99","available":true,"url":"\/products\/men-women-steel-toe-waterproof-astm-f2413-18-work-boots?variant=1d19bfda-903e-4fb8-b447-15ebaac41400","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Men's Size US","value":"9"}],"off_ratio":33,"flashsale_info":[],"sales":null},{"id":"da364b13-f1e9-45c2-8e4c-0fd8b545c0a7","title":"Black-9.5","weight_unit":"kg","inventory_quantity":0,"sku":"OX022M9H5","barcode":"609397172842","position":7,"option1":"Black","option2":"9.5","option3":"","image":{"src":"\/\/img.staticdj.com\/7cb4b36eb32e2565f92fe69af4710839.webp","path":"7cb4b36eb32e2565f92fe69af4710839.webp","width":1500,"height":1500,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},"wholesale_price":[{"price":79.99,"min_quantity":1}],"weight":"1.5","compare_at_price":"118.99","price":"79.99","retail_price":"118.99","available":true,"url":"\/products\/men-women-steel-toe-waterproof-astm-f2413-18-work-boots?variant=da364b13-f1e9-45c2-8e4c-0fd8b545c0a7","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Men's Size US","value":"9.5"}],"off_ratio":33,"flashsale_info":[],"sales":null},{"id":"be388be4-1d1b-4d92-92ed-5a6fc90f8b5d","title":"Black-10","weight_unit":"kg","inventory_quantity":0,"sku":"OX022M10","barcode":"609397172859","position":8,"option1":"Black","option2":"10","option3":"","image":{"src":"\/\/img.staticdj.com\/7cb4b36eb32e2565f92fe69af4710839.webp","path":"7cb4b36eb32e2565f92fe69af4710839.webp","width":1500,"height":1500,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},"wholesale_price":[{"price":79.99,"min_quantity":1}],"weight":"1.5","compare_at_price":"118.99","price":"79.99","retail_price":"118.99","available":true,"url":"\/products\/men-women-steel-toe-waterproof-astm-f2413-18-work-boots?variant=be388be4-1d1b-4d92-92ed-5a6fc90f8b5d","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Men's Size US","value":"10"}],"off_ratio":33,"flashsale_info":[],"sales":null},{"id":"c447ab23-2bdd-4aff-a438-45ecddb30e3b","title":"Black-10.5","weight_unit":"kg","inventory_quantity":0,"sku":"OX022M10H5","barcode":"609397172866","position":9,"option1":"Black","option2":"10.5","option3":"","image":{"src":"\/\/img.staticdj.com\/7cb4b36eb32e2565f92fe69af4710839.webp","path":"7cb4b36eb32e2565f92fe69af4710839.webp","width":1500,"height":1500,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},"wholesale_price":[{"price":79.99,"min_quantity":1}],"weight":"1.5","compare_at_price":"118.99","price":"79.99","retail_price":"118.99","available":true,"url":"\/products\/men-women-steel-toe-waterproof-astm-f2413-18-work-boots?variant=c447ab23-2bdd-4aff-a438-45ecddb30e3b","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Men's Size US","value":"10.5"}],"off_ratio":33,"flashsale_info":[],"sales":null},{"id":"07fd9854-5574-47c3-8dcc-9d1b8124c176","title":"Black-11","weight_unit":"kg","inventory_quantity":0,"sku":"OX022M11","barcode":"609397172873","position":10,"option1":"Black","option2":"11","option3":"","image":{"src":"\/\/img.staticdj.com\/7cb4b36eb32e2565f92fe69af4710839.webp","path":"7cb4b36eb32e2565f92fe69af4710839.webp","width":1500,"height":1500,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},"wholesale_price":[{"price":79.99,"min_quantity":1}],"weight":"1.5","compare_at_price":"118.99","price":"79.99","retail_price":"118.99","available":true,"url":"\/products\/men-women-steel-toe-waterproof-astm-f2413-18-work-boots?variant=07fd9854-5574-47c3-8dcc-9d1b8124c176","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Men's Size US","value":"11"}],"off_ratio":33,"flashsale_info":[],"sales":null},{"id":"41b41bbf-60cf-4712-9823-8709b2faebee","title":"Black-11.5","weight_unit":"kg","inventory_quantity":0,"sku":"OX022M11H5","barcode":"609397172880","position":11,"option1":"Black","option2":"11.5","option3":"","image":{"src":"\/\/img.staticdj.com\/7cb4b36eb32e2565f92fe69af4710839.webp","path":"7cb4b36eb32e2565f92fe69af4710839.webp","width":1500,"height":1500,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},"wholesale_price":[{"price":79.99,"min_quantity":1}],"weight":"1.5","compare_at_price":"118.99","price":"79.99","retail_price":"118.99","available":true,"url":"\/products\/men-women-steel-toe-waterproof-astm-f2413-18-work-boots?variant=41b41bbf-60cf-4712-9823-8709b2faebee","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Men's Size US","value":"11.5"}],"off_ratio":33,"flashsale_info":[],"sales":null},{"id":"b3c0869c-0372-47a1-8f1f-811d21f70155","title":"Black-12","weight_unit":"kg","inventory_quantity":0,"sku":"OX022M12","barcode":"609397172897","position":12,"option1":"Black","option2":"12","option3":"","image":{"src":"\/\/img.staticdj.com\/7cb4b36eb32e2565f92fe69af4710839.webp","path":"7cb4b36eb32e2565f92fe69af4710839.webp","width":1500,"height":1500,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},"wholesale_price":[{"price":79.99,"min_quantity":1}],"weight":"1.5","compare_at_price":"118.99","price":"79.99","retail_price":"118.99","available":true,"url":"\/products\/men-women-steel-toe-waterproof-astm-f2413-18-work-boots?variant=b3c0869c-0372-47a1-8f1f-811d21f70155","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Men's Size US","value":"12"}],"off_ratio":33,"flashsale_info":[],"sales":null},{"id":"93543e3a-ace8-4837-9c58-c51f8ea52d62","title":"Black-12.5","weight_unit":"kg","inventory_quantity":0,"sku":"OX022M12H5","barcode":"609397172903","position":13,"option1":"Black","option2":"12.5","option3":"","image":{"src":"\/\/img.staticdj.com\/7cb4b36eb32e2565f92fe69af4710839.webp","path":"7cb4b36eb32e2565f92fe69af4710839.webp","width":1500,"height":1500,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},"wholesale_price":[{"price":79.99,"min_quantity":1}],"weight":"1.5","compare_at_price":"118.99","price":"79.99","retail_price":"118.99","available":true,"url":"\/products\/men-women-steel-toe-waterproof-astm-f2413-18-work-boots?variant=93543e3a-ace8-4837-9c58-c51f8ea52d62","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Men's Size US","value":"12.5"}],"off_ratio":33,"flashsale_info":[],"sales":null},{"id":"208560ea-d990-4879-87c6-2ac0ca51d616","title":"Black-13","weight_unit":"kg","inventory_quantity":0,"sku":"OX022M13","barcode":"609397172910","position":14,"option1":"Black","option2":"13","option3":"","image":{"src":"\/\/img.staticdj.com\/7cb4b36eb32e2565f92fe69af4710839.webp","path":"7cb4b36eb32e2565f92fe69af4710839.webp","width":1500,"height":1500,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},"wholesale_price":[{"price":79.99,"min_quantity":1}],"weight":"1.5","compare_at_price":"118.99","price":"79.99","retail_price":"118.99","available":true,"url":"\/products\/men-women-steel-toe-waterproof-astm-f2413-18-work-boots?variant=208560ea-d990-4879-87c6-2ac0ca51d616","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Men's Size US","value":"13"}],"off_ratio":33,"flashsale_info":[],"sales":null},{"id":"35155fa9-48d7-4382-bc38-87322e4cdd20","title":"Black-14","weight_unit":"kg","inventory_quantity":0,"sku":"OX022M14","barcode":"609397172927","position":15,"option1":"Black","option2":"14","option3":"","image":{"src":"\/\/img.staticdj.com\/7cb4b36eb32e2565f92fe69af4710839.webp","path":"7cb4b36eb32e2565f92fe69af4710839.webp","width":1500,"height":1500,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},"wholesale_price":[{"price":79.99,"min_quantity":1}],"weight":"1.5","compare_at_price":"118.99","price":"79.99","retail_price":"118.99","available":true,"url":"\/products\/men-women-steel-toe-waterproof-astm-f2413-18-work-boots?variant=35155fa9-48d7-4382-bc38-87322e4cdd20","available_quantity":999999999,"options":[{"name":"Color","value":"Black"},{"name":"Men's Size US","value":"14"}],"off_ratio":33,"flashsale_info":[],"sales":null}],"images":[{"src":"\/\/img.staticdj.com\/7cb4b36eb32e2565f92fe69af4710839.webp","path":"7cb4b36eb32e2565f92fe69af4710839.webp","width":1500,"height":1500,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/6df7f4aa858287bae89cb7661b4cca84.jpeg","path":"6df7f4aa858287bae89cb7661b4cca84.jpeg","width":1600,"height":1600,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/416b3501d5ce33dd5a52216f902235d8.jpeg","path":"416b3501d5ce33dd5a52216f902235d8.jpeg","width":1600,"height":1600,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/173f8138e581d1358eadc1a422156939.webp","path":"173f8138e581d1358eadc1a422156939.webp","width":1500,"height":1500,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/9b046c7636ed0fa46e86f231c5334c7b.jpeg","path":"9b046c7636ed0fa46e86f231c5334c7b.jpeg","width":1600,"height":1600,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/615d24314eba40ede6a738e1ff2ac7a2.jpg","path":"615d24314eba40ede6a738e1ff2ac7a2.jpg","width":1080,"height":962,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1.1226611226611227},{"src":"\/\/img.staticdj.com\/4660dd93b027365143aca0fcce5f29a7.webp","path":"4660dd93b027365143aca0fcce5f29a7.webp","width":1500,"height":1500,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/dc619296d062ed28efa233a81f332b4c.webp","path":"dc619296d062ed28efa233a81f332b4c.webp","width":1500,"height":1500,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/08b2238732ae469ceca529fe7b2238e0.jpeg","path":"08b2238732ae469ceca529fe7b2238e0.jpeg","width":1600,"height":1600,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/1bd3b1ef6ce10006f5372b0515eeceaf.jpeg","path":"1bd3b1ef6ce10006f5372b0515eeceaf.jpeg","width":1600,"height":1600,"alt":"OUXX Men & Women Steel Toe Waterproof Kevlar Puncture Resistant Slip On ASTM F2413 EH Work Boots","aspect_ratio":1}],"retail_price":"118.99","off_ratio":33,"price_varies":true} , children: [ { title: "Men", url: '', target: '', tag: "", children: [ { title: "All Men's Work Footwear", url: '/collections/mens-work', target: '_blank', tag: "", }, { title: "Work Boots", url: '/collections/mens-work-boots', target: '_blank', tag: "", }, { title: "Work Shoes", url: '/collections/mens-work-shoes', target: '_blank', tag: "", }, { title: "Steel Toe Boots", url: '/collections/mens-steel-toe-work-boots-shoes', target: '_blank', tag: "", }, { title: "Alloy Toe Boots", url: '/collections/mens-alloy-toe-work-boots-shoes', target: '_blank', tag: "", }, { title: "Composite Toe Boots", url: '/collections/mens-composite-toe-work-boots-shoes', target: '_blank', tag: "", }, { title: "Non Slip Shoes", url: '/collections/mens-slip-resistant-work-boots', target: '_blank', tag: "", }, { title: "Waterproof Work Boots", url: '/collections/mens-waterproof-work-boots', target: '_blank', tag: "", }, { title: "Lightweight Work Boots", url: '/collections/mens-lightweight-work-boots-shoes', target: '_blank', tag: "", }, ] }, { title: "Women", url: '', target: '', tag: "", children: [ { title: "All Women's Work Footwear", url: '/collections/womens-work', target: '_blank', tag: "", }, { title: "Work Boots", url: '/collections/womens-work-boots', target: '_blank', tag: "", }, { title: "Work Shoes", url: '/collections/womens-work-shoes', target: '_blank', tag: "", }, { title: "Steel Toe Boots", url: '/collections/womens-steel-toe-work-boots-shoes', target: '_blank', tag: "", }, { title: "Alloy Toe Boots", url: '/collections/womens-alloy-toe-work-boots-shoes', target: '_blank', tag: "", }, { title: "Composite Toe Boots", url: '/collections/womens-composite-toe-work-boots-shoes', target: '_blank', tag: "", }, { title: "Waterproof Work Boots", url: '/collections/womens-waterproof-work-boots', target: '_blank', tag: "", }, { title: "Non Slip Shoes", url: '/collections/womens-slip-resistant-work-boots', target: '_blank', tag: "", }, { title: "Lightweight Work Boots", url: '/collections/womens-lightweight-work-boots-shoes', target: '_blank', tag: "", }, ] }, { title: "Shop By Features", url: '', target: '', tag: "", children: [ { title: "Metal Free", url: '/collections/metal-free-boots-shoes', target: '_blank', tag: "", }, { title: "Oil Resistant", url: '/collections/oil-resistant-boots-shoes', target: '_blank', tag: "", }, { title: "Static Dissipative", url: '/collections/static-dissipative-sd-boots-shoes', target: '_blank', tag: "", }, { title: "Puncture Resistant", url: '/collections/puncture-resistant-boots-shoes', target: '_blank', tag: "", }, { title: "Electrical Hazard Protection", url: '/collections/electrical-hazard-eh-boots-shoes', target: '_blank', tag: "", }, ] }, { title: "Shop By Jobs", url: '', target: '', tag: "", children: [ { title: "Mining", url: '/collections/mining-boots-shoes', target: '_blank', tag: "", }, { title: "Logging", url: '/collections/logger-boots-shoes', target: '_blank', tag: "", }, { title: "Roofing", url: '/collections/roofing-boots-shoes', target: '_blank', tag: "", }, { title: "Welding", url: '/collections/welding-work-boots-shoes', target: '_blank', tag: "", }, { title: "Kitchen", url: '/collections/kitchen-work-boots-shoes', target: '_blank', tag: "", }, { title: "Truckers", url: '/collections/truck-driver-boots-shoes', target: '_blank', tag: "", }, { title: "Plumbers", url: '/collections/plumber-work-boots-shoes', target: '_blank', tag: "", }, { title: "Carpentry", url: '/collections/carpentry-boots-shoes', target: '_blank', tag: "", }, { title: "Electricians", url: '/collections/electrician-boots-shoes', target: '_blank', tag: "", }, { title: "Lawn Care", url: '/collections/lawn-care-boots-shoes', target: '_blank', tag: "", }, { title: "Gardening", url: '/collections/gardening-boots-shoes', target: '_blank', tag: "", }, { title: "Ironworkers", url: '/collections/ironworker-boots-shoes', target: '_blank', tag: "", }, { title: "Landscaping", url: '/collections/landscaping-boots-shoes', target: '_blank', tag: "", }, { title: "Utility Workers", url: '/collections/utility-work-boots-shoes', target: '_blank', tag: "", }, { title: "Security Guards", url: '/collections/security-guard-boots-shoes', target: '_blank', tag: "", }, { title: "Concrete & Masons", url: '/collections/concrete-masonry-work-boots', target: '_blank', tag: "", }, { title: "Farmers & Ranchers", url: '/collections/farmers-ranchers-boots-shoes', target: '_blank', tag: "", }, { title: "Warehouse Workers", url: '/collections/warehouse-work-boots-shoes', target: '_blank', tag: "", }, { title: "Construction Workers", url: '/collections/construction-worker-boots-shoes', target: '_blank', tag: "", }, { title: "Industrial Mechanic & Machinist Work Boots", url: '/collections/mechanic-machinist-work-boots', target: '_blank', tag: "", }, ] }, ] }, { id: 73703847, index: 8, title: "Beauty & Hair", url: '/collections/beauty-hair', target: '', tag: "", product0: {"id":"415c2b64-361a-4526-836f-d02aaad6b85b","title":"Mature Women Fashion Personalized Striped Nails","brief":"","vendor":"CJ","vendor_url":"https:\/\/www.cjdropshipping.com","has_only_default_variant":false,"requires_shipping":true,"taxable":false,"published":true,"handle":"mature-women-fashion-personalized-striped-nails","spu":"CJYD2105576","need_variant_image":true,"updated_at":"2024-11-16T13:50:47Z","created_at":"2024-10-24T05:42:14Z","mixed_wholesale":false,"min_price_variant":{"id":"53098470-5bc1-4a6c-99c5-83978e1786ae","title":"W279 Treasure Indigo Glue","weight_unit":"g","inventory_quantity":0,"sku":"CJYD210557601AZ","barcode":"","position":1,"option1":"W279 Treasure Indigo Glue","option2":"","option3":"","image":{"src":"\/\/img.staticdj.com\/c7c22df0e7bcebcdf93f3ca197e3f432.jpeg","path":"c7c22df0e7bcebcdf93f3ca197e3f432.jpeg","width":800,"height":800,"alt":""},"wholesale_price":[{"price":26.99,"min_quantity":1}],"weight":"20","compare_at_price":"59.99","price":"26.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-fashion-personalized-striped-nails?variant=53098470-5bc1-4a6c-99c5-83978e1786ae","available_quantity":999999999,"options":[{"name":"Color","value":"W279 Treasure Indigo Glue"}],"off_ratio":55},"tags":"","available":true,"price_min":"26.99","price":"26.99","price_max":"26.99","compare_at_price_min":"59.99","compare_at_price":"59.99","compare_at_price_max":"59.99","retail_price_min":"59.99","retail_price_max":"59.99","url":"\/products\/mature-women-fashion-personalized-striped-nails","published_at":"2024-10-24T05:42:14Z","image":{"src":"\/\/img.staticdj.com\/b6bdc5c4d1a80d904ed7703085a6e736.jpeg","path":"b6bdc5c4d1a80d904ed7703085a6e736.jpeg","width":800,"height":800,"alt":"Mature Women Fashion Personalized Striped Nails","aspect_ratio":1},"options":[{"id":"d19cd136-c7c1-4fd7-bc15-20af5442df2b","name":"Color","position":1,"values":["W279 Treasure Indigo Glue"]}],"variants":[{"id":"53098470-5bc1-4a6c-99c5-83978e1786ae","title":"W279 Treasure Indigo Glue","weight_unit":"g","inventory_quantity":0,"sku":"CJYD210557601AZ","barcode":"","position":1,"option1":"W279 Treasure Indigo Glue","option2":"","option3":"","image":{"src":"\/\/img.staticdj.com\/c7c22df0e7bcebcdf93f3ca197e3f432.jpeg","path":"c7c22df0e7bcebcdf93f3ca197e3f432.jpeg","width":800,"height":800,"alt":"Mature Women Fashion Personalized Striped Nails","aspect_ratio":1},"wholesale_price":[{"price":26.99,"min_quantity":1}],"weight":"20","compare_at_price":"59.99","price":"26.99","retail_price":"59.99","available":true,"url":"\/products\/mature-women-fashion-personalized-striped-nails?variant=53098470-5bc1-4a6c-99c5-83978e1786ae","available_quantity":999999999,"options":[{"name":"Color","value":"W279 Treasure Indigo Glue"}],"off_ratio":55,"flashsale_info":[],"sales":null}],"images":[{"src":"\/\/img.staticdj.com\/b6bdc5c4d1a80d904ed7703085a6e736.jpeg","path":"b6bdc5c4d1a80d904ed7703085a6e736.jpeg","width":800,"height":800,"alt":"Mature Women Fashion Personalized Striped Nails","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/c7c22df0e7bcebcdf93f3ca197e3f432.jpeg","path":"c7c22df0e7bcebcdf93f3ca197e3f432.jpeg","width":800,"height":800,"alt":"Mature Women Fashion Personalized Striped Nails","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/62d74fc3162fbcde78b0ea80f2c63257.jpeg","path":"62d74fc3162fbcde78b0ea80f2c63257.jpeg","width":800,"height":800,"alt":"Mature Women Fashion Personalized Striped Nails","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/a0a0ac96a75546f32c2b21265f69c1f7.jpeg","path":"a0a0ac96a75546f32c2b21265f69c1f7.jpeg","width":800,"height":800,"alt":"Mature Women Fashion Personalized Striped Nails","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/c3a15a284eb8e4f9d3d534b85ae44ff5.jpeg","path":"c3a15a284eb8e4f9d3d534b85ae44ff5.jpeg","width":800,"height":800,"alt":"Mature Women Fashion Personalized Striped Nails","aspect_ratio":1}],"retail_price":"59.99","off_ratio":55,"price_varies":true} , children: [ { title: "Wigs", url: '/collections/human-hair-wigs', target: '_blank', tag: "", children: [ { title: "Short Wigs", url: '/collections/short-human-hair-wigs', target: '_blank', tag: "", }, { title: "Long Wigs", url: '/collections/long-human-hair-wigs', target: '_blank', tag: "", }, { title: "Curly Wigs", url: '/collections/curly-human-hair-wigs', target: '_blank', tag: "", }, { title: "Straight Wigs", url: '/collections/straight-human-hair-wigs', target: '_blank', tag: "", }, { title: "Synthetic Wigs", url: '/collections/synthetic-wigs', target: '_blank', tag: "", }, { title: "Lace Front Wigs", url: '/collections/lace-front-wigs', target: '_blank', tag: "", }, { title: "Real Human Hair Wigs", url: '/collections/real-human-hair-wigs', target: '_blank', tag: "", }, { title: "Wigs For Black Women", url: '/collections/wigs-for-black-women', target: '_blank', tag: "", }, { title: "Wigs For Older Women", url: '/collections/wigs-for-older-women', target: '_blank', tag: "", }, ] }, { title: "Nail Art", url: '/collections/nail-art', target: '', tag: "", children: [ { title: "Press On Nails", url: '/collections/press-on-nails', target: '', tag: "", }, ] }, ] }, { id: 73703873, index: 9, title: "Sunglasses", url: '/collections/sunglasses', target: '_blank', tag: "", product0: {"id":"3f68b01e-0346-4793-9ba1-8c43b3241d4c","title":"Fashion Casual Elderly Men Sunglasses With Plastic Glasses Frame ","brief":"For Mature & Elderly Over 40, 50, 60 & 70","vendor":"","vendor_url":"","has_only_default_variant":false,"requires_shipping":true,"taxable":false,"published":true,"handle":"elderly-men-sunglasses-fashion-casual-plastic-glasses-frame","spu":"CJJT1478192","need_variant_image":true,"updated_at":"2024-10-29T15:47:11Z","created_at":"2023-11-01T13:21:19Z","mixed_wholesale":false,"min_price_variant":{"id":"b63d4e93-c7d7-4086-856b-791b3f24eedf","title":"Black feet white","weight_unit":"g","inventory_quantity":0,"sku":"CJJT147819208HS","barcode":"","position":1,"option1":"Black feet white","option2":"","option3":"","image":{"src":"\/\/img.staticdj.com\/b2fe54e2fb7726d1e6f44d0251fcb840.jpeg","path":"b2fe54e2fb7726d1e6f44d0251fcb840.jpeg","width":800,"height":800,"alt":""},"wholesale_price":[{"price":37.99,"min_quantity":1}],"weight":"31","compare_at_price":"59.99","price":"37.99","retail_price":"59.99","available":true,"url":"\/products\/elderly-men-sunglasses-fashion-casual-plastic-glasses-frame?variant=b63d4e93-c7d7-4086-856b-791b3f24eedf","available_quantity":999999999,"options":[{"name":"Color","value":"Black feet white"}],"off_ratio":37},"tags":"","available":true,"price_min":"37.99","price":"37.99","price_max":"37.99","compare_at_price_min":"59.99","compare_at_price":"59.99","compare_at_price_max":"59.99","retail_price_min":"59.99","retail_price_max":"59.99","url":"\/products\/elderly-men-sunglasses-fashion-casual-plastic-glasses-frame","published_at":"2024-08-27T06:02:56Z","image":{"src":"\/\/img.staticdj.com\/2c42ad7aca94e77cdc68bcf89cd9e60f.jpeg","path":"2c42ad7aca94e77cdc68bcf89cd9e60f.jpeg","width":900,"height":900,"alt":"Fashion Casual Elderly Men Sunglasses With Plastic Glasses Frame ","aspect_ratio":1},"options":[{"id":"362de063-b09a-4b72-b59c-7cb4fe109e9b","name":"Color","position":1,"values":["Black feet white","Black foot grey","Black leopard print","Bright black grey","Gradually powder","Grey Leopard","Sand black tea","White feet white"]}],"variants":[{"id":"b63d4e93-c7d7-4086-856b-791b3f24eedf","title":"Black feet white","weight_unit":"g","inventory_quantity":0,"sku":"CJJT147819208HS","barcode":"","position":1,"option1":"Black feet white","option2":"","option3":"","image":{"src":"\/\/img.staticdj.com\/b2fe54e2fb7726d1e6f44d0251fcb840.jpeg","path":"b2fe54e2fb7726d1e6f44d0251fcb840.jpeg","width":800,"height":800,"alt":"Fashion Casual Elderly Men Sunglasses With Plastic Glasses Frame ","aspect_ratio":1},"wholesale_price":[{"price":37.99,"min_quantity":1}],"weight":"31","compare_at_price":"59.99","price":"37.99","retail_price":"59.99","available":true,"url":"\/products\/elderly-men-sunglasses-fashion-casual-plastic-glasses-frame?variant=b63d4e93-c7d7-4086-856b-791b3f24eedf","available_quantity":999999999,"options":[{"name":"Color","value":"Black feet white"}],"off_ratio":37,"flashsale_info":[],"sales":null},{"id":"124b26c0-daa9-4dde-be13-7bde44c9c227","title":"Black foot grey","weight_unit":"g","inventory_quantity":0,"sku":"CJJT147819206FU","barcode":"","position":2,"option1":"Black foot grey","option2":"","option3":"","image":{"src":"\/\/img.staticdj.com\/69b6909e51629ef02a958b5be1fb20c7.jpeg","path":"69b6909e51629ef02a958b5be1fb20c7.jpeg","width":800,"height":800,"alt":"Fashion Casual Elderly Men Sunglasses With Plastic Glasses Frame ","aspect_ratio":1},"wholesale_price":[{"price":37.99,"min_quantity":1}],"weight":"31","compare_at_price":"59.99","price":"37.99","retail_price":"59.99","available":true,"url":"\/products\/elderly-men-sunglasses-fashion-casual-plastic-glasses-frame?variant=124b26c0-daa9-4dde-be13-7bde44c9c227","available_quantity":999999999,"options":[{"name":"Color","value":"Black foot grey"}],"off_ratio":37,"flashsale_info":[],"sales":null},{"id":"f2b9b757-471f-4003-95f0-1dfb69f73985","title":"Black leopard print","weight_unit":"g","inventory_quantity":0,"sku":"CJJT147819203CX","barcode":"","position":3,"option1":"Black leopard print","option2":"","option3":"","image":{"src":"\/\/img.staticdj.com\/81e5a53be658c3d8040c97cf75b4b669.jpeg","path":"81e5a53be658c3d8040c97cf75b4b669.jpeg","width":800,"height":800,"alt":"Fashion Casual Elderly Men Sunglasses With Plastic Glasses Frame ","aspect_ratio":1},"wholesale_price":[{"price":37.99,"min_quantity":1}],"weight":"31","compare_at_price":"59.99","price":"37.99","retail_price":"59.99","available":true,"url":"\/products\/elderly-men-sunglasses-fashion-casual-plastic-glasses-frame?variant=f2b9b757-471f-4003-95f0-1dfb69f73985","available_quantity":999999999,"options":[{"name":"Color","value":"Black leopard print"}],"off_ratio":37,"flashsale_info":[],"sales":null},{"id":"9867a61c-377d-4816-bd77-2a4307285b9f","title":"Bright black grey","weight_unit":"g","inventory_quantity":0,"sku":"CJJT147819201AZ","barcode":"","position":4,"option1":"Bright black grey","option2":"","option3":"","image":{"src":"\/\/img.staticdj.com\/4b28ea142ba013c7a7e23a196dfb2d47.jpeg","path":"4b28ea142ba013c7a7e23a196dfb2d47.jpeg","width":800,"height":800,"alt":"Fashion Casual Elderly Men Sunglasses With Plastic Glasses Frame ","aspect_ratio":1},"wholesale_price":[{"price":37.99,"min_quantity":1}],"weight":"31","compare_at_price":"59.99","price":"37.99","retail_price":"59.99","available":true,"url":"\/products\/elderly-men-sunglasses-fashion-casual-plastic-glasses-frame?variant=9867a61c-377d-4816-bd77-2a4307285b9f","available_quantity":999999999,"options":[{"name":"Color","value":"Bright black grey"}],"off_ratio":37,"flashsale_info":[],"sales":null},{"id":"380b497b-4c51-4847-8b9d-4bcf1efc6553","title":"Gradually powder","weight_unit":"g","inventory_quantity":0,"sku":"CJJT147819205EV","barcode":"","position":5,"option1":"Gradually powder","option2":"","option3":"","image":{"src":"\/\/img.staticdj.com\/b5e6077ff771fcc385633615f2cdf807.jpeg","path":"b5e6077ff771fcc385633615f2cdf807.jpeg","width":800,"height":800,"alt":"Fashion Casual Elderly Men Sunglasses With Plastic Glasses Frame ","aspect_ratio":1},"wholesale_price":[{"price":37.99,"min_quantity":1}],"weight":"31","compare_at_price":"59.99","price":"37.99","retail_price":"59.99","available":true,"url":"\/products\/elderly-men-sunglasses-fashion-casual-plastic-glasses-frame?variant=380b497b-4c51-4847-8b9d-4bcf1efc6553","available_quantity":999999999,"options":[{"name":"Color","value":"Gradually powder"}],"off_ratio":37,"flashsale_info":[],"sales":null},{"id":"ba4fb64d-1ff2-4808-a208-33d11bb7771c","title":"Grey Leopard","weight_unit":"g","inventory_quantity":0,"sku":"CJJT147819204DW","barcode":"","position":6,"option1":"Grey Leopard","option2":"","option3":"","image":{"src":"\/\/img.staticdj.com\/32c182faf4593b0df3d8b8fa7f019e68.jpeg","path":"32c182faf4593b0df3d8b8fa7f019e68.jpeg","width":800,"height":800,"alt":"Fashion Casual Elderly Men Sunglasses With Plastic Glasses Frame ","aspect_ratio":1},"wholesale_price":[{"price":37.99,"min_quantity":1}],"weight":"31","compare_at_price":"59.99","price":"37.99","retail_price":"59.99","available":true,"url":"\/products\/elderly-men-sunglasses-fashion-casual-plastic-glasses-frame?variant=ba4fb64d-1ff2-4808-a208-33d11bb7771c","available_quantity":999999999,"options":[{"name":"Color","value":"Grey Leopard"}],"off_ratio":37,"flashsale_info":[],"sales":null},{"id":"d262ea3f-4d81-416b-9b0c-3c2e2842dfa2","title":"Sand black tea","weight_unit":"g","inventory_quantity":0,"sku":"CJJT147819202BY","barcode":"","position":7,"option1":"Sand black tea","option2":"","option3":"","image":{"src":"\/\/img.staticdj.com\/628828d90af2b0545fb8998fa7fce9c2.jpeg","path":"628828d90af2b0545fb8998fa7fce9c2.jpeg","width":800,"height":800,"alt":"Fashion Casual Elderly Men Sunglasses With Plastic Glasses Frame ","aspect_ratio":1},"wholesale_price":[{"price":37.99,"min_quantity":1}],"weight":"31","compare_at_price":"59.99","price":"37.99","retail_price":"59.99","available":true,"url":"\/products\/elderly-men-sunglasses-fashion-casual-plastic-glasses-frame?variant=d262ea3f-4d81-416b-9b0c-3c2e2842dfa2","available_quantity":999999999,"options":[{"name":"Color","value":"Sand black tea"}],"off_ratio":37,"flashsale_info":[],"sales":null},{"id":"a0127163-801a-44bf-a3d7-ee1673fc4f2d","title":"White feet white","weight_unit":"g","inventory_quantity":0,"sku":"CJJT147819207GT","barcode":"","position":8,"option1":"White feet white","option2":"","option3":"","image":{"src":"\/\/img.staticdj.com\/b60862d7032dced27654ad04206ec654.jpeg","path":"b60862d7032dced27654ad04206ec654.jpeg","width":800,"height":800,"alt":"Fashion Casual Elderly Men Sunglasses With Plastic Glasses Frame ","aspect_ratio":1},"wholesale_price":[{"price":37.99,"min_quantity":1}],"weight":"31","compare_at_price":"59.99","price":"37.99","retail_price":"59.99","available":true,"url":"\/products\/elderly-men-sunglasses-fashion-casual-plastic-glasses-frame?variant=a0127163-801a-44bf-a3d7-ee1673fc4f2d","available_quantity":999999999,"options":[{"name":"Color","value":"White feet white"}],"off_ratio":37,"flashsale_info":[],"sales":null}],"images":[{"src":"\/\/img.staticdj.com\/2c42ad7aca94e77cdc68bcf89cd9e60f.jpeg","path":"2c42ad7aca94e77cdc68bcf89cd9e60f.jpeg","width":900,"height":900,"alt":"Fashion Casual Elderly Men Sunglasses With Plastic Glasses Frame ","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/4b28ea142ba013c7a7e23a196dfb2d47.jpeg","path":"4b28ea142ba013c7a7e23a196dfb2d47.jpeg","width":800,"height":800,"alt":"Fashion Casual Elderly Men Sunglasses With Plastic Glasses Frame ","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/628828d90af2b0545fb8998fa7fce9c2.jpeg","path":"628828d90af2b0545fb8998fa7fce9c2.jpeg","width":800,"height":800,"alt":"Fashion Casual Elderly Men Sunglasses With Plastic Glasses Frame ","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/81e5a53be658c3d8040c97cf75b4b669.jpeg","path":"81e5a53be658c3d8040c97cf75b4b669.jpeg","width":800,"height":800,"alt":"Fashion Casual Elderly Men Sunglasses With Plastic Glasses Frame ","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/32c182faf4593b0df3d8b8fa7f019e68.jpeg","path":"32c182faf4593b0df3d8b8fa7f019e68.jpeg","width":800,"height":800,"alt":"Fashion Casual Elderly Men Sunglasses With Plastic Glasses Frame ","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/b5e6077ff771fcc385633615f2cdf807.jpeg","path":"b5e6077ff771fcc385633615f2cdf807.jpeg","width":800,"height":800,"alt":"Fashion Casual Elderly Men Sunglasses With Plastic Glasses Frame ","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/69b6909e51629ef02a958b5be1fb20c7.jpeg","path":"69b6909e51629ef02a958b5be1fb20c7.jpeg","width":800,"height":800,"alt":"Fashion Casual Elderly Men Sunglasses With Plastic Glasses Frame ","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/b60862d7032dced27654ad04206ec654.jpeg","path":"b60862d7032dced27654ad04206ec654.jpeg","width":800,"height":800,"alt":"Fashion Casual Elderly Men Sunglasses With Plastic Glasses Frame ","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/b2fe54e2fb7726d1e6f44d0251fcb840.jpeg","path":"b2fe54e2fb7726d1e6f44d0251fcb840.jpeg","width":800,"height":800,"alt":"Fashion Casual Elderly Men Sunglasses With Plastic Glasses Frame ","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/cc354c526fb1d7ed62c637808801ecb4.jpeg","path":"cc354c526fb1d7ed62c637808801ecb4.jpeg","width":790,"height":790,"alt":"Fashion Casual Elderly Men Sunglasses With Plastic Glasses Frame ","aspect_ratio":1}],"retail_price":"59.99","off_ratio":37,"price_varies":true} , children: [ { title: "Women's Sunglasses", url: '/collections/womens-sunglasses', target: '_blank', tag: "", children: [ { title: "Women's Polarized Sunglasses", url: '/collections/womens-polarized-sunglasses', target: '_blank', tag: "", }, { title: "Women's Sports Sunglasses", url: '/collections/womens-sports-sunglasses', target: '_blank', tag: "", }, { title: "Sunglasses For Women Over 40", url: '/collections/sunglasses-for-women-over-40', target: '_blank', tag: "", }, { title: "Sunglasses For Women Over 50", url: '/collections/sunglasses-for-women-over-50', target: '_blank', tag: "", }, { title: "Sunglasses For Women Over 60", url: '/collections/sunglasses-for-women-over-60', target: '_blank', tag: "", }, { title: "Sunglasses For Women Over 70", url: '/collections/sunglasses-for-women-over-70', target: '_blank', tag: "", }, ] }, { title: "Men's Sunglasses", url: '/collections/mens-sunglasses', target: '_blank', tag: "", children: [ { title: "Men's Polarized Sunglasses", url: '/collections/mens-polarized-sunglasses', target: '_blank', tag: "", }, { title: "Men's Sports Sunglasses", url: '/collections/mens-sports-sunglasses', target: '_blank', tag: "", }, { title: "Sunglasses For Men Over 40", url: '/collections/sunglasses-for-men-over-40', target: '_blank', tag: "", }, { title: "Sunglasses For Men Over 50", url: '/collections/sunglasses-for-men-over-50', target: '_blank', tag: "", }, { title: "Sunglasses For Men Over 60", url: '/collections/sunglasses-for-men-over-60', target: '_blank', tag: "", }, { title: "Sunglasses For Men Over 70", url: '/collections/sunglasses-for-men-over-70', target: '_blank', tag: "", }, ] }, ] }, { id: 73703903, index: 10, title: "Pet Supplies", url: '/collections/pet-supplies', target: '_blank', tag: "", product0: {"id":"603d8694-3088-496a-a06a-ce6590a9b7ef","title":"Cotton Dog Clothes For Winter ","brief":"For Mature & Elderly Over 40, 50, 60 & 70","vendor":"","vendor_url":"","has_only_default_variant":false,"requires_shipping":true,"taxable":false,"published":true,"handle":"cotton-dog-clothes-for-winter","spu":"CJJJCWGD00581","need_variant_image":true,"updated_at":"2024-10-29T15:47:35Z","created_at":"2023-10-28T03:28:55Z","mixed_wholesale":false,"min_price_variant":{"id":"5ee1df44-f096-432e-b110-57c2126f1071","title":"S-Green","weight_unit":"g","inventory_quantity":0,"sku":"CJJJCWGD00581-S-Green","barcode":"","position":7,"option1":"S","option2":"Green","option3":"","image":{"src":"\/\/img.staticdj.com\/76fa4c43dd845e430d92092f4f3bf48c.jpeg","path":"76fa4c43dd845e430d92092f4f3bf48c.jpeg","width":750,"height":750,"alt":""},"wholesale_price":[{"price":32.3,"min_quantity":1}],"weight":"120","compare_at_price":"59.99","price":"32.3","retail_price":"59.99","available":true,"url":"\/products\/cotton-dog-clothes-for-winter?variant=5ee1df44-f096-432e-b110-57c2126f1071","available_quantity":999999999,"options":[{"name":"Size","value":"S"},{"name":"Color","value":"Green"}],"off_ratio":46},"tags":"","available":true,"price_min":"32.3","price":"32.3","price_max":"32.72","compare_at_price_min":"59.99","compare_at_price":"59.99","compare_at_price_max":"59.99","retail_price_min":"59.99","retail_price_max":"59.99","url":"\/products\/cotton-dog-clothes-for-winter","published_at":"2023-10-28T03:28:55Z","image":{"src":"\/\/img.staticdj.com\/634d87eb58101aa89adc358457efbf3f.jpeg","path":"634d87eb58101aa89adc358457efbf3f.jpeg","width":750,"height":750,"alt":"Cotton Dog Clothes For Winter ","aspect_ratio":1},"options":[{"id":"281a42d6-24ef-481a-8d20-5cf723652a94","name":"Size","position":1,"values":["L","M","S","XL"]},{"id":"6879c6a6-d63d-4b88-b3f5-a4896f480983","name":"Color","position":2,"values":["Green","Grey","Red"]}],"variants":[{"id":"d18f545c-294a-4c10-8278-f908e052769a","title":"L-Green","weight_unit":"g","inventory_quantity":0,"sku":"CJJJCWGD00581-L-Green","barcode":"","position":1,"option1":"L","option2":"Green","option3":"","image":{"src":"\/\/img.staticdj.com\/76fa4c43dd845e430d92092f4f3bf48c.jpeg","path":"76fa4c43dd845e430d92092f4f3bf48c.jpeg","width":750,"height":750,"alt":"Cotton Dog Clothes For Winter ","aspect_ratio":1},"wholesale_price":[{"price":32.58,"min_quantity":1}],"weight":"140","compare_at_price":"59.99","price":"32.58","retail_price":"59.99","available":true,"url":"\/products\/cotton-dog-clothes-for-winter?variant=d18f545c-294a-4c10-8278-f908e052769a","available_quantity":999999999,"options":[{"name":"Size","value":"L"},{"name":"Color","value":"Green"}],"off_ratio":46,"flashsale_info":[],"sales":null},{"id":"136a875b-0afe-4afc-afad-8e8c70b7a067","title":"L-Grey","weight_unit":"g","inventory_quantity":0,"sku":"CJJJCWGD00581-L-Grey","barcode":"","position":2,"option1":"L","option2":"Grey","option3":"","image":{"src":"\/\/img.staticdj.com\/a37c1855e54a44a63b18aa09312dce45.jpeg","path":"a37c1855e54a44a63b18aa09312dce45.jpeg","width":750,"height":750,"alt":"Cotton Dog Clothes For Winter ","aspect_ratio":1},"wholesale_price":[{"price":32.58,"min_quantity":1}],"weight":"102","compare_at_price":"59.99","price":"32.58","retail_price":"59.99","available":true,"url":"\/products\/cotton-dog-clothes-for-winter?variant=136a875b-0afe-4afc-afad-8e8c70b7a067","available_quantity":999999999,"options":[{"name":"Size","value":"L"},{"name":"Color","value":"Grey"}],"off_ratio":46,"flashsale_info":[],"sales":null},{"id":"a3a9fa40-9a84-425b-a5ef-8ee18a8e6775","title":"L-Red","weight_unit":"g","inventory_quantity":0,"sku":"CJJJCWGD00581-L-Red","barcode":"","position":3,"option1":"L","option2":"Red","option3":"","image":{"src":"\/\/img.staticdj.com\/aa01a090445615822cc35457267c34c5.jpeg","path":"aa01a090445615822cc35457267c34c5.jpeg","width":750,"height":750,"alt":"Cotton Dog Clothes For Winter ","aspect_ratio":1},"wholesale_price":[{"price":32.58,"min_quantity":1}],"weight":"103","compare_at_price":"59.99","price":"32.58","retail_price":"59.99","available":true,"url":"\/products\/cotton-dog-clothes-for-winter?variant=a3a9fa40-9a84-425b-a5ef-8ee18a8e6775","available_quantity":999999999,"options":[{"name":"Size","value":"L"},{"name":"Color","value":"Red"}],"off_ratio":46,"flashsale_info":[],"sales":null},{"id":"4a1c0e50-9623-4730-8b1a-012e414ffe0b","title":"M-Green","weight_unit":"g","inventory_quantity":0,"sku":"CJJJCWGD00581-M-Green","barcode":"","position":4,"option1":"M","option2":"Green","option3":"","image":{"src":"\/\/img.staticdj.com\/76fa4c43dd845e430d92092f4f3bf48c.jpeg","path":"76fa4c43dd845e430d92092f4f3bf48c.jpeg","width":750,"height":750,"alt":"Cotton Dog Clothes For Winter ","aspect_ratio":1},"wholesale_price":[{"price":32.44,"min_quantity":1}],"weight":"130","compare_at_price":"59.99","price":"32.44","retail_price":"59.99","available":true,"url":"\/products\/cotton-dog-clothes-for-winter?variant=4a1c0e50-9623-4730-8b1a-012e414ffe0b","available_quantity":999999999,"options":[{"name":"Size","value":"M"},{"name":"Color","value":"Green"}],"off_ratio":46,"flashsale_info":[],"sales":null},{"id":"c2f12b3a-bb3a-4a8c-9bdb-332a4487e404","title":"M-Grey","weight_unit":"g","inventory_quantity":0,"sku":"CJJJCWGD00581-M-Grey","barcode":"","position":5,"option1":"M","option2":"Grey","option3":"","image":{"src":"\/\/img.staticdj.com\/a37c1855e54a44a63b18aa09312dce45.jpeg","path":"a37c1855e54a44a63b18aa09312dce45.jpeg","width":750,"height":750,"alt":"Cotton Dog Clothes For Winter ","aspect_ratio":1},"wholesale_price":[{"price":32.44,"min_quantity":1}],"weight":"130","compare_at_price":"59.99","price":"32.44","retail_price":"59.99","available":true,"url":"\/products\/cotton-dog-clothes-for-winter?variant=c2f12b3a-bb3a-4a8c-9bdb-332a4487e404","available_quantity":999999999,"options":[{"name":"Size","value":"M"},{"name":"Color","value":"Grey"}],"off_ratio":46,"flashsale_info":[],"sales":null},{"id":"9f705ae2-6fcb-43d5-9c26-6c825d3e1e56","title":"M-Red","weight_unit":"g","inventory_quantity":0,"sku":"CJJJCWGD00581-M-Red","barcode":"","position":6,"option1":"M","option2":"Red","option3":"","image":{"src":"\/\/img.staticdj.com\/aa01a090445615822cc35457267c34c5.jpeg","path":"aa01a090445615822cc35457267c34c5.jpeg","width":750,"height":750,"alt":"Cotton Dog Clothes For Winter ","aspect_ratio":1},"wholesale_price":[{"price":32.44,"min_quantity":1}],"weight":"130","compare_at_price":"59.99","price":"32.44","retail_price":"59.99","available":true,"url":"\/products\/cotton-dog-clothes-for-winter?variant=9f705ae2-6fcb-43d5-9c26-6c825d3e1e56","available_quantity":999999999,"options":[{"name":"Size","value":"M"},{"name":"Color","value":"Red"}],"off_ratio":46,"flashsale_info":[],"sales":null},{"id":"5ee1df44-f096-432e-b110-57c2126f1071","title":"S-Green","weight_unit":"g","inventory_quantity":0,"sku":"CJJJCWGD00581-S-Green","barcode":"","position":7,"option1":"S","option2":"Green","option3":"","image":{"src":"\/\/img.staticdj.com\/76fa4c43dd845e430d92092f4f3bf48c.jpeg","path":"76fa4c43dd845e430d92092f4f3bf48c.jpeg","width":750,"height":750,"alt":"Cotton Dog Clothes For Winter ","aspect_ratio":1},"wholesale_price":[{"price":32.3,"min_quantity":1}],"weight":"120","compare_at_price":"59.99","price":"32.3","retail_price":"59.99","available":true,"url":"\/products\/cotton-dog-clothes-for-winter?variant=5ee1df44-f096-432e-b110-57c2126f1071","available_quantity":999999999,"options":[{"name":"Size","value":"S"},{"name":"Color","value":"Green"}],"off_ratio":46,"flashsale_info":[],"sales":null},{"id":"fb952402-a7a2-4b1d-b149-904a2d95f21f","title":"S-Grey","weight_unit":"g","inventory_quantity":0,"sku":"CJJJCWGD00581-S-Grey","barcode":"","position":8,"option1":"S","option2":"Grey","option3":"","image":{"src":"\/\/img.staticdj.com\/a37c1855e54a44a63b18aa09312dce45.jpeg","path":"a37c1855e54a44a63b18aa09312dce45.jpeg","width":750,"height":750,"alt":"Cotton Dog Clothes For Winter ","aspect_ratio":1},"wholesale_price":[{"price":32.3,"min_quantity":1}],"weight":"120","compare_at_price":"59.99","price":"32.3","retail_price":"59.99","available":true,"url":"\/products\/cotton-dog-clothes-for-winter?variant=fb952402-a7a2-4b1d-b149-904a2d95f21f","available_quantity":999999999,"options":[{"name":"Size","value":"S"},{"name":"Color","value":"Grey"}],"off_ratio":46,"flashsale_info":[],"sales":null},{"id":"d06b439a-5d79-4960-aa75-1caf98613507","title":"S-Red","weight_unit":"g","inventory_quantity":0,"sku":"CJJJCWGD00581-S-Red","barcode":"","position":9,"option1":"S","option2":"Red","option3":"","image":{"src":"\/\/img.staticdj.com\/aa01a090445615822cc35457267c34c5.jpeg","path":"aa01a090445615822cc35457267c34c5.jpeg","width":750,"height":750,"alt":"Cotton Dog Clothes For Winter ","aspect_ratio":1},"wholesale_price":[{"price":32.3,"min_quantity":1}],"weight":"120","compare_at_price":"59.99","price":"32.3","retail_price":"59.99","available":true,"url":"\/products\/cotton-dog-clothes-for-winter?variant=d06b439a-5d79-4960-aa75-1caf98613507","available_quantity":999999999,"options":[{"name":"Size","value":"S"},{"name":"Color","value":"Red"}],"off_ratio":46,"flashsale_info":[],"sales":null},{"id":"b2c141f6-6d42-406c-aab2-4a52d13deb36","title":"XL-Green","weight_unit":"g","inventory_quantity":0,"sku":"CJJJCWGD00581-XL-Green","barcode":"","position":10,"option1":"XL","option2":"Green","option3":"","image":{"src":"\/\/img.staticdj.com\/76fa4c43dd845e430d92092f4f3bf48c.jpeg","path":"76fa4c43dd845e430d92092f4f3bf48c.jpeg","width":750,"height":750,"alt":"Cotton Dog Clothes For Winter ","aspect_ratio":1},"wholesale_price":[{"price":32.72,"min_quantity":1}],"weight":"150","compare_at_price":"59.99","price":"32.72","retail_price":"59.99","available":true,"url":"\/products\/cotton-dog-clothes-for-winter?variant=b2c141f6-6d42-406c-aab2-4a52d13deb36","available_quantity":999999999,"options":[{"name":"Size","value":"XL"},{"name":"Color","value":"Green"}],"off_ratio":45,"flashsale_info":[],"sales":null},{"id":"645de0e1-31ec-467d-a1df-084b3c225d8c","title":"XL-Grey","weight_unit":"g","inventory_quantity":0,"sku":"CJJJCWGD00581-XL-Grey","barcode":"","position":11,"option1":"XL","option2":"Grey","option3":"","image":{"src":"\/\/img.staticdj.com\/a37c1855e54a44a63b18aa09312dce45.jpeg","path":"a37c1855e54a44a63b18aa09312dce45.jpeg","width":750,"height":750,"alt":"Cotton Dog Clothes For Winter ","aspect_ratio":1},"wholesale_price":[{"price":32.72,"min_quantity":1}],"weight":"150","compare_at_price":"59.99","price":"32.72","retail_price":"59.99","available":true,"url":"\/products\/cotton-dog-clothes-for-winter?variant=645de0e1-31ec-467d-a1df-084b3c225d8c","available_quantity":999999999,"options":[{"name":"Size","value":"XL"},{"name":"Color","value":"Grey"}],"off_ratio":45,"flashsale_info":[],"sales":null}],"images":[{"src":"\/\/img.staticdj.com\/634d87eb58101aa89adc358457efbf3f.jpeg","path":"634d87eb58101aa89adc358457efbf3f.jpeg","width":750,"height":750,"alt":"Cotton Dog Clothes For Winter ","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/d6049c2b20570378c91d5198ca8f0fde.jpeg","path":"d6049c2b20570378c91d5198ca8f0fde.jpeg","width":750,"height":750,"alt":"Cotton Dog Clothes For Winter ","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/7ef6d62afbea84a458cfd1d908e8b944.jpeg","path":"7ef6d62afbea84a458cfd1d908e8b944.jpeg","width":750,"height":750,"alt":"Cotton Dog Clothes For Winter ","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/6828ee7fda8387c8c1a2af6e775d972e.jpeg","path":"6828ee7fda8387c8c1a2af6e775d972e.jpeg","width":750,"height":750,"alt":"Cotton Dog Clothes For Winter ","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/9f31b12433efe49afa73a9b42bdc7bc9.jpeg","path":"9f31b12433efe49afa73a9b42bdc7bc9.jpeg","width":750,"height":750,"alt":"Cotton Dog Clothes For Winter ","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/76fa4c43dd845e430d92092f4f3bf48c.jpeg","path":"76fa4c43dd845e430d92092f4f3bf48c.jpeg","width":750,"height":750,"alt":"Cotton Dog Clothes For Winter ","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/a37c1855e54a44a63b18aa09312dce45.jpeg","path":"a37c1855e54a44a63b18aa09312dce45.jpeg","width":750,"height":750,"alt":"Cotton Dog Clothes For Winter ","aspect_ratio":1},{"src":"\/\/img.staticdj.com\/aa01a090445615822cc35457267c34c5.jpeg","path":"aa01a090445615822cc35457267c34c5.jpeg","width":750,"height":750,"alt":"Cotton Dog Clothes For Winter ","aspect_ratio":1}],"retail_price":"59.99","off_ratio":46,"price_varies":false} , children: [ { title: "Dog Supplies", url: '/collections/dog-supplies', target: '_blank', tag: "", children: [ { title: "Dog Clothes", url: '/collections/dog-clothes', target: '_blank', tag: "", }, { title: "Dog Sunglasses", url: '/collections/dog-sunglasses', target: '_blank', tag: "", }, ] }, { title: "Cat Supplies", url: '/collections/cat-supplies', target: '_blank', tag: "", children: [ ] }, { title: "Bird Supplies", url: '/collections/bird-supplies', target: '_blank', tag: "", children: [ ] }, ] }, ].slice(offset); var hasChild = linkList.some(v => (v.children && v.children.length || v.product0)); if (!hasChild) { return `
${linkList.map(item => `
${item.url ? `
${item.title}
${item.tag ? `
${item.tag.label}
` : ''}
`: `
${item.title}
${item.tag ? `
${item.tag.label}
` : ''}
`} ${item.children.length ? `
` : ''}
`).join('')}
` } else { return `
${linkList.map(item => `
${item.url ? `
${item.title}
${item.tag ? `
${item.tag.label}
` : ''}
`: `
${item.title}
${item.tag ? `
${item.tag.label}
` : ''}
`} ${item.children.length ? `
` : ''}
`).join('')}
${linkList.map(item => `
${item.children ? `
${item.children.map(link => { return `
${link.url ? `
${link.title}
${link.tag ? `
${link.tag.label}
` : ''}
`: `
${link.title}
${link.tag ? `
${link.tag.label}
` : ''}
`} ${link.children ? `
${link.children.map(link_3 => `
${link_3.url ? `
${link_3.title}
${link_3.tag ? `
${link_3.tag.label}
` : ''}
`: `
${link_3.title}
${link_3.tag ? `
${link_3.tag.label}
` : ''}
`}
`).join('')}
` : ''}
`}).join('')}
${function() { const data = item.product0; if (!data) return ''; return `
` }()}
` : ''}
`).join('')}
` } }()}
function setSearchUrl(searchValue) { return Promise.resolve({ url: '/search?q=' + searchValue }); } exportFunction('setSearchUrl', setSearchUrl);
function setSearchUrl(searchValue) { return Promise.resolve({ url: '/search?q=' + searchValue }); } exportFunction('setSearchUrl', setSearchUrl);
${function() { if (data === undefined || typeof data !== 'string' || data == '') return `
`; if (data === 'close') return ''; return `
View more
`; }()}
9/19
${data.index + 1}/${data.total}
Facebook
Twitter
Pinterest
Home
/
Mature Women Winter Hoodies Pullover Sweatshirts
Mature Women Winter Hoodies Pullover Sweatshirts
For Mature & Elderly Over 40, 50, 60 & 70
Color-
Black
${function(){ const optName = "Color"; const enable_selected_variants = "true" === 'false'; const optionValue = data.originData.selectData ? data.originData.selectData[optName].value[0] : data.originData.value; return `
${optionValue ? `${enable_selected_variants ? '-' : ''}${optionValue}` : ''}
`; }()}
Black
Blue
Dark grey
Grey