iPhone 15 new Pro series diamond camera protective case

662sold
$9.90
Choose A Model:  For iPhone 15 Pro
Quantity
Share the love
Free worldwide shipping
Free 30 day returns
Sustainably made
Secure payments

๐Ÿ“ธ Enhanced Camera Protection: Our cutting-edge case is engineered to safeguard your iPhone advanced diamond camera system. A precision-fit design surrounds the camera module, providing a robust shield against accidental drops and impacts.

๐Ÿ’Ž Diamond-Inspired Aesthetics: Inspired by the brilliance of diamonds, this case exudes luxury and sophistication. The carefully crafted diamond pattern on the back adds a touch of elegance to your iPhone, making it a fashion statement in its own right.

๐ŸŒŸ Premium Materials: Crafted from premium materials, this case not only offers protection but also feels great in your hand. The blend of durable polycarbonate and shock-absorbing TPU ensures your iPhone is safe from everyday wear and tear.

๐Ÿ”’ Secure Grip: Our case features a non-slip texture that enhances your grip on the phone, reducing the risk of accidental drops. Feel confident while capturing precious moments or browsing your favorite apps.

๐ŸŒˆ Vibrant Color Options: Express your style with a wide range of vibrant color options. Choose the one that suits your personality and complements your iPhone 15 Pro.

๐Ÿ“ฑ Precise Cutouts: We've designed the case with precise cutouts to ensure full functionality. Access your ports, buttons, and features effortlessly, without compromising on protection.

โœจ Slim and Lightweight: Despite its exceptional protection, our case maintains a slim profile, preserving the sleek design of your iPhone 15 Pro. It's lightweight, so it won't add unnecessary bulk to your device.

๐ŸŒฆ๏ธ Weather-Resistant: Built to withstand the elements, our case is weather-resistant, keeping your iPhone safe from rain, dust, and everyday spills.

๐ŸŒ Eco-Friendly Packaging: We care about the environment. Our packaging is eco-friendly, reducing waste and our carbon footprint.

๐Ÿ† Quality Assurance: Backed by our commitment to quality, we offer a 1-year warranty, ensuring your satisfaction and peace of mind.

Region

Timeframe

Standard Carrier

Service standards

  • US

5-8 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-8 business days

Royal Mail

Priority Mail

  • Germany

5-10 business days

DHL

Priority Mail

  • Japan

5-8 business days

JP Post

Priority Mail

Other countries

10-18 business days

United Express

Priority Mail

We also ship to other countries and regions. Please check the checkout page for details.

Return Policy

1. If you are unsatisfied with the quality of the item(s) you received, you can submit a return request within 30 days of delivery. Which means you have 30 days after receiving your item to request a return.

2. If you have a defective or damaged item, you can Contact Support to our customer support team. They will investigate your case and issue you a replacement or refund.

3. If you wish to cancel an order that has already been shipped, you can choose to reject delivery or return the item upon its arrival. The shipping cost of the return will be borne by the buyer and the shipping cost of the original purchase will not be refunded.

4. We do not provide exchanges for products, but you may return unwanted products for a refund and place a new order for the product you would like.

5. If your item has not arrived or is missing. Please contact our customer support team directly for a review.

Return Instructions

1. For return requests please reply directly to your original order email or contact our customer support team.(support@xingjinlong.store)

2. We will process and respond to your return request within two business days when we receive your return request.

3. For returns, you will need to provide a valid order number and provide a reason for the return.

4. Returned products must be unused and kept in their original packaging with all included accessories.

5. Returns must include all items sent in the original package.

Refund Instructions

1. When your return request is approved, we will enter the refund step. (Request review is generally within 2 working days)

2. Your refund will be issued after the product is returned. The refund may take 2 to 7 business days to be processed and sent, depending on the payment method and bank.

3. For your security, the refund will be issued via the original payment method and to the original account you used when placing the order.

4. If your original order includes shipping costs, any shipping costs will not be refunded.

5. The shipping cost of the return will be borne by the buyer. (payment on receipt is not supported)

Black Friday Big Discounts

Limited time discounted price, act quickly!
View more
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 arrival