/* ========== Cart Page ========== */
.cart-list { padding: 8px 12px; }
.cart-item {
  background: #fff; border-radius: 8px;
  padding: 12px; margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.cart-check {
  width: 20px; height: 20px; flex-shrink: 0;
}
.cart-check input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: #ff4757;
}
.cart-img {
  width: 80px; height: 80px; border-radius: 6px;
  flex-shrink: 0; object-fit: cover;
  background: #f5f5f5;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.cart-info { flex: 1; min-width: 0; }
.cart-name {
  font-size: 13px; line-height: 1.4;
  max-height: 36px; overflow: hidden;
}
.cart-spec { font-size: 11px; color: #999; margin-top: 4px; }
.cart-bottom {
  display: flex; align-items: center;
  justify-content: space-between; margin-top: 8px;
}
.cart-price { color: #ff4757; font-size: 15px; font-weight: 600; }

/* ========== Cart Bar ========== */
.cart-bar {
  position: fixed; bottom: 56px; left: 0; right: 0;
  height: 50px; background: #fff;
  display: flex; align-items: center;
  border-top: 1px solid #eee;
  padding: 0 12px; z-index: 50;
}
.cart-bar-check {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: #333;
}
.cart-bar-check input { accent-color: #ff4757; }
.cart-bar-total {
  flex: 1; text-align: right; padding-right: 12px;
}
.cart-bar-total-label { font-size: 13px; color: #333; }
.cart-bar-total-price { color: #ff4757; font-size: 16px; font-weight: 600; }
.cart-bar-btn {
  padding: 8px 20px; border-radius: 18px;
  background: linear-gradient(135deg, #ff4757, #ff6b81);
  color: #fff; font-size: 14px; font-weight: 500;
  cursor: pointer;
}
.cart-bar-btn.disabled { opacity: .5; }
