/* ページ中央に配置するラッパー */
.goods-wrapper {
  display: flex;
  justify-content: center;  /* 横中央 */
  align-items: center;      /* 縦中央 */
  min-height: 80vh;         /* 画面の高さに応じて中央寄せ */
}

/* 白抜きボックス */
.goods-box {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 画像 */
.goods-image {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}

/* ボタン */
.goods-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  background: #e63946;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.2s;
}

.goods-btn:hover {
  background: #c71c30;
}