/* キャンペーンバッジ */
.campaign-badge {
  position: absolute;
  top: 5px;
  left: 5px;
  background: red;
  color: white;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  z-index: 1 !important; /* ヘッダーより下に固定 */
  animation: shake 1.8s ease-in-out infinite;
}

/* アニメーション */
@keyframes shake {
  0% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

/* 一覧ページの商品写真ブロックを親にする */
.__item .__photo {
  position: relative !important;
  z-index: 0 !important;
}

/* 商品詳細ページの商品写真ブロックも親にする */
.wrapper--product-detail .__photo {
  position: relative !important;
  z-index: 0 !important;
}

/* 詳細ページ全体の積層コンテキストを下げる（ヘッダーより後ろへ） */
.wrapper--product-detail,
.wrapper--product-detail .__main,
.wrapper--product-detail .__primary {
  position: relative !important;
  z-index: 0 !important;
}