Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 142288951
ITEM: LCK00128BL27092-M
Show your Alabama Crimson Tide spirit in style with the Cutter Buck Adapt Eco Knit Half-Zip Pullover Jacket This lightweight pullover features embroidered Alabama Crimson Tide graphics and a half-zip closure for easy on and off The recycled polyester and spandex blend provides comfort and durability while the raglan sleeves offer a full range of motion This pullover is perfect for game day or any day you want to show your Alabama Crimson Tide pride
Features and Benefits
1/2-Zip
Long sleeve
Officially licensed
Material: 88% Recycled Polyester/12% Spandex
Imported
Locker loop
Mock neck
CB logo trims
Lightweight jacket suitable for mild temperatures
Brand: Cutter & Buck
Embroidered graphics
Raglan sleeves
Specifications
Clothing Type: Pullovers
Activity: College Sports
Features: Stretch
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();