Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 154530434
ITEM: 5159169
Represent your beloved LSU Tigers with the Women's Cutter Buck Adapt Eco Knit Stretch Recycled Half-Zip Pullover Top This lightweight pullover features embroidered LSU Tigers graphics and a mock neck to keep you warm on game day The half-zip closure and raglan sleeves provide a comfortable fit while the recycled polyester and spandex blend is eco-friendly and breathable Whether you're cheering on the Tigers at Death Valley or just relaxing at home this pullover is the perfect way to show your team spirit
Features and Benefits
Locker loop
Imported
Material: 88% Recycled Polyester/12% Spandex
Half-zip closure
Raglan sleeves
Brand: Cutter & Buck
Embroidered graphics
Mock neck
Long sleeve
1/2-Zip
Lightweight top suitable for mild temperatures
Machine wash
Specifications
Origin: Imported
Insulation: No
Temperature: Mild
Sleeve length: Long Sleeve
Material technology: Eco Knit Stretch
Activity: Casual
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();