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: 128157040
ITEM: 10029692
Show off your casual patriotic stlye in the Ariat Men's Rambler Patriot Boots. These cowboy-style boots feature durable leather uppers and Bantam weight outsoles that are 30% lighter than traditional outsoles for lightweight wear. The American flag embossed leather patch adds a patriotic touch.
Features and Benefits
Cowboy-style boots with durable leather uppers
ATS technology adds support and comfort
Bantam weight outsoles are 30% lighter than traditional outsoles for lightweight wear
American flag embossed leather patch adds a patriotic touch
Specifications
Waterproof: No
Product Type: Boots
Age Group: Adults'
Style: Western Boots
Activity: Casual
Gender: Men's
What's in the Box
Ariat Men's Rambler Patriot 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();