/* camtalkplay BCUT — design system v2 (Editorial Intensity) — see /DESIGN.md */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

:root {
  --color-bg: #0A0A0B;
  --color-surface: #161618;
  --color-surface-2: #1E1E21;
  --color-border: #27272A;
  --color-text: #F2F2F0;
  --color-text-sub: #8C8C92;
  --color-text-disabled: #54545A;
  --color-accent: #E1262C;

  --font-display-kr: 'Noto Sans KR', 'Pretendard', 'Apple SD Gothic Neo', sans-serif;
  --font-display-en: 'Montserrat', 'Pretendard', sans-serif;
  --font-body: 'Noto Sans KR', 'Pretendard', -apple-system, sans-serif;

  --space-1: 8px;
  --space-2: 12px;
  --space-3: 20px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 72px;

  --radius: 4px;
  --max-width: 1200px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.label {
  font-family: var(--font-display-en);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
}

/* ---------- Top utility bar ---------- */

.top-utility-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.top-utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
  font-size: 11px;
  color: var(--color-text-disabled);
}
.top-utility-msg { letter-spacing: 0.02em; }
.top-utility-links { display: flex; align-items: center; gap: var(--space-2); }
.top-utility-links a { color: var(--color-text-sub); }
.top-utility-links a:hover { color: var(--color-text); }

@media (max-width: 480px) {
  .top-utility-msg { display: none; }
  .top-utility-inner { justify-content: flex-end; }
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 11, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.header-left { display: flex; align-items: center; gap: var(--space-2); }

.menu-btn {
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
}

.logo {
  font-family: var(--font-display-en);
  font-size: 26px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.logo .b { color: var(--color-accent); }

.logo-center { display: none; }
.logo-svg {
  display: block;
  height: 16px;
  width: auto;
  filter: brightness(0) invert(1);
}

.header-right { display: flex; align-items: center; gap: var(--space-2); color: var(--color-text-sub); }

.desktop-nav { display: none; }
.desktop-nav a {
  color: var(--color-text-sub);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.desktop-nav a:hover { color: var(--color-text); }

.search-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 13px;
  cursor: pointer;
  padding: 4px;
}

/* ---------- Search overlay ---------- */

.search-overlay {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  z-index: 60;
  transform: translateY(-100%);
  transition: transform 0.2s ease-out;
}
.search-overlay.open { transform: translateY(0); }

.search-overlay-inner {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  height: 60px;
}

#search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
}
#search-input::placeholder { color: var(--color-text-disabled); }

.search-close { background: none; border: none; color: var(--color-text-sub); font-size: 22px; line-height: 1; cursor: pointer; }

.no-results { text-align: center; color: var(--color-text-sub); font-size: 13px; padding: var(--space-5) 0; }

/* ---------- Drawer (left menu) ---------- */

.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-out;
}
.drawer-backdrop.open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 78%;
  max-width: 320px;
  background: var(--color-bg);
  border-right: 1px solid var(--color-border);
  z-index: 901;
  transform: translateX(-100%);
  transition: transform 0.25s ease-out;
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 var(--space-3);
  border-bottom: 1px solid var(--color-border);
}

.drawer-close { background: none; border: none; color: var(--color-text); font-size: 28px; line-height: 1; cursor: pointer; }

.drawer-links { list-style: none; margin: 0; padding: var(--space-2) 0; }
.drawer-links li a {
  display: block;
  padding: var(--space-3);
  font-size: 14.5px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.drawer-links li a:active { background: var(--color-surface); }

/* ---------- Age gate ---------- */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
}
.age-gate[hidden] { display: none; }

.age-gate-panel {
  max-width: 480px;
  width: 100%;
}

.age-gate-title {
  font-family: var(--font-display-kr);
  font-weight: 900;
  font-size: 20px;
  margin: 0 0 var(--space-2);
  color: var(--color-text);
}

.age-gate-box {
  border: 1px solid var(--color-border);
  padding: var(--space-4) var(--space-3);
}

.age-gate-content {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.age-gate-badge {
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display-en);
  font-weight: 700;
  font-size: 19px;
}

.age-gate-copy p {
  font-size: 12.5px;
  color: var(--color-text-sub);
  line-height: 1.7;
  margin: 0 0 var(--space-2);
}
.age-gate-copy p:last-child { margin-bottom: 0; }
.age-gate-copy p.age-gate-legal { font-size: 11px; }

.age-gate-highlight { color: var(--color-accent); }

.age-gate-actions { display: flex; gap: var(--space-2); }

.age-gate-footnote {
  font-size: 11px;
  color: var(--color-text-disabled);
  text-align: center;
  margin: var(--space-2) 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display-en);
  letter-spacing: 0.05em;
  font-size: 14px;
  padding: 14px 20px;
  border: 1px solid var(--color-text);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  flex: 1;
}
.btn-primary { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.btn-secondary { border-color: var(--color-border); color: var(--color-text-sub); }

/* ---------- 상단 배너 캐러셀 (자동 슬라이드) ---------- */

.banner-carousel {
  position: relative;
  margin: var(--space-3) 0;
  overflow: hidden;
  aspect-ratio: 3 / 1;
  background: var(--color-surface);
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.banner-slide.is-active { opacity: 1; pointer-events: auto; }
.banner-slide img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* 모바일에서는 여백(letterbox) 없이 높이를 더 확보하는 대신, 중앙 기준으로 좌우를 잘라 꽉 채운다. */
@media (max-width: 639px) {
  .banner-carousel { aspect-ratio: 2 / 1; }
  .banner-slide img { object-fit: cover; object-position: center; }
}

.banner-dots {
  position: absolute;
  bottom: var(--space-2);
  right: var(--space-2);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.banner-dots .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(242,242,240,0.35);
  transition: background 0.3s ease, transform 0.3s ease;
}
.banner-dots .dot.is-active { background: var(--color-accent); transform: scale(1.3); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  margin: var(--space-3) 0 var(--space-5);
  border: 1px solid var(--color-border);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--color-surface);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; }

.hero-slide img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0.1) 0%, rgba(10,10,11,0.95) 85%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-4);
}

.hero-tagline {
  font-family: var(--font-display-kr);
  font-weight: 900;
  font-size: 40px;
  line-height: 1.05;
  margin: 0 0 var(--space-3);
  letter-spacing: -0.01em;
}

.hero .btn-primary { width: fit-content; padding: 13px 28px; }

.hero-dots {
  position: absolute;
  bottom: var(--space-2);
  right: var(--space-3);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.hero-dots .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(242,242,240,0.35);
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero-dots .dot.is-active { background: var(--color-accent); transform: scale(1.3); }

/* ---------- Section headers ---------- */

.section { margin: var(--space-5) 0; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-2);
  position: relative;
}

.section-head h2 {
  font-family: var(--font-display-en);
  font-size: 22px;
  letter-spacing: 0.02em;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

.section-head h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 28px;
  height: 3px;
  background: var(--color-accent);
}

.section-head .more-link { font-size: 11px; color: var(--color-text-sub); letter-spacing: 0.05em; }

/* ---------- Catalog grid & cards ---------- */

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

/* 관련 화보 추천 섹션(이런 화보는 어때요/다른 화보) — 화면 폭이 좁아질수록 칸 수를
   줄여 카드가 찌그러지지 않게 하고, 가장 넓은 화면에서만 최대 칸 수(5·6)까지 늘어남.
   전체화보 그리드와는 별개. grid-template-columns: 1fr 트랙은 기본적으로 자식의
   min-content 이하로는 줄어들지 않아 칸이 어긋나므로, 자식에 min-width:0을 줘서
   균등 분할되게 한다. */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-1);
}
.related-grid > * { min-width: 0; }
/* 각 구간에서 2줄을 넘는 항목은 숨겨서, 화면이 좁을수록 실제 노출 개수도 줄어들게 함. */
.related-grid > :nth-child(n+7) { display: none; }
@media (min-width: 480px) {
  .related-grid { grid-template-columns: repeat(4, 1fr); }
  .related-grid > :nth-child(n+7) { display: block; }
  .related-grid > :nth-child(n+9) { display: none; }
}
@media (min-width: 640px) {
  .related-grid { grid-template-columns: repeat(5, 1fr); gap: var(--space-2); }
  .related-grid > :nth-child(n+9) { display: block; }
}

/* 동일 모델 다른 화보 — 최대 6칸까지, 2줄을 넘지 않도록. */
.related-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-1);
}
.related-grid-6 > * { min-width: 0; }
.related-grid-6 > :nth-child(n+7) { display: none; }
@media (min-width: 480px) {
  .related-grid-6 { grid-template-columns: repeat(4, 1fr); }
  .related-grid-6 > :nth-child(n+7) { display: block; }
  .related-grid-6 > :nth-child(n+9) { display: none; }
}
@media (min-width: 640px) {
  .related-grid-6 { grid-template-columns: repeat(6, 1fr); gap: var(--space-2); }
  .related-grid-6 > :nth-child(n+9) { display: block; }
}

.catalog-card { position: relative; }

.catalog-card .thumb-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.catalog-card img { width: 100%; height: 100%; object-fit: cover; }

.badge {
  position: absolute;
  font-family: var(--font-display-en);
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 3px 7px;
  line-height: 1.4;
}
.badge-adult { top: 0; left: 0; background: var(--color-accent); color: #fff; }
.badge-video { top: 0; right: 0; border: 1px solid rgba(242,242,240,0.6); color: var(--color-text); background: rgba(10,10,11,0.6); }
.badge-new { bottom: 0; left: 0; background: #fff; color: var(--color-accent); font-size: 11px; font-weight: 800; letter-spacing: 0.08em; padding: 3px 8px; }
.badge-coming { position: static; display: inline-block; border: 1px solid #8C1D22; color: var(--color-accent); font-size: 12.5px; margin-top: 4px; padding: 3px 7px; }

.coming-soon-mask {
  position: absolute; inset: 0;
  background: rgba(10,10,11,0.7);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display-en);
  color: var(--color-text);
}

.catalog-card .card-info { padding: var(--space-2) 2px 0; }

.card-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-meta { font-size: 12.5px; color: var(--color-text-sub); }

.card-tags { display: flex; gap: var(--space-1); flex-wrap: wrap; }
.tag-chip {
  font-size: 12.5px;
  color: var(--color-text-sub);
}
.tag-chip:not(:last-child)::after { content: '/'; margin-left: var(--space-1); color: var(--color-border); }

.hscroll {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  cursor: grab;
}
.hscroll::-webkit-scrollbar { display: none; }
.hscroll.is-dragging { cursor: grabbing; user-select: none; }
.hscroll.is-dragging * { pointer-events: none; }
.hscroll .catalog-card { flex: 0 0 140px; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-6);
  font-size: 11.5px;
  color: var(--color-text-disabled);
  line-height: 1.8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  padding: var(--space-4) 0;
}

.footer-col-title {
  font-family: var(--font-display-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text-sub);
  margin: 0 0 var(--space-1);
  text-transform: uppercase;
}

.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 4px; }
.footer-links a { color: var(--color-text-disabled); }
.footer-links a:hover { color: var(--color-text-sub); }

.footer-col a { color: var(--color-text-disabled); }
.footer-col a:hover { color: var(--color-text-sub); }

.site-footer .footer-brand {
  font-family: var(--font-display-en);
  letter-spacing: 0.05em;
  color: var(--color-text-sub);
  margin-bottom: var(--space-1);
}

.footer-info-text { font-size: 11.5px; color: var(--color-text-disabled); line-height: 1.8; margin: 0; }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: var(--space-2) 0 var(--space-4);
}
.footer-copyright { margin: 0; font-size: 10.5px; }

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr 2fr; }
}

/* ---------- Detail page ---------- */

.detail-layout { margin-top: var(--space-5); }

.detail-main-image {
  position: relative;
  border: 1px solid var(--color-border);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--color-surface);
  margin: 0 0 var(--space-3);
}
.detail-main-image img { width: 100%; height: 100%; object-fit: cover; }

.detail-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-2); }

.detail-title-row h1 {
  font-family: var(--font-display-kr);
  font-weight: 900;
  font-size: 24px;
  margin: 0 0 var(--space-2);
  line-height: 1.3;
}

.detail-credit {
  font-size: 12.5px;
  color: var(--color-text-sub);
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.detail-credit b { color: var(--color-text); font-weight: 600; }
.detail-credit .label { color: var(--color-text-disabled); margin-right: 4px; }

.credit-link { text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--color-text-sub); }
.credit-link:hover { text-decoration-color: var(--color-accent); }
.credit-link b { color: var(--color-text); }

.share-btn {
  position: relative;
  background: none;
  border: none;
  padding: 0;
  color: var(--color-text-sub);
  flex-shrink: 0;
  cursor: pointer;
  display: inline-flex;
}
.share-btn:hover { color: var(--color-text); }
.share-btn.is-copied::after {
  content: '링크 복사됨';
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 11px;
  padding: 4px 8px;
  white-space: nowrap;
  z-index: 5;
}

.model-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  margin: var(--space-4) 0 var(--space-3);
  aspect-ratio: 3 / 2;
}
.model-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.model-photo.is-active { opacity: 1; }

.model-photo-dots {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  z-index: 2;
  display: flex;
  gap: 6px;
}
.model-photo-dots .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(242,242,240,0.45);
  box-shadow: 0 0 3px rgba(0,0,0,0.6);
  transition: background 0.3s ease, transform 0.3s ease;
}
.model-photo-dots .dot.is-active { background: var(--color-accent); transform: scale(1.3); }
.model-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: var(--space-3);
  background: linear-gradient(180deg, rgba(10,10,11,0) 35%, rgba(10,10,11,0.92) 100%);
}
.model-name { font-weight: 700; font-size: 16px; color: #fff; }
.model-card-actions { display: flex; flex-direction: column; gap: 6px; margin-top: 10px; }
.model-card .btn-fan-meeting {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  border: none;
  background: var(--color-accent);
  color: #fff;
  letter-spacing: 0.02em;
  padding: 12px 14px;
  box-shadow: 0 4px 16px rgba(225, 38, 44, 0.5);
}
.btn-fan-meeting-main {
  font-family: var(--font-display-en);
  font-weight: 700;
  font-size: 15px;
}
.btn-fan-meeting-sub {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(255,255,255,0.85);
}

.intro-text {
  font-size: 14px;
  color: var(--color-text-sub);
  white-space: pre-line;
  line-height: 1.85;
  margin: var(--space-3) 0;
}

.model-comment {
  border-left: 2px solid var(--color-accent);
  padding: var(--space-2) var(--space-3);
  font-size: 13.5px;
  color: var(--color-text);
  margin: var(--space-3) 0;
}

.preview-row { display: flex; gap: var(--space-1); overflow-x: auto; scrollbar-width: none; margin: var(--space-3) 0; }
.preview-row::-webkit-scrollbar { display: none; }
.preview-thumb { position: relative; flex: 0 0 110px; aspect-ratio: 3/4; border: 1px solid var(--color-border); overflow: hidden; background: var(--color-surface); }
.preview-thumb img { width: 100%; height: 100%; object-fit: cover; }
.preview-thumb img.preview-blurred { filter: blur(8px); transform: scale(1.06); }
.preview-lock {
  position: absolute; inset: 0;
  background: rgba(10,10,11,0.55);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; text-align: center; color: var(--color-text-sub); padding: var(--space-1);
  letter-spacing: 0.02em;
}

.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: var(--space-3) 0; border: 1px solid var(--color-border); }
.stat-box { padding: var(--space-3); text-align: center; border-left: 1px solid var(--color-border); }
.stat-box:first-child { border-left: none; }
.stat-label { font-family: var(--font-display-en); font-size: 10px; letter-spacing: 0.08em; color: var(--color-text-sub); }
.stat-value { font-size: 19px; font-weight: 800; margin-top: 4px; }
.stat-value small { font-size: 12px; font-weight: 400; color: var(--color-text-sub); }

.price-block { margin: var(--space-4) 0 var(--space-2); display: flex; flex-direction: column; gap: 6px; }
.price-row { display: flex; align-items: center; justify-content: space-between; }
.price-label { font-size: 13px; color: var(--color-text-sub); }
.price-label--sale { color: var(--color-text); font-weight: 700; }
.price-value { font-family: var(--font-display-en); font-size: 22px; color: var(--color-text); }
.price-value--consumer {
  font-size: 12px;
  color: #6E6E74;
  text-decoration: line-through;
  text-decoration-color: #6E6E74;
  text-decoration-thickness: 1px;
}
.price-value--sale { font-size: 24px; font-weight: 700; }

.cta-buttons { display: flex; flex-direction: column; gap: var(--space-1); margin: var(--space-2) 0 var(--space-3); }

.cta-go {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display-en);
  letter-spacing: 0.06em;
  font-size: 16px;
  padding: 16px;
  margin: 0;
}
.cta-go--yes24 { background: #e51c1c; }

.btn-fan-meeting {
  display: block;
  width: 100%;
  text-align: center;
  padding: 9px 12px;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-sub);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.cta-note { font-size: 11px; color: var(--color-text-disabled); text-align: center; margin-top: -10px; margin-bottom: var(--space-4); }

/* ---------- Content warning banner ---------- */

.content-warning {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: var(--space-2) 0;
  padding: 10px var(--space-2);
  background: rgba(230, 126, 34, 0.12);
  border: 1px solid rgba(230, 126, 34, 0.4);
  border-radius: var(--radius);
  color: #e67e22;
  font-size: 12px;
  line-height: 1.5;
}
.content-warning-icon { font-size: 14px; flex: 0 0 auto; }

/* ---------- Sticky purchase bar ---------- */

main.has-sticky-buybar { padding-bottom: 136px; }

.sticky-buybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.4);
}
.sticky-buybar-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.sticky-buybar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}
.sticky-buybar-info { min-width: 0; flex: 1 1 auto; }
.sticky-buybar-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-buybar-model { font-size: 11px; color: var(--color-text-sub); margin: 2px 0 0; }
.sticky-buybar-price { display: flex; flex-direction: column; align-items: flex-end; flex: 0 0 auto; }
.sticky-buybar-price--consumer {
  font-size: 11px;
  color: #6E6E74;
  text-decoration: line-through;
  text-decoration-color: #6E6E74;
}
.sticky-buybar-price--sale {
  font-family: var(--font-display-en);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}
.sticky-buybar-actions { display: flex; gap: 8px; width: 100%; }
.sticky-buybar-actions .cta-go { flex: 1; padding: 12px; font-size: 13px; margin: 0; }

@media (min-width: 960px) {
  .sticky-buybar { display: none; }
  main.has-sticky-buybar { padding-bottom: 0; }
}

/* ---------- Legal pages (terms / privacy) ---------- */

.legal-content { padding: var(--space-3) 0 var(--space-6); }
.legal-content h1 {
  font-family: var(--font-display-kr);
  font-weight: 900;
  font-size: 24px;
  margin: 0 0 var(--space-2);
}
.legal-content .legal-updated { font-size: 12px; color: var(--color-text-disabled); margin-bottom: var(--space-4); }
.legal-content h2 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin: var(--space-4) 0 var(--space-1);
}
.legal-content p, .legal-content li { font-size: 14px; color: var(--color-text-sub); line-height: 1.8; }
.legal-content ul, .legal-content ol { padding-left: 20px; margin: var(--space-1) 0; }
.legal-content .legal-placeholder { color: var(--color-accent); }

/* ---------- Responsive ---------- */

@media (min-width: 640px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 960px) {
  .catalog-grid { grid-template-columns: repeat(4, 1fr); }
  .hero { aspect-ratio: 16 / 7; }
  .hero-tagline { font-size: 72px; }
  .hero-overlay { padding: var(--space-6); }

  .menu-btn { display: none; }
  .logo-mobile { display: none; }
  .logo-center { display: inline-flex; }
  .desktop-nav { display: flex; align-items: center; gap: var(--space-4); }

  .site-header .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }
  .header-left { justify-self: start; }
  .logo-center { justify-self: center; }
  .header-right { justify-self: end; }

  .detail-layout { display: grid; grid-template-columns: 420px 1fr; gap: var(--space-5); align-items: start; }
  .detail-main-image { margin-top: 0; }
  .detail-title-row h1 { font-size: 32px; }
}
