Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 151740680
ITEM: FD4329-009
Step into comfort and style with the Nike Men's Air Max Nuaxis Shoes. Breathable mesh uppers and synthetic overlays offer lightweight support and durability. Featuring Air Max cushioning technology in the heels, the shoes provide responsive impact absorption and all-day comfort, making them ideal for urban adventures and active lifestyles alike.
Features and Benefits
Mesh uppers are breathable and help your feet stay cool
Max Air cushioning midsoles offer comfortable support
Rubber outsoles gives you durable traction
Lace closures stabilize and support feet
Padded collars offer a comfortable fit
Specifications
Waterproof: No
Closure: Lace-Up
Shock absorption: Air Max cushioning, Responsive impact absorption
Activity: Lifestyle
Material: Mesh uppers, synthetic overlays
Gender: Men's
Electrical hazard (EH) rated: No
Water Resistant: No
Slip Resistant: No
Product Type: Shoes
Age Group: Adults'
Style: Athletic Shoes & Sneakers
Shoe Height: Low Top
What's in the Box
Nike Men's Air Max Nuaxis 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();