/* Mobile Cart Styles */
.mobile-cart-container { padding: 20px 15px; background: #f8f9fa; min-height: calc(100vh - 140px); }
.mobile-cart-header { background: #000; color: #fff; padding: 20px; margin: -20px -15px 20px -15px; text-align: center; }
.mobile-cart-item { background: #fff; border-radius: 12px; padding: 15px; margin-bottom: 15px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.mobile-cart-item-image { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; }
.mobile-cart-item-details { flex: 1; margin-left: 15px; }
.mobile-cart-item-title { font-size: 16px; font-weight: 600; margin-bottom: 5px; color: #333; }
.mobile-cart-item-category { font-size: 12px; color: #666; margin-bottom: 10px; }
.mobile-cart-item-price { font-size: 18px; font-weight: bold; color: #000; }
.mobile-quantity-controls { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.mobile-qty-btn { width: 35px; height: 35px; border: 1px solid #ddd; background: #fff; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 18px; color: #333; }
.mobile-qty-btn:active { background: #f0f0f0; }
.mobile-qty-value { font-weight: bold; min-width: 30px; text-align: center; }
.mobile-remove-btn { color: #dc3545; border: none; background: none; font-size: 20px; padding: 5px; }
.mobile-cart-summary { background: #fff; border-radius: 12px; padding: 20px; margin-top: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.mobile-total-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 18px; font-weight: bold; }
.mobile-checkout-btn { width: 100%; background: #000; color: #fff; border: none; padding: 15px; border-radius: 8px; font-size: 16px; font-weight: 600; margin-top: 15px; text-decoration: none; display: block; text-align: center; }
.mobile-continue-shopping { width: 100%; background: transparent; color: #000; border: 2px solid #000; padding: 12px; border-radius: 8px; font-size: 14px; margin-top: 10px; text-decoration: none; display: block; text-align: center; }
.mobile-empty-cart { text-align: center; padding: 60px 20px; background: #fff; border-radius: 12px; margin-top: 20px; }
.mobile-empty-cart-icon { font-size: 60px; color: #ddd; margin-bottom: 20px; }
.mobile-empty-cart h3 { color: #333; margin-bottom: 10px; }
.mobile-empty-cart p { color: #666; margin-bottom: 30px; }
@media screen and (min-width: 769px) { .mobile-cart-container { max-width: 500px; margin: 0 auto; } } 