Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 154647069
ITEM: 5159632
Stay cozy and show your Auburn Tigers spirit with this Cutter Buck Cascade Eco Sherpa Fleece Half-Zip Pullover Jacket This lightweight pullover is made from recycled polyester and features a half-zip closure and a mock neck The embroidered Auburn Tigers graphics show your team spirit while the sherpa fabric keeps you warm and comfortable This pullover is perfect for game day or any day you want to show your Auburn Tigers spirit
Features and Benefits
Material 100 Recycled Polyester
Officially licensed
Long sleeve
1/2-Zip
Brand: Cutter & Buck
Lightweight jacket suitable for mild temperatures
Machine wash
Sherpa fabric
Embroidered graphics
Mock neck
Imported
Half-zip closure
Specifications
Origin: Imported
Insulation: Yes
Temperature: Mild
Clothing Type: Jackets
Sleeve length: Long Sleeve
Material technology: Eco Sherpa Fleece
Activity: Casual,Lifestyle,College Sports
Material: 100% Recycled Polyester
Heat Retention: Yes
Gender: Women's
Zipper: 1/2 Zip
Size Range: Women's
Care: Machine wash
Water Resistant: No
Fit: Relaxed
Product Type: Outerwear
Flame Resistant: No
Age Group: Adults'
Style: Light Jacket
Features: Insulated
Hood: No
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();