/* Cart Items Styling */
.cart-items { margin-bottom: 30px; }
.cart-item { padding: 20px 0; border-bottom: 1px solid #eee; }
.cart-item-header { display: flex; margin-bottom: 10px; }
.product-image { width: 80px; height: 80px; margin-right: 15px; flex-shrink: 0; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-info { flex-grow: 1; }
.product-title { font-size: 16px; font-weight: bold; margin: 0; }
.product-artist { font-size: 14px; margin: 0; color: #666; }
.product-details, .product-dimensions { font-size: 13px; margin: 0; color: #666; }
.remove-btn { margin-left: 10px; }
.cart-item-footer { display: flex; justify-content: space-between; align-items: center; }
.quantity-info { font-size: 14px; color: #666; }
.quantity-text { margin: 0; }
.price-info { text-align: right; }
.unit-price { font-size: 14px; color: #666; margin: 0; }
.total-price { font-size: 16px; font-weight: bold; margin: 0; }

/* Cart Summary Styling */
.cart-summary { padding-top: 20px; }
.subtotal-row, .shipping-row, .total-row { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 14px; }
.total-row { font-weight: bold; font-size: 16px; border-top: 1px solid #ddd; padding-top: 15px; }
.shipping-select { border: 1px solid #ddd; padding: 5px 10px; font-size: 14px; }
.cart-actions { margin-top: 30px; }
.checkout-btn, .continue-shopping-btn { display: block; width: 100%; background-color: #000; color: #fff; text-align: center; padding: 12px; text-decoration: none; margin-bottom: 10px; font-size: 14px; font-weight: bold; }
.view-basket-btn { display: block; width: 100%; background-color: transparent; color: #000; text-align: center; padding: 11px; text-decoration: none; border: 1px solid #000; font-size: 14px; font-weight: bold; }
.checkout-btn:hover, .view-basket-btn:hover, .continue-shopping-btn:hover { opacity: 0.9; text-decoration: none; color: inherit; }

/* Empty Cart Styling */
.empty-cart { text-align: center; padding: 40px 0; }
.empty-cart p { font-size: 16px; margin-bottom: 20px; }

/* Payment Options Styling */
.payment-options-section { margin-top: 25px; padding-top: 15px; border-top: 1px solid #eee; }
.payment-options-title { font-size: 14px; color: #666; margin-bottom: 10px; text-align: center; }
.payment-methods { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
.payment-icon-img { width: 60px; height: auto; } 