body {
  font-family: 'Fredoka One', cursive;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom right, #e0d4ff, #d0f0ff);
  color: #333;
}

.cart-container {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  margin-top: 40px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

h1, h2 {
  color: #6a1b9a;
  text-align: center;
}

.cart-item {
  border: 2px solid #cba5ff;
  padding: 15px;
  margin-bottom: 15px;
  background-color: #f3e8ff;
  border-radius: 10px;
}

.cart-item button {
  background-color: #e57373;
  border: none;
  padding: 8px 14px;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"] {
  padding: 10px;
  border: 2px solid #9b4dff;
  border-radius: 8px;
  font-family: inherit;
}

button[type="submit"] {
  background-color: #7b1fa2;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

button[type="submit"]:hover {
  background-color: #4a0072;
}

.back-button {
  margin-top: 20px;
  text-align: center;
}

.back-button a {
  color: #6a1b9a;
  text-decoration: none;
  font-size: 18px;
}
