body {
  margin: 0;
  font-family: Arial;
  background: linear-gradient(270deg, #fffaf0, #ffd6e0, #dff6ff, #fffaf0);
  background-size: 800% 800%;
  animation: bgMove 10s ease infinite;
}

@keyframes bgMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: white;
}

#cart {
  display: flex;
  flex-direction: column; /* 👈 عمودی */
  gap: 15px;
  padding: 20px;
}

.card {
  display: flex;
  gap: 15px;
  background: white;
  padding: 15px;
  border-radius: 12px;
  align-items: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}

button {
  background: #ff5c8a;
  color: white;
  border: none;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
}
