@charset "UTF-8";

body {
  font-family: "Zen Maru Gothic", sans-serif;
  background: linear-gradient(180deg, #fff5f8, #fefefe);
  color: #6b4e57;
  margin: 0;
}

header {
  padding: 30px 0;
}

h1 {
  text-align: center;
  font-family: "Mochiy Pop One", sans-serif;
  color: #ff8fab;
  letter-spacing: 2px;
}

.buttons {
  text-align: center;
  margin-bottom: 30px;
}

button {
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  background: #ffd6e8;
  color: #6b4e57;
  font-weight: bold;
  box-shadow: 0 6px 0 #f3aac6;
  transition: all 0.2s ease;
}

button:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #f3aac6;
  background: #ffc1dc;
}

#product-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding-bottom: 40px;
}

.card {
  width: 220px;
  background: #ffffff;
  border-radius: 20px;
  text-align: center;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(255, 143, 171, 0.25);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

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

.card h2 {
  font-size: 1.1em;
  margin: 10px 0;
}

.price {
  font-weight: bold;
  color: #ff6f91;
}

.stock {
  font-size: 0.9em;
  margin-top: 6px;
}

footer {
  text-align: center;
  padding: 20px 0;
  font-size: 0.8em;
  color: #a58b93;
}
