/* ===== Page-level styles ===== */

/* ===== HERO ===== */
.hero { position: relative; overflow: hidden; background: var(--bg); }
.theme-manga-city .hero { background: var(--bg); color: var(--fg); border-bottom: 2px solid var(--ink); }
.theme-monochrome-ink .hero { background: var(--bg); border-bottom: 1px solid var(--line); }
.theme-neon-stream .hero { background: var(--bg); }

.hero-inner {
  max-width: 1320px; margin: 0 auto; padding: 72px 32px 96px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center;
  position: relative;
}
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 56px 24px 72px; } }

.hero-left { position: relative; z-index: 2; }
.hero-kicker { margin-bottom: 24px; display: inline-flex; align-items: center; gap: 10px; }
.hero-title {
  font-family: var(--font-jp-display);
  font-size: clamp(38px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--fg);
}
.theme-manga-city .hero-title { color: var(--fg); }
.theme-manga-city .hero-title em { font-style: normal; background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; padding: 0; }
.theme-monochrome-ink .hero-title em { font-style: italic; color: var(--primary); }
.theme-neon-stream .hero-title em { font-style: normal; background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-title em { display: inline-block; }

.hero-sub {
  font-size: 15px; line-height: 1.8; color: var(--fg-muted); max-width: 480px; margin-bottom: 32px;
}
.theme-manga-city .hero-sub { color: var(--fg-muted); }

.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.theme-manga-city .hero-cta-row .btn-primary {
  background: var(--brand-gradient); color: #FFF; border-color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}
.theme-manga-city .hero-cta-row .btn-primary:hover { box-shadow: 8px 8px 0 var(--ink); }

.hero-stats {
  display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700;
  line-height: 1; color: var(--fg);
}
.theme-manga-city .hero-stat-num { color: var(--fg); }
.hero-stat-label {
  font-family: var(--font-display); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-soft);
}
.theme-manga-city .hero-stat-label { color: var(--fg-soft); }

/* Hero carousel/art */
.hero-art {
  position: relative; aspect-ratio: 4/5;
  border: 3px solid var(--ink);
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.theme-neon-stream .hero-art { border-color: transparent; aspect-ratio: 4/5; }
.theme-monochrome-ink .hero-art { border-width: 1px; }
.hero-art-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.hero-art-slide.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.9s ease, transform 6s ease-out;
}
.hero-art-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.1) 40%, transparent 80%);
}
.hero-art-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 24px;
  color: #fff; z-index: 2;
}
.hero-art-cap-num {
  font-family: var(--font-display); font-size: 12px;
  letter-spacing: 0.2em; color: var(--primary);
  margin-bottom: 6px;
}
.hero-art-cap-title { font-size: 20px; font-weight: 900; line-height: 1.3; }
.hero-art-cap-artist { font-size: 12px; opacity: 0.8; margin-top: 4px; }
.hero-art-dots {
  position: absolute; bottom: 16px; right: 20px; z-index: 3;
  display: flex; gap: 6px;
}
.hero-art-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none; padding: 0;
  transition: all .3s ease;
}
.hero-art-dot.active { background: var(--primary); width: 20px; border-radius: 999px; }

/* Halftone decoration - manga city — disabled to keep hero images clean */
.theme-manga-city .hero::before { display: none; }
.theme-manga-city .hero::after { display: none; }

/* ===== HERO VARIANT B — SHOWCASE ===== */
.hero-showcase {
  position: relative; min-height: 620px;
  border-bottom: 2px solid var(--ink);
  color: #fff; overflow: hidden;
}
.theme-neon-stream .hero-showcase { border-bottom-color: var(--line); }
.theme-monochrome-ink .hero-showcase { border-bottom-width: 1px; }
/* hero-sc-bg kept for fallback; slides handle animation */
.hero-sc-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(1.15) contrast(1.05) brightness(1.08);
}
.hero-sc-bg-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(1.15) contrast(1.05) brightness(1.08);
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.hero-sc-bg-slide.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.9s ease, transform 6s ease-out;
}
.hero-sc-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(8,6,20,.6) 0%, rgba(8,6,20,.25) 45%, transparent 75%),
    linear-gradient(to top, rgba(0,0,0,.55), transparent 45%);
}
.hero-sc-inner {
  position: relative; z-index: 2;
  max-width: 1320px; margin: 0 auto;
  padding: 120px 32px 56px;
  display: flex; flex-direction: column; gap: 18px;
}
.hero-sc-meta {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 13px;
  letter-spacing: 0.2em; color: #fff; font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.hero-sc-meta .hero-sc-num { background: var(--brand-gradient); padding: 4px 12px; }
.hero-sc-meta .hero-sc-dot { color: var(--primary); opacity: 0.9; }
.hero-sc-title {
  font-family: var(--font-jp-display);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 900; line-height: 1.15;
  letter-spacing: -0.025em;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,.6), 0 2px 6px rgba(0,0,0,.7);
  max-width: 780px;
}
.hero-sc-tagline { font-size: 16px; color: rgba(255,255,255,.9); max-width: 560px; line-height: 1.7; }
.hero-sc-artist { font-size: 13px; color: rgba(255,255,255,.75); }
.hero-sc-artist strong { color: #fff; font-weight: 800; border-bottom: 1.5px solid var(--primary); padding-bottom: 1px; }
.hero-sc-products {
  display: flex; gap: 14px; margin-top: 12px; flex-wrap: wrap;
}
.hero-sc-product {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.08); backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255,255,255,.18);
  padding: 12px 18px 12px 12px; min-width: 220px;
  border-radius: var(--radius-lg);
  cursor: pointer; transition: all .2s ease; color: #fff;
  animation: hero-sc-in .5s ease both;
}
@keyframes hero-sc-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero-sc-product:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); border-color: var(--primary); }
.hero-sc-product-img {
  width: 56px; height: 56px; flex-shrink: 0;
  background: rgba(255,255,255,.95);
  background-size: contain; background-repeat: no-repeat; background-position: center;
  border-radius: var(--radius);
}
.hero-sc-product-info { display: flex; flex-direction: column; }
.hero-sc-product-type { font-size: 12px; color: rgba(255,255,255,.8); font-weight: 700; }
.hero-sc-product-price { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.03em; font-weight: 700; }
.hero-sc-pager {
  display: flex; gap: 8px; margin-top: 32px;
  overflow-x: auto; padding-bottom: 4px;
}
.hero-sc-pager::-webkit-scrollbar { display: none; }
.hero-sc-pager-btn {
  display: flex; flex-direction: column; gap: 2px; text-align: left;
  padding: 10px 14px; color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  transition: all .2s ease; flex-shrink: 0;
  border-radius: var(--radius);
  min-width: 160px;
}
.hero-sc-pager-btn:hover { color: #fff; background: rgba(255,255,255,.1); }
.hero-sc-pager-btn.active { color: #fff; background: var(--brand-gradient); border-color: transparent; }
.hero-sc-pager-num { font-family: var(--font-display); font-size: 11px; letter-spacing: 0.2em; font-weight: 700; opacity: 0.8; }
.hero-sc-pager-ttl { font-size: 12px; font-weight: 700; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
@media (max-width: 640px) {
  .hero-sc-inner { padding: 110px 20px 40px; }
  .hero-sc-product { min-width: calc(50% - 7px); }
}

/* ===== HERO VARIANT C — IMMERSIVE ===== */
.hero-immersive {
  position: relative; height: 86vh; min-height: 600px; max-height: 840px;
  overflow: hidden; color: #fff;
  border-bottom: 2px solid var(--ink);
}
.theme-neon-stream .hero-immersive { border-bottom-color: var(--line); }
.theme-monochrome-ink .hero-immersive { border-bottom-width: 1px; }
.hero-im-frames { position: absolute; inset: 0; }
.hero-im-frame {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-im-frame.active { opacity: 1; }
.hero-im-frame-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: hero-im-zoom 10s ease-out both;
}
@keyframes hero-im-zoom { from { transform: scale(1.15); } to { transform: scale(1); } }
.hero-im-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(0,0,0,.65) 75%),
    linear-gradient(to right, rgba(0,0,0,.85), rgba(0,0,0,.35) 50%, transparent 75%),
    linear-gradient(to top, rgba(0,0,0,.8), transparent 40%);
}
.hero-im-content {
  position: relative; z-index: 2;
  max-width: 1320px; margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  gap: 20px;
}
.hero-im-kicker .kicker { color: #fff; background: var(--brand-gradient); padding: 4px 10px; font-size: 12px; }
.hero-im-title {
  font-family: var(--font-jp-display);
  font-size: clamp(52px, 9vw, 120px);
  font-weight: 900; line-height: 0.98;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 50px rgba(0,0,0,.6);
  max-width: 900px;
}
.hero-im-title em {
  font-style: normal;
  background: var(--brand-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-im-sub { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.88); max-width: 520px; }
.hero-im-cta { margin-top: 8px; }
.hero-im-cta .btn-primary { background: var(--brand-gradient); border-color: transparent; color: #fff; padding: 18px 32px; font-size: 15px; box-shadow: 0 12px 40px rgba(212,53,126,.35); }
.hero-im-cta .btn-primary:hover { box-shadow: 0 16px 48px rgba(212,53,126,.5); transform: translateY(-2px); }
.hero-im-now {
  position: absolute; right: 32px; bottom: 24px;
  display: flex; flex-direction: column; gap: 4px; text-align: right;
  padding: 16px 20px;
  background: rgba(255,255,255,.08); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  min-width: 240px; max-width: 320px;
}
.hero-im-now-label { font-family: var(--font-display); font-size: 10px; letter-spacing: 0.22em; color: var(--primary); font-weight: 700; }
.hero-im-now-body { display: flex; flex-direction: column; gap: 2px; align-items: flex-end; }
.hero-im-now-num { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.18em; color: rgba(255,255,255,.7); font-weight: 700; }
.hero-im-now-ttl { font-size: 15px; font-weight: 900; line-height: 1.3; color: #fff; }
.hero-im-now-ttl small { font-size: 11px; font-weight: 500; color: rgba(255,255,255,.7); }
.hero-im-pager {
  position: absolute; left: 32px; bottom: 24px; z-index: 3;
  display: flex; gap: 6px;
}
.hero-im-pager-btn {
  width: 40px; height: 40px;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  transition: all .2s ease;
  border-radius: var(--radius);
}
.hero-im-pager-btn:hover { color: #fff; background: rgba(255,255,255,.15); }
.hero-im-pager-btn.active { color: #fff; background: var(--brand-gradient); border-color: transparent; }
@media (max-width: 768px) {
  .hero-immersive { height: auto; min-height: 560px; }
  .hero-im-content { padding: 120px 20px 140px; }
  .hero-im-now { position: static; margin-top: 24px; text-align: left; align-items: flex-start; }
  .hero-im-now-body { align-items: flex-start; }
  .hero-im-pager { left: 20px; bottom: 16px; }
}
.marquee {
  background: var(--ink); color: var(--ink-fg);
  padding: 14px 0; overflow: hidden;
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  font-family: var(--font-display); font-size: 18px; letter-spacing: 0.1em;
}
.theme-monochrome-ink .marquee { border-width: 1px; }
.marquee-track { display: flex; gap: 40px; animation: marquee 40s linear infinite; width: max-content; }
.marquee-item { display: inline-flex; align-items: center; gap: 40px; white-space: nowrap; }
.marquee-item::after {
  content: '✦'; color: var(--primary); font-size: 20px; margin-left: 40px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== CATEGORY STRIP ===== */
.cats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding: 32px 0;
}
@media (max-width: 640px) { .cats { grid-template-columns: 1fr; gap: 12px; } }
.cat-card {
  position: relative; overflow: hidden;
  border: 2px solid var(--ink);
  padding: 32px 28px; background: var(--surface);
  transition: all .2s ease; cursor: pointer;
  display: flex; align-items: center; gap: 18px;
  border-radius: var(--radius);
}
.theme-neon-stream .cat-card { border-color: var(--line-soft); background: var(--surface); }
.theme-monochrome-ink .cat-card { border-width: 1px; }
.cat-card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-pop); background: var(--primary); color: var(--primary-fg); }
.theme-neon-stream .cat-card:hover { transform: translateY(-3px); background: var(--surface-2); color: var(--fg); }
.cat-card:hover .cat-card-icon { color: var(--primary-fg); }
.theme-neon-stream .cat-card:hover .cat-card-icon { color: var(--primary); }
.cat-card-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-2);
  color: var(--primary);
  border-radius: var(--radius);
}
.cat-card:hover .cat-card-icon { background: var(--ink); }
.cat-card-title {
  font-family: var(--font-jp-display);
  font-size: 18px; font-weight: 900;
}
.cat-card-sub {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; color: var(--fg-soft); text-transform: uppercase;
  margin-top: 2px;
  font-family: var(--font-display);
}
.cat-card:hover .cat-card-sub { color: rgba(255,255,255,.8); }
.theme-neon-stream .cat-card:hover .cat-card-sub { color: var(--fg-soft); }

/* ===== SECTION HEAD ===== */
.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 20px;
}
.theme-neon-stream .sec-head { border-bottom-color: var(--line); }
.theme-monochrome-ink .sec-head { border-bottom-width: 1px; }
.sec-head-l { display: flex; flex-direction: column; gap: 6px; }
.sec-head-en {
  font-family: var(--font-display); font-size: 14px;
  letter-spacing: 0.2em; color: var(--primary); font-weight: 700;
  text-transform: uppercase;
}
.sec-head-jp {
  font-family: var(--font-jp-display);
  font-size: clamp(24px, 3vw, 36px); font-weight: 900; letter-spacing: -0.01em;
  color: var(--fg);
}
.sec-head-r { font-size: 13px; color: var(--fg-muted); }

/* ===== PICKUP ===== */
.pickup-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px;
}
@media (max-width: 900px) { .pickup-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .pickup-grid { grid-template-columns: 1fr; } }
.pickup-hero {
  grid-row: span 2;
  position: relative;
  aspect-ratio: 1;
  background: var(--surface);
  border: 2px solid var(--ink);
  overflow: hidden; cursor: pointer;
  transition: all .2s ease;
  border-radius: var(--radius-lg);
}
.theme-neon-stream .pickup-hero { border-color: var(--line-soft); }
.theme-monochrome-ink .pickup-hero { border-width: 1px; }
@media (max-width: 900px) { .pickup-hero { grid-row: auto; grid-column: span 2; } }
@media (max-width: 540px) { .pickup-hero { grid-column: auto; } }
.pickup-hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.pickup-hero-body {
  position: absolute; inset: auto 0 0 0; padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
  color: #fff;
}
.pickup-hero-tag {
  display: inline-block; background: var(--primary); color: var(--primary-fg);
  font-family: var(--font-display); font-size: 12px;
  letter-spacing: 0.15em; padding: 4px 10px; margin-bottom: 12px; font-weight: 700;
}
.pickup-hero-title { font-size: 24px; font-weight: 900; line-height: 1.3; }
.pickup-hero:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-pop); }
.theme-neon-stream .pickup-hero:hover { transform: translateY(-3px); }

.pickup-small {
  position: relative; aspect-ratio: 1;
  background: var(--surface);
  border: 2px solid var(--ink);
  overflow: hidden; cursor: pointer;
  transition: all .2s ease;
  padding: 20px; display: flex; flex-direction: column;
  border-radius: var(--radius);
}
.theme-neon-stream .pickup-small { border-color: var(--line-soft); }
.theme-monochrome-ink .pickup-small { border-width: 1px; }
.pickup-small:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-pop); }
.theme-neon-stream .pickup-small:hover { transform: translateY(-3px); }
.pickup-small-img {
  flex: 1; background-size: contain; background-repeat: no-repeat; background-position: center;
  margin-bottom: 12px;
}
.pickup-small-series { font-family: var(--font-display); font-size: 10px; color: var(--primary); letter-spacing: 0.15em; font-weight: 700; }
.pickup-small-title { font-size: 13px; font-weight: 900; line-height: 1.4; margin-top: 2px; }
.pickup-small-price { font-family: var(--font-display); font-size: 18px; margin-top: 6px; color: var(--fg); }

/* PickUp topic blocks (new 2-section layout) */
.pickup-topic-block { margin-bottom: 36px; }
.pickup-topic-block:last-child { margin-bottom: 0; }
.pickup-topic-hd {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1.5px solid var(--line);
  font-size: 13px; font-weight: 700; color: var(--fg-muted);
}
.pickup-topic-badge {
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 4px; white-space: nowrap;
}
.pickup-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
@media (max-width: 540px) { .pickup-row { grid-template-columns: 1fr 1fr; } }

/* PickUp feature: key visual + goods grid */
.pickup-blocks { display: flex; flex-direction: column; gap: 32px; }
.pickup-feature {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 2px solid var(--ink); border-radius: var(--radius-lg);
  overflow: hidden; min-height: 380px;
}
.theme-neon-stream .pickup-feature { border-color: var(--line-soft); }
.theme-monochrome-ink .pickup-feature { border-width: 1px; }
.pickup-feature-visual {
  position: relative;
  background-size: cover; background-position: center;
  cursor: pointer; min-height: 340px;
  transition: transform .35s ease;
}
.pickup-feature-visual:hover { transform: scale(1.02); }
.pickup-feature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.45) 55%, transparent);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; color: #fff;
}
.pickup-feature-badge {
  display: inline-block; align-self: flex-start;
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 4px; white-space: nowrap;
  margin-bottom: 14px;
}
.pickup-feature-num {
  font-family: var(--font-display); font-size: 11px;
  letter-spacing: 0.18em; color: var(--primary);
  margin-bottom: 6px; font-weight: 700;
}
.pickup-feature-title { font-size: 24px; font-weight: 900; line-height: 1.25; margin-bottom: 6px; }
.pickup-feature-artist { font-size: 13px; opacity: 0.85; margin-bottom: 12px; font-weight: 600; }
.pickup-feature-synopsis {
  font-size: 12px; line-height: 1.7; opacity: 0.8;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden;
}
.pickup-feature-goods {
  background: var(--surface); padding: 20px;
  display: flex; flex-direction: column;
}
.pickup-feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; flex: 1;
}
.pickup-fg-card {
  display: flex; flex-direction: column;
  background: var(--bg); border: 1.5px solid var(--line);
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pickup-fg-card:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-pop); }
.pickup-fg-head { padding: 10px 0 8px; }
.pickup-fg-head-text { font-size: 11px; color: var(--fg-muted); font-weight: 600; letter-spacing: 0.04em; }
.pickup-fg-img { flex: 1; background-size: contain; background-position: center; background-repeat: no-repeat; min-height: 180px; }
.pickup-fg-info { padding: 10px 12px 12px; border-top: 1px solid var(--line); }
.pickup-fg-name { font-size: 11px; color: var(--fg-muted); font-weight: 600; margin-bottom: 3px; }
.pickup-fg-price { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--fg); margin-bottom: 6px; }
.pickup-fg-cta { font-size: 11px; font-weight: 700; color: var(--primary); }
@media (max-width: 768px) {
  .pickup-feature { grid-template-columns: 1fr; }
  .pickup-feature-visual { min-height: 260px; }
}
@media (max-width: 480px) {
  .pickup-feature-goods { padding: 14px; }
  .pickup-feature-grid { gap: 8px; }
  .pickup-fg-img { min-height: 90px; }
}

/* ===== SERIES ===== */
.series-wrap { background: var(--bg-2); padding: 96px 0; }
.theme-neon-stream .series-wrap { background: var(--bg-2); }
.theme-manga-city .series-wrap { background: var(--ink); color: var(--ink-fg); }
.theme-manga-city .series-wrap .sec-head-jp { color: var(--ink-fg); }
.theme-manga-city .series-wrap .sec-head { border-bottom-color: var(--ink-fg); }
.theme-manga-city .series-wrap .sec-head-r { color: rgba(255,245,232,.6); }

.series-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 960px) { .series-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .series-grid { grid-template-columns: 1fr; } }

.series-card {
  position: relative;
  aspect-ratio: 4/5;
  border: 2px solid var(--ink);
  overflow: hidden; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  background: var(--surface);
  border-radius: var(--radius-lg);
}
.theme-manga-city .series-card { border-color: var(--ink-fg); }
.theme-neon-stream .series-card { border-color: transparent; }
.theme-monochrome-ink .series-card { border-width: 1px; }
.series-card:hover { transform: translate(-4px,-4px); box-shadow: var(--shadow-pop); }
.theme-neon-stream .series-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.4); }
.series-card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.series-card:hover .series-card-img { transform: scale(1.06); }
.series-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92), rgba(0,0,0,.2) 50%, transparent);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; color: #fff;
}
.series-card-num {
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: 0.18em; color: var(--primary);
  margin-bottom: 8px; font-weight: 700;
}
.series-card-title { font-size: 22px; font-weight: 900; line-height: 1.25; margin-bottom: 4px; }
.series-card-artist { font-size: 12px; opacity: 0.8; }
.series-card-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--primary); color: var(--primary-fg);
  font-family: var(--font-display); font-size: 10px; padding: 4px 10px;
  letter-spacing: 0.12em; font-weight: 700;
}
.theme-monochrome-ink .series-card-badge { background: var(--ink); color: var(--ink-fg); }
.series-card-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--ink); color: var(--ink-fg);
  font-family: var(--font-display); font-size: 10px; padding: 4px 10px;
  letter-spacing: 0.12em; font-weight: 700;
}
.theme-manga-city .series-card-tag { background: var(--accent-2); color: var(--ink); }

/* ===== SERIES CAROUSEL ===== */
.series-carousel-outer {
  overflow: hidden;
  padding: 8px 0 24px;
  cursor: grab;
  user-select: none;
}
.series-carousel-outer:active { cursor: grabbing; }
.series-carousel-track {
  display: flex; gap: 20px; width: max-content;
  padding: 8px 0;
  will-change: transform;
}
.series-carousel-card { width: 260px; flex-shrink: 0; }
@media (max-width: 560px) {
  .series-carousel-card { width: 200px; }
  .series-carousel-track { gap: 14px; }
}

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex; gap: 12px; align-items: center; margin-bottom: 32px;
  flex-wrap: wrap;
  padding: 16px 20px;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
}
.theme-neon-stream .filter-bar { border-color: var(--line-soft); }
.theme-monochrome-ink .filter-bar { border-width: 1px; }
.filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-tab {
  padding: 8px 16px; font-size: 13px; font-weight: 800;
  background: transparent; color: var(--fg-muted);
  border: 1.5px solid var(--line-soft);
  border-radius: var(--radius);
  transition: all .18s ease;
}
.filter-tab:hover { background: var(--bg-2); color: var(--fg); }
.filter-tab.active { background: var(--ink); color: var(--ink-fg); border-color: var(--ink); }
.theme-manga-city .filter-tab.active { background: var(--primary); color: var(--primary-fg); border-color: var(--primary); }

.filter-sort {
  margin-left: auto;
  display: flex; align-items: center; gap: 8px;
}
.filter-sort select {
  padding: 8px 14px; font-size: 13px; font-weight: 700;
  background: var(--bg-2); color: var(--fg);
  border: 1.5px solid var(--line-soft); outline: none;
  border-radius: var(--radius);
}
.filter-count { font-size: 13px; color: var(--fg-soft); font-weight: 600; }

.active-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.chip-active {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; background: var(--primary); color: var(--primary-fg);
  font-size: 12px; font-weight: 700;
  border-radius: var(--radius);
}
.chip-active button {
  color: var(--primary-fg); font-size: 16px;
  line-height: 1; padding: 0;
}

/* ===== PRODUCT GRID ===== */
.p-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 1100px) { .p-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .p-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.p-card {
  position: relative;
  background: var(--surface);
  border: 2px solid var(--ink);
  overflow: hidden; cursor: pointer;
  transition: all .25s ease;
  display: flex; flex-direction: column;
  border-radius: var(--radius);
}
.theme-neon-stream .p-card { border-color: var(--line-soft); }
.theme-monochrome-ink .p-card { border-width: 1px; }
.p-card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-pop); }
.theme-neon-stream .p-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.p-card-img {
  position: relative; aspect-ratio: 1;
  background: var(--bg-2);
  overflow: hidden;
}
.p-card-img img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 10px; transition: transform .5s ease;
}
.p-card:hover .p-card-img img { transform: scale(1.05); }
.p-card-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.p-badge {
  font-family: var(--font-display);
  font-size: 10px; padding: 3px 8px;
  letter-spacing: 0.12em; font-weight: 700;
  background: var(--ink); color: var(--ink-fg);
  border-radius: var(--radius);
}
.p-badge-new { background: var(--primary); color: var(--primary-fg); }
.theme-manga-city .p-badge-new { background: var(--accent-3); }

.p-fav {
  position: absolute; top: 10px; right: 10px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); color: var(--fg-muted);
  border: 1.5px solid var(--line-soft);
  transition: all .18s ease;
  border-radius: 999px;
  z-index: 2;
}
.p-fav:hover, .p-fav.active { background: var(--primary); color: var(--primary-fg); border-color: var(--primary); }

.p-card-info { padding: 16px 18px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.p-card-series { font-family: var(--font-display); font-size: 11px; color: var(--primary); letter-spacing: 0.12em; font-weight: 700; }
.p-card-name { font-size: 14px; font-weight: 900; line-height: 1.4; color: var(--fg); }
.p-card-artist { font-size: 11px; color: var(--fg-soft); }
.p-card-bottom {
  margin-top: auto; padding-top: 10px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 8px;
}
.p-card-price {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: 0.02em; color: var(--fg);
  font-weight: 700;
}
.p-card-price small { font-size: 11px; color: var(--fg-soft); font-family: 'Noto Sans JP', sans-serif; }
.p-card-cta {
  font-size: 11px; font-weight: 800; color: var(--primary);
  border-bottom: 1.5px solid var(--primary);
  padding-bottom: 1px;
}

/* Load more */
.load-more {
  display: block; margin: 40px auto 0;
  padding: 16px 40px;
  background: transparent; color: var(--fg);
  font-size: 14px; font-weight: 800;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
}
.theme-neon-stream .load-more { border-color: var(--line); }
.load-more:hover { background: var(--ink); color: var(--ink-fg); }
.load-more-close { border-color: var(--line); color: var(--fg-muted); }
.load-more-close:hover { background: var(--surface); color: var(--fg); }

/* ===== PRODUCT DETAIL ===== */
.pd-wrap { max-width: 1200px; margin: 0 auto; padding: 32px; }
.pd-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; margin-top: 24px; }
@media (max-width: 860px) { .pd-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; } }
.pd-name { overflow-wrap: anywhere; word-break: break-word; }
.pd-gallery {
  position: sticky; top: 90px;
  display: flex; flex-direction: column; gap: 12px;
}
@media (max-width: 860px) { .pd-gallery { position: static; } }
.pd-main-img {
  aspect-ratio: 1; background: var(--surface);
  border: 2px solid var(--ink);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
}
.theme-neon-stream .pd-main-img { border-color: var(--line-soft); }
.theme-monochrome-ink .pd-main-img { border-width: 1px; }
.pd-main-img img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.pd-thumbs { display: flex; gap: 10px; }
.pd-thumb {
  width: 72px; height: 72px;
  background: var(--surface);
  border: 2px solid var(--line-soft);
  cursor: pointer;
  border-radius: var(--radius);
  padding: 4px;
}
.pd-thumb.active { border-color: var(--primary); }
.pd-thumb img { width: 100%; height: 100%; object-fit: contain; }

.pd-info { padding: 16px 0; }
.pd-series { font-family: var(--font-display); font-size: 13px; color: var(--primary); letter-spacing: 0.15em; font-weight: 700; margin-bottom: 8px; }
.pd-name {
  font-family: var(--font-jp-display);
  font-size: clamp(24px, 3.5vw, 38px); font-weight: 900; line-height: 1.2;
  letter-spacing: -0.01em; margin-bottom: 8px;
}
.pd-artist-row {
  display: flex; align-items: center; gap: 10px; margin-bottom: 24px;
  font-size: 13px; color: var(--fg-muted);
}
.pd-artist-row a { font-weight: 700; color: var(--fg); border-bottom: 1.5px solid var(--primary); }
.pd-price-row {
  padding: 20px 0; margin: 24px 0;
  border-top: 2px solid var(--line-soft); border-bottom: 2px solid var(--line-soft);
  display: flex; align-items: baseline; gap: 12px;
}
.pd-price {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 700; color: var(--fg);
  letter-spacing: 0.02em;
}
.pd-price small { font-size: 13px; color: var(--fg-soft); font-family: 'Noto Sans JP', sans-serif; font-weight: 500; }

.pd-size-row { margin-bottom: 24px; }
.pd-size-row h5 {
  font-family: var(--font-display); font-size: 12px; letter-spacing: 0.18em;
  color: var(--fg-muted); margin-bottom: 10px; text-transform: uppercase; font-weight: 700;
}
.pd-size-opts { display: flex; gap: 8px; flex-wrap: wrap; }
.pd-size-opt {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); color: var(--fg);
  border: 1.5px solid var(--line); font-weight: 800;
  border-radius: var(--radius);
}
.pd-size-opt.active { background: var(--ink); color: var(--ink-fg); border-color: var(--ink); }

.pd-cta-row { display: flex; gap: 10px; margin-top: 24px; }
.pd-cta-row .btn { flex: 1; padding: 18px 24px; font-size: 15px; }
.pd-cta-row .btn-fav {
  flex: 0 0 56px; padding: 0;
  background: var(--surface); border: 2px solid var(--line);
  color: var(--fg);
}
.pd-cta-row .btn-fav.active { background: var(--primary); color: var(--primary-fg); border-color: var(--primary); }

.pd-share-row { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.pd-share-label { font-size: 11px; font-weight: 700; color: var(--fg-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-right: 4px; }
.pd-share-btn { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--surface); border: 1.5px solid var(--line); color: var(--fg); transition: background .15s, color .15s, border-color .15s; }
.pd-share-btn:hover { background: #1d1f27; color: #fff; border-color: #555; }
.pd-share-btn.pd-share-line:hover { background: #06c755; color: #fff; border-color: #06c755; }

.pd-desc {
  margin-top: 32px;
  padding: 24px; background: var(--surface-2);
  font-size: 13px; line-height: 1.8; color: var(--fg-muted);
  border-radius: var(--radius);
}
.pd-desc h5 { font-size: 13px; font-weight: 900; color: var(--fg); margin-bottom: 8px; letter-spacing: 0.05em; }

.pd-meta { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; font-size: 12px; }
.pd-meta > div { padding: 10px 0; border-top: 1px solid var(--line-soft); }
.pd-meta strong { display: block; color: var(--fg-soft); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px; font-family: var(--font-display); }

/* ===== ARTIST CARD ===== */
.artist-wrap { background: var(--surface-2); padding: 72px 0; }
.artist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .artist-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .artist-grid { grid-template-columns: 1fr; } }
.artist-card {
  background: var(--surface);
  border: 2px solid var(--ink);
  transition: all .2s ease;
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  cursor: pointer;
  overflow: hidden;
}
.artist-card-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.artist-card-body {
  padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.artist-card-links {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.artist-card-link-btn {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 700;
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  border: 1.5px solid var(--primary);
  border-radius: 4px; padding: 4px 9px;
  text-decoration: none;
  transition: background .15s ease;
}
.artist-card-link-btn:hover { background: color-mix(in srgb, var(--primary) 16%, transparent); }
.artist-card-link-btn.ghost { color: var(--fg-muted); background: transparent; border-color: var(--line); }
.artist-card-link-btn.ghost:hover { background: var(--surface-2); }
.theme-neon-stream .artist-card { border-color: var(--line-soft); }
.theme-monochrome-ink .artist-card { border-width: 1px; }
.artist-card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-pop); }
.theme-neon-stream .artist-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.artist-avatar {
  width: 56px; height: 56px;
  background: var(--primary); color: var(--primary-fg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 22px;
  border: 2px solid var(--ink); border-radius: 999px;
  font-weight: 700;
}
.theme-neon-stream .artist-avatar { border-color: transparent; }
.artist-name {
  font-family: var(--font-jp-display);
  font-size: 22px; font-weight: 900;
}
.artist-role { font-size: 11px; color: var(--fg-soft); letter-spacing: 0.1em; font-family: var(--font-display); font-weight: 700; }
.artist-country {
  display: inline-block;
  padding: 3px 10px; font-size: 10px; font-weight: 800;
  background: var(--bg-2); color: var(--fg);
  letter-spacing: 0.08em; font-family: var(--font-display);
  border-radius: var(--radius);
  width: fit-content;
}
.artist-bio { font-size: 13px; color: var(--fg-muted); line-height: 1.8; }
.artist-works {
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  font-size: 11px; color: var(--fg-soft); font-weight: 700;
}

/* ===== FLOW (purchase) ===== */
.flow-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  counter-reset: flow;
}
@media (max-width: 900px) { .flow-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .flow-grid { grid-template-columns: 1fr; } }
.flow-card {
  padding: 32px 24px;
  background: var(--surface);
  border: 2px solid var(--ink);
  position: relative;
  border-radius: var(--radius);
}
.theme-neon-stream .flow-card { border-color: var(--line-soft); }
.theme-monochrome-ink .flow-card { border-width: 1px; }
.flow-num {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 700;
  color: var(--primary); line-height: 1;
  margin-bottom: 16px;
}
.flow-card h4 {
  font-family: var(--font-jp-display);
  font-size: 18px; font-weight: 900; margin-bottom: 8px;
}
.flow-card p { font-size: 13px; color: var(--fg-muted); line-height: 1.8; }

/* ===== FAQ ===== */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1.5px solid var(--line-soft);
  padding: 20px 4px;
  cursor: pointer;
}
.faq-q {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 16px; font-weight: 800; color: var(--fg);
}
.faq-q::before {
  content: 'Q';
  font-family: var(--font-display); font-size: 22px;
  color: var(--primary); flex-shrink: 0; line-height: 1;
}
.faq-toggle {
  margin-left: auto; font-size: 22px; font-weight: 700;
  color: var(--fg-soft); transition: transform .2s ease;
  line-height: 1;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  font-size: 13px; color: var(--fg-muted); line-height: 1.85;
  padding-left: 36px;
}
.faq-item.open .faq-a { max-height: 500px; padding-top: 12px; }

/* ===== SIZE GUIDE ===== */
.sg-wrap { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 40px; }
.sg-card {
  padding: 32px;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
}
.theme-neon-stream .sg-card { border-color: var(--line-soft); }
.theme-monochrome-ink .sg-card { border-width: 1px; }
.sg-card h3 {
  font-family: var(--font-jp-display);
  font-size: 22px; font-weight: 900; margin-bottom: 4px;
}
.sg-unit { font-size: 11px; color: var(--fg-soft); letter-spacing: 0.1em; font-family: var(--font-display); font-weight: 700; margin-bottom: 20px; }
.sg-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.sg-table th, .sg-table td { padding: 12px 16px; text-align: center; border-bottom: 1px solid var(--line-soft); }
.sg-table th { background: var(--bg-2); font-family: var(--font-display); letter-spacing: 0.1em; color: var(--fg); font-weight: 700; }
.sg-table td:first-child, .sg-table th:first-child { font-weight: 800; }
.sg-note { margin-top: 16px; font-size: 12px; color: var(--fg-soft); line-height: 1.7; }

/* ===== Empty ===== */
.empty-state {
  text-align: center; padding: 80px 20px;
  color: var(--fg-soft);
}
.empty-state-icon { font-size: 48px; margin-bottom: 12px; opacity: 0.4; }
.empty-state-text { font-size: 14px; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 24px; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .about-grid { grid-template-columns: 1fr; } }
.about-card {
  padding: 28px;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
}
.theme-neon-stream .about-card { border-color: var(--line-soft); }
.theme-monochrome-ink .about-card { border-width: 1px; }
.about-num {
  font-family: var(--font-display); font-size: 14px;
  color: var(--primary); letter-spacing: 0.18em; margin-bottom: 6px; font-weight: 700;
}
.about-card-icon {
  color: var(--primary);
  margin-bottom: 8px;
  opacity: 0.85;
}
.about-card h4 { font-family: var(--font-jp-display); font-size: 17px; font-weight: 900; margin-bottom: 8px; }
.about-card p { font-size: 13px; color: var(--fg-muted); line-height: 1.8; }

/* About — lead */
.about-lead { margin-top: 28px; margin-bottom: 36px; max-width: 680px; }
.about-lead-copy { font-family: var(--font-jp-display); font-size: 22px; font-weight: 900; line-height: 1.4; margin-bottom: 14px; }
.about-lead-body { font-size: 14px; color: var(--fg-muted); line-height: 1.9; }

/* About — sub heading */
.about-sub-head { font-family: var(--font-display); font-size: 14px; font-weight: 800; letter-spacing: 0.14em; color: var(--fg); border-top: 1.5px solid var(--line); padding-top: 32px; margin-top: 48px; margin-bottom: 20px; }

/* About — partners */
.about-partners { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .about-partners { grid-template-columns: 1fr; } }
.about-partner-card { padding: 28px; background: var(--bg); border: 2px solid var(--ink); border-radius: var(--radius); }
.theme-neon-stream .about-partner-card { border-color: var(--line-soft); }
.about-partner-label { font-family: var(--font-display); font-size: 10px; letter-spacing: 0.14em; color: var(--fg-soft); text-transform: uppercase; margin-bottom: 8px; }
.about-partner-name { font-family: var(--font-jp-display); font-size: 20px; font-weight: 900; line-height: 1.2; margin-bottom: 4px; }
.about-partner-org { font-size: 12px; color: var(--fg-muted); margin-bottom: 14px; }
.about-partner-card p { font-size: 13px; color: var(--fg-muted); line-height: 1.8; margin-bottom: 16px; }
.about-partner-link { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: var(--primary); text-decoration: none; border-bottom: 1px solid var(--primary); padding-bottom: 1px; }
.about-partner-link:hover { opacity: .75; }

/* About — roadmap */
.about-roadmap { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 32px; margin-top: 4px; }
.about-roadmap::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 1px; background: var(--line); }
.about-rm-item { position: relative; padding: 0 0 32px 20px; }
.about-rm-item:last-child { padding-bottom: 0; }
.about-rm-marker { position: absolute; left: -22px; top: 2px; width: 22px; height: 22px; border-radius: 50%; background: var(--surface); border: 2px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--fg-muted); }
.about-rm-item.done .about-rm-marker { background: var(--fg); border-color: var(--fg); color: var(--bg); }
.about-rm-item.active .about-rm-marker { background: var(--primary); border-color: var(--primary); color: #fff; }
.about-rm-date { font-family: var(--font-display); font-size: 11px; letter-spacing: 0.1em; color: var(--fg-soft); margin-bottom: 4px; }
.about-rm-title { font-family: var(--font-jp-display); font-size: 16px; font-weight: 900; margin-bottom: 6px; }
.about-rm-item.active .about-rm-title { color: var(--primary); }
.about-rm-body { font-size: 13px; color: var(--fg-muted); line-height: 1.75; }

/* ===== NEWS ===== */
.news-list { display: flex; flex-direction: column; }
.news-row {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 8px;
  border-bottom: 1.5px solid var(--line-soft);
  transition: background .18s ease;
  cursor: pointer;
}
.news-row:hover { background: var(--surface-2); padding-left: 16px; }
.news-date {
  font-family: var(--font-display); font-size: 15px;
  letter-spacing: 0.08em; color: var(--fg-muted); min-width: 100px;
  font-weight: 600;
}
.news-tag {
  font-family: var(--font-display); font-size: 10px;
  padding: 3px 10px; letter-spacing: 0.1em;
  background: var(--bg-2); color: var(--fg);
  font-weight: 700; border-radius: var(--radius);
}
.news-tag.new { background: var(--primary); color: var(--primary-fg); }
.news-tag.achievement { background: var(--accent-2); color: var(--ink); }
.news-title { flex: 1; font-size: 14px; font-weight: 700; color: var(--fg); }
@media (max-width: 640px) { .news-row { flex-wrap: wrap; gap: 10px; } .news-date { min-width: 80px; } .news-title { flex-basis: 100%; font-size: 13px; } }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--ink); color: var(--ink-fg);
  padding: 64px 48px; margin: 48px 0;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center;
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.theme-manga-city .cta-banner { background: var(--primary); color: var(--primary-fg); border: 3px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); }
.cta-banner h3 { font-family: var(--font-jp-display); font-size: clamp(26px, 3.5vw, 40px); font-weight: 900; line-height: 1.25; margin-bottom: 16px; }
.cta-banner p { font-size: 14px; line-height: 1.8; opacity: 0.8; }
@media (max-width: 760px) { .cta-banner { grid-template-columns: 1fr; padding: 40px 24px; } }

/* ===== Toast ===== */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: var(--ink-fg);
  padding: 12px 24px;
  font-size: 13px; font-weight: 700;
  border-radius: var(--radius);
  opacity: 0; pointer-events: none;
  transition: all .3s ease;
  z-index: 500;
  border: 2px solid var(--primary);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== Campaign banner ===== */
.camp-banner {
  background: var(--brand-gradient); color: #FFFFFF;
  padding: 10px 24px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 13px; font-weight: 700;
  text-align: center;
}
.camp-banner a { text-decoration: underline; font-weight: 800; color: #FFF; }
.camp-banner-badge {
  padding: 2px 8px; background: rgba(0,0,0,.25); color: #FFF;
  font-size: 10px; letter-spacing: 0.15em; font-family: var(--font-display); font-weight: 700;
  border-radius: 2px;
}

/* ==========================================================
   POLISH PASS — mobile + MANGA CITY refinement
   ========================================================== */

/* ---- MANGA CITY — stronger pop character ---- */
/* Comic-style corner sparkle on primary CTAs */
.theme-manga-city .btn-primary {
  position: relative;
}
.theme-manga-city .btn-primary::after {
  content: ''; position: absolute; top: -6px; right: -6px;
  width: 10px; height: 10px;
  background: var(--accent-2);
  border: 1.5px solid var(--ink);
  border-radius: 1px;
  transform: rotate(45deg);
  opacity: 0; transition: all .2s ease;
  pointer-events: none;
}
.theme-manga-city .btn-primary:hover::after { opacity: 1; right: -10px; top: -10px; }

/* Richer series card with corner frame */
.theme-manga-city .series-card::before {
  content: ''; position: absolute;
  top: 10px; left: 10px; right: 10px; bottom: 10px;
  border: 1.5px solid rgba(247,244,237,.35);
  pointer-events: none; z-index: 2;
  transition: all .3s ease;
  border-radius: 2px;
}
.theme-manga-city .series-card:hover::before {
  top: 6px; left: 6px; right: 6px; bottom: 6px;
  border-color: var(--accent-2);
}

/* Section head en-title in manga-city: underline punctuation */
.theme-manga-city .sec-head-en {
  display: inline-flex; align-items: center; gap: 10px;
}
.theme-manga-city .sec-head-en::before {
  content: ''; width: 24px; height: 2px; background: var(--primary);
  display: inline-block;
}

/* Product card — manga-city price tag corner */
.theme-manga-city .p-card {
  background: var(--surface);
}
.theme-manga-city .p-card::after {
  content: ''; position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-top: 18px solid var(--accent-2);
  border-left: 18px solid transparent;
  opacity: 0; transition: opacity .25s ease;
  pointer-events: none;
}
.theme-manga-city .p-card:hover::after { opacity: 1; }
.theme-manga-city .p-card:hover { border-color: var(--primary); }

/* Pickup hero: pop-corner tape accent */
.theme-manga-city .pickup-hero {
  background: var(--ink);
}
.theme-manga-city .pickup-hero-tag {
  transform: rotate(-2deg) translateX(-2px);
  box-shadow: 2px 2px 0 var(--ink);
}

/* Marquee: punch it up with accent-2 ✦ */
.theme-manga-city .marquee { background: var(--ink); }
.theme-manga-city .marquee-item::after { color: var(--accent-2); }

/* Filter tab active state: extra pop */
.theme-manga-city .filter-tab.active { box-shadow: 3px 3px 0 var(--ink); transform: translate(-1px,-1px); }

/* About card — halftone bg decoration in manga-city */
.theme-manga-city .about-card {
  position: relative; overflow: hidden;
}
.theme-manga-city .about-card::before {
  content: ''; position: absolute; right: -30px; bottom: -30px;
  width: 120px; height: 120px;
  background: var(--halftone);
  opacity: 0.1; pointer-events: none;
  mask-image: radial-gradient(circle, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle, #000 30%, transparent 70%);
}

/* Pick-up small: show price bigger, more impact */
.theme-manga-city .pickup-small:hover { background: var(--primary); color: var(--primary-fg); }
.theme-manga-city .pickup-small:hover .pickup-small-series { color: var(--accent-2); }
.theme-manga-city .pickup-small:hover .pickup-small-price { color: var(--primary-fg); }

/* Comic-burst pickup-hero-tag in series */
.theme-manga-city .series-card-badge {
  box-shadow: 2px 2px 0 var(--ink);
}

/* CTA Banner — improve text contrast + add halftone */
.theme-manga-city .cta-banner::before {
  content: ''; position: absolute; top: 0; left: 0; width: 60%; height: 100%;
  background: var(--halftone);
  opacity: 0.18; pointer-events: none;
  mask-image: linear-gradient(to right, #000, transparent);
  -webkit-mask-image: linear-gradient(to right, #000, transparent);
}
.theme-manga-city .cta-banner p { opacity: 0.92; color: var(--primary-fg); }

/* ---- FOCUS STATES (keyboard a11y) ---- */
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2.5px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- MICRO ANIMATIONS ---- */
@keyframes ino-fade-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.p-card, .series-card, .pickup-hero, .pickup-small, .cat-card, .artist-card, .about-card, .flow-card, .sg-card {
  animation: ino-fade-in .5s ease both;
}

/* ==========================================================
   MOBILE POLISH — consolidated breakpoint fixes
   ========================================================== */
@media (max-width: 1080px) {
  /* Tablet: reduce outer padding */
  .container { padding: 0 24px; }
  .hdr-inner { padding: 0 20px; }
}

@media (max-width: 768px) {
  /* Mobile section rhythm */
  .section-pad { padding: 56px 0; }
  .series-wrap { padding: 64px 0; }
  .artist-wrap { padding: 56px 0; }

  /* Section head — stack cleanly */
  .sec-head { margin-bottom: 28px; padding-bottom: 16px; gap: 8px; }
  .sec-head-r { font-size: 12px; width: 100%; }
  .sec-head-jp { font-size: 22px; }

  /* Header mobile */
  .hdr-inner { padding: 0 16px; height: 60px; gap: 8px; }
  .hdr-logo-mark { height: 26px; }
  .hdr-logo-text span { font-size: 15px; }
  .hdr-logo-sub { font-size: 9px !important; }
  .hdr-icon-btn { width: 40px; height: 40px; }

  /* Campaign banner compact */
  .camp-banner { font-size: 11px; padding: 8px 12px; flex-wrap: wrap; gap: 6px; line-height: 1.4; }
  .camp-banner-badge { font-size: 9px; }

  /* Hero editorial compact */
  .hero-inner { padding: 40px 20px 56px; gap: 24px; }
  .hero-title { font-size: clamp(32px, 10vw, 48px); margin-bottom: 18px; }
  .hero-sub { font-size: 14px; margin-bottom: 24px; }
  .hero-stats { gap: 20px; margin-top: 28px; }
  .hero-stat-num { font-size: 30px; }
  .hero-cta-row .btn { flex: 1; min-width: 0; padding: 14px 18px; }
  .hero-art-caption { padding: 18px; }
  .hero-art-cap-title { font-size: 16px; }

  /* Hero showcase mobile */
  .hero-showcase { min-height: 540px; }
  .hero-sc-inner { padding: 110px 20px 36px; gap: 14px; }
  .hero-sc-title { font-size: clamp(34px, 9vw, 56px) !important; line-height: 1.04; }
  .hero-sc-tagline { font-size: 14px; line-height: 1.6; }
  .hero-sc-products { gap: 8px; }
  .hero-sc-product { min-width: calc(50% - 4px); padding: 10px; }
  .hero-sc-product-img { width: 44px; height: 44px; }
  .hero-sc-product-price { font-size: 18px; }
  .hero-sc-pager { margin-top: 20px; padding-bottom: 4px; gap: 6px; }
  .hero-sc-pager-btn { flex-shrink: 0; min-width: 140px; padding: 8px 10px; }
  .hero-sc-pager-ttl { font-size: 11px; }

  /* Hero immersive mobile */
  .hero-immersive { min-height: 520px; }
  .hero-im-content { padding: 80px 20px 120px; gap: 14px; }
  .hero-im-title { font-size: clamp(40px, 12vw, 64px) !important; line-height: 1; }
  .hero-im-sub { font-size: 13px; }
  .hero-im-now { min-width: 0; max-width: none; padding: 12px 14px; }
  .hero-im-now-ttl { font-size: 14px; }
  .hero-im-cta .btn-primary { padding: 14px 22px; font-size: 14px; }

  /* Marquee: reduce height */
  .marquee { font-size: 14px; padding: 10px 0; letter-spacing: 0.05em; }
  .marquee-item::after { font-size: 16px; margin-left: 28px; }
  .marquee-track { gap: 28px; }

  /* Category cards */
  .cats { gap: 10px; padding: 20px 0; }
  .cat-card { padding: 20px 18px; gap: 14px; }
  .cat-card-icon { width: 44px; height: 44px; }
  .cat-card-title { font-size: 16px; }

  /* Pickup mobile — keep hero full-width, rest 2-up */
  .pickup-grid { gap: 10px; }
  .pickup-hero-body { padding: 20px; }
  .pickup-hero-title { font-size: 18px; }
  .pickup-small { padding: 14px; }
  .pickup-small-title { font-size: 12px; }
  .pickup-small-price { font-size: 16px; }

  /* Series cards: tighter */
  .series-card-overlay { padding: 18px; }
  .series-card-title { font-size: 18px; }

  /* Filter bar: better mobile layout */
  .filter-bar { padding: 12px; gap: 8px; }
  .filter-tabs { width: 100%; }
  .filter-tab { padding: 7px 12px; font-size: 12px; flex: 1; min-width: 0; text-align: center; }
  .filter-sort { margin-left: 0; width: 100%; justify-content: space-between; gap: 8px; }
  .filter-sort select { flex: 1; }

  /* Product cards 2-up mobile */
  .p-card-info { padding: 12px 12px 14px; gap: 3px; }
  .p-card-name { font-size: 13px; line-height: 1.3; }
  .p-card-series { font-size: 10px; }
  .p-card-artist { font-size: 10px; }
  .p-card-price { font-size: 18px; }
  .p-card-price small { font-size: 10px; }
  .p-card-cta { font-size: 10px; }
  .p-fav { width: 32px; height: 32px; }
  .p-badge { font-size: 9px; padding: 2px 6px; }

  /* Product detail mobile */
  .pd-wrap { padding: 20px 16px; }
  .pd-grid { gap: 20px; }
  .pd-main-img img { padding: 12px; }
  .pd-thumb { width: 56px; height: 56px; }
  .pd-price { font-size: 36px; }
  .pd-cta-row { flex-wrap: nowrap; gap: 8px; }
  .pd-cta-row .btn { padding: 14px 16px; font-size: 13px; }
  .pd-cta-row .btn-fav { flex: 0 0 48px; }
  .pd-size-opt { width: 44px; height: 44px; font-size: 13px; }

  /* Artist grid card */
  .artist-card-body { padding: 16px; }
  .artist-name { font-size: 18px; }
  .artist-bio { font-size: 12px; }

  /* Flow mobile stacking */
  .flow-card { padding: 22px 20px; }
  .flow-num { font-size: 40px; margin-bottom: 10px; }

  /* FAQ */
  .faq-item { padding: 16px 4px; }
  .faq-q { font-size: 14px; gap: 10px; }
  .faq-q::before { font-size: 18px; }
  .faq-a { padding-left: 26px; font-size: 12px; }

  /* Size guide */
  .sg-card { padding: 20px 16px; }
  .sg-card h3 { font-size: 18px; }
  .sg-table { font-size: 12px; }
  .sg-table th, .sg-table td { padding: 8px 10px; }

  /* About card */
  .about-card { padding: 22px; }
  .about-card h4 { font-size: 15px; }
  .about-card p { font-size: 12px; }

  /* CTA banner */
  .cta-banner { padding: 36px 24px; margin: 32px 0; gap: 20px; }
  .cta-banner h3 { font-size: 22px; margin-bottom: 10px; }
  .cta-banner p { font-size: 13px; }

  /* Footer */
  .site-ftr { padding: 56px 20px 24px; margin-top: 64px; }
  .ftr-top { gap: 32px; padding-bottom: 32px; }
  .ftr-logo-big { font-size: 44px; margin-bottom: 14px; }
  .ftr-tag { font-size: 12px; }
  .ftr-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Breadcrumb compact */
  .breadcrumb { padding: 16px 0 0; font-size: 11px; }

  /* Tweaks panel — move bottom so it doesn't cover content */
  .tweaks-panel { right: 12px; bottom: 12px; width: calc(100vw - 24px); max-width: 260px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hdr-inner { padding: 0 12px; gap: 6px; }
  .hdr-logo-mark { height: 22px; }
  .hdr-logo-text span { font-size: 13px; }
  .hdr-icon-btn { width: 36px; height: 36px; }

  /* 2-up product grid → fill width cleanly */
  .p-grid { gap: 10px; }

  /* Hero text tighter */
  .hero-title { font-size: 30px; line-height: 1.08; }
  .hero-sc-title { font-size: 32px !important; }
  .hero-im-title { font-size: 38px !important; }

  /* Section title */
  .sec-head-jp { font-size: 20px; }
  .sec-head-en { font-size: 12px; }

  /* Filter tabs stack */
  .filter-tabs { gap: 4px; }
  .filter-tab { font-size: 11px; padding: 7px 8px; }
}

/* ==========================================================
   UTILS
   ========================================================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* LP button */
.pd-lp-btn { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; padding: 9px 18px; background: var(--primary); color: #fff; border-radius: 6px; font-size: 13px; font-weight: 700; text-decoration: none; transition: opacity .15s; box-shadow: 0 2px 8px rgba(0,0,0,.15); }
.pd-lp-btn:hover { opacity: .85; }

/* Spec table */
.pd-spec { margin-top: 28px; padding: 16px 18px; background: var(--surface); border: 1.5px solid var(--line); border-radius: 10px; }
.pd-spec h5 { font-family: var(--font-display); font-size: 10px; letter-spacing: .2em; color: var(--fg-muted); margin: 0 0 10px; }
.pd-spec-unit { font-family: var(--font-body, sans-serif); font-size: 10px; letter-spacing: 0; color: var(--fg-muted); }
.pd-spec-material { font-size: 12px; color: var(--fg); margin-bottom: 10px; line-height: 1.6; }
.pd-spec-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.pd-spec-table th, .pd-spec-table td { padding: 5px 8px; text-align: center; border: 1px solid var(--line); }
.pd-spec-table th { background: var(--bg); font-weight: 700; color: var(--fg-muted); font-size: 11px; }
.pd-spec-guide-link { display: inline-block; font-size: 11px; color: var(--accent); margin-top: 10px; text-decoration: none; font-weight: 600; }
.pd-spec-guide-link:hover { text-decoration: underline; }

/* Item spec details */
.pd-item-spec { margin-top: 28px; border-top: 1px solid var(--line-soft); padding-top: 20px; display: flex; flex-direction: column; gap: 16px; }
.pd-item-spec-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-muted); font-family: var(--font-display); margin-bottom: 5px; }
.pd-item-spec-body { font-size: 13px; color: var(--fg); line-height: 1.75; }
.pd-item-spec-subnote { font-size: 11px; color: var(--fg-muted); margin-top: 5px; line-height: 1.65; }
.pd-item-spec-notes { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.pd-item-spec-notes li { font-size: 12px; color: var(--fg-muted); line-height: 1.65; padding-left: 1em; position: relative; }
.pd-item-spec-notes li::before { content: '·'; position: absolute; left: 0; color: var(--fg-soft); }

/* Inquiry link in share row */
.pd-inquiry-link { font-size: 11px; color: var(--fg-muted); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; margin-left: auto; }
.pd-inquiry-link:hover { color: var(--accent); }

/* ===== Status Badge ===== */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.status-badge-published { background: #d97706; color: #fff; border: none; font-weight: 800; }
.status-badge-funding {
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 12px;
  padding: 5px 12px;
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--primary) 40%, transparent); }
  50%       { box-shadow: 0 0 0 5px transparent; }
}
.status-badge-goods     { background: transparent; color: var(--fg-muted); border: 1.5px solid var(--line); }

/* series-card badge variants */
.badge-published { background: #d97706 !important; color: #fff !important; border: none !important; font-weight: 800 !important; }
.badge-funding {
  background: var(--primary) !important;
  color: #fff !important;
  border: none !important;
  animation: badge-pulse 2s ease-in-out infinite;
}

/* SeriesDetail achieved / goods-only messages */
.sd-achieved-msg {
  padding: 18px 0;
  border-top: 1.5px solid var(--line);
  border-bottom: 1.5px solid var(--line);
  margin-bottom: 20px;
}
.sd-achieved-title {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .28em;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.sd-achieved-body {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.sd-goods-msg {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* sl-card status overlay */
.sl-card-status {
  position: absolute;
  top: 10px;
  right: 10px;
}
/* override for badges overlaid on dark card images */
.sl-card-status .status-badge-goods {
  background: rgba(0,0,0,0.55);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}

/* ===== Hero: title-area clickable + CTA row ===== */
.hero-sc-title-area {
  cursor: pointer;
}
.hero-sc-title-area:hover .hero-sc-title {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}
.hero-sc-cta-row {
  margin: 14px 0 4px;
}

/* ===== Region section header (JAPAN / AFRICA) ===== */
.sl-region-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--line);
}
.sl-region-badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  padding: 4px 12px;
  border-radius: 4px;
}
.sl-region-africa {
  background: #1a1a2e;
  color: #f4c542;
  border: 1.5px solid #f4c542;
}
.sl-region-japan {
  background: #fff0f0;
  color: #c0392b;
  border: 1.5px solid #c0392b;
}
.sl-region-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}
.sl-region-count {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--fg-muted);
  letter-spacing: .1em;
}

/* ===== Series List Page ===== */
.sl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.sl-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  border: 1.5px solid var(--line);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.sl-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.15); }
.sl-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.sl-card-info { padding: 18px 20px 16px; }
.sl-card-meta {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .15em;
  font-weight: 700;
  color: var(--fg-muted);
  margin-bottom: 6px;
}
.sl-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 6px;
  line-height: 1.2;
}
.sl-card-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}
.sl-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.sl-card-count {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .1em;
}
.sl-card-arrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
}

/* ===== Series Detail Page ===== */
.sd-hero {
  position: relative;
  height: clamp(300px, 45vw, 480px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.sd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 55%, transparent 100%);
}
.sd-hero-num {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .2em;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.sd-hero-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 8px;
}
.sd-hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 8px;
}
.sd-hero-artist {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}
.sd-hero-genre {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  padding: 3px 10px;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
}
.sd-content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  margin-top: 48px;
}
@media (max-width: 900px) { .sd-content-grid { grid-template-columns: 1fr; } }
.sd-synopsis h3 {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .2em;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}
.sd-synopsis p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--fg-muted);
}
.sd-support-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--fg);
  line-height: 1.6;
}
.sd-cta-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  align-self: start;
  position: sticky;
  top: 80px;
}
@media (max-width: 900px) { .sd-cta-card { position: static; } }

/* ===== SeriesDetail: 試し読みボタン ===== */
.sd-preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  border: 1.5px solid var(--primary);
  border-radius: 6px;
  padding: 8px 16px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: background .2s ease, transform .15s ease;
}
.sd-preview-btn:hover {
  background: color-mix(in srgb, var(--primary) 16%, transparent);
  transform: translateY(-1px);
}

/* ===== About: Partner logos ===== */
.about-partner-logo {
  width: auto;
  height: 36px;
  object-fit: contain;
  margin-bottom: 10px;
  display: block;
}