
  /* ============================================================
     SECTION 1 — HERO GALLERY
  ============================================================ */
  .shop-gallery {
    overflow: hidden;
    background: var(--gs-white);
    padding-block: 4px 0;
  }

  .shop-gallery__row {
    display: flex;
    gap: 4px;
    width: max-content;
    align-items: center;
  }

  .shop-gallery__row--1 {
    animation: galleryScroll 40s linear infinite;
  }

  .shop-gallery__row--2 {
    animation: galleryScroll 40s linear infinite;
    animation-delay: -12s;
    margin-top: 4px;
    margin-bottom: 4px;
  }

  @keyframes galleryScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .shop-gallery__item {
    flex: 0 0 auto;
    width: 210px; /* SP */
  }

  .shop-gallery__item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 8px;
  }

  @media (min-width: 768px) {
    .shop-gallery__item {
      width: 300px; /* PC */
    }
  }

  /* ============================================================
     SECTION 2 — INTRO
  ============================================================ */
  .shop-intro {
    background: var(--gs-bg);
    padding-block: 56px;
    padding-inline: var(--gs-pad);
    text-align: center;
    font-family: var(--gs-font-sans);
  }

  .shop-intro__title {
    font-family: "Quicksand", sans-serif;
    font-size: clamp(24px, 18.06px + 1.524vw, 40px);
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gs-text);
    margin-bottom: 20px;
  }

  .shop-intro__logo--pc { display: none; }
  .shop-intro__logo--sp {
    display: block;
    margin: 0 auto 40px;
    width: 234px;
  }

  @media (min-width: 768px) {
    .shop-intro__logo--pc {
      display: block;
      margin: 0 auto 32px;
    }
    .shop-intro__logo--sp { display: none; }
  }

  .shop-intro__meta {
    color: var(--gs-text-sub);
    margin-bottom: 32px;
  }
  .shop-intro__meta p {
    font-size: 1.7rem;
    line-height: 2;
  }

  .shop-intro__desc {
    font-size: 1.4rem;
    line-height: 2.1;
    color: var(--gs-text-sub);
    margin-inline: auto;
  }

  span.italic {
    font-style: italic;
  }

  /* ============================================================
     SECTION 3 — PRODUCT LIST
  ============================================================ */
  .shop-products {
    background: var(--gs-white);
    padding-block: 40px 56px;
    padding-inline: var(--gs-pad);
  }

  .shop-products__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .shop-card__slider {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .shop-card__slides {
    display: flex;
    transition: transform 0.35s ease;
  }

  .shop-card__slide {
    flex: 0 0 100%;
  }

  .shop-card__slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .shop-card__arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    color: var(--gs-gray);
    padding: 8px 4px;
    z-index: 2;
    transition: color 0.2s;
  }

  .shop-card__arrow:hover { color: var(--gs-text); }
  .shop-card__arrow--prev { left: 0; }
  .shop-card__arrow--next { right: 0; }
  .shop-card__arrow.is-visible { display: block; }

  .shop-card__plus {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(200, 200, 200, 0.75);
    border: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    color: var(--gs-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    pointer-events: none;
    z-index: 2;
    padding-bottom: 2px;
  }

  .shop-card__slider:hover .shop-card__plus {
    background: rgba(180, 180, 180, 0.95);
  }

  /* Card info */
  .shop-card__info {
    padding-top: 14px;
    text-align: center;
  }

  .shop-card__name {
    font-size: 2rem;
    font-family: var(--gs-font-sans);
    color: var(--gs-text);
  }

  .shop-card__price {
    font-size: 1.6rem;
    color: var(--gs-text-meta);
    line-height: 1.6;
    font-feature-settings: "palt";
  }

  .shop-card__note {
    display: block;
    font-size: 11px;
    color: var(--gs-gray);
    margin-top: 2px;
  }

  /* ============================================================
     MODAL
  ============================================================ */
  .shop-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

  .shop-modal__thumbs:empty {
    display: none;
    padding: 0;
  }

  .shop-modal__inner {
  position: relative;
  background: var(--gs-white);
  max-width: 760px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  /* transform: translateY(12px);
  transition: transform 0.25s ease; */
}
  .shop-modal__inner.is-single .shop-modal__slide img {
    padding: 12px;
  }
  .shop-modal.is-open {
  opacity: 1;
}

.shop-modal.is-open .shop-modal__inner {
  /* transform: translateY(0); */
}


  .shop-modal__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(80, 80, 80, 0.75);
    border: none;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    color: var(--gs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
    padding-bottom: 3px;
  }

  .shop-modal__close:hover {
    background: rgba(40, 40, 40, 0.9);
  }


  .shop-modal__main {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }

  .shop-modal__slides {
    display: flex;
    transition: transform 0.35s ease;
  }

  .shop-modal__slide {
    flex: 0 0 100%;
  }

  .shop-modal__slide img {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    display: block;
    padding: 12px 10px 24px;
  }

  .shop-modal__arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 32px;
    line-height: 1;
    color: var(--gs-gray);
    padding: 8px;
    z-index: 2;
    transition: color 0.2s;
  }

  .shop-modal__arrow:hover { color: var(--gs-text); }
  .shop-modal__arrow--prev { left: 4px; }
  .shop-modal__arrow--next { right: 4px; }

  .shop-modal__arrow.is-visible {
    display: block;
  }

  .shop-modal__thumbs {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 0 24px 24px;
    flex-wrap: wrap;
  }

  .shop-modal__thumb {
    width: 72px;
    height: 72px;
    object-fit: contain;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    background: var(--gs-bg);
    padding: 4px;
  }

  .shop-modal__thumb.is-active {
    border-color: var(--gs-text);
  }

  @media (min-width: 768px) {
    .shop-modal {
      padding: 24px;
      padding-top: 130px;
      align-items: flex-start;
    }

    .shop-modal__slide img {
      max-height: 65vh;
      padding: 40px 60px 28px;
    }

    .shop-modal__thumb {
      width: 88px;
      height: 88px;
    }
  }

  /* ============================================================
     SECTION 4 — FOOTER NOTE
  ============================================================ */
  .shop-note {
    background: var(--gs-white);
    padding-block: 0 40px;
    padding-inline: var(--gs-pad);
    text-align: center;
    margin-top: 0 !important;
    padding-top: 10px;
  }

  .shop-note p {
    font-size: 13px;
    color: var(--gs-gray);
    line-height: 2;
  }

  /* ============================================================
     SECTION 5 — BACK LINK
  ============================================================ */
  .shop-back {
    background: var(--gs-bg);
    padding-block: 32px;
    padding-inline: var(--gs-pad);
    border-top: 1px solid var(--gs-line);
    cursor: pointer;
  }

  .shop-back__inner {
    max-width: 1128px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .shop-back__title {
    font-family: "Quicksand", sans-serif;
    font-size: clamp(24px, 18.06px + 1.524vw, 40px);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--gs-text);
  }
  .shop-back__link {
    text-decoration: none;
    color: var(--gs-text);
    display: flex;
    align-items: center;
  }

  .shop-back__arrow {
    width: 40px;
    height: 12px;
    display: block;
  }

  /* ============================================================
     RESPONSIVE — 768px+
  ============================================================ */
  @media (min-width: 768px) {

    /* Intro */
    .shop-intro {
      padding-block: 80px;
    }

    .shop-products {
      padding-block: 56px 80px;
    }

    .shop-products__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 32px 24px;
    }

    /* Back link */
    .shop-back {
      padding-block: 40px;
    }
    .shop-back__title {
      letter-spacing: 0.02em;
    }
    .shop-back__arrow {
      width: 64px;
      height: 12px;
      display: block;
    }
  }
