Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 156568090
ITEM: 202152589
Add some sparkle to your LSU Tigers game day look with this Colosseum Reflection Rhinestone Drawcord Pullover Hoodie This hoodie features sparkling rhinestone detailing adding a touch of glamour to your game-day look With its fleece lining and adjustable hood it provides exceptional warmth and comfort for those chilly LSU Tigers game days
Features and Benefits
Officially licensed
Long sleeve
Hooded
Dropped shoulder seams provide a loose, relaxed, oversized fit
Pullover
Brand: Colosseum
Imported
Machine wash, tumble dry low
Midweight hoodie suitable for moderate temperatures
Fleece lining provides added warmth and a soft feel
Material: 80% Cotton/20% Polyester
Screen print graphics
Specifications
Clothing Type: Hoodies
Product Type: Sweatshirt
Age Group: Adults'
Activity: College Sports,Football,Tailgating
Gender: Women's
Care: Machine wash, tumble dry low
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();