/* 시안 C 전용: 제품 독사진 메인 + 포인트 색상 테마 */

/* ---------- 색상 테마 ---------- */
body.theme-green  { --brand: #0c7a55; --brand-dark: #085a3f; --brand-soft: #e7f3ed; --brand-light: #4fd1a1; }
body.theme-indigo { --brand: #2451a6; --brand-dark: #1a3c7d; --brand-soft: #eaeff9; --brand-light: #86a8ff; }
body.theme-teal   { --brand: #0e7c86; --brand-dark: #0a5e66; --brand-soft: #e4f3f4; --brand-light: #5fd6de; }
body.theme-orange { --brand: #d4581f; --brand-dark: #a94416; --brand-soft: #fcefe7; --brand-light: #ff9259;
                    --warn: #b42318; --warn-soft: #fdeceb; }

/* ---------- 시안 전환 바 ---------- */
.review-bar a { color: #fff; }
.swatches { display: inline-flex; gap: 6px; margin-left: 8px; vertical-align: middle; }
.swatches a {
  display: inline-flex; align-items: center; gap: 5px; padding: 1px 8px 1px 5px; border-radius: 999px;
  border: 1px solid transparent; text-decoration: none !important; color: #cfd6db;
}
.swatches a i { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.swatches a.on { border-color: #fff; color: #fff; font-weight: 600; }

/* ---------- 다크 히어로 ---------- */
.hero-c {
  position: relative; overflow: hidden; color: #fff;
  background: #0e1415;
  padding: 120px 0 0;
}
.hero-c-photo {
  position: absolute; top: 0; right: 0; bottom: 0; width: 56%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 28%);
          mask-image: linear-gradient(to right, transparent 0%, #000 28%);
}
.hero-c-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 38% 50%; }
.hero-c-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, #0e1415 0%, rgba(14,20,21,0) 30%);
}
.hero-c-inner { position: relative; z-index: 2; }
.hero-c-text { max-width: 560px; }
.hero-c .eyebrow { color: var(--brand-light); }
.hero-c .eyebrow::before { background: var(--brand-light); }
.hero-c h1 { font-size: 56px; line-height: 1.3; font-weight: 700; letter-spacing: -0.02em; }
.hero-c h1 em { font-style: normal; color: var(--brand-light); }
.hero-c .jp { font-size: 15px; color: rgba(255,255,255,.5); margin-top: 6px; letter-spacing: .04em; }
.hero-c .hero-lead { font-size: 18px; color: rgba(255,255,255,.78); margin: 28px 0 0; }
.hero-c .hero-lead b { color: #fff; }
.hero-c .chips li { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: #fff; }
.hero-c .btn-line { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.hero-c .btn-line:hover { background: #fff; color: var(--ink); }
.hero-c .hero-cta { margin-bottom: 120px; }

.hero-c .trust { margin-top: 0; border-color: rgba(255,255,255,.14); position: relative; z-index: 2; background: rgba(14,20,21,.72); backdrop-filter: blur(6px); }
.hero-c .trust li { border-color: rgba(255,255,255,.14); }
.hero-c .trust strong { color: #fff; font-size: 22px; }
.hero-c .trust strong small { font-size: 14px; }
.hero-c .trust span { color: rgba(255,255,255,.6); }
.hero-c .trust .kr { font-family: var(--font); font-size: 19px; }

/* ---------- 선정 · 인증 ---------- */
.creds.two { grid-template-columns: repeat(2, 1fr); }
.creds.three { grid-template-columns: repeat(3, 1fr); }
.cred.gov { padding: 26px 24px; }
.cred.gov .seal { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); }
.cred.gov .seal svg { width: 24px; height: 24px; stroke: var(--brand); }
.cred.gov b { font-size: 16px; }
.cred-group { font-size: 13px; color: var(--mute); font-weight: 600; margin: 28px 0 10px; letter-spacing: .02em; }
.creds-title + .cred-group { margin-top: 16px; }
.cred-group + .creds { margin-top: 0; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero-c { padding-top: 0; }
  .hero-c-photo { position: relative; width: 100%; height: 360px; -webkit-mask-image: none; mask-image: none; }
  .hero-c-photo::after { background: linear-gradient(to top, #0e1415 0%, rgba(14,20,21,0) 45%); }
  .hero-c-inner { margin-top: -40px; }
  .hero-c .hero-cta { margin-bottom: 64px; }
  .creds.three { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero-c-photo { height: 300px; }
  .hero-c h1 { font-size: 36px; }
  .hero-c .hero-lead { font-size: 16px; }
  .hero-c .trust strong { font-size: 18px; }
  .hero-c .trust .kr { font-size: 15.5px; }
  .creds.two, .creds.three { grid-template-columns: 1fr; }
  .swatches { display: flex; justify-content: center; flex-wrap: wrap; margin: 4px 0 0; }
}

/* 정부기관 로고 카드 */
.cred.gov { flex-direction: column; align-items: flex-start; gap: 18px; padding: 28px 28px 26px; }
.cred.gov .org-logo { height: 30px; width: auto; }
.cred.gov .org-logo[src$="kosme.png"] { height: 22px; margin: 4px 0; }
.cred.gov b { font-size: 16.5px; }
.cred.gov span { font-size: 13px; }
