body {
  font-family: Arial, sans-serif;
  background-color: #d3d3d3;
  color: #444;
  margin: 0;
  padding: 1rem;
}

h1 {
  text-align: center;
  margin-bottom: 1rem;
  color: #000000;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filters input, .filters select {
  padding: 0.5rem 1rem;
  border: 2px solid #eeeeee;
  border-radius: 8px;
  background: #fff;
  font-size: 1rem;
  outline: none;
  transition: 0.2s ease;
}

.filters input:focus, .filters select:focus {
  border-color: #c895c5;
}

.catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.plushie-card {
  text-decoration: none;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  padding: 0.5rem;
}

.plushie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.plushie-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 12px;
}

.plushie-card p {
  padding-top: 0.5rem;
  font-weight: bold;
  color: #5e3c58;
}

body > img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 12px;
}

body > p {
  text-align: center;
  max-width: 600px;
  margin: 0.5rem auto;
}

a {
  color: #a25fbf;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .filters {
    margin: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .filters input, .filters select {
    padding: 8px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
}
