/* shop.css
 * Shop page specific styles.
 */

.shop-page .shop-bonus-section {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 34px 18px 64px;
}

.shop-page .shop-store-section {
  padding-top: 10px;
}

.shop-page .shop-store-section + .shop-store-section {
  padding-top: 0;
  margin-top: -10px;
}

.shop-page .shop-bonus-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 140, 225, 0.65);
  background: rgba(0, 0, 0, 0.62);
  box-shadow:
    0 0 12px rgba(255, 110, 215, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  grid-template-areas:
    "image content"
    "image desc";
  align-items: stretch;
  gap: 18px;
}

.shop-page .shop-bonus-image-wrap {
  grid-area: image;
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 160, 235, 0.55);
  aspect-ratio: 16 / 9;
  width: 100%;
  min-height: clamp(220px, 24vw, 360px);
  background: rgba(0, 0, 0, 0.28);
  text-decoration: none;
  box-shadow:
    0 0 6px rgba(255, 120, 220, 0.4),
    0 0 14px rgba(255, 80, 200, 0.22);
  transition: box-shadow 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.shop-page .shop-bonus-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

.shop-page .shop-bonus-image-inner {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background-image: url("../image/shop/dummy.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.shop-page .shop-bonus-image-wrap:hover .shop-bonus-image-inner,
.shop-page .shop-bonus-image-wrap:focus-visible .shop-bonus-image-inner {
  transform: scale(1.05);
  filter: brightness(1.03);
}

.shop-page .shop-bonus-image-wrap:hover,
.shop-page .shop-bonus-image-wrap:focus-visible {
  border-color: rgba(120, 255, 170, 0.95);
  box-shadow:
    0 0 7px rgba(120, 255, 170, 0.8),
    0 0 18px rgba(70, 255, 145, 0.5);
}

.shop-page .shop-bonus-content {
  grid-area: content;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  padding-top: 6px;
}

.shop-page .shop-bonus-desc-wrap {
  grid-area: desc;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.shop-page .shop-bonus-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
}

.shop-page .shop-bonus-title__sub {
  display: block;
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.95);
  text-shadow:
    0 0 4px rgba(255, 145, 230, 0.5),
    0 0 10px rgba(255, 95, 210, 0.3);
}

.shop-page .shop-bonus-title__main {
  display: block;
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(24px, 2.1vw, 36px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow:
    0 0 5px rgba(255, 145, 230, 0.7),
    0 0 12px rgba(255, 95, 210, 0.5);
}

.shop-page .shop-bonus-title--amazon .shop-bonus-title__main {
  font-size: clamp(20px, 1.7vw, 30px);
}

@media (max-width: 767px) {
  .shop-page .shop-bonus-title--amazon .shop-bonus-title__main {
    font-size: clamp(18px, 4.5vw, 24px);
  }
}

.shop-page .shop-bonus-desc {
  margin: 0;
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
  text-shadow:
    0 0 3px rgba(120, 210, 255, 0.6),
    0 0 9px rgba(70, 170, 255, 0.35);
}

.shop-page .shop-store-name {
  margin: 0 0 14px;
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow:
    0 0 4px rgba(130, 255, 180, 0.95),
    0 0 10px rgba(70, 255, 145, 0.8),
    0 0 18px rgba(30, 255, 130, 0.62);
}

.shop-page .shop-store-name__honorific {
  font-size: 0.62em;
}

.shop-page .shop-bonus-link-btn {
  align-self: center;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 480px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(14px, 1.02vw, 18px);
  font-weight: 700;
  letter-spacing: 0.06em;
  background: linear-gradient(100deg, rgba(104, 46, 146, 0.96) 0%, rgba(218, 83, 167, 0.96) 100%);
  border: 1px solid rgba(255, 180, 235, 0.85);
  box-shadow:
    0 0 12px rgba(255, 110, 215, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), filter 0.38s ease, background 0.42s ease, border-color 0.42s ease, box-shadow 0.42s ease;
}

.shop-page .shop-bonus-link-btn:hover,
.shop-page .shop-bonus-link-btn:focus-visible {
  transform: translateY(-1px) scale(1.02);
  filter: brightness(1.07);
  background: linear-gradient(100deg, rgba(38, 120, 78, 0.96) 0%, rgba(46, 195, 126, 0.96) 55%, rgba(114, 255, 190, 0.96) 100%);
  border-color: rgba(170, 255, 210, 0.95);
  box-shadow:
    0 0 10px rgba(120, 255, 170, 0.8),
    0 0 24px rgba(70, 255, 145, 0.55),
    inset 0 0 0 1px rgba(210, 255, 230, 0.35);
}

.shop-page .shop-bonus-card--showcase {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(260px, 42%);
  grid-template-areas: "main side";
  align-items: start;
}

.shop-page .shop-showcase-main {
  grid-area: main;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.shop-page .shop-showcase-side {
  grid-area: side;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shop-page .shop-showcase-side .shop-bonus-link-btn {
  align-self: center;
}

.shop-page .shop-bonus-card--showcase .shop-bonus-title {
  margin-bottom: 0;
}

.shop-page .shop-bonus-card--showcase .shop-bonus-image-wrap {
  align-self: start;
  aspect-ratio: 16 / 9;
  min-height: clamp(220px, 24vw, 360px);
}

.shop-page .shop-bonus-card--showcase .shop-bonus-image-inner {
  background-size: cover;
}

.shop-page .shop-extra-item {
  border-radius: 12px;
  border: 1px solid rgba(255, 180, 235, 0.38);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 10px rgba(255, 95, 210, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  padding: 12px;
}

.shop-page .shop-extra-item__label {
  margin: 0 0 10px;
  text-align: center;
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow:
    0 0 3px rgba(255, 145, 230, 0.55),
    0 0 8px rgba(255, 95, 210, 0.3);
}

.shop-page .shop-extra-item__media {
  display: block;
  width: min(100%, 240px);
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 160, 235, 0.4);
  aspect-ratio: 663 / 1080;
  background: rgba(0, 0, 0, 0.24);
  text-decoration: none;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.shop-page .shop-extra-item__media:hover,
.shop-page .shop-extra-item__media:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(120, 255, 170, 0.85);
  box-shadow:
    0 0 8px rgba(120, 255, 170, 0.35),
    0 0 16px rgba(70, 255, 145, 0.2);
}

.shop-page .shop-extra-item__image {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.shop-page .shop-extra-item__name {
  margin: 10px 0 0;
  text-align: center;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  text-shadow:
    0 0 3px rgba(120, 210, 255, 0.45),
    0 0 8px rgba(70, 170, 255, 0.24);
}

.shop-page .shop-section-divider {
  position: relative;
  margin: 28px 0 0;
  height: 24px;
}

.shop-page .shop-section-divider::before {
  content: "SYMPHONIC KNIGHTS 2";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  padding: 0 10px;
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(12px, 1.05vw, 15px);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #fff;
  background: transparent;
  text-shadow:
    0 0 6px rgba(255, 145, 230, 0.45),
    0 0 12px rgba(255, 95, 210, 0.32);
  z-index: 1;
  white-space: nowrap;
}

.shop-page .shop-section-divider::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 8px;
  height: 1px;
  background:
    linear-gradient(
      to right,
      rgba(255, 150, 235, 0) 0%,
      rgba(255, 150, 235, 0.82) 26%,
      rgba(255, 150, 235, 0.82) 100%
    ) left center / calc(50% - 160px) 1px no-repeat,
    linear-gradient(
      to left,
      rgba(255, 150, 235, 0) 0%,
      rgba(255, 150, 235, 0.82) 26%,
      rgba(255, 150, 235, 0.82) 100%
    ) right center / calc(50% - 160px) 1px no-repeat;
  box-shadow: 0 0 10px rgba(255, 95, 210, 0.28);
}

.shop-page .shop-original-section {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 28px 18px 64px;
}

.shop-page .shop-original-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.shop-page .shop-original-item {
  min-width: 0;
}

.shop-page .shop-original-store-name {
  margin: 0 0 14px;
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(28px, 2.2vw, 40px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow:
    0 0 4px rgba(130, 255, 180, 0.95),
    0 0 10px rgba(70, 255, 145, 0.8),
    0 0 18px rgba(30, 255, 130, 0.62);
}

.shop-page .shop-original-store-name .shop-store-name__honorific {
  font-size: 0.62em;
}

.shop-page .shop-original-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 140, 225, 0.65);
  background: rgba(0, 0, 0, 0.62);
  box-shadow:
    0 0 12px rgba(255, 110, 215, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.shop-page .shop-original-image-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 160, 235, 0.55);
  aspect-ratio: 16 / 9;
  width: 100%;
  min-height: clamp(220px, 24vw, 360px);
  background: rgba(0, 0, 0, 0.28);
  box-shadow:
    0 0 6px rgba(255, 120, 220, 0.4),
    0 0 14px rgba(255, 80, 200, 0.22);
}

.shop-page .shop-original-image-inner {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background-image: url("../image/shop/dummy.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.shop-page .shop-original-product-name {
  margin: 16px 0 0;
  text-align: center;
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow:
    0 0 5px rgba(255, 145, 230, 0.7),
    0 0 12px rgba(255, 95, 210, 0.5);
}

.shop-page .shop-original-link-btn {
  align-self: center;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: min(100%, 420px);
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(14px, 1.02vw, 18px);
  font-weight: 700;
  letter-spacing: 0.06em;
  background: linear-gradient(100deg, rgba(104, 46, 146, 0.96) 0%, rgba(218, 83, 167, 0.96) 100%);
  border: 1px solid rgba(255, 180, 235, 0.85);
  box-shadow:
    0 0 12px rgba(255, 110, 215, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), filter 0.38s ease, background 0.42s ease, border-color 0.42s ease, box-shadow 0.42s ease;
}

.shop-page .shop-original-link-btn:hover,
.shop-page .shop-original-link-btn:focus-visible {
  transform: translateY(-1px) scale(1.02);
  filter: brightness(1.07);
  background: linear-gradient(100deg, rgba(38, 120, 78, 0.96) 0%, rgba(46, 195, 126, 0.96) 55%, rgba(114, 255, 190, 0.96) 100%);
  border-color: rgba(170, 255, 210, 0.95);
  box-shadow:
    0 0 10px rgba(120, 255, 170, 0.8),
    0 0 24px rgba(70, 255, 145, 0.55),
    inset 0 0 0 1px rgba(210, 255, 230, 0.35);
}

/* staged publishing */
.shop-page .release-lock[data-release="off"] {
  display: none;
}

.shop-page .shop-bonus-card--medio {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.shop-page .shop-medio-header {
  display: flex;
  justify-content: center;
}

.shop-page .shop-medio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.shop-page .shop-medio-item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.shop-page .shop-medio-item__inner {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 180, 235, 0.34);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 10px rgba(255, 95, 210, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  padding: 12px 10px 10px;
}

.shop-page .shop-medio-item__inner .shop-extra-item__media {
  width: min(100%, 200px);
}

.shop-page .shop-medio-item__inner .shop-extra-item__name {
  margin-top: 10px;
}

.shop-page .shop-medio-action {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.shop-page .shop-medio-action__item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.shop-page .shop-medio-action__item .shop-bonus-link-btn {
  margin-top: 0;
}

.shop-page .shop-medio-action__note {
  margin: 0;
  text-align: center;
  font-size: clamp(12px, 0.85vw, 14px);
  line-height: 1.6;
  color: rgba(255, 205, 215, 0.96);
  text-shadow:
    0 0 3px rgba(255, 120, 150, 0.45),
    0 0 8px rgba(255, 80, 120, 0.22);
}

@media (max-width: 767px) {
  .shop-page .shop-bonus-section {
    padding: 20px 12px 40px;
  }

  .shop-page .shop-store-section {
    padding-top: 8px;
  }

  .shop-page .shop-store-section + .shop-store-section {
    padding-top: 0;
    margin-top: -8px;
  }

  .shop-page .shop-bonus-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "image"
      "desc";
    padding: 12px;
  }

  .shop-page .shop-bonus-card--showcase {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "side";
  }

  .shop-page .shop-bonus-content {
    padding-top: 0;
  }

  .shop-page .shop-bonus-desc-wrap {
    margin-top: 12px;
    padding-bottom: 12px;
  }

  .shop-page .shop-showcase-main,
  .shop-page .shop-showcase-side {
    gap: 12px;
  }

  .shop-page .shop-bonus-title {
    gap: 4px;
  }

  .shop-page .shop-store-name {
    margin-bottom: 12px;
  }

  .shop-page .shop-bonus-link-btn {
    width: 100%;
    max-width: none;
  }

  .shop-page .shop-extra-item {
    padding: 10px;
  }

  .shop-page .shop-extra-item__label {
    margin-bottom: 8px;
  }

  .shop-page .shop-extra-item__name {
    margin-top: 8px;
    font-size: 13px;
  }

  .shop-page .shop-section-divider {
    margin-top: 22px;
  }

  .shop-page .shop-section-divider::before {
    font-size: 12px;
    letter-spacing: 0.14em;
    padding: 0 10px;
  }

  .shop-page .shop-section-divider::after {
    left: 12px;
    right: 12px;
    bottom: 8px;
    background:
      linear-gradient(
        to right,
        rgba(255, 150, 235, 0) 0%,
        rgba(255, 150, 235, 0.82) 26%,
        rgba(255, 150, 235, 0.82) 100%
      ) left center / calc(50% - 110px) 1px no-repeat,
      linear-gradient(
        to left,
        rgba(255, 150, 235, 0) 0%,
        rgba(255, 150, 235, 0.82) 26%,
        rgba(255, 150, 235, 0.82) 100%
      ) right center / calc(50% - 110px) 1px no-repeat;
  }

  .shop-page .shop-medio-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .shop-page .shop-medio-action {
    flex-direction: column;
    gap: 12px;
  }

  .shop-page .shop-medio-action__item {
    width: 100%;
  }

  .shop-page .shop-medio-action__item .shop-bonus-link-btn {
    width: 100%;
    max-width: none;
  }

  .shop-page .shop-original-section {
    padding: 20px 12px 40px;
  }

  .shop-page .shop-original-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .shop-page .shop-original-store-name {
    margin-bottom: 12px;
  }

  .shop-page .shop-original-card {
    padding: 12px;
  }

  .shop-page .shop-original-product-name {
    margin-top: 12px;
  }

  .shop-page .shop-original-link-btn {
    width: 100%;
    max-width: none;
  }
}



.shop-page .shop-bonus-image-wrap.is-static,
.shop-page .shop-extra-item__media.is-static {
  pointer-events: none;
  cursor: default;
}

.shop-page .shop-bonus-image-wrap.is-static:hover,
.shop-page .shop-bonus-image-wrap.is-static:focus-visible,
.shop-page .shop-extra-item__media.is-static:hover,
.shop-page .shop-extra-item__media.is-static:focus-visible {
  transform: none;
  filter: none;
  border-color: rgba(255, 160, 235, 0.55);
  box-shadow: none;
}

.shop-page .shop-bonus-image-wrap.is-static:hover .shop-bonus-image-inner,
.shop-page .shop-bonus-image-wrap.is-static:focus-visible .shop-bonus-image-inner {
  transform: none;
  filter: none;
}
