Free shipping over $40
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
2 / 15
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case
33% OFF
Save $10.00
goodidealshop-com

iPhone Ultra-thin Carbon Fiber Magnetic Charging Phone Case

$19.99 $29.99
0 sold
Color
Specification
Qty

🔥BUY ANY 2 VARIANTS GET EXTRA 10% OFF & FREE SHIPPING🔥

🔥BUY ANY 3 VARIANTS GET EXTRA 20% OFF & FREE SHIPPING🔥

(No need to use promotional codes, the system will automatically reduce the price after adding to the shopping cart.)

🔥The price is limited!🔥 Grab yours as the limited promotion available!

⏰Handling time>> Priority is given to delivery after payment.
😊Returns>> Fast refund for any product quality issues within 30 days, support return.
🚢Shipping>>We'll arrange the fastest shipping for you. Free Shipping On Orders Over $40
🏆After Sales Service>>If you are not satisfied with the goods received, please contact us within 15 days after receipt, and we will give you the best help! Please don't worry!

 

【Carbon Fiber and PC Material】: It is made with high-quality carbon fiber with super anti-drop protection, with raised floating-point design on both sides, the phone case will not slip out of the hand easily and slim design slips into pockets quickly.

1:1 Slim Fit, Sensitive Button, and Support Wireless Charging: The buttons of this slim-fit cover are in the exact spot, both the volume button and the switch button can be easily pressed, supports wireless charging with case on and the charging port is also expanded to fit most charging cables.

Multi-protection:
The four corners use shock-resistant airbags, which can absorb and disperse 99.99% of the impact of falling. The frame is designed slightly higher than the camera and screen, whether there are bumps or scratches, it can overcome almost anything and provide excellent protection.


What makes our shell so special?


✔️​ DUST FREE LOUDSPEAKERS:
The Magnetic charging Carbon Fiber Texture Case keeps any dust away from your speakers so they keep their clean sound.

✔️​ UNIQUE DESIGN:
The special design allows you to enhance the original look of your phone and express your own stylish personality.

✔️​ PROTECTION:
Raised bezels provide protection for the screen and camera. Full protection from scratches, daily wear and tear and drops.

✔️​ MILITARY GRADE MATERIAL:
Made of ultra-light and durable materials that are very comfortable and elegant in the hand.

✔️​ MAGNETIC CHARGING FUNCTION:
The Magnetic charging Case supports charging with Magnetic charging.


Special design
Our Magnetic charging durable high-end aramid fiber Case makes your iPhone something unique. It becomes an eye-catcher and in addition it gets the best possible protection.

 

OUR GUARANTEE

We take pride in our products as we believe they are amazing. However, we understand that buying things online can be daunting, especially for the first time, so we offer a 100% satisfaction guarantee.

If you don't have a positive experience for any reason, we will do whatever it takes to make sure you are 100% satisfied with your purchase.

HOW TO PAY

If you want to checkout with Credit Card. Please Click Paypal and Search for ‘Pay with Debit or Credit Card’
Enter your Payment details, your Billing Address, and your Contact Information.

 

/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1711005325228').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);