/* GSP 商品一覧プレビュー */
.gsp-preview {
  position: relative;
}

/* PCホバー時: アクティブカードを 1.5倍に拡大 */
@media (hover: hover) and (pointer: fine) {
  .gsp-preview {
    transition: transform 200ms ease-out, box-shadow 200ms ease-out;
    transform-origin: center center;
    will-change: transform;
  }
  .gsp-preview.is-active {
    transform: scale(1.5);
    z-index: 50;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
  }
}

/* 動画要素はサムネ上に重ねる（.itemimg 内に絶対配置） */
.gsp-preview .itemimg {
  position: relative;
}
.gsp-preview .gsp-preview-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  z-index: 3;
  display: block;
}

/* アクティブ状態（ネイティブコントロール込みで前面） */
.gsp-preview.is-active .gsp-preview-video {
  opacity: 1;
}

/* favoriteアイコンやキャンペーンメッセージは動画より下 */
.gsp-preview .itemimg > a,
.gsp-preview .itemimg img {
  position: relative;
  z-index: 1;
}

