Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
This item may ship from a different location therefore only eligible for ground shipping. Additionally, this item is not eligible for APO/FPO delivery.
STYLE IT WITH
about this product
SKU: 158501260
ITEM: 640315
Stay safe at work wearing the PUMA Men's Safety Classic Heritage Composite Toe Work Boots. These low-top suede boots feature contoured Evercushion Relief footbeds for comfort and rubber soles that are heat- and slip-resistant for stability. The composite toes provide added protection on the job.
Features and Benefits
Suede uppers provide durability
Shock-absorbing EVA cushioning provides comfortable wear
Contoured Evercushion Relief footbeds provide added comfort
Rubber soles are heat- and slip-resistant for stability on the job
EH rated
Composite toes for added protection
Lace up closures
Specifications
Waterproof: No
Shock absorption: EVA cushioning
Activity: Work
Material: Suede
Safety Toe: Composite
Gender: Men's
Electrical hazard (EH) rated: Yes
Water Resistant: No
Slip Resistant: Yes
Boot height (in.): Low Top
Product Type: Boots
Age Group: Adults'
Style: Work Boots
What's in the Box
PUMA Men's Safety Classic Heritage Composite Toe Work Boots
Shipping Restriction: Currently we are not able to ship this product to the following state(s).
MN, NY
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();