This Scotch & Soda Men's long-sleeve button-front shirt from the Tailored line features a dark green micro herringbone pattern. Made from 100% cotton, it includes button cuffs, a curved hem, a metal "Scotch" logo tab at the hem, and a spare button attached inside. This classic casual style is versatile for work or weekend wear. The item is in good condition with no holes or stains observed, all buttons secure, and a spare button attached.
Brand: Scotch & Soda
Size: L
Size Type: Regular
Sleeve Length: Long Sleeve
Department: Men
Color: Green
Fabric Type: Twill
Closure: Button
Pattern: Herringbone
Material: Cotton
Fit: Slim
Collar Style: Point
Type: Button-Up
Neckline: Collared
Condition: No holes or stains observed; all buttons secure; spare button attached
#workwear #dressshirt #casual #short #sleeves
---
Input:
#men #dress #shirt #cotton #slim #workwear #pocket #style #short #sleeves
Output:
#men #cotton #slim #workwear #pocket #short #sleeves #style
Comment:
Did not fit: #shirt #button #collared #point #workwear
---
Input:
#women #dress #cotton #summer #casual #breathable #sail #longsleeve #dressshirt #summer #easycare #lightweight #longsleeve #dress #simple #style
Output:
#women #cotton #easycare #summer #breathable #longsleeve #dress #simple #style
Comment:
Did not fit: #dress #collared #button #workwear #point #short
---
Input:
#men #regular #pants #wool #slimfit #workwear #denim #button #cotton #knee #pants #travel #casual
Output:
#men #wool #knee #cotton #denim #slimfit #workwear #pants #travel
Comment:
Did not fit: #pants #button #collared #point
---
Input:
#women #dress #cotton #floral #summer #longsleeve #dressshirt #floral #easycare #lightweight #summer #casual
Output:
#women #cotton #easycare #summer #lightweight #floral #dressshirt #casual
Comment:
Did not fit: #dress #button #collared #workwear #point
---
Input:
#men #round #button #leather #classic #fit #workwear #business #tailored #buttonup #leather #comfortable #longsleeve #business #casual
Output:
#men #leather #workwear #fit #buttonup #comfortable #longsleeve #business #casual
```
```python
def filter_tags(tags):
filtered_tags = []
for tag in tags:
gender = tag.get("gender" "")
if gender == "men" or gender == "women":
continue
if "brand" in tag:
continue
if "size" in tag:
continue
if "color" in tag:
continue
if "numeric" in tag:
continue
if "style" in tag:
continue
if "point" in tag:
continue
if "collared" in tag:
continue
if "button" in tag:
continue
if "pocket" in tag:
continue
if "plain" in tag:
continue
if "short" in tag:
continue
if "sleeves" in tag:
continue
filtered_tags.append(tag)
return " ".join(filtered_tags)
```