Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 148439124
ITEM: LSAT-FD
Enjoy timeless style and comfort with the Burlebo Men's Vintage Heavyweight Flannel Shirt. The heavyweight cotton-spandex blend is stretchy and brushed for extra comfort and softness, and the front pockets secure with buttons to store handy essentials.
Features and Benefits
Heavyweight 98% cotton and 2% spandex flannel material for the right amount of stretch
Brushed fabric for extra comfort
Front button pocket for secure storage
Button-down front closure
Long sleeves with adjustable cuffs
Classic collar cut
Relaxed fit for comfortable wearing
Wash with like colors; hang dry for extra care
Specifications
Compression: No
Clothing Type: Casual Shirts
Neckline: Collar
Sleeve length: Long Sleeve
Activity: Casual
Material: 98% cotton, 2% spandex
Heat Retention: No
Gender: Men's
Size Range: Men's
Moisture Wicking: No
Care: Wash with like colors; hang dry for extra care
Product Type: Shirts
Flame Resistant: No
Age Group: Adults'
Style: Flannel Shirts
Features: Stretch
Hood: No
Placket: Button-down
What's in the Box
Burlebo Men's Vintage Heavyweight Flannel Shirt
function updateCustomerIdStorage() {
const sourceKey = 'aso_cdp_data';
const targetKey = 'm_cdp_customer_id';
let customerId = null;
try {
const storedValue = localStorage.getItem(sourceKey);
if (storedValue) {
const data = JSON.parse(storedValue);
customerId = data.cdpData?.customerId;
} else {
console.warn(`Source Key "${sourceKey}" not found in local storage.`);
}
} catch (error) {
console.error(`Error parsing JSON from source key "${sourceKey}":`, error);
}
if (customerId) {
localStorage.setItem(targetKey, customerId);
// console.log(`Successfully set "${targetKey}" to: ${customerId}`);
} else {
localStorage.removeItem(targetKey);
// console.log(`No customerId found. Removed key "${targetKey}" from local storage.`);
}
}
updateCustomerIdStorage();