/* Transparent wishlist — image, big title, red price, small description */
.wl {
  background: transparent;
  padding: 0;
  margin-block: 1rem;
  color: inherit; /* inherit your page text color */
}

.wl-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px) { .wl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .wl-grid { grid-template-columns: 1fr; } }

.wl-card {
  /* completely see-through card */
  background: transparent;
  border: none;
  box-shadow: none;
  text-align: center;
}

.wl-card__img {
  --size: 140px;            /* adjust to taste */
  width: var(--size);
  height: var(--size);
  display: block;
  margin-inline: auto;
  object-fit: cover;
  border-radius: 12px;
}

.wl-card__title {
  margin: .6rem 0 0 0;
  font-weight: 800;
  font-size: clamp(1.05rem, 1rem + 0.6vw, 1.35rem); /* “big” */
  line-height: 1.2;
}

.wl-card__price {
  margin-top: .25rem;
  color: hsl(0 72% 55%); /* red */
  font-weight: 700;
}

.wl-card__desc {
  margin-top: .25rem;
  font-size: .9rem;
  opacity: .9; /* subtle */
}
