Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 154453281
ITEM: 5156755
Embrace the Red Raiders spirit with the Men's Cutter Buck Red Texas Tech Red Raiders Virtue Eco Pique Botanical Recycled Polo Crafted from recycled polyester and spandex this eco-friendly polo offers unparalleled comfort and style Its moisture-wicking fabric keeps you dry and fresh while the four-way stretch ensures a perfect fit Embroidered graphics and CB logo trims add sophistication making this polo a perfect choice for any Texas Tech Red Raiders enthusiast
Features and Benefits
Officially licensed
Embroidered graphics
Short sleeve
Recycled content certified by Global Recycled Standard
DryTec technology wicks away sweat
Three-button placket
Self-fabric collar
UPF 50+
Four-way stretch
Material: 95% Recycled Polyester/5% Spandex
Imported
Brand: Cutter & Buck
Specifications
Sleeve length: Short Sleeve
Gender: Men'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();