Highlight Purple 14.0mm Contact Lenses(12 months wear) (2025)

Highlight Purple 14.0mm Contact Lenses(12 months wear) (1)

1/2

Description

  • Water content: 38%
  • Material: HEMA
  • Base curve: 8.4mm
  • Thickness: 0.08mm
  • Diameter: 14.0mm G.DIA:13.5mm
  • Period of use: 12 months
  • Packaging: 1 Pair (2 lenses) + Lens case

*Packaging Updating. New and old packaging will be shipped randomly.

*Lenses on different eye color will show different effects. Pictures for reference only.

✈️ Shipping policy

Highlight Purple 14.0mm Contact Lenses(12 months wear) (2)

SHIPPING INFO
We ship all over the world and always do the best to make sure the items get delivered to our customers as quickly as possible.

Please confirm your address when placing an order.


We can help correct the address before the package is shipped.


If the delivery fails due to incomplete or incorrect address, the recipient shall be responsible for it.

Liquids cannot be transported to India.


VERIFICATION
A confirmation email will be sent to you once the order is authorized and verified. We begin preparing your order immediately after it is verified.Within 12H, it makes it difficult for us to change or cancel your order.If you are in a situation where you can cancel, you need to add 15% handling fee
PROCESSING TIME
Usually, we need 3-10 days to prepare for orders, because we should check every product and make sure that is in good condition before shipment.The goods are only sent out on working days.
Expedited transportation with pens and electrical appliances takes at least 10 days.

SHIPPING METHODS
Most shipping methods are available in our company, including e-packet, CNE, China Post etc.
SHIPPING FEE
We offer free standard shipping for orders over $60.
Note that the express time marked by express does not include the parcel processing time.

Note: Total Delivery Time = Processing Time + Shipping Time

DELIVERY
Delivery to delivery time may 5~27 Business Days, depending on the items and the way of transportation.
Sometimes, the accumulation of goods will cause the logistics company's online logistics information update to be delayed for a long time, but in fact your goods are still being transported, In our experience, it always comes without exception. Thank you for your patience!
Special cases , you buy multiple items, We will send in several packages.
Because the customer’s own address was filled in incorrectly, the delivery of the package failed, and the customer had to bear the relevant expenses. When filling in the address, be sure to fill in the correct address

For current shipping times in your country/region.

Standard shipping

AreaDelivery time (estimated business day)
Free deliveryUnited States (East of the United States is faster than the West of the United States)8-20
Australia, United Kingdom, Germany, France, Italy, Spain, Netherlands, Poland, Finland, Belgium, Denmark, Greece, Ireland, Switzerland, Sweden8-22
Japan, Thailand5-12
Canada, Russia, Israel, New Zealand, Lithuania, UAE, Saudi Arabia, Romania, Luxembourg12-30
Estonia, Bulgaria, Austria, Czech Republic, Croatia, Latvia, Slovenia, Malta, Portugal, Cyprus, Slovakia, Hungary, Mexico, Turkey, Kuwait, Ukraine15-30

Receipt note:

If the outer packaging of the package you received is damaged, please take a photo to reject it and contact our customer service.

VAT:
In some cases, there is a small probability that VAT or other taxes will be charged, such as customs duties or fees levied by the destination country. Sorry, we cannot control these costs, so we cannot predict the amount. The customs and tax policies of various countries vary greatly. You should refer to local customary laws and inform us about the requirements after ordering; when customs clearance procedures are required, our estimated delivery time may be delayed. The payee must pay additional taxes or customs clearance fees.

LOGISTICS INFORMATION QUERY
You can log in towww.17track.netfor inquiries. If the package arrives in the destination country, you can also log in to the official website of the local post office for details. If you are an urgent customer, you can log in to the official website of Ups, Tnt, Dhl, and Fedex to inquire. If you have any question, you can contact customer service:mikolenstudio@gmail.com

Convert From Glasses RX

Description

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

×

Highlight Purple 14.0mm Contact Lenses(12 months wear) (3)

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.

Highlight Purple 14.0mm Contact Lenses(12 months wear) (2025)

References

Top Articles
Latest Posts
Recommended Articles
Article information

Author: Otha Schamberger

Last Updated:

Views: 6709

Rating: 4.4 / 5 (75 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Otha Schamberger

Birthday: 1999-08-15

Address: Suite 490 606 Hammes Ferry, Carterhaven, IL 62290

Phone: +8557035444877

Job: Forward IT Agent

Hobby: Fishing, Flying, Jewelry making, Digital arts, Sand art, Parkour, tabletop games

Introduction: My name is Otha Schamberger, I am a vast, good, healthy, cheerful, energetic, gorgeous, magnificent person who loves writing and wants to share my knowledge and understanding with you.