@charset "UTF-8";

body {
  font-family: sans-serif;
  background-color: #f8f8f8;
}

h1 {
  text-align: center;
}

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

button {
  padding: 8px 16px;
  margin: 0 5px;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  position: relative;
  transition: transform 120ms ease, box-shadow 120ms ease;
  /* 見た目の影で浮いているように見せる */
  box-shadow: 0 6px 10px rgba(0,0,0,0.06);
}

/* マウスで押した時の即時効果（視覚） */
button:active,
button.pressed {
  transform: translateY(3px) scale(0.995);
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

/* フォーカス時のアクセシビリティ */
button:focus {
  outline: 3px solid rgba(33,150,243,0.15);
  outline-offset: 2px;
}

#product-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  width: 220px;
  background: white;
  border-radius: 8px;
  text-align: center;
  padding: 15px;
}

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

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

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

footer {
  text-align: center;
}