Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 160466504
ITEM: 202889960
Cozy up and cheer on the Syracuse Orange with this Champion Arch Over Logo Pullover Hoodie This midweight Syracuse Orange hoodie features a fleece lining for added warmth and comfort making it ideal for moderate temperatures An adjustable drawstring hood helps block out the elements while a front pouch pocket provides convenient storage
Features and Benefits
Pullover
Officially licensed
Adjustable drawstring hood to block out the elements
Material: 50% Cotton/50% Polyester
Hooded
Fleece lining adds comfort and warmth
Machine wash, tumble dry low
Arched team wordmark over logo at chest
Brand: Champion
Imported
Front pouch pocket for accessible storage
Rib-knit cuffs and hem for a durable stretch
Specifications
Origin: Imported
Clothing Type: Fleece
Neckline: Hood
Sleeve length: Long Sleeve
Activity: College Sports
Material: 50% Cotton/50% Polyester
Heat Retention: Yes
Gender: Men's
Zipper: No Zipper
Size Range: Men's
Moisture Wicking: No
Care: Machine wash, tumble dry low
Product Type: Sweatshirts
Age Group: Adults'
Style: Pullover Hoodies
Features: Stretch
Hood: Yes
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();