Package included:1 Blouse
Material:100% Polyester
Colors:Khaki,Wine Red,Dark Blue,Pink
Sleeve Length:Short Sleeve
Neckline:O-Neck
Pattern:Solid Color
Buckle chain:Buttons on the back
Thickness:Thin
Features:Pleated Design
Style:Leisure,Bohemian,Retro,Europe
Season:Spring,Summer,Autumn
Occasion:Family,Party,Beach,Wedding,Holiday
Label: Yes
Attentions:
1.The Real Object May Exist Slightly Colors Differences Compared To Images As Different Computers Display.Caution If Minding,Thanks.
2.There Might Be A Manual Measuring 1-3 cm Error.Sorry For Any Inconvenience.
3.Please Prevail On Real Item, Model Images For Reference Only.
4.Attention!!!Please check the size chart carefully before placing the order.
Subscribe for new arrivals, exclusive deals and more!
Choosing a selection results in a full page refresh.
Opens in a new window.
// Store recently viewed products in localStorage
var viewedProducts = JSON.parse(localStorage.getItem('viewedProducts')) || [];
var currentProductHandle = 'women-short-sleeve-work-causal-pleated-design-tops';
// Add current product to viewed list
if (!viewedProducts.includes(currentProductHandle)) {
viewedProducts.push(currentProductHandle);
}
// Limit to the last 5 products viewed
if (viewedProducts.length > 5) {
viewedProducts.shift();
}
localStorage.setItem('viewedProducts', JSON.stringify(viewedProducts));