Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 158390387
ITEM: BCS5CR10591
Keep your head safe with the Black Clover Men's Classic Rope 1 Adjustable Hat. Its snapback closure lets you determine your best wearing experience, and its polyester and spandex material can hold up in various conditions. Its white mesh fabric gives the hat breathability, and its crisp white crown offers support.
Features and Benefits
Material of polyester and spandex delivers durability
White mesh fabric sets relaxed feel
Crisp white crown gives structure strength
Snapback closure allows for custom fit
3D embroidered royal blue clover adds style
Royal and white rope across the top of the brim makes hat stand out
Hand wash with clean damp towel
Specifications
Closure: Snap
Product Type: Hats
Age Group: Adults'
Activity: Casual
Style: Cap
Gender: Men's
What's in the Box
Black Clover Men's Classic Rope 1 Adjustable Hat
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();