/* /shop/ — ギャラリー横断 SUZURI ハブ（モックアップ準拠） */

.shop-hub {
  --paper: #f7f3ea;
  --paper-deep: #efe8d8;
  --ink: #211e1a;
  --ink-soft: #55504a;
  --line: #d8cfbc;
  --ukiyoe: #2b4a6b;
  --ukiyoe-soft: #e4eaf0;
  --egypt: #1e6e6e;
  --egypt-soft: #e2efee;

  background: var(--paper);
  color: var(--ink);
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  font-weight: 300;
  line-height: 1.75;
}

.shop-hub__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  padding: 1.1rem 6vw;
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.shop-hub__breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.shop-hub__breadcrumb a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shop-hub__breadcrumb-sep {
  opacity: 0.55;
}

.shop-hub__breadcrumb [aria-current='page'] {
  color: var(--ink);
}

/* ---- Hero ---- */
.shop-hub__hero {
  position: relative;
  padding: 4rem 6vw 3.5rem;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.shop-hub__hero-label {
  writing-mode: vertical-rl;
  position: absolute;
  right: 6vw;
  top: 1.5rem;
  font-family: 'Shippori Mincho', 'Noto Serif JP', 'Yu Mincho', serif;
  font-size: 0.8125rem;
  letter-spacing: 0.4em;
  color: var(--ink-soft);
  opacity: 0.55;
}

.shop-hub__hero h1 {
  margin: 0 0 1.1rem;
  font-family: 'Shippori Mincho', 'Noto Serif JP', 'Yu Mincho', serif;
  font-weight: 700;
  font-size: clamp(2.125rem, 6vw, 3.5rem);
  letter-spacing: 0.06em;
  line-height: 1.25;
  color: var(--ink);
}

.shop-hub__hero-lead {
  margin: 0;
  max-width: 46ch;
  font-size: 0.90625rem;
  color: var(--ink-soft);
}

.shop-hub__hero-rule {
  width: 4rem;
  height: 2px;
  margin: 1.35rem 0 0;
  background: var(--ink);
}

/* ---- Gallery sections ---- */
.shop-gallery {
  padding: 3.5rem 6vw;
  border-bottom: 1px solid var(--line);
}

.shop-gallery--ukiyoe {
  background: linear-gradient(180deg, var(--ukiyoe-soft) 0%, var(--paper) 8.125rem);
}

.shop-gallery--egypt {
  background: linear-gradient(180deg, var(--egypt-soft) 0%, var(--paper) 8.125rem);
}

.shop-gallery__inner {
  max-width: 72rem;
  margin-inline: auto;
}

.shop-gallery__head {
  display: flex;
  align-items: baseline;
  gap: 1.125rem;
  margin-bottom: 1.75rem;
}

.shop-gallery__eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.shop-gallery__title {
  margin: 0;
  font-family: 'Shippori Mincho', 'Noto Serif JP', 'Yu Mincho', serif;
  font-weight: 700;
  font-size: 1.625rem;
  letter-spacing: 0.04em;
}

.shop-gallery--ukiyoe .shop-gallery__title {
  color: var(--ukiyoe);
}

.shop-gallery--egypt .shop-gallery__title {
  color: var(--egypt);
}

.shop-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.375rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 780px) {
  .shop-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.shop-gallery__empty {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.shop-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.shop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(33, 30, 26, 0.08);
}

.shop-card__img-wrap {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper-deep);
}

.shop-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.875rem 0.875rem 1rem;
}

.shop-card__name {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--ink);
}

.shop-card__price {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.shop-gallery__see-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.875rem;
  padding-bottom: 0.2rem;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
}

.shop-gallery__see-all::after {
  content: '→';
  transition: transform 0.15s ease;
}

.shop-gallery__see-all:hover::after {
  transform: translateX(4px);
}

/* ---- Cinema (性質の違う導線) ---- */
.shop-cinema {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  padding: 3.5rem 6vw 4.5rem;
  background: var(--ink);
  color: var(--paper);
}

.shop-cinema__copy {
  max-width: 44ch;
}

.shop-cinema__title {
  margin: 0 0 0.5rem;
  font-family: 'Shippori Mincho', 'Noto Serif JP', 'Yu Mincho', serif;
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: 0.04em;
}

.shop-cinema__text {
  margin: 0;
  font-size: 0.8125rem;
  color: #c8c2b6;
}

.shop-cinema__cta {
  flex-shrink: 0;
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--paper);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--paper);
  text-decoration: none;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.shop-cinema__cta:hover {
  background: var(--paper);
  color: var(--ink);
}

@media (max-width: 780px) {
  .shop-hub__hero {
    padding: 3rem 5vw 2.75rem;
  }

  .shop-hub__hero-label {
    right: 5vw;
    top: 1rem;
  }

  .shop-gallery {
    padding: 2.75rem 5vw;
  }

  .shop-cinema {
    padding: 2.75rem 5vw 3.5rem;
  }
}
