/* Wishlist section */

.wishlist {
  text-align: center;
  padding: var(--space-xl) 0;
  background: var(--color-bg-secondary);
}

.wishlist__title {
  font-family: var(--font-display);
  font-size: 2.0rem;
  margin-bottom: var(--space-xl);
}

.wishlist__characters {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: var(--space-lg);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
}

.wishlist__character {
  width: auto;
  margin: 0 -25px;
  transition: transform var(--transition-base);
  position: relative;
  opacity: 0;
  transform: translateY(40px);
}

.wishlist__character--visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* sculptor */
.wishlist__character:nth-child(1) {
  height: 305px;
  z-index: 1;
}

/* npc-3 */
.wishlist__character:nth-child(2) {
  height: 345px;
  z-index: 2;
}

/* liora */
.wishlist__character:nth-child(3) {
  height: 280px;
  z-index: 3;
}

/* Liora idle hover animation */
.wishlist__character--visible:nth-child(3) {
  animation: liora-float 3s ease-in-out infinite;
}

@keyframes liora-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

/* nino - front and center */
.wishlist__character:nth-child(4) {
  height: 300px;
  z-index: 5;
}

/* varek */
.wishlist__character:nth-child(5) {
  height: 345px;
  z-index: 2;
}

/* npc-1 */
.wishlist__character:nth-child(6) {
  height: 300px;
  z-index: 3;
}

/* storyteller */
.wishlist__character:nth-child(7) {
  height: 345px;
  z-index: 1;
  margin-left: -80px;
}

.wishlist__prompt {
  font-size: 1.5rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.btn-wishlist {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-fast);
}

.btn-wishlist:hover {
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {

  .wishlist__character {
    margin: 0 -18px;
  }

  .wishlist__character:nth-child(1) { height: 220px; }
  .wishlist__character:nth-child(2) { height: 250px; }
  .wishlist__character:nth-child(3) { height: 200px; }
  .wishlist__character:nth-child(4) { height: 220px; }
  .wishlist__character:nth-child(5) { height: 250px; }
  .wishlist__character:nth-child(6) { height: 220px; }
  .wishlist__character:nth-child(7) { height: 250px; margin-left: -55px; }

  .wishlist__title {
  font-size: 1.6rem;
  }

  .wishlist__prompt {
  font-size: 1.2rem;
  }
}

/* Phone only — tight sizing */
@media (max-width: 768px) {
  .wishlist__characters {
    max-width: 100%;
    padding-left: 15px;
  }
  .wishlist__character {
    margin: 0 -12px;
  }
  .wishlist__character:nth-child(1) { height: 140px; }
  .wishlist__character:nth-child(2) { height: 160px; }
  .wishlist__character:nth-child(3) { height: 130px; }
  .wishlist__character:nth-child(4) { height: 140px; }
  .wishlist__character:nth-child(5) { height: 160px; }
  .wishlist__character:nth-child(6) { height: 140px; }
  .wishlist__character:nth-child(7) { height: 160px; margin-left: -40px; }
  .wishlist__title {
    font-size: 1.3rem;
  }
  .wishlist__prompt {
    font-size: 1rem;
  }
  .btn-wishlist {
    font-size: 0.8rem;
    padding: 0.7rem 2rem;
  }
}

/* Tablet only — between phone and desktop */
@media (min-width: 769px) and (max-width: 900px) {
  .wishlist__characters {
    max-width: 100%;
    padding-left: 40px;
  }
  .wishlist__character {
    margin: 0 -15px;
  }
  .wishlist__character:nth-child(1) { height: 190px; }
  .wishlist__character:nth-child(2) { height: 220px; }
  .wishlist__character:nth-child(3) { height: 175px; }
  .wishlist__character:nth-child(4) { height: 190px; }
  .wishlist__character:nth-child(5) { height: 220px; }
  .wishlist__character:nth-child(6) { height: 190px; }
  .wishlist__character:nth-child(7) { height: 220px; margin-left: -50px; }
  .wishlist__title {
    font-size: 1.5rem;
  }
  .wishlist__prompt {
    font-size: 1.2rem;
  }
  .btn-wishlist {
    font-size: 0.95rem;
    padding: 0.85rem 2.5rem;
  }
}