20% off the store --- free/reduced shipping on most orders
Bertoia 3/4 Sleeve Dress (more colors)
Bertoia 3/4 Sleeve Dress (more colors)
Bertoia 3/4 Sleeve Dress (more colors)
$ 48.00

Bertoia 3/4 Sleeve Dress (more colors)

Clean a-line dress has ruffly texture at the neck and hem. 3/4 length sleeves with a ruffle edge reduces messes. Looks impeccable. Winter weight jersey flows beautifully with the additional bottom weight. wears beautifully. soft jersey ruffle around the neckline, cuffs, and hem. Closes at the collarbone with a self-covered button. Knee-length. Machine wash and dry.

Please note, "Rust" color is lighter than pictured. 

document.addEventListener('DOMContentLoaded', () => { const productJson = [...document.querySelectorAll('[id^=ProductJson-')]; if (productJson.length > 0) { productJson.forEach((product) => { const sectionId = product.id.replace("ProductJson-", "shopify-section-"); const productVariants = JSON.parse(product.innerHTML); const unavailableVariants = []; productVariants.variants.forEach((variant) => { if (variant.available === false) { unavailableVariants.push(variant); } }); const variantOptions = [...document.querySelectorAll('#' + sectionId + ' .single-option-selector option')] const observer = new MutationObserver((mutation) => { unavailableVariants.forEach((item) => { variantOptions.forEach((option) => { if (option.value === item.title) option.remove(); }); }); observer.disconnect(); }); if (unavailableVariants.length > 0 && productVariants.options.length === 1) { const addToCartForm = document.querySelector('form[ action="/cart/add"]'); if (window.MutationObserver && addToCartForm.length) { if (typeof observer === 'object' && typeof observer.disconnect === 'function') { observer.disconnect(); } const config = { childList: true, subtree: true }; observer.observe(addToCartForm, config); } } }); } });