/* ============================================================
   shop.css — Shop Page (same style as menu, separate classes)
   ============================================================ */

/* ── Page Title ── */
.sp-title {
  background: var(--bg);
  padding: 200px 0 72px;
  text-align: center;
}
.sp-title__heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 3.75vw, 60px);
  letter-spacing: -0.033em;
  color: #161C2D;
  margin-bottom: 20px;
}
.sp-title__sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(14px, 1.2vw, 19px);
  line-height: 1.68;
  color: rgba(22, 28, 45, 0.65);
}


/* ── Content section ── */
.sp-content {
  padding: 80px 160px 120px;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.sp-content::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.sp-content::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}


/* ── Shop grid ── */
#sp-grid {
  position: relative;
  z-index: 2;
  opacity: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 40px;
}

.sp-empty {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: rgba(22, 28, 45, 0.5);
  padding: 80px 24px;
}

/* ── Shop Card ── */
.sp-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--purple);
  border-radius: 12px;
  overflow: hidden;
}

.sp-card__img-wrap {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  position: relative;
}
.sp-card__img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.sp-card:hover .sp-card__img {
  transform: scale(1.05);
}

.sp-card__details {
  flex: 1;
}
.sp-card__info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  flex-direction: column;
}
.sp-card__meta {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.sp-card__text-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sp-card__name {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: var(--purple);
  background: #fff;
  padding: 8px 12px 4px;
  border-radius: 8px 8px 0 0;
  margin: 0;
}
.sp-card__name-en {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #595959;
  margin: 0;
  padding: 0 12px;
}
.sp-card__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: #1F1F1F;
  background: #fff;
  padding: 4px 12px 12px;
  margin: 0;
  border-radius: 0;
}
.sp-card__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background: #fff;
  padding: 8px 12px 12px;
  border-radius: 0 0 8px 8px;
}
.sp-card__tag {
  display: inline-flex;
  align-items: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.6;
  color: #181818;
  background: #FAFAFA;
  border: 1px solid rgba(149, 149, 149, 0.15);
  border-radius: 9999px;
  padding: 2px 12px;
  height: 24px;
  white-space: nowrap;
}

/* Shop: tag as link */
.sp-card__tag--link {
  text-decoration: none;
  color: #92268F;
  border-color: rgba(146, 38, 143, 0.3);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.sp-card__tag--link:hover {
  background: rgba(146, 38, 143, 0.08);
  border-color: #92268F;
}


/* ============================================================
   RESPONSIVE — ≤ 1250px (2 columns)
   ============================================================ */
@media (max-width: 1250px) {
  .sp-content {
    padding: 60px 20px 80px;
  }
  #sp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 1200px) {
  .sp-content {
    padding: 60px 20px 100px;
  }
}


/* ============================================================
   RESPONSIVE — ≤ 768px (mobile)
   ============================================================ */
@media (max-width: 768px) {
  .sp-title {
    padding: 120px 24px 56px;
  }
  .sp-title__sub {
    font-size: 14px;
  }

  .sp-content {
    padding: 48px 20px 80px;
  }

  #sp-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sp-card__img-wrap {
  }
  .sp-card__info {
    flex-direction: column;
    gap: 12px;
  }
}


/* ============================================================
   SHOP BANNER (Franchise CTA) — Figma style
   ============================================================ */
.shop-banner {
  padding: 64px 24px 80px;
  background: var(--bg);
}
.shop-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 56px;
  background: var(--purple);
  border-radius: 24px;
}
.shop-banner__text {
  flex: 1;
}
.shop-banner__heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 36px);
  color: #fff;
  margin: 0 0 16px;
}
.shop-banner__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: #fff;
  margin: 0;
}
.shop-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: #fff;
  color: #161C2D;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: 9999px;
  flex-shrink: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.shop-banner__btn:hover {
  opacity: 0.95;
  transform: translateX(4px);
}
.shop-banner__btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .shop-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
    border-radius: 16px;
  }
  .shop-banner__btn {
    align-self: stretch;
    justify-content: center;
  }
}
