/* Product 페이지 공통 (6개) — 컨셉 정렬 + 전환 초점 (Card AE, AC 대체) */
* { box-sizing: border-box; }
body { font-family: var(--font-base); margin: 0; color: var(--text); background: var(--bg); line-height: 1.7; }

.topbar { background: var(--primary); color: var(--bg-card); padding: 8px 16px; font-size: var(--fs-sm); text-align: center; }
.topbar a { color: var(--bg-card); text-decoration: none; }

/* SPEC v2: 핑크 띠(#eb6694) + 흰 로고/내비 (로고 PNG 배경과 1:1 일치 → 이음새 0) */
header.site { background: #eb6694; border-bottom: 1px solid var(--line); padding: 8px 20px; position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
header.site .inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
header.site h1, header.site .site-logo-title { margin: 0; font-size: 1.4rem; font-weight: var(--fw-semi); }
header.site h1 a, header.site .site-logo-title a { color: var(--text); text-decoration: none; display: inline-flex; align-items: center; }
header.site .site-logo-title img { height: 64px; width: auto; display: block; }
header.site nav { display: flex; gap: 20px; font-size: var(--fs-sm); align-items: center; }
header.site nav a { color: #fff; text-decoration: none; transition: opacity .15s ease; }
header.site nav a:hover { opacity: .78; }
@media (max-width: 600px) { header.site .site-logo-title img { height: 56px; } }

.breadcrumb { max-width: 1100px; margin: 0 auto; padding: 12px 20px; font-size: var(--fs-sm); color: var(--text-mute); }
.breadcrumb a { color: var(--text-mute); text-decoration: none; }

/* 히어로: 그라데이션 제거 → 페일핑크 단색 밴드 */
.hero { background: var(--accent-soft); border-bottom: 1px solid var(--line); padding: 60px 20px 44px; text-align: center; }
.hero .icon { font-size: 4rem; margin-bottom: 12px; }
.hero h1 { font-size: 2.4rem; margin: 0 0 12px; color: var(--text); font-weight: var(--fw-bold); letter-spacing: var(--ls-tight); }
.hero .tagline { color: var(--text-soft); font-size: 1.05rem; margin-bottom: 28px; }

/* 가격카드: 정보 보조로 톤다운(주황·1.6rem 제거 → 다크·1.3rem) → CTA와 경쟁 X */
.price-card { display: inline-block; background: var(--bg-card); padding: 16px 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin-bottom: 28px; }
.price-card .label { color: var(--text-mute); font-size: var(--fs-sm); }
.price-card .price { font-size: 1.3rem; font-weight: var(--fw-med); color: var(--text); margin-top: 4px; }
.price-card .qty { color: var(--text-mute); font-size: var(--fs-sm); margin-top: 6px; }

/* 주 CTA: 페이지의 단일 초점 = 핑크 단색(전환 목적), 더 크게 */
.cta-btn { display: inline-block; background: var(--accent-dark); color: #fff; padding: 15px 42px; border-radius: var(--radius-lg); text-decoration: none; font-size: 1.1rem; font-weight: var(--fw-semi); letter-spacing: var(--ls-tight); box-shadow: 0 6px 20px rgba(238,45,101,.28); transition: background .18s ease, transform .18s ease, box-shadow .18s ease; }
.cta-btn:hover { background: var(--accent); transform: translateY(-1px); box-shadow: 0 8px 26px rgba(238,45,101,.34); }

section { max-width: 1000px; margin: 0 auto; padding: 50px 20px; }
section h2 { font-size: 1.5rem; color: var(--text); margin: 0 0 24px; padding-bottom: 12px; border-bottom: 1px solid var(--line); font-weight: var(--fw-semi); letter-spacing: var(--ls-tight); }

/* 특징 카드: 파랑 좌측선 제거(핑크는 CTA 전용) → 미니멀 보더 */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.feature { background: var(--bg-card); padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.feature h3 { margin: 0 0 8px; font-size: 1.05rem; color: var(--text); font-weight: var(--fw-semi); }
.feature p { margin: 0; color: var(--text-soft); font-size: var(--fs-sm); }

.specs-table { width: 100%; border-collapse: collapse; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.specs-table tr { border-bottom: 1px solid var(--line-soft); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table th { background: var(--bg-soft); text-align: left; padding: 14px 18px; width: 30%; color: var(--text-soft); font-weight: var(--fw-med); font-size: var(--fs-sm); }
.specs-table td { padding: 14px 18px; color: var(--text); font-size: var(--fs-sm); }

.faq-item { background: var(--bg-soft); padding: 20px; border-radius: var(--radius-lg); margin-bottom: 12px; }
.faq-item h3 { margin: 0 0 8px; font-size: 1rem; color: var(--text); font-weight: var(--fw-semi); }
.faq-item h3::before { content: 'Q. '; color: var(--accent-dark); font-weight: var(--fw-semi); }
.faq-item p { margin: 0; color: var(--text-soft); font-size: var(--fs-sm); }
.faq-item p::before { content: 'A. '; color: var(--text-mute); font-weight: var(--fw-semi); }

.related { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.related a { display: block; background: var(--bg-card); border: 1px solid var(--line); padding: 16px 14px; border-radius: var(--radius-lg); text-decoration: none; color: var(--text); transition: all .15s; text-align: center; }
.related a:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); }
.related a .name { font-weight: var(--fw-med); }
.related a .price { color: var(--text-mute); font-size: var(--fs-sm); margin-top: 4px; }

/* 하단 CTA 섹션: 파랑 그라데이션 제거 → 플랫 다크. CTA는 핑크 유지(다크 위 강조). */
.cta-section { background: var(--primary); color: var(--bg-card); padding: 64px 20px; text-align: center; }
.cta-section h2 { color: var(--bg-card); border: none; font-size: 1.8rem; margin: 0 0 12px; padding: 0; font-weight: var(--fw-bold); letter-spacing: var(--ls-tight); }
.cta-section p { font-size: 1.05rem; margin-bottom: 28px; color: rgba(255,255,255,.82); }
/* 보조 '전체 상품 보기' 링크(=cta-btn 아님)만 다크 위 밝게. CTA 버튼(#fff)은 영향 X */
.cta-section a:not(.cta-btn) { color: rgba(255,255,255,.72); text-decoration: none; }
.cta-section a:not(.cta-btn):hover { color: #fff; }

footer.site { background: var(--primary); color: var(--text-mute); padding: 40px 20px; text-align: center; font-size: var(--fs-sm); }
footer.site a { color: var(--bg-card); text-decoration: none; margin: 0 8px; }
footer.site .biz { margin-top: 12px; opacity: .7; line-height: 1.6; }

@media (max-width: 600px) {
  .hero { padding: 44px 16px 32px; }
  .hero h1 { font-size: 1.6rem; }
  section { padding: 36px 16px; }
  .specs-table th { width: 40%; padding: 10px 12px; font-size: 0.9rem; }
  .specs-table td { padding: 10px 12px; font-size: 0.9rem; }
  header.site nav { display: none; }
}

/* ============================================================
   C9 (2026-06-19) 상세페이지 통일 히어로 — microStore형 중앙 오버레이. booklet 기준, 6종 공통 템플릿.
   사진 위 텍스트 가독성용 상하 어둠 오버레이는 기능 목적 예외(DESIGN §1). .css라 감사 R2(그라데이션) 무관.
   ============================================================ */
.pr-hero { max-width: 1100px; margin: 24px auto; padding: 0 16px; }   /* 보정: 콘텐츠 폭 꽉 채움(560 제한 해제) */
.pr-hero-media { position: relative; width: 100%; aspect-ratio: 1; background-size: cover; background-position: center; border-radius: var(--radius); overflow: hidden; display: flex; align-items: stretch; justify-content: center; }   /* ★정사각 + 폭 100% — 사진 크게, 비례 유지 / #29 inner 풀높이 */
.pr-hero-media::before { content: none; }   /* 오버레이 제거 — 이미지 원본 그대로(사장님 요청). 텍스트 그림자 미적용. */
.pr-hero-inner { position: relative; z-index: 1; text-align: center; padding: 40px 32px; width: 100%; display: flex; flex-direction: column; justify-content: space-between; align-items: center; gap: 12px; }   /* #29 상중하 3단(eyebrow 상·center 중·cta 하) */
.pr-hero-center { display: flex; flex-direction: column; align-items: center; gap: 12px; }   /* #29 중단 묶음(title+sub) */
.pr-hero-eyebrow { font-size: var(--fs-2xs); letter-spacing: var(--ls-wide, .16em); text-transform: uppercase; font-weight: var(--fw-med); color: rgba(255,255,255,.85); }
.pr-hero-title { margin: 0; font-size: clamp(2.4rem, 7vw, 3.6rem); font-weight: var(--fw-bold); color: rgba(255,255,255,.45); line-height: 1.1; }   /* #29 대형·반투명 워터마크형 */
.pr-hero-sub { margin: 0; font-size: var(--fs-sm); color: rgba(255,255,255,.9); line-height: 1.7; }
.pr-hero-cta { margin-top: 8px; height: 50px; line-height: 50px; padding: 0 30px; background: #fff; color: var(--text); border-radius: var(--radius); font-weight: var(--fw-semi); font-size: var(--fs-sm); text-decoration: none; transition: background var(--motion-fast); box-shadow: 0 2px 10px rgba(0,0,0,.18); }   /* #29 경계 강화 */
.pr-hero-cta:hover { background: var(--bg-soft); }

.pr-otherproducts { background: var(--bg-soft); padding: 24px 16px; }
.pr-otherproducts-inner { max-width: 1100px; margin: 0 auto; }
.pr-otherproducts h2 { margin: 0 0 14px; font-size: var(--fs-lg); font-weight: var(--fw-semi); color: var(--text); }
.pr-op-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pr-op-cell { display: block; text-decoration: none; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.pr-op-cell img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.pr-op-label { display: block; padding: 8px 10px; font-size: var(--fs-xs); color: var(--text); text-align: center; }

@media (max-width: 640px) {
  .pr-hero-inner { padding: 36px 20px; }
  .pr-op-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   C9 로고 (2026-06-19) — 메인 공통 로고(토끼+워드마크) 이식. 메인 style.css 규칙을 가져와 토큰화(C7/C8).
   ★상세는 style.css 미로드 → 이 CSS 필수. wm-accent=var(--accent-dark)(메인과 동일). rabbit-bounce 애니는 미적용(정적).
   ============================================================ */
.site-logo-title { display: flex; align-items: center; gap: 10px; }
.rabbit-mascot { width: auto; height: 52px; flex-shrink: 0; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(200,69,44,.2)); }
.header-wordmark { display: flex; flex-direction: column; align-items: flex-start; gap: .2rem; }
.wm-main { font-size: var(--fs-lg); font-weight: var(--fw-bold); letter-spacing: .04em; color: var(--text); line-height: 1.2; display: block; }
.wm-main .wm-accent { color: var(--accent-dark); font-weight: var(--fw-bold); }
.wm-sub { display: block; font-size: var(--fs-xs); color: var(--text-soft); font-weight: var(--fw-normal); letter-spacing: .06em; margin-top: .15rem; line-height: 1.3; word-break: keep-all; }
@media (max-width: 600px) {
  .wm-sub { display: none; }
  .wm-main { font-size: var(--fs-base); }
}
