body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #0d0d0d;
  color: #f1f1f1;
}

.cart-section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.cart-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #00e5ff;
  letter-spacing: 1px;
}

.cart-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1a1a1a;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.item-img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
}

.item-info {
  flex: 1;
  margin-left: 20px;
}

.item-name {
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.item-price {
  margin: 5px 0;
  color: #00e5ff;
  font-weight: 500;
}

.quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  background: #333;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.qty-input {
  width: 40px;
  text-align: center;
  border: none;
  background: #222;
  color: #fff;
  border-radius: 6px;
  padding: 4px;
}

.remove-btn {
  background: #ff007f;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.remove-btn:hover {
  background: #e60073;
}

.cart-summary {
  background: #111;
  border-radius: 12px;
  padding: 30px;
  margin-top: 40px;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
}

.cart-summary h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #00e5ff;
}

.cart-summary p {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  margin: 10px 0;
}

.cart-summary .total {
  font-weight: 700;
  font-size: 1.2rem;
  border-top: 1px solid #222;
  padding-top: 10px;
}

.checkout-btn {
  width: 100%;
  padding: 12px;
  background: #00e5ff;
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  margin-top: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.checkout-btn:hover {
  background: #00b3cc;
}

.forgot-link {
  text-align: center;
  margin-top: 15px;
}

.forgot-link a {
  color: #ff007f;
  text-decoration: none;
}

.forgot-link a:hover {
  text-decoration: underline;
}
