.cart-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px auto;
  max-width: 1400px;
}

.cart-left h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 25px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}

.cart-item {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 10px;
  align-items: flex-start;
}

.product-card {
  max-width: 175px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card img {
  max-width: 100px;
  padding: 25px 0;
  width: 100%;
  height: auto;
}

.cart-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-name {
  font-weight: bold;
  font-size: 1.1rem;
  margin: 0;
}

.qty-wrapper {
  display: inline-flex;
  align-items: center;
  margin-top: 5px;
}

.quantity-select {
  width: 70px;
  padding: 5px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  outline: none;
  cursor: pointer;
}

.item-line-total {
  font-weight: 650;
  font-size: 1rem;
  color: #111;
}

.delete-btn i {
  color: #222;
  font-size: 26px;
  transition: transform 0.2s;
  cursor: pointer;
  margin-top: 4px;
}

.delete-btn i:hover {
  color: #e74c3c;
}

.cart-right {
  width: 350px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 25px;
  background: #fff;
  height: fit-content;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.cart-right h3 {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.totals-bar {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.totals-bar p {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  font-size: 1.1rem;
}

.shipping-price {
  color: #219150;
  font-weight: bold;
}

.checkout-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 20px;
  background-color: #219150;
  color: #fff;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.checkout-btn:hover {
  background-color: #1b7a3c;
}

.cart-details span {
  display: block;
  margin: 3px 0;
}

hr {
  border: none;
  border-top: 1px solid #e7e7e7;
  margin: 15px 0;
}

/* Responsive */
@media (max-width: 900px) {
  .cart-container {
    flex-direction: column;
    gap: 20px;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-card {
    max-width: 100%;
  }

  .cart-right {
    width: 100%;
  }
}
