Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 154453897
ITEM: 5159689
The Women's Cutter Buck White Alabama Crimson Tide CB DryTec Genre Textured Solid Polo is a stylish and functional choice for any Crimson Tide fan Its moisture-wicking DryTec technology keeps you comfortable during intense games or casual outings Embroidered graphics and jacquard texture add sophistication while side panels and vents offer comfort Whether cheering from the stands or showing support outside the stadium this polo seamlessly blends style and functionality making it the perfect choice for any Alabama Crimson Tide fan
Features and Benefits
Dyed-to-match buttons
UPF 45+ UV Sun Protection
DryTec technology wicks away sweat
Brand: Cutter & Buck
Material: 100% Polyester
1-Button placket
Jacquard texture
Side panels and vents offer added comfort
Machine wash, tumble dry low
Officially licensed
Forward shoulder
Imported
Specifications
Sleeve length: Short Sleeve
Gender: Women's
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();