/* ===== PAGE TITLE ===== */
.page-title {
  width: calc(100% - 24px);
  max-width: 1500px;
  margin: 30px auto;
  text-align: center;
}

.page-title h1 {
  font-size: 42px;
  color: #845b7b;
}

/* ===== CART ===== */
.cart-container {
  width: calc(100% - 24px);
  max-width: 1200px;
  margin: 0 auto 50px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 25px;
  background: white;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.cart-item img {
  object-fit: cover;
  border-radius: 16px;
  max-height: 240px;
  flex-shrink: 0;
}

.cart-details {
  flex: 1;
}

.cart-details h2 {
  color: #845b7b;
  margin-bottom: 12px;
}

.cart-details p {
  margin-bottom: 8px;
  line-height: 1.5;
}

.subtotal {
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #b86ca3;
}

.cart-actions {
  display: flex;
  align-items: center;
}

.remove-button {
  display: inline-block;
  text-decoration: none;
  padding: 12px 24px;
  background: #f6d6c9;
  color: #6b4b45;
  border-radius: 30px;
  font-weight: bold;
  transition: .3s;
}

.remove-button:hover {
  background: #eec1af;
}

/* ===== SUMMARY ===== */
.cart-summary {
  background: white;
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.cart-summary h2 {
  color: #845b7b;
  margin-bottom: 15px;
}

.total-price {
  font-size: 36px;
  color: #b86ca3;
  font-weight: bold;
  margin-bottom: 25px;
}

.checkout-button {
  display: inline-block;
  text-decoration: none;
  padding: 16px 36px;
  background: #dcb6d6;
  color: white;
  border-radius: 35px;
  font-weight: bold;
  transition: .3s;
}

.checkout-button:hover {
  background: #c79ac0;
}

/* ===== EMPTY CART ===== */
.empty-cart {
  background: white;
  border-radius: 20px;
  padding: 70px 30px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.empty-cart h2 {
  color: #845b7b;
  margin-bottom: 20px;
}

.empty-cart p {
  margin-bottom: 30px;
  line-height: 1.7;
}

.back-button {
  display: inline-block;
  text-decoration: none;
  padding: 14px 30px;
  background: #dcb6d6;
  color: white;
  border-radius: 30px;
  font-weight: bold;
  transition: .3s;
}

.back-button:hover {
  background: #c79ac0;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .cart-item {
      flex-direction: column;
      text-align: center;
  }

  .cart-item img {
      max-width: 260px;
      height: auto;
  }

  .cart-actions {
      width: 100%;
  }

  .remove-button {
      width: 100%;
      text-align: center;
  }

  .cart-summary {
      padding: 25px;
  }

  .total-price {
      font-size: 30px;
  }

  .page-title h1 {
      font-size: 30px;
  }
}