Buy 2 items and save 5% off
Log in
Create an account
Home
Home
New Arrivals
New Arrivals
Best Sellers
Best Sellers
Dresses
Dresses
Two Pieces
Two Pieces
Tops
Tops
Jumpsuits & Rompers
Jumpsuits & Rompers
Bottoms
Bottoms
Shoes
Shoes
Swimwears
Swimwears
Classic elegant outfits
Classic elegant outfits
More links
Log in
Create an account
Log in
Create an account
Home
New Arrivals
Best Sellers
Dresses
Two Pieces
Tops
Jumpsuits & Rompers
Bottoms
Shoes
Swimwears
Classic elegant outfits
New Arrivals
SHOP NOW
47% off
Quick buy
Fasheicon Temperament round neck pleated cape dress
$31.99
$59.99
48% off
Quick buy
Fasheicon Elegant Fashion Wrap Hip Commuter Dress
$29.99
$57.99
37% off
Quick buy
Elegant Print Patchwork Ribbon Collar Short Sleeve Two Pieces
$42.99
$67.99
44% off
Quick buy
Casual Ripped Straight Jeans
$35.99
$63.99
47% off
Quick buy
Commuter Solid Color Slim-Fit High Waist Cropped Pants
$30.99
$58.99
46% off
Quick buy
Fasheicon Elegant Fashion Wrap Hip Split Dress
$31.99
$58.99
21% off
Quick buy
Solid Color Elegant Pearls Jumpsuit
$52.99
$66.99
35% off
Quick buy
Fasheicon Bubble Sleeve A-line Dress
$29.99
$45.99
32% off
Quick buy
Fasheicon Bow Tie Party Short Sleeve Dress
$41.99
$61.99
36% off
Quick buy
Fasheicon Pleated patchwork deep v-neck jumpsuit
$41.99
$65.99
Shop By Category
Classic style outfits
View more
Classic style stands the test of time, it's chic, classy, and classic.
View more
$31.99
Fasheicon Temperament round neck pleated cape dress
$31.99
$59.99
Save 47%
$29.99
Fasheicon Elegant Fashion Wrap Hip Commuter Dress
$29.99
$57.99
Save 48%
$31.99
Sexy Cape Formal Dress
$31.99
$59.99
Save 47%
$31.99
Solid color elegant dress
$31.99
$48.99
Save 35%
$31.99
Fashion temperament loose solid color wooden ear dress
$31.99
$43.99
Save 27%
$28.99
Fasheicon Elegant Long Sleeve Ruffle Dress
$28.99
$56.99
Save 49%
$37.99
Elegant Lace Solid Color Hollow Out Patchwork Dress
from
$37.99
$49.00
Save 22%
$34.99
Fasheicon Elegant Pendulum Skirt Dress
$34.99
$71.99
Save 51%
Hot Sale Style Dress
View more
Define your style statement in women's on-trend dresses
View more
$49.99
Simple Love Dress
$49.99
$79.99
Save 38%
$45.99
Loving Beauty Dress
$45.99
$75.99
Save 39%
$44.99
Blue On-trend Multi Pocket Denim Mini Dress
$44.99
$78.99
Save 43%
$34.99
Solid Ribbed Tee Dress
$34.99
$64.99
Save 46%
$38.99
Solid V-Neck Tied Dress
$38.99
$68.99
Save 43%
$27.49
Elegant Formal Solid Slit Asymmetrical Oblique Collar Evening Dress Dresses
$27.49
$55.49
Save 50%
$53.99
Solid Tied-Waist Midi Dress
$53.99
$83.99
Save 36%
$45.99
V-Neck Belted Pleated Dress
$45.99
$75.99
Save 39%
Two Piece Outfits For Women
View more
Two is better than one! Shop matching sets and two-piece outfits
View more
$59.99
High Neck Top and Plaid Skirt Set
$59.99
$89.99
Save 33%
$74.95
Denim Asymmetrical Jacket & Cargo Jeans Set
$74.95
$104.95
Save 29%
$39.99
Golf Polo Top & Pleated Skirt Set
$39.99
$69.99
Save 43%
$44.95
Floral Print Denim Jacket & Jeans
from
$44.95
$74.95
Save 40%
$39.89
Plaid Jacket & Bubble Skirt Set
$39.89
$69.89
Save 43%
$48.95
Denim Crop Jacket & Cargo Shorts Set
$48.95
$89.95
Save 46%
$38.60
Fringe Wrap Skirt Set
$38.60
$68.60
Save 44%
$52.99
Knit Zip Crop Top & Pants Set
$52.99
$82.99
Save 36%
/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll);
const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1743152099852').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);
${data.module_title}
To display this card to customers, you need to go to "Booster & Store Conversion" to turn on the trust enhancement feature.
${data.module_title}
${item.title}
${item.title}
${item.content.replaceAll("{store_name}","fasheicon")}
To display this card to customers, you need to go to "Booster & Store Conversion" to turn on the trust enhancement feature.
${data.module_title}
${item.title}
${data.module_title}
${item.title}
${item.content.replaceAll("{store_name}","fasheicon")}