🎁Package with Brand Box🎀

Classic Monogram leather Coin Purse with Carabiner

$18.89
$189.00
Save $170.11
Choose A Color : Small Monogram
Quantity
Description
  1. Size: 110mm *65mm
  2. Iconic LV Monogram: Crafted from the legendary LV Monogram canvas, this coin purse is an instant symbol of luxury and sophistication. The instantly recognizable pattern showcases your impeccable taste and appreciation for timeless elegance.

  3. Compact and Versatile: Despite its petite size, this coin purse offers remarkable versatility. It's designed to hold your coins, keys, and other small essentials, keeping them organized and easily accessible. Attach it to your bag, belt loop, or keychain using the included carabiner for effortless portability.

  4. Durable Craftsmanship: Meticulously constructed from high-quality materials, the coin purse is built to withstand daily use and the test of time. The LV Monogram canvas is known for its resilience, ensuring your coin purse retains its beauty even after years of use.

  5. Secure Closure: The secure zip-around closure ensures that your valuables remain safe and sound within the coin purse. No more worries about coins or keys accidentally falling out – your essentials are always protected.

  6. Elevated Convenience: The addition of a carabiner elevates the coin purse's functionality. Clip it onto your bag or belt for quick access, or attach it to your keys for a stylish twist on practicality. It's an essential accessory for those who value efficiency without compromising on aesthetics.

  7. Ideal Gift Choice: Whether you're treating yourself or surprising someone special, the LV Classic Monogram Leather Coin Purse with Carabiner is an exquisite gift choice. Its iconic design and utility make it a thoughtful present for birthdays, holidays, or any occasion.

  8. Timeless Appeal: The LV Monogram is synonymous with enduring style, making this coin purse a versatile accessory that effortlessly complements a range of outfits – from casual ensembles to more polished looks.

  9. Attention to Detail: Every aspect of the coin purse, from the precision of the monogram placement to the quality of the zipper, reflects LV's commitment to meticulous craftsmanship. It's a testament to the brand's dedication to excellence.

Elevate your everyday carry with the LV Classic Monogram Leather Coin Purse with Carabiner. It's not just a coin purse; it's a statement piece that combines luxury, convenience, and enduring style. Rediscover the joy of effortless organization and showcase your appreciation for iconic design.

Delivery times

Region

Timeframe

Standard Carrier

Service standards

  • USA

5-10 business days

USPS

Priority Mail

  • Canada

7-15 business days

Canada Post

Priority Mail

  • Australia

5-12 business days

Aramex AU

Priority Mail

  • UK

5-10 business days

Royal Mail

Priority Mail

  • Germany

5-10 business days

DHL

Priority Mail

  • Japan

5-10 business days

JP Post

Priority Mail

If your shipping address is not in the countries listed above, please find it from the shipping address on the checkout page.

Customer Reviews

Here are what our customers say.

Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.

new arrivals