Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 122842302
ITEM: 1351551-001
Keep your chin safe and secure with the Under Armour Men's Spotlight Chin Strap. The Armour® Flex shell and EVA pad liner provide increased protection, while the strap adapter allows for high or low placement on your helmet.
Features and Benefits
Armour® Flex shell provides increased protection
EVA pad liner offers additional protection
Strap adapter allows for high or low placement
Specifications
Product Type: Protective Gear
Protective Gear Type: Football Helmet Accessories
Activity: Football
Style: Chin Straps
Gender: Men's
What's in the Box
Under Armour Men's Spotlight Chin Strap
Shipping Restriction: Currently we are not able to ship this product to the following state(s).
NY, MN
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();