/* ============================================================
   Gifted New Cast Slider
   SHOP LIST（完全差し替え・最終安定版）
   ------------------------------------------------------------
   設計仕様：
   ・既存の安定CSSを絶対基準
   ・Swiper / フィルタ / ボタン思想は不変
   ・画像は「縦を削って横を見せる」
   ・見出しCSSは一切含めない（外部見出し使用）
============================================================ */


/* ============================================================
   セクション全体（フルワイド・上余白最小）
============================================================ */
.gw-newcast {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 20px 0 60px; /* 上を極限まで詰める */
  background: #0f0f0f;
  position: relative;
}


/* ============================================================
   Swiper 基本
============================================================ */
.gw-newcast-swiper {
  padding-left: 20px;
}

.gw-newcast .swiper-slide {
  width: 360px;
}


/* ============================================================
   カード全体
============================================================ */
.gw-newcast-card {
  display: block;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #1a1a1a, #000);
  border: 1px solid rgba(212, 180, 106, 0.35);
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  transition: transform .3s ease, box-shadow .3s ease;
}

.gw-newcast-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.8);
}


/* ============================================================
   画像エリア（★横方向を見せるため高さを削減）
============================================================ */
.gw-newcast-thumb {
  position: relative;
}

.gw-newcast-thumb img {
  width: 100%;
  height: 360px;          /* 460px → 360px（横が見える） */
  object-fit: cover;
  display: block;
}


/* HOT バッジ */
.gw-newcast-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #000;
  background: linear-gradient(135deg, #f2dc9c, #caa64b);
  border-radius: 2px;
  font-weight: 700;
}


/* ============================================================
   メタ情報（画像下）
============================================================ */
.gw-newcast-meta {
  padding: 22px 20px 26px;
  text-align: center;
  color: #fff;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.85)
  );
}


/* 店名（やや強化） */
.gw-newcast-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  margin-bottom: 8px;
}


/* ============================================================
   特徴表示（○ ゴールド｜TODAY思想）
============================================================ */
.gw-newcast-size {
  font-size: 13px;
  color: #ddd;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

/* ○（OK）は必ずゴールド */
.gw-newcast .gw-mark.is-ok {
  color: #d4af37;
  font-weight: 800;
  margin-left: 2px;
  text-shadow: 0 0 10px rgba(212,175,55,.25);
}


/* ============================================================
   More ボタン
============================================================ */
.gw-newcast-more {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 44px;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #fff;
  background: linear-gradient(
    135deg,
    #2a2a2a 0%,
    #1a1a1a 40%,
    #d4b46a 100%
  );
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(212,180,106,0.35);
  transition: all .3s ease;
}

.gw-newcast-more:hover {
  box-shadow: 0 0 16px rgba(212,180,106,0.55);
}

.gw-newcast-more::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0),
    rgba(255,255,255,0.6),
    rgba(255,255,255,0)
  );
  transform: skewX(-20deg);
  transition: .6s;
}

.gw-newcast-more:hover::after {
  left: 130%;
}


/* ============================================================
   フィルタUI（元デザイン完全復帰）
============================================================ */
.gw-newcast-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

.gw-newcast-filter-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #ddd;
}

.gw-newcast-filter-check input {
  accent-color: #d4b46a;
}

.gw-newcast-filter button {
  padding: 8px 18px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #fff;
  background: linear-gradient(
    135deg,
    #2a2a2a 0%,
    #1a1a1a 50%,
    #d4b46a 100%
  );
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(212,180,106,0.35);
  transition: all .25s ease;
}

.gw-newcast-filter button:hover {
  box-shadow: 0 0 16px rgba(212,180,106,0.55);
}


/* ============================================================
   フィルタ非表示用（Swiperを壊さない）
============================================================ */
.gw-newcast .swiper-slide.is-hidden {
  opacity: 0;
  pointer-events: none;
}


/* ============================================================
   レスポンシブ（SP：横方向を見せる）
============================================================ */
@media (max-width: 768px) {

  .gw-newcast {
    padding: 20px 0 40px;
  }

  .gw-newcast .swiper-slide {
    width: 300px;
  }

  .gw-newcast-thumb img {
    height: 300px;        /* SPも縦を削って横を見せる */
  }

  .gw-newcast-filter {
    flex-wrap: wrap;
    gap: 10px;
  }
}
