/* -----------------------------
   CART PAGE CSS
-------------------------------- */

.cart-items {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.cart-item {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.cart-item:last-child {
  border-bottom: none;
}

.product-info {
  gap: 20px;
}

.product-image img {
  width: 120px;
  border-radius: 10px;
}

.product-details .product-title {
  font-weight: 600;
}

.product-meta span {
  font-size: 14px;
  color: #666;
  margin-right: 10px;
}

.remove-item {
  background: none;
  border: none;
  color: #ff4d4d;
  font-size: 14px;
  cursor: pointer;
}

/* Quantity */
.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn {
  background: #eee;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
}

.quantity-input {
  width: 50px;
  text-align: center;
  margin: 0 8px;
}

/* Cart Summary */
.cart-summary {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.summary-item,
.summary-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.summary-total {
  font-size: 20px;
  font-weight: 700;
}

.btn-accent {
  background: #0d6efd;
  color: #fff;
}
