/* ----------------------------------------------------
   キャンペーンバッジ（一覧・商品ページ共通）
---------------------------------------------------- */
.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;
  cursor: pointer;        /* 指カーソルでクリック可能を明示 */
  transition: all 0.15s ease;  /* ホバーに自然な動きを付与 */
}

/* ホバー演出（押せる感を出す） */
.campaign-badge:hover {
  background: #ff4f4f;   /* 少し明るくする */
  transform: scale(1.05); /* ほんの少し拡大 */
}

/* アニメーション定義（ふわっと上下） */
@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,
.wrapper--product-detail,
.wrapper--product-detail .__main,
.wrapper--product-detail .__primary {
  position: relative !important;
  z-index: 0 !important;
}


/* ----------------------------------------------------
   モーダル背景（キャンペーン画像表示）
---------------------------------------------------- */
.campaign-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999 !important;
}


/* モーダルの中身（画像を中央に表示） */
.campaign-modal-content {
  position: relative;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  max-width: 90vw;
  max-height: 85vh;
}

.campaign-modal-content img {
  max-width: 100%;
  height: auto;
}


/* 閉じるボタン（×） */
.campaign-modal-close {
  position: absolute;
  top: 5px;
  right: 12px;
  font-size: 30px;
  cursor: pointer;
}