* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-family: "Poppins", sans-serif;
}

body {
  background: #f5f5f5;
}

/* HEADER */
.cart-header {
  background: linear-gradient(90deg, #ee4d2d, #ff7337);

  color: white;

  padding: 25px 7%;

  display: flex;
  align-items: center;
  gap: 30px;
}

.back-btn {
  color: white;

  text-decoration: none;

  font-size: 18px;
  font-weight: 600;
}

.back-btn:hover {
  opacity: 0.7;
}

/* CONTAINER */
.cart-container {
  display: grid;

  grid-template-columns: 2fr 1fr;

  gap: 30px;

  padding: 50px 7%;
}

/* CARD */
.cart-card {
  background: white;

  border-radius: 25px;

  padding: 20px;

  display: flex;
  gap: 20px;

  margin-bottom: 25px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.cart-card img {
  width: 180px;
  height: 180px;

  object-fit: cover;

  border-radius: 20px;
}

/* CONTENT */
.cart-content {
  flex: 1;
}

.cart-content h2 {
  margin-bottom: 10px;
}

.cart-content p {
  color: #666;

  margin-bottom: 15px;

  line-height: 1.6;
}

/* INFO */
.product-info {
  display: flex;
  gap: 20px;

  margin-bottom: 20px;
}

.product-info span {
  background: #f3f4f6;

  padding: 8px 14px;

  border-radius: 10px;

  font-size: 14px;
}

/* BOTTOM */
.cart-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* QUANTITY */
.quantity-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.quantity-box button {
  width: 35px;
  height: 35px;

  border: none;
  border-radius: 10px;

  background: #ee4d2d;
  color: white;

  font-size: 18px;

  cursor: pointer;
}

.quantity {
  font-size: 18px;
  font-weight: 600;
}

/* PRICE */
.price {
  color: #ee4d2d;

  font-size: 26px;
  font-weight: 700;
}

/* CHECKOUT */
.checkout-box {
  background: white;

  padding: 30px;

  border-radius: 25px;

  height: fit-content;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.checkout-box h2 {
  margin-bottom: 25px;
}

.summary-item {
  display: flex;
  justify-content: space-between;

  margin-bottom: 20px;

  color: #555;
}

.total {
  border-top: 2px solid #eee;

  padding-top: 20px;

  font-size: 20px;
  font-weight: 700;

  color: #111827;
}

/* BUTTON */
.checkout-btn {
  width: 100%;

  margin-top: 25px;

  padding: 16px;

  border: none;
  border-radius: 15px;

  background: #ee4d2d;
  color: white;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.checkout-btn:hover {
  background: #d93f21;

  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 900px) {
  .cart-container {
    grid-template-columns: 1fr;
  }

  .cart-card {
    flex-direction: column;
  }

  .cart-card img {
    width: 100%;
    height: 250px;
  }
}
