.stock-status-wrap {
  display: flex;
  justify-content: center; /* 横方向中央寄せ */
  margin: 4px 0;
}

.stock-status-label {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.85em;
  font-weight: bold;
  color: #fff;
  background-color: #336699; /* 緑色：即納 */
  white-space: nowrap;
}
/* ===============================
   商品一覧：マウスオーバーで画像切替（ICE安定版）
   =============================== */
.hover-swap {
  position: relative;
  display: block;
}

/* 1枚目・2枚目共通 */
.hover-swap img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.4s ease;
}

/* ICEのデフォルトをリセット（非表示バグ防止） */
.hover-swap .product-list__photo {
  position: static !important;
  opacity: 1 !important;
}

/* 2枚目画像（img_sub_url）を上に重ねる */
.hover-swap img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}

/* hover時に切り替え */
.hover-swap:hover img:last-child {
  opacity: 1;
}
.hover-swap:hover img:first-child {
  opacity: 0;
}
