Plus take an additional 5% off when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 152280806
ITEM: 1027714
Keep your feet comfy in the Birkenstock Men's Birki Flow EVA Clogs . These versatile slip-on shoes have a backstrap that can be raised and lowered as you need. Flexible outsoles combine with a contoured footbed for comfortable wear, while the EVA uppers allow your feet to breathe. These shoes can be worn in the water and are easy to wash.
Features and Benefits
EVA uppers have breathable vents to keep feet cool
Water-friendly material for use in the shower or in rivers
EVA BIRKENSTOCK® footbed contours to the feet for all-day comfort
Flexible outsoles offer durability
Adjustable backstraps with molded buckles for versatile wear
Washable design
Specifications
Closure: Slip-On
Product Type: Shoes
Age Group: Adults'
Style: Clogs & Mules
Activity: Casual
Material: EVA
Gender: Men's
Shoe Height: Low Top
What's in the Box
Birkenstock Men's Birki Flow EVA Clogs
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();