Vintage Pearl Choker Necklace

18K Gold Plated S925 Silver

$49.00
$59.00
Quantity
people are viewing this right now
Standard shipping fee is $5.90. Free shipping for orders over $50.
30 Days Returns
1 year warranty
Delivery within 6-10 business days
Description
Material: S925 silver with 18K gold plating/natural pearls
Color: Vintage gold
Size: Approximately 35 cm + 5 cm extension chain; pearls: 3-3.5 mm; metal beads: 2 mm

About 18K gold vermei.Baroque pearls

About 18K vermeil gold:Our meticulously crafted 18K gold-plated jewelry will not tarnish, with an extra-thick layer of gold plating on 925 silver, reinforced by electrolysis. This ensures that the jewelry will never tarnish and is guaranteed to shine for years to come.

Natural Freshwater Pearls,Baroque pearls:Each shell pearl is hand-selected for use in creating our jewelry. A gift of nature, each baroque pearl has a different shape, warm luster, romance and personality.

Jewelry Care

How to store?

Store your jewelry separately in a cool, dry place such as jewelry box to prevent damage and discoloration.

How to clean?

Clean your jewelry regularly with a soft-bristled brush and mild soap solution.

What to avoid?

Be gentle when handling your jewelry and avoid exposing it to harsh chemicals (such as chlorine, detergent or perfume) and extreme temperatures.

What not to do?

Remove your jewelry before engaging in strenuous activities or exposing it to water or swimming.

Free shipping and returns

Standard Shipping: USA and Canada. New Zealand. Australia. Delivery time is approximately 6-10 business days for Singapore and 7-12 business days for other regions and countries. We need 12-24 hours to process your order after order confirmation.

FREE RETURNS: We want you to feel comfortable and at ease when shopping with luna wish, so we offer a 30-day return policy. We hope you understand that personalized products and earrings cannot be refunded or exchanged (unless defective), however, if you have any questions about your order, please contact our friendly customer service team who will be happy to advise you further.

To arrange an exchange or return, Please send an email to services@xiut88.top , our friendly team will be happy to help you.

One chain, three ways to wear it, endless styles

From the workplace to a date, from everyday wear to a dinner party, one necklace meets all your beauty needs. The warm luster of natural pearls and the exquisite craftsmanship of 18K gold make every time you wear it an expression of elegance.
  • Classic Necklace · Timeless Elegance

    Lustrous pearls, glowing at your collarbone

    Worn around the neck, the natural pearl sheen and 18K gold accents create a refined, graceful look. Perfect for both office wear and romantic outings—effortlessly enhances your charm.

  • Double-Layer Bracelet · Wrist Chic

    One piece, endless elegance at your fingertips

    Wrap it twice around your wrist to transform into a layered pearl bracelet. Lightweight and graceful, ideal for daily wear—adds a touch of sophistication to every gesture.

  • Layered Look · Fashion with Depth

    You’re unique—your style should be too

    Layer it with other necklaces to create your own fashion statement. Mix fine or bold chains for contrast and depth, expressing your creativity with every outfit.

Craftsmanship and quality assurance

Craftsmanship and quality assurance

Luna Wish jewelry is crafted with care and strict quality control, from material selection to final polish. Each piece includes certified material documentation, ensuring confidence in both wearing and gifting.

Learn more

The Story of Luna Wish

The Story of Luna Wish

At Luna Wish, we believe that jewelry is more than just an accessory—it is a silent expression of love, hope, and memories. Each piece is crafted with emotion, carefully designed to commemorate your peaceful moments and precious connections.

Discover More

Elegant Gift Wrapping

Elegant Gift Wrapping

Each product is carefully packaged to make it a perfect gift or a meaningful treat for yourself, full of elegance and joy

Shop now
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.

Sign up and save

Subscribe to get special offers, free giveaways, and once-in-a-lifetime deals.