.wishlist-grid {
  margin-top: 0.5rem;
}

.wl-item-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  overflow: hidden;
  height: 100%;
  transition: transform 0.15s, box-shadow 0.15s;
}

.wl-item-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.wl-item-card-img-wrap {
  position: relative;
  background: #f8f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 8px;
}

.wl-item-card-img {
  max-height: 130px;
  max-width: 100%;
  object-fit: contain;
}

.wl-item-card-game-icon {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,0.85);
  padding: 2px;
}

.wl-item-card-star {
  position: absolute;
  top: 6px;
  right: 6px;
  cursor: pointer;
  background: rgba(0,0,0,0.35);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wl-item-card-remove {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: linear-gradient(135deg, #C52110, #5810c5);
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.wl-item-card-body {
  padding: 10px 12px 12px;
}

.wl-item-card-name {
  font-weight: 600;
  font-size: 0.82rem;
  color: #333;
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wl-item-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
}

.wl-item-card-badge {
  background: rgba(88,16,197,0.08);
  color: #5810c5;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 6px;
}

.wl-item-card-qty {
  background: rgba(21,115,71,0.1);
  color: #157347;
}

.wl-item-card-extras {
  display: flex;
  gap: 8px;
  color: #999;
  font-size: 0.85rem;
}
