/* =============================================================================
   Shop Detail Page - Premium Design
   ========================================================================== */

/* --- Breadcrumb --- */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 24px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--brand);
}
.breadcrumb__sep {
  margin: 0 8px;
  opacity: 0.4;
}

/* --- Hero Section --- */
.shopDetail {
  padding: 40px 0 0;
}

.shopDetail__heroWrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.shopDetail__hero {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.shopDetail__heroOverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 36px 32px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: #fff;
}

.shopDetail__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.shopDetail__badge--lounge {
  background: var(--brand);
  color: #fff;
}

.shopDetail__badge--partner {
  background: #5a8a6a;
  color: #fff;
}

.shopDetail__badge--room {
  background: #8a7a5a;
  color: #fff;
}

.shopDetail__name {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}

.shopDetail__sub {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* hero外にtitle配置するパターン（heroOverlay不使用時） */
.shopDetail__titleArea {
  margin-bottom: 48px;
}

.shopDetail__titleArea .shopDetail__name {
  color: var(--text);
  font-size: 2rem;
  margin-bottom: 8px;
}

.shopDetail__titleArea .shopDetail__sub {
  color: var(--muted);
  font-size: 0.95rem;
  opacity: 1;
}

/* --- Info Card --- */
.shopInfoCard {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  margin-bottom: 48px;
}

.shopInfo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.shopInfo__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.shopInfo__iconWrap {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.shopInfo__icon {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

.shopInfo__label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.shopInfo__text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

.shopInfo__text a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
}

.shopInfo__text a:hover {
  text-decoration: underline;
}

/* --- CTA Buttons --- */
.shopCta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  justify-content: center;
}

.shopCta .ctaButton {
  min-width: 200px;
  text-align: center;
}

.shopCta__coming {
  display: inline-block;
  min-width: 200px;
  text-align: center;
  padding: 14px 32px;
  background: #e8e8e8;
  color: #999;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: default;
}

/* --- Access Map --- */
.shopMapSection {
  margin-bottom: 48px;
}

.shopMap {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* --- Back Link --- */
.shopBack {
  text-align: center;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.shopBack__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border: 1px solid var(--brand);
  border-radius: 50px;
  transition: all 0.3s;
}

.shopBack__link:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 46, 80, 0.2);
}

/* --- Responsive --- */
@media (max-width: 896px) {
  .shopDetail__heroWrap {
    border-radius: 0;
    margin-left: -24px;
    margin-right: -24px;
  }

  .shopDetail__hero {
    height: 260px;
  }

  .shopDetail__heroOverlay {
    padding: 24px 20px 20px;
  }

  .shopDetail__name {
    font-size: 1.4rem;
  }

  .shopDetail__sub {
    font-size: 0.8rem;
  }

  .shopInfoCard {
    padding: 24px;
    border-radius: 12px;
  }

  .shopInfo {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .shopMap {
    height: 280px;
    border-radius: 12px;
  }

  .shopCta {
    flex-direction: column;
    align-items: stretch;
  }

  .shopCta .ctaButton,
  .shopCta__coming {
    min-width: auto;
  }
}
