DropShield Carbon Fiber Kickstand Case

Original price was: ₹2,799.00.Current price is: ₹1,599.00.

📦 Convenient Cash on Delivery Option Available

🔒 For Security Reasons, Open Delivery is Not Permitted

🚚 Swift Delivery within 2-5 Working Days

⭐ Trusted by Over 1 Million Customers Nationwide

🚚 Dispatched within 24 hours.

DropShield Carbon Fiber Kickstand Case

Ultimate Protection. Effortless Convenience. Unmatched Style.
Designed for those who demand durability without compromising on elegance, the DropShield Carbon Fiber Kickstand Case offers military-grade drop protection, MagSafe compatibility, and an integrated kickstand for hands-free convenience. Engineered with rugged TPU edges and a premium carbon fiber texture, this case ensures your iPhone stays safe from drops, shocks, and daily wear.
Key Features:
✅ 🚀 Military-Grade Drop Protection – Shock-absorbing TPU sides and reinforced corners provide 360° impact resistance, keeping your device secure even from accidental drops.
✅ 🧲 MagSafe Compatibility – Built-in MagSafe ring ensures seamless compatibility with wireless charging and magnetic accessories like wallets and car mounts.
✅ 💎 Premium Carbon Fiber Texture – A sleek, scratch-resistant carbon fiber back enhances grip while giving your iPhone a sophisticated, sporty look.
✅ 📱 Built-In Kickstand for Hands-Free Use – Pop out the sturdy metal kickstand to enjoy video calls, streaming, or browsing in both portrait and landscape modes.
✅ 🔄 Raised Bezels for Extra Protection – Slightly elevated edges around the screen and camera prevent scratches and damage when placed on flat surfaces.
✅ ⚡ Slim Yet Rugged Design – Lightweight and slim without compromising on durability, making it perfect for everyday use.
✅ 🎯 Precise Cutouts & Responsive Buttons – Designed with exact cutouts for ports, speakers, and MagSafe accessories, plus tactile buttons for smooth operation.
📢 Perfect for:
✔️ Professionals who need a sleek yet protective case
✔️ Travelers looking for extra durability & hands-free convenience
✔️ Content consumers who love watching videos without holding their phone

Model

iPhone 16 Pro, iPhone 16 Pro Max

Style

Black, Desert Titanium

Reviews

There are no reviews yet.

Be the first to review “DropShield Carbon Fiber Kickstand Case”

You may also like…

-57%
+
This product has multiple variants. The options may be chosen on the product page
(3) Original price was: ₹3,499.00.Current price is: ₹1,499.00.
-68%
+
This product has multiple variants. The options may be chosen on the product page
(1) Original price was: ₹4,999.00.Current price is: ₹1,599.00.
-28%
+
This product has multiple variants. The options may be chosen on the product page
(5) Original price was: ₹2,499.00.Current price is: ₹1,799.00.
-50%
+
This product has multiple variants. The options may be chosen on the product page
(3) Original price was: ₹2,999.00.Current price is: ₹1,499.00.
document.addEventListener("DOMContentLoaded", function () { function updateMiniCartMessage() { let items = document.querySelectorAll('.woocommerce-mini-cart-item'); if (items.length === 0) return; let totalQty = 0; let totalOriginal = 0; items.forEach(item => { let qtyEl = item.querySelector('.quantity'); let priceEl = item.querySelector('.amount'); if (qtyEl && priceEl) { // 🔢 extract qty (e.g. "2 × ₹1599") let qtyText = qtyEl.innerText; let qtyMatch = qtyText.match(/\d+/); let qty = qtyMatch ? parseInt(qtyMatch[0]) : 1; // 💰 extract price let price = parseInt(priceEl.innerText.replace(/[^\d]/g, '')); totalQty += qty; totalOriginal += price * qty; } }); // 🎯 offer logic let offerPrice = 0; if (totalQty >= 4) { offerPrice = 3499; } else if (totalQty == 3) { offerPrice = 2999; } else if (totalQty == 2) { offerPrice = 2499; } else { offerPrice = 0; } // 💰 saving let saving = totalOriginal - offerPrice; // 🧠 message let message = ""; if (totalQty >= 2) { message = `🔥 You saved ₹${saving}`; } else { message = "🛒 Add 2 items to unlock offer"; } // ❌ remove old let old = document.querySelector('.offer-msg-mini'); if (old) old.remove(); // ✅ create new let msg = document.createElement("div"); msg.className = "offer-msg-mini"; msg.innerText = message; msg.style.padding = "10px"; msg.style.fontSize = "13px"; msg.style.fontWeight = "600"; msg.style.background = "#000"; msg.style.color = "#fff"; msg.style.textAlign = "center"; // 📍 insert above product list let miniCart = document.querySelector('.woocommerce-mini-cart'); if (miniCart) { miniCart.parentNode.insertBefore(msg, miniCart); } } // 🔁 run multiple times (Flatsome AJAX fix) setTimeout(updateMiniCartMessage, 500); setTimeout(updateMiniCartMessage, 1200); setTimeout(updateMiniCartMessage, 2000); // 🛒 run when cart opens document.body.addEventListener("click", function(e){ if(e.target.closest('.cart-icon, .header-cart-link')){ setTimeout(updateMiniCartMessage, 500); } }); });