Your Cart is Empty
Looks like you haven't added anything yet.
Discover our amazing products!
Return to Shop
--- /absolute/path/to/Untitled-1.html
+++ /absolute/path/to/Untitled-1.html
@@ -34,9 +34,11 @@
/* Main Flex Layout */
.widget_shopping_cart_content {
- display: flex;
- flex-direction: column;
- height: 100%;
+ display: flex !important;
+ flex-direction: column !important;
+ height: 100% !important;
+ max-height: 100% !important;
+ overflow: hidden !important;
}
/* Free Shipping Tracker */
.alikart-shipping-tracker {
+ flex: 0 0 auto !important;
background: #f8fafc !important;
border: 1px solid #e2e8f0 !important;
@@ -64,10 +66,11 @@
/* Scrollable Item List - Fixed Horizontal Bleed */
.woocommerce-mini-cart.cart_list {
+ flex: 1 1 auto !important;
overflow-y: auto !important;
overflow-x: hidden !important;
- max-height: 55vh !important;
+ max-height: none !important;
padding-right: 5px !important;
margin: 0 !important;
display: block !important; /* Changed from flex to block to override grid logic */
@@ -134,10 +137,14 @@
/* Footer Area */
.alikart-cart-footer {
- background: #fff;
- padding-top: 15px;
- border-top: 1px solid #e2e8f0;
- margin-top: 15px;
+ flex: 0 0 auto !important;
+ background: #fff !important;
+ padding-top: 15px !important;
+ border-top: 1px solid #e2e8f0 !important;
+ margin-top: auto !important;
+ position: sticky !important;
+ bottom: 0 !important;
+ z-index: 100 !important;
}
.woocommerce-mini-cart__total { display: flex !important; justify-content: space-between !important; align-items: center !important; font-size: 16px !important; font-weight: 700 !important; color: #0f1111 !important; margin-bottom: 15px !important; }
.woocommerce-mini-cart__buttons { display: flex !important; flex-direction: column !important; gap: 10px !important; margin: 0 !important; }
@@ -165,7 +172,7 @@
/* Mobile Height Adjustments */
@media (max-width: 768px) {
.woocommerce-mini-cart.cart_list {
- max-height: calc(100vh - 280px) !important;
+ /* Removed fixed max-height, flex handles it */
}
.alikart-cart-footer {
padding-bottom: 20px !important;