Smartphones
+Our Work
-
-
-
-
- diff --git a/pom.xml b/pom.xml
index 1f5d3c472..857b256e3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
We create beautiful and functional living spaces tailored to your needs.
-Designing workspaces that inspire productivity and creativity.
-Expert advice to help you make the best design decisions.
-
-
-
-
- ₹${product.price.toLocaleString('en-IN')}
+ +Your cart is empty
'; + document.getElementById('cart-total').style.display = 'none'; + } else { + document.getElementById('cart-total').style.display = 'block'; + let totalAmount = 0; + + cart.forEach(item => { + const itemTotal = item.price * item.quantity; + totalAmount += itemTotal; + + const cartItemElement = document.createElement('div'); + cartItemElement.className = 'cart-item'; + cartItemElement.innerHTML = ` +${item.title}
+₹${item.price.toLocaleString('en-IN')} x ${item.quantity} = ₹${itemTotal.toLocaleString('en-IN')}
+