Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 154646517
ITEM: 5159106
Represent your Auburn Tigers with style and sustainability in this Cutter Buck Adapt Eco Knit Stretch Recycled Half-Zip Pullover Top This lightweight pullover features embroidered Auburn Tigers graphics and a mock neck to keep you warm on game day The recycled polyester and spandex blend is soft and comfortable and the raglan sleeves provide a full range of motion Whether you're cheering on the Tigers at Jordan-Hare Stadium or just relaxing at home this pullover is the perfect way to show your team spirit
Features and Benefits
1/2-Zip
Material: 88% Recycled Polyester/12% Spandex
Long sleeve
Imported
Brand: Cutter & Buck
Locker loop
Mock neck
Lightweight top suitable for mild temperatures
Raglan sleeves
Machine wash
Officially licensed
Half-zip closure
Specifications
Origin: Imported
Temperature: Mild
Clothing Type: Jackets
Sleeve length: Long Sleeve
Material technology: Eco Knit Stretch Recycled
Activity: Casual,Lifestyle
Material: 88% Recycled Polyester/12% Spandex
Gender: Women's
Zipper: 1/2 Zip
Size Range: Women's
Care: Machine wash
Water Resistant: No
Product Type: Outerwear
Flame Resistant: No
Age Group: Adults'
Style: Light Jacket
Features: Stretch
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();