body {
   
  background: url("https://files.catbox.moe/tisxgh.jpeg");
  font-family: "Georgia", serif;
  color: #000;
}

.wishlist-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.wishlist-title {
  width: 400px;
  display: block;
  margin: 2rem auto;
}

.wishlist-intro {
  width: 400px;
  margin: 1rem auto 2rem;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
justify-items: center;
}

.item-card {
  background: #ffeebd;
  border: 4px solid #5000ff;
  padding: 1rem;
  border-radius: 8px;
  text-align: left;
box-shadow: 0 0 6px 0 rgba(0,0,0,0.2);
}

.item-img {
  width: 100%;
  object-fit: cover;
  border: 4px solid #5000ff;
display: block;
  margin: 0 auto;
}

.item-name {
  margin-top: 0.5rem;
  font-size: 1.3rem;
  text-decoration: underline;
}

.rarity span, .value span {
  font-weight: bold;
}

.desc {
  margin-top: 0.5rem;
  line-height: 1.4;
}

.catalog-banner {
  background: #FAE12E;          /* Toys 'R' Us yellow */
  border: 3px solid #e5d573;    /* slightly darker border */
  padding: 1.2rem 1.5rem;
  margin: 0 auto 2rem;
  max-width: 900px;
  text-align: left;
  font-family: "Georgia", serif;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.catalog-banner h3 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.catalog-banner p {
  margin: 0.6rem 0 0;
  font-size: 0.9rem;
  line-height: 1.3;
}

