Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 139410776
ITEM: 51791
Birkenstock's two-strap classic, the Arizona features their iconic original contoured cork footbed for all day support. Featuring a synthetic leather upper, it's perfect for casual errands, post-hike adventures, or anywhere in between.
Features and Benefits
Contoured cork footbed conforms to the shape of the feet for personalized support
Hard-wearing synthetic Birko-Flor® upper boasts a texture and color that could almost be mistaken for real leather
Lightweight EVA soles provide cushioning and shock absorption
Made in Germany
Roomy toe box allows toes plenty of freedom and full movement
Deep heel cup cradles the foot and supports proper alignment
Four distinct arches provide full-foot support, ideal for recovery or all-day wear
Specifications
Closure: Slip-On
Product Type: Sandals & Slides
Age Group: Adults'
Style: Slip-On
Activity: Casual
Gender: Men's
What's in the Box
Birkenstock Men's Arizona Birko-Flor Sandals
User Manual
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();