.product-image {
  width: 70px;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}
/* cart-page.css */

.cart-page {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0,0,0,0.08);
}

.cart-page h1 {
  font-size: 28px;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  display: flex;
  align-items: center;
}

.cart-page h1 i {
  margin-right: 10px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.cart-table th, .cart-table td {
  text-align: left;
  padding: 1rem;
  border-bottom: 1px solid #ddd;
}

.cart-table th {
  background-color: #f4f6f8;
  font-weight: 600;
  color: #22336b;
}

.product-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-info img {
  width: 70px;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

.cart-summary {
  text-align: right;
  font-size: 18px;
  color: #1a1a1a;
}

.checkout-button {
  background-color: #22336b;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.remove-item {
  color: #e53935;
  text-decoration: none;
  margin-left: 1rem;
}

input[type="number"] {
  width: 60px;
  padding: 5px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

