.wishlist {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5.5rem 1.5rem 6rem;
}
.js-enabled .wishlist--reveal > * {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.js-enabled .wishlist--reveal.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.js-enabled .wishlist--reveal.is-visible > :nth-child(2) {
  transition-delay: 120ms;
}
.js-enabled .wishlist--reveal .product-card {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms ease;
}
.js-enabled .wishlist--reveal.is-visible .product-card {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--card-delay);
}
.js-enabled .wishlist--reveal.is-visible .product-card:hover {
  transition-delay: 0ms;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.section-heading h2 {
  font-size: clamp(2.15rem, 4.5vw, 3.8rem);
  line-height: 1;
}
.section-heading__count {
  margin: 0 0 0.3rem;
  color: var(--muted);
}
.status {
  margin: 1.5rem 0;
  color: var(--muted);
}
.status:empty {
  display: none;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--paper);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 55px rgba(58, 42, 44, 0.16);
}
.product-card:focus-visible {
  outline: 3px solid var(--mauve);
  outline-offset: 4px;
}
.product-card__image {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--blue), var(--lavender));
  color: var(--wine);
  font-size: 2rem;
  font-weight: 700;
}
.product-card:nth-child(5n + 2) .product-card__image {
  background: linear-gradient(135deg, var(--blue), var(--mauve));
  color: var(--wine);
}
.product-card:nth-child(5n + 3) .product-card__image {
  background: linear-gradient(135deg, var(--lavender), var(--wine));
  color: var(--paper);
}
.product-card:nth-child(5n + 4) .product-card__image {
  background: linear-gradient(135deg, var(--mauve), var(--blue));
  color: var(--paper);
}
.product-card:nth-child(5n) .product-card__image {
  background: linear-gradient(135deg, var(--wine), var(--plum));
  color: var(--paper);
}
.product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1;
}
.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}
.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.product-card__category {
  color: var(--mauve);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-card__price {
  font-weight: 700;
}
.product-card h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.08;
}
.product-card__characteristics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}
.product-card__characteristics li {
  display: flex;
  gap: 0.3rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.product-card__characteristic-label {
  color: var(--ink);
  font-weight: 700;
}
.product-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}
@media (max-width: 800px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .wishlist {
    padding: 4rem 1.25rem 4.5rem;
  }
  .section-heading {
    display: block;
  }
  .section-heading__count {
    margin-top: 0.8rem;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
}
