Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 154607139
ITEM: 4803153
Elevate your Florida Gators style with this Cutter Buck Adapt Eco Knit Hybrid Recycled Quarter-Zip Pullover Top This Florida Gators pullover is made from recycled polyester and spandex and features CB DryTec Moisture Wicking technology to keep you comfortable and dry Whether you're cheering on the Gators from the stands or just relaxing at home this pullover will keep you comfortable and stylish
Features and Benefits
Recycled content certified by Global Recycled Standard
Officially licensed
Quarter-zip closure
Uses average of 20 Post-consumer Recycled Plastic Bottles
Novelty contrast stitch zipper
CB DryTec Moisture Wicking
Locker loop
Recycled content certified by Global Recycled Standard
CB logo trims
Woven overlay at front panel & collar
Lightweight top suitable for mild temperatures
Raglan sleeve
Specifications
Insulation: No
Temperature: Mild
Sleeve length: Long Sleeve
Material technology: CB DryTec Moisture Wicking
Activity: College Sports,Lifestyle
Material: Recycled Polyester, Spandex
Heat Retention: No
Gender: Men's
Zipper: 1/4 Zip
Size Range: Men's
Moisture Wicking: Yes
Water Resistant: No
Product Type: Outerwear
Age Group: Adults'
Style: Light Jacket
Features: Moisture Wicking
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();