/* Styling for the '商品を見る' button */
.button {
  display: inline-block;
  font-size: 1em;
  color: #ffffff;
  background-color: #2c3e50;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #1e2a38;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}
