Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 155408967
ITEM: IF2624-002
Create a comfortable experience for your feet when you wear the Nike Men's Air Max BIA Shoes. Their sleek mesh upper helps keep your feet cool. The textile upper enhances breathability, and their foam midsole improves comfort. The rubber waffle outsole gives you durable traction and heritage style.
Features and Benefits
A sleek mesh upper helps keep your feet cool
Textile upper enhances breathability
Foam midsole improves comfort
Rubber waffle outsole gives you durable traction and heritage style
Max Air unit in the heel provides lightweight cushioning
Specifications
Waterproof: No
Closure: Lace-Up
Product Type: Shoes
Age Group: Adults'
Style: Athletic Shoes & Sneakers
Shock absorption: Max Air unit in heel, foam midsole
Activity: Fitness
Material: Textile
Gender: Men's
Shoe Height: Low Top
Water Resistant: No
What's in the Box
Nike Men's Air Max BIA Shoes
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();