.cart-section {
  padding: 4rem 2rem;
  background: rgb(34, 20, 20); /* dark wine/burgundy */
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #fff;
}

.cart-container {
  max-width: 1000px;
  margin: auto;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1e1e1e; /* darker background for contrast */
  border: 1px solid #c19977; /* gold-ish border */
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  color: #fff;
}

.cart-img {
  width: 100px;
  border-radius: 8px;
  border: 1px solid #fff;
}

.cart-details {
  flex: 1;
  margin-left: 1rem;
}

.cart-details h3 {
  font-size: 1.2rem;
  color: #f6e7d7; /* soft gold-pink text */
}

.cart-details p {
  font-size: 0.9rem;
  color: #ccc;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.quantity-controls button {
  padding: 0.3rem 0.6rem;
  border: none;
  background: #c19977; /* gold-ish */
  color: black;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}

.cart-price {
  font-weight: bold;
  color: #f6e7d7;
  font-size: 1.2rem;
}

.remove-btn {
  background: transparent;
  border: none;
  color: #ff6b6b;
  font-size: 1.2rem;
  cursor: pointer;
}

.cart-summary {
  text-align: right;
  margin-top: 2rem;
}

.cart-summary h3 {
  font-size: 1.5rem;
  color: #fff;
}

.cart-summary span {
  color: #c19977;
}

.checkout-button {
  padding: 0.8rem 1.5rem;
  background: #c19977;
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.3s ease;
}

.checkout-button:hover {
  background: #d4af7f;
}
