Women Victorian Corset Dress with Pockets for Spring

Women Victorian Corset Dress with Pockets for Spring

$26.99
people are viewing this right now
Color: Blue
Size:
Please select a Size
Quantity
Product was out of stock.
Product is unavailable.
Free worldwide shipping

Enjoy free shipping on every order, delivered to your doorstep no matter where you are in the world.

Free returns

Shop with confidence with our hassle-free returns policy, ensuring you love what you buy.

Sustainably made

Designed with the planet in mind, all our products are committed to sustainable practices.

Secure payments

Your payment information is always protected with our advanced, encrypted checkout security.

Description

Scarlet Darkness Women Renaissance Pockets Dress Front Slit Chiffon Dress

Introducing our special design Corset Top from Scarlet Darkness's Spring 2026 collection: Botanical Rebirth.

Story behind the corset series:

A few months ago, our designer watched a documentary online about the beautiful life on Earth. One episode tells the story of an endangered flower called the "Moonlight Orchid," which blooms only at night, emitting a soft, moonlit glow. However, due to overexploitation and habitat destruction, this magical plant is on the verge of extinction...

Our designer was deeply moved by the sight of endangered plants gradually disappearing from our lives. To raise awareness of nature, she drew inspiration from this endangered flower, incorporating its form and color into her designs to artistically depict its fragile yet beautiful life. 
Each corset carries the story of a plant's rebirth. Join us to make clothing truly timeless works of art.

Endangered plant names:

  • Blue: Iris louisiana
  • Pink: Rosa roxburghii var. roxburghii
  • Red: Cypripedium californicum
  • Purple: Paphiopedilum micranthum

About the spring summer dress:

The fishbone shaping design combined with a lowered waistline better accentuates the body's curves. The adjustable straps provide freedom of adjustment.

Say goodbye to "looking bulky, monotonous, and lacking emotional resonance" as the perfect wedding guest dress.

*Dress Fabric:Shell/Lining:98%Polyester+2%Viscose.

*Dress Closure:Zip(Left)

*Dress Features:

1) Hits above ankle

2) Adjustable shoulder straps

3) Square neck

4) Bodice with 15pcs bones in total

5) Smocked centre back bodice with lacing

6) Hidden zip at left side

7) Open side-seam pockets

8) Soft & comfortable fabric

9) Dress is not elastic

10) Main body lined

*Package Contents:1*Dress(No Accessories Included)

Suitable Occasions: Everyday wear / Summer dates / Family gatherings / Beach photoshoots/ Wedding Guest/Valentine‘s day.

Key occasions: Wedding season, garden party season, graduation ceremonies, Earth Day eco-friendly attire.

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