Gameday Couture Arkansas Razorbacks Find Your Groove Split-Dye T-Shirt
$39.99
$37.99$37.99 with Academy Credit Card
Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 143639573
ITEM: 2TW203-ARK430
The Women's Gameday Couture Cardinal Arkansas Razorbacks Find Your Groove Split-Dye T-Shirt is the perfect way to show your support for the Arkansas Razorbacks With its distressed screen print graphics and rib-knit collar this shirt is both stylish and comfortable The unique split-dye design may vary making each shirt one of a kind Whether you're cheering on the Razorbacks at the game or just showing your support around town this shirt is sure to turn heads
Features and Benefits
Officially licensed
Brand: Gameday Couture
Imported
Split-dye design may vary
Crew neck
Short sleeve
Machine wash, tumble dry low
Screen print graphics
Material: 52% Cotton/48% Polyester
Rib-knit collar
Distressed screen print graphics
Specifications
Origin: Imported
Compression: No
Clothing Type: T-Shirts
Neckline: Crew Neck
Sleeve length: Short Sleeve
Activity: College Sports
Material: 52% Cotton/48% Polyester
Heat Retention: No
Gender: Women's
Size Range: Women's
Moisture Wicking: No
Care: Machine wash, tumble dry low
Product Type: Shirts
Flame Resistant: No
Age Group: Adults'
Style: T-Shirts
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();