.text-decoration-none {
  text-decoration: none;
  color: black;
}

/* ===== Amazon商品カード全体 ===== */
.amazon {
  position: relative;
  background: rgb(201, 201, 201);
  display: flex;
  gap: 16px;
  padding: 16px;

  padding-bottom: 25px; /* ← これ追加 */
  border-radius: 16px;
}

/* 商品画像 */
.amazon img {
  width: 7.5em;
  height: auto;
  border-radius: 12px;
}

/* 商品説明 */
.amazon p {
  margin: 0;
  line-height: 1.4;
}

/* 商品情報注釈（別CSSにある前提でOK） */
.product-info {
  font-size: 0.75rem;
  color: #666;
  display: block;
  margin-top: 4px;
}

/* ===== 購入ボタン（右下） ===== */
.amazonlink {
  position: absolute;              /* 右下に固定 */
  right: 16px;
  bottom: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 0, 0.685);
  width: 10em;
  height: 3em;
  border-radius: 20px;

  font-weight: bold;
  color: black;
}
