Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress
Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress

Iridescent Rose Sparkly Sequin One Shoulder High Slit Fitted Gown Dress

10% Off 1st Order: NEW10

Price

$48.49 $26.99
Save $21.50

color - Rose Gold

Please select a color

size

Please select a size

Quantity

/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1539149753700').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);

Details:

25% OFF All Site Promo Now. Plus Extra10% OFF 1st Order. Free Shipping $60. Free Exchange & Easy Returns.

  • The One Shoulder Cut-outs Split Rose Champagne Sequin Prom Dress features a block trim and slim waist design. Slimmy Stretchy full sequined, high thigh slit to show your beautiful legs. 
  • Sparkly Sexy One-shoulder Sequin Side-slit Evening Long Prom Dress is classic for thanksgiving, homecoming, trips, clubs, parties, graduates, cocktails, dances and dates.

Material: Sequin
Color: Rose Gold
Size Details:
Size S:  Bust 36.02'', Hip 37", Length 57.68";
Size M: Bust 37.99'', Hip 38.98", Length 58";
Size L:  Bust 39.96'', Hip 40.94", Length 58.46";
Size XL:  Bust 41.93'', Hip 42.91", Length 58.86";
Size 2XL: Bust 43.89 cm'', Hip 44.88", Length 59.25";

Design: One Shoulder, Glitter, Sparkling, High Split, Glitter, Maxi Length and Fashion Style.

Weight: approx 0.517 kg
Hand Wash Cold.
Delivery: 9-12 Business Days Delivered US, 11-14 Business Days Delivered in Europe.
Free Exchange & 15 Days Free Tries Before Returns.

1. Don't forget to use the Coupon Code in the below to save your money:

❤️ 10% Off for your first shop | Code: NEW10

❤️ 10% Off on order over $49   | Code: EO10

❤️ 15% Off on order over $79   | Code: EO15

❤️ 25% Off on order over $129 | Code: EO25

❤️ 30% Off on order over $500 | Code: EO30

NOTE: Eomenie provides FREE SHIPPING for all orders over $49. Enjoy your shopping.

2. How to use the codes?

Ⅰ. Enter the code at checkout.

Ⅱ. Click the "Apply" button.

About Shipping:

We ship to United States, Canada, Australia, South America, Europe.

Shipping is FREE on orders of $49 or more. 

Receiving Time = Order Processing Time + Shipping Time

Ⅰ. Order Processing Time

The order processing time depends on the time frame of the quality check, the packaging and also on the stock status of the individual product. It usually takes 1-3 business days to process your order (while some items may need 3-7 business days or longer). You will receive an email notification once your order has been shipped.

Ⅱ. Shipping Rates & Shipping Time

Free Standard Shipping for orders over $49  (8-14 business days)

Standard Shipping: flat rate charge of $5.99 (8-14 business days)

Expedited Shipping: flat rate charge of $12.99 (3-8 business days)

About Return:

Customers have the right to apply for a return within 30 days after the receipt of the product. 

Once we receive your return, please allow 1 to 3 business days to process your returns.

Do I Have To Pay For Shipping When I Return Something?

  • If the product is returned due to the consumer's personal reasons, the return freight shall be borne by the consumer. The specific cost is subject to the courier company you choose.

  • If the goods received are damaged or incorrect due to our reasons, please feel free to reach out at eomenie-us@hotmail.com, our customer service team will provide the solutions for you(refund/return/exchange the goods for free).

SIZE/IN US CUP BUST WAIST HIP TORSO
XS 0-2 30B/C,32A 32.5-33.5 25.5-26.5 35.5-36.5 57-59
S 4-6 32B/C,34B 34.5-35.5 27.5-28.5 37.5-38.5 59-61
M 8-10 34C/D,36B/C 36.5-37.5 29.5-30.5 39.5-40.5 61-63
L 12-14 36D,38B/C/D 39-40.5 32-33.5 42-43.5 63-65
XL 16-18 38DD,40CD 42-44 35-37 45-47 65-67

Note: This guide provides general sizing information only, and fit can vary depending on style and brand. for more specific sizing information on the product, please feel free to contact us for help. More country size measurements, please click here.