* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #fff1f5, #ffe4ec);
  color: #444;
  padding: 20px;
}

/* HEADER */
header {
  text-align: center;
  margin-bottom: 30px;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #e48aa3;
}

header p {
  font-size: 1rem;
  margin-top: 10px;
}

/* GRID */
.wishlist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* CARD */
.card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* INFO */
.card-info {
  padding: 15px;
}

.card-info h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.note {
  font-size: 0.9rem;
  color: #888;
}

/* PRIORITY TAG */
.priority {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  font-size: 0.7rem;
  border-radius: 999px;
  font-weight: 600;
}

/* COLORS */
.card.high .priority {
  background: #ffd6e0;
  color: #c94f7c;
}

.card.medium .priority {
  background: #ffe9c7;
  color: #c08a2f;
}

.card.low .priority {
  background: #dff5e3;
  color: #4d9b6d;
}

/* FOOTER */
footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #888;
}