Plus take an additional 5% off when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 145258395
ITEM: SE7514
Meet the Justin Men's 11 in Canter Western Work Boots, the timeless classic western available in great colorways. A rugged, edgy and authentically western boot, the Canter features wide square toes with orthotic inserts to provide plenty of room and comfort throughout the day. The water buffalo leather adds to the rugged western style while the rubber outsoles keep you planted safely on your feet no matter what the conditions are.
Features and Benefits
Rugged water buffalo leather uppers built for lasting wear and timeless western style
Rubber outsoles deliver reliable traction in most conditions
Orthotic inserts provide plenty a roomy, comfortable feel
Square-shaped toes
Walking/block style heels
11-inch boot height
Specifications
Waterproof: No
Shock absorption: No
Activity: Work
Material: Leather
Safety Toe: Soft
Gender: Men's
Electrical hazard (EH) rated: No
Water Resistant: No
Slip Resistant: Yes
Boot height (in.): 11 in.
Product Type: Boots
Age Group: Adults'
Style: Western Boots
What's in the Box
Justin Men's 11 in Canter Western Work Boots
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();