Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 154607690
ITEM: 5151877
Stay comfortable and show your Florida Gators pride with this Cutter Buck Adapt Eco Knit Hybrid Recycled Full-Zip Jacket This wind-resistant jacket is made from recycled polyester and features embroidered Florida Gators graphics The full-zip design and mock neck provide a comfortable fit while the raglan sleeves and shell overlay add a stylish touch This jacket is perfect for showing your Florida Gators pride on a cool day whether you're at the game or just out and about
Features and Benefits
Lightweight jacket suitable for mild temperatures
Raglan sleeves
Material: 100% Recycled Polyester
Machine wash, tumble dry low
Full Zip
Two zippered front pockets
Officially licensed
Wind-resistant
Recycled content certified by Global Recycled Standard
Shell overlay at front and back
Full-zip
Locker loop at back neck
Specifications
Temperature: Mild
Clothing Type: Jackets
Sleeve length: Long Sleeve
Material technology: Eco Knit Hybrid; Wind-resistant fabric
Activity: Casual
Material: 100% Recycled Polyester
Gender: Men's
Zipper: Full Zip
Size Range: Men's
Moisture Wicking: No
Care: Machine wash, tumble dry low
Water Resistant: No
Weather: Wind
Product Type: Outerwear
Flame Resistant: No
Age Group: Adults'
Style: Light Jacket
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();