Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 142117651
ITEM: MCK01143BL27092-S
Represent your Alabama Crimson Tide with pride in this Cutter Buck Adapt Eco Knit Quarter-Zip Pullover Jacket This lightweight pullover features embroidered Alabama Crimson Tide graphics and is made from recycled polyester and spandex The raglan sleeves and contrast stitch zipper add a touch of style while the locker loop at the back of the mock neck makes it easy to hang up This pullover is perfect for game day or any day you want to show your Alabama Crimson Tide pride
Features and Benefits
Locker loop at back of mock neck
Lightweight jacket suitable for mild temperatures
Embroidered graphics
Raglan sleeves
DryTec technology wicks away sweat
Officially licensed
CB logo trims
Imported
Recycled content certified by Global Recycled Standard
1/4-Zip
Contrast stitch zipper
Material: 88% Recycled Polyester/12% Spandex
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();