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: 135358894
ITEM: 5500-01E
The comfort of an insole and the support of an orthotic meet in PowerStep Bridge Adults’ Running Insoles. The adaptable arch support structure adapts to your foot, and dual-layer cushioning gives comfort where you need it most.
Features and Benefits
Flexible polypropylene arch structure for maximum support
Dual-layer cushioning of a top layer of memory foam and a PowerStep foam base layer builds in extra comfort
Moisture wicking polyester mesh top fabric helps keep you dry
Spot clean with mild detergent; do not immerse in water; air dry
Specifications
Product Type: Footwear Accessories
Age Group: Adults'
Style: Shoe Insoles & Inserts
What's in the Box
PowerStep Bridge Adults’ Running Insoles
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();