/* =========================================================
   Woo ギャラリー サムネイルスクロール（SP専用）
   シンプル版
   ========================================================= */
@media (max-width: 768px) {

  /* ========== 全体構造 ========== */
  .wc-thumbs-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 12px auto 0;
    position: relative;
    z-index: 100;
  }

  .wc-thumbs-controls {
    position: relative;
    width: 114px;
    height: 45px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* ========== ボタン基本スタイル ========== */
  .wc-thumbs-nav-btn {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 45px;
    height: 45px;
    background: #FFFFFF;
    border: 1px solid #D5D5D5;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
    overflow: hidden;
  }
  
  /* 無効状態 */
  .wc-thumbs-nav-btn:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
  }

  /* 押下エフェクト */
  .wc-thumbs-nav-btn.is-pressing {
    transform: scale(0.96);
  }

  /* ========== アイコン ========== */
  .wc-thumbs-nav-btn .wc-icon {
    width: 16px;
    height: 16px;
    display: block;
    border: none;
    background: transparent;
    margin: 0;
    padding: 0;
    object-fit: contain;
    pointer-events: none;
  }

  /* フォールバック用テキスト */
  .wc-thumbs-nav-btn .wc-icon-fallback {
    width: 16px;
    height: 16px;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: #2F2B29;
    font-family: Arial, sans-serif;
    user-select: none;
    display: none; /* デフォルトは非表示 */
  }

  /* ========== 疑似要素の削除（最小限） ========== */
  .wc-thumbs-nav-btn::before,
  .wc-thumbs-nav-btn::after {
    display: none;
    content: none;
  }

  /* ========== サムネイルレール ========== */
  .wc-thumbs-rail {
    position: relative;
    overflow: hidden;
    width: 212px;
    height: 50px;
  }

  .wc-thumbs-track {
    display: flex;
    gap: 4px;
    height: 50px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .wc-thumbs-track::-webkit-scrollbar { 
    display: none;
  }

  .wc-thumbs-track > li {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .wc-thumbs-track > li img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    border: 1px solid #D5D5D5;
    background: #fff;
    margin: 0;
    padding: 0;
  }

  /* ========== 既存UI非表示 ========== */
  .woocommerce-product-gallery__trigger,
  .flex-direction-nav,
  .flex-direction-nav a,
  .flex-direction-nav li,
  .flex-prev,
  .flex-next,
  .owl-nav,
  .slick-nav {
    display: none;
  }

}