Dragon Ball Silver Line Phone Case

99 sold

500+ styles! Update every day~

$19.00
$29.00
-34%
(Tax included)
color:  D03
Quantity
Shipping
Description

Brand: ZUIHANG
Features: Shockproof
Element: Anime,Silver Line
Style: 2D/Cartoon
Texture: Silicone/Soft Case
Design: Full Frame Protection
Pattern: Silver Line
Craftsmanship: Printing
Material: Silicone
Compatible Models: Apple/Samsung/Huawei/OPPO/Vivo/Honor/Xiaomi etc.

The Anime Style Silver Line Shockproof Phone Case combines style and functionality with its anime-inspired design and sleek silver line pattern. Made from high-quality silicone, this soft case offers superior protection from drops and bumps with its full-frame design and shock-resistant technology. Precise cutouts allow easy access to all ports and buttons, while its lightweight, slim profile makes it comfortable to hold. Compatible with a wide range of phone models, this case is perfect for anyone looking to show off their love of anime while keeping their device safe and stylish.

Shipping & Returns

All orders are shipped by our team directly from our main warehouses in Japan and Hong Kong.

Shipping costs are determined by the logistics time of each country. Simply add products to your cart and use the shipping calculator to see shipping costs.

For international orders (outside the U.S.), we do not prepay customs fees or import taxes, so you may need to pay these when your package arrives, depending on your country /region processing.

We want you to be 100% satisfied with your ZUIHANG purchase. Items may be returned or exchanged within 30 days of delivery.

Read more about shipping and returns here.

12 months warranty

Terms & Conditions
We’re sorry to hear that you are experiencing warranty issues! We are happy to assist you with any problems you encounter while using our products. Photos are required for all product issues/warranty claims.

12-Month International Warranty – We’ve got you covered
Every ZUIHANG case purchase comes with a one-year warranty. ZUIHANG is pleased to provide one (1) free replacement for each product purchased within 2 years of purchase. This warranty is valid regardless of the cause of the damage or problem. We just ask that you pay for shipping! Replacement orders must be placed within 7 days of receipt of the discount code.

Read more here

FAQ

How to confirm whether the product is in stock?
You can check the inventory status on the product page. "In stock" is not displayed by default, so you can buy it immediately. If "Out of stock" is displayed, you can choose to subscribe to notifications and you will be notified immediately when the product is restocked.

Does the product come with warranty service?
Yes, all products enjoy standard warranty service. Please refer to the warranty description of each product for the specific warranty period and scope. If you encounter quality problems, you can enjoy warranty service with proof of purchase.

Can I return or exchange goods?
Yes, if you are not satisfied with the product or it is defective, we provide a 7-day no-reason return and exchange service. The product must be brand new and fully packaged. Please refer to our return policy page for specific return and exchange policies.

What payment methods are available?
We support a variety of payment methods, including credit card, PayPal, bank transfer and online payment systems. Specific payment methods can be viewed on the checkout page.

How long does it take for delivery?
Delivery time depends on the area. Under normal circumstances, orders will be processed and shipped within 1-3 working days after payment confirmation. You can check the specific logistics information on the order page.

How to track my order?
After your order ships, you will receive a text message or email containing the tracking number. You can use this tracking number to check the status of your order on the logistics company's website, or log in to check the order details on our website.

If there is a problem with the product, how should I contact customer service?
If you have any problems or questions about the product, you can contact us through our customer service hotline, email or online customer service, and we will provide you with assistance as soon as possible.

Any other questions?
Our top priority is customer satisfaction, and we strive to provide high-quality products and a smooth shopping experience. If you have more questions, Read more here

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.