.cart-page { max-width: 1000px; margin: 40px auto; padding: 0 20px; }
.empty-cart { text-align: center; padding: 60px 0; }
.btn-shop { display: inline-block; margin-top: 20px; background: #c59b27; color: #fff; padding: 12px 24px; border-radius: 8px; text-decoration: none; }
#cart-items { margin-bottom: 30px; }
.cart-item {
    display: flex; align-items: center; gap: 15px; padding: 15px;
    border-bottom: 1px solid #eee; background: #fff; border-radius: 8px; margin-bottom: 10px;
}
.cart-item .item-image img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; }
.cart-item .item-info { flex: 1; }
.cart-item .vendor { font-size: 0.85rem; color: #888; }
.item-qty { display: flex; align-items: center; gap: 5px; }
.item-qty button { width: 30px; height: 30px; border: 1px solid #ccc; background: #f5f5f5; cursor: pointer; border-radius: 5px; }
.item-qty input { width: 50px; text-align: center; border: 1px solid #ccc; border-radius: 5px; padding: 5px; }
.item-price, .item-total { font-weight: 600; }
.remove-item { background: none; border: none; color: #e74c3c; cursor: pointer; font-size: 1.1rem; }
.cart-summary { background: #f9f9f9; padding: 25px; border-radius: 12px; }
.coupon-section { display: flex; gap: 10px; margin-bottom: 20px; }
.coupon-section input { flex: 1; padding: 10px; border: 1px solid #ddd; border-radius: 6px; }
.coupon-section button { background: #c59b27; color: #fff; border: none; padding: 10px 20px; border-radius: 6px; cursor: pointer; }
.cart-totals > div { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #ddd; }
.total { font-weight: 700; font-size: 1.2rem; }
.checkout-btn { display: block; text-align: center; background: #c59b27; color: #fff; padding: 15px; border-radius: 8px; text-decoration: none; font-weight: 700; margin-top: 20px; }.cart-item-sale-badge { display: inline-block; background: #fdecea; color: #e74c3c; font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.3px; }
.cart-item-variation { display: block; font-size: 0.78rem; color: #c59b27; margin-top: 2px; }
#remove-coupon { background: #fff !important; color: #e74c3c !important; border: 1px solid #e74c3c !important; }
