Elegant Sequined Twist Slim Fit Maxi Dress

$65.99
(Tax included)
2 sold
Color:  Navy Blue
Size:  S
Quantity
Shipping

Description

This elegant maxi dress features a slim fit silhouette adorned with sequins and a stylish twist detail. Ideal for formal events or evening occasions, it combines shimmering embellishments with a flattering design that enhances the figure. Perfect for making a memorable entrance, this dress merges sophistication with a touch of contemporary flair.


Description:

  • Elegant Sequined Twist Slim Fit Maxi Dress
  • The dress is made of strong polyester satin for a good fit and lasting quality.
  • Straight Hem
  • Regular Fit


Fabric & Care:

  • Polyester Satin
  • Machine Wash Cold with Like Colors
  • Use Mild Detergents
  • Dry In Shade
  • Iron at Medium Temperature


Please note: All products are taken with mobile phones, please understand that there may be color deviationa.


Size Chart
SizeBustLengthShoulder
CMCMCM
S11313740
M11713841
L12113942
XL12514043
2XL12914144
3XL13314245
Please Note: All dimensions are measured manually with a deviation of 1 to 3cm


Shipping

Thank you for shopping with us! We offer free shipping for orders of $79 to the United States, Saudi Arabic, UAE, Kuwait, and Qatar. For orders under $79, a flat rate shipping fee of $8 will apply.

Please note that processing time typically takes between 3-5 business days. Delivery time is calculated as handling processing time (3-5 business days) plus shipping time (7-14 business days). For more information on shipping costs and times for international destinations, please refer to our Shipping Info page.

Please note that delivery times may vary due to factors beyond our control such as customs clearance procedures and local delivery schedules.

We strive to process and ship all orders within 3-5 business days of receiving payment. We use reputable shipping carriers to ensure that your order is delivered in a timely and secure manner.

Once your order has been shipped, we will provide you with a tracking number so that you can track your package online. If you have any questions or concerns about your order or shipping, please don't hesitate to contact us at service@oxredo.com

Please note that we do not ship to PO boxes or APO/FPO addresses. We are also unable to ship to countries not listed in the chart above.

Thank you for choosing us for your shopping needs. We appreciate your business!

Return & Exchange

Thank you for shopping at oxredo.com.

We understand that sometimes a product may not be quite right, and we are committed to providing you with a hassle-free return experience. If you are not completely satisfied with your purchase, you may return it to us within 14 days of receipt for a refund or exchange.

Order cancellations are accepted within 24 hours of purchase for a full refund. For cancellations after 24 hours but before shipment, a 15% cancellation fee applies. We do not accept cancellation requests for shipped orders.

To initiate a return, please submit a request via email to service@oxredo.com. We will provide you with the return address via email within 24-48 hours of receiving your request.

Please ensure that the returned item is in its original packaging and is unworn and unwashed. All original tags and labels must be attached to the product. If the returned item does not meet these conditions, we reserve the right to refuse the return or charge a restocking fee.

Please note that return shipping fees are the responsibility of the customer. We recommend using a trackable shipping service and purchasing shipping insurance as we are not responsible for any lost or damaged items during the return process.

Once we receive your returned item, we will process the return within 5 business days. Refunds will be issued to the original payment method and may take up to 10 business days to appear on your account.

Please note that the following items are not eligible for return:

  • Final sale items
  • Products that have been customized or personalized
  • Products that have been washed or altered in any way

If you have any questions or concerns regarding our return policy, please do not hesitate to contact us at service@oxredo.com or chat with us online.

/** @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-1711013095581').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);