/* Cart */
.cart-item {
  background: linear-gradient(135deg, #fff8dc 0%, #fffacd 100%);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(184, 134, 11, 0.2);
  border: 1px solid #daa520;
}

.cart-item-info {
  flex: 1;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quantity-btn {
  background: #b8860b;
  color: #fff8dc;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
}

.quantity-btn:hover {
  background: #daa520;
}

.remove-btn {
  background: #8b4513;
  color: #ffd700;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.remove-btn:hover {
  background: #a0522d;
}

.cart-total {
  background: linear-gradient(135deg, #fff8dc 0%, #fffacd 100%);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  margin-top: 2rem;
  box-shadow: 0 5px 20px rgba(184, 134, 11, 0.2);
  border: 2px solid #daa520;
}

.checkout-btn {
  background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
  color: #fff8dc;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}
