/* Apply handwriting font */
body {
  font-family: 'Dancing Script', cursive;
  margin: 0;
  padding: 0;
  background: #fff;
  text-align: center;
  color: #000;
}

/* Cart Title */
h1 {
  font-size: 2.5rem;
  margin: 20px 0;
}

/* Cart Container */
.cart-container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  text-align: left;
}

/* Cart Items */
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #ccc;
  padding: 10px 0;
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 15px;
}

.cart-item p {
  font-size: 1.2rem;
  margin: 0;
}

/* Cart Summary */
.cart-summary {
  margin-top: 20px;
  text-align: right;
  font-size: 1.5rem;
}

/* Checkout Button */
.checkout-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 1.2rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  background: #000;
  color: #fff;
  transition: background 0.3s ease;
}

.checkout-btn:hover {
  background: #444;
}

/* Payment Icons Section */
.payment-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.payment-icons img {
  height: 30px;
  object-fit: contain;
}

/* Back to Shop Link */
.back-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 1.2rem;
  color: #000;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}
