Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 154610573
ITEM: 5159139
Represent your Florida Gators with style and sustainability in this Cutter Buck Adapt Eco Knit Stretch Recycled Half-Zip Pullover Top This lightweight pullover is made from recycled polyester and spandex and features embroidered Florida Gators graphics The mock neck and raglan sleeves provide a comfortable fit while the half-zip closure makes it easy to adjust to changing temperatures Whether you're cheering on the Gators from the stands or just relaxing at home this pullover is the perfect way to show your team spirit
Features and Benefits
Mock neck
Half-zip closure
Material: 88% Recycled Polyester/12% Spandex
Machine wash
Long sleeve
Brand: Cutter & Buck
Embroidered graphics
Raglan sleeves
Locker loop
Officially licensed
Lightweight top suitable for mild temperatures
1/2-Zip
Specifications
Insulation: No
Temperature: Mild
Sleeve length: Long Sleeve
Material technology: Eco Knit Stretch
Activity: College Sports,Lifestyle,Casual
Material: Recycled Polyester/Spandex
Heat Retention: No
Gender: Women's
Zipper: 1/2 Zip
Size Range: Women's
Moisture Wicking: No
Care: Machine Wash
Water Resistant: No
Product Type: Outerwear
Flame Resistant: No
Age Group: Adults'
Style: Light Jacket
Lining: No
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();