/* 천지신명 타로 웹 스토어 — wolhasaju.today 레퍼런스에서 추출한 토큰 기반.
   bg #0c0c14 · 카드 #1a1a2e · 악센트 violet-600 #7c3aed · 폰트 Wanted Sans Variable */

:root {
  --bg: #0c0c14;
  --bg-deep: #08080d;
  --ink: #ededed;
  --violet: #7c3aed;
  --violet-hi: #8b5cf6;
  --violet-soft: #a78bfa;
  --line: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 255, 255, 0.08);
  --card-r: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Wanted Sans Variable", "Wanted Sans", "Pretendard Variable", Pretendard,
    system-ui, -apple-system, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
.wrap { width: 100%; max-width: 1024px; margin: 0 auto; padding: 0 16px; }

/* ── 헤더 ─────────────────────────────────────── */
.site-head {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(12, 12, 20, 0.8);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.site-head nav {
  max-width: 1024px; margin: 0 auto; padding: 0 16px;
  height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.brand svg { display: block; }
.head-links { display: flex; align-items: center; gap: 4px; }
.head-links a, .head-links button {
  padding: 8px 12px; border-radius: 10px; font-size: 13.5px; font-weight: 600;
  color: rgba(255, 255, 255, 0.65); transition: color 0.15s, background 0.15s;
}
.head-links a:hover, .head-links button:hover { color: #fff; background: rgba(255, 255, 255, 0.05); }
.btn-login {
  margin-left: 4px; padding: 7px 14px !important; border-radius: 10px;
  background: var(--violet); color: #fff !important; font-weight: 700 !important;
}
.btn-login:hover { background: var(--violet-hi) !important; }
@media (max-width: 640px) { .head-links .hide-m { display: none; } }

/* ── 프로모 배너 ───────────────────────────────── */
.promo { margin-top: 12px; }
.promo-card {
  position: relative; overflow: hidden;
  border-radius: 16px; border: 1px solid rgba(139, 92, 246, 0.35);
  padding: 16px 16px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,0.5) 0 1px, transparent 1.6px),
    radial-gradient(circle at 38% 75%, rgba(255,255,255,0.4) 0 1px, transparent 1.5px),
    radial-gradient(circle at 63% 15%, rgba(255,255,255,0.45) 0 1px, transparent 1.5px),
    radial-gradient(circle at 82% 60%, rgba(255,255,255,0.5) 0 1px, transparent 1.6px),
    radial-gradient(circle at 93% 30%, rgba(255,255,255,0.35) 0 1px, transparent 1.4px),
    radial-gradient(120% 160% at 85% 0%, rgba(124, 58, 237, 0.28), transparent 55%),
    linear-gradient(100deg, rgba(124, 58, 237, 0.14), rgba(24, 18, 43, 0.6));
}
.promo-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.promo-inner > div:first-child { flex: 1 1 240px; min-width: 0; }
.promo-badge {
  display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 999px;
  background: rgba(139, 92, 246, 0.3); border: 1px solid rgba(167, 139, 250, 0.4);
  font-size: 11.5px; font-weight: 700; color: #ede9fe; margin-bottom: 8px;
}
.promo-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; line-height: 1.375; }
.promo-price .all { font-size: 15px; font-weight: 700; color: rgba(255, 255, 255, 0.8); }
.promo-price .was { font-size: 17px; color: rgba(255, 255, 255, 0.35); text-decoration: line-through; }
.promo-price .arrow { font-size: 17px; color: rgba(255, 255, 255, 0.4); }
.promo-price .now {
  font-size: 24px; font-weight: 800; color: #fff;
  background: linear-gradient(transparent 45%, rgba(139, 92, 246, 0.6) 45%);
  padding: 0 3px; border-radius: 2px;
}
.promo-sub { margin-top: 8px; font-size: 12.5px; color: rgba(255, 255, 255, 0.6); line-height: 1.6; }
.promo-sub b {
  font-weight: 700; color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(transparent 55%, rgba(139, 92, 246, 0.45) 55%);
  padding: 0 2px; border-radius: 2px;
}
.promo-cta {
  flex-shrink: 0; padding: 10px 16px; border-radius: 12px;
  background: var(--violet); color: #fff; font-size: 14px; font-weight: 700; transition: background 0.15s;
}
.promo-cta:hover { background: var(--violet-hi); }
@media (min-width: 640px) {
  .promo-card { padding: 16px 20px; }
  .promo-price .all { font-size: 17px; }
  .promo-price .was, .promo-price .arrow { font-size: 20px; }
  .promo-price .now { font-size: 30px; }
}

/* ── 카테고리 칩 ───────────────────────────────── */
.chips {
  display: flex; gap: 8px; overflow-x: auto; padding: 12px 16px;
  max-width: 1024px; margin: 0 auto;
  scrollbar-width: none;
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex-shrink: 0; padding: 6px 14px; border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--c, #8b5cf6) 45%, transparent);
  color: color-mix(in srgb, var(--c, #8b5cf6) 88%, #fff);
  font-size: 13px; font-weight: 600; white-space: nowrap; transition: all 0.15s;
  background: color-mix(in srgb, var(--c, #8b5cf6) 8%, transparent);
}
.chip:hover { border-color: var(--c, #8b5cf6); background: color-mix(in srgb, var(--c, #8b5cf6) 16%, transparent); }

/* ── 피처드 캐러셀 ─────────────────────────────── */
.rail {
  display: flex; gap: 14px; overflow-x: auto; padding: 4px 16px 12px;
  max-width: 1024px; margin: 0 auto;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.hero-card {
  position: relative; flex-shrink: 0; scroll-snap-align: center;
  width: 86%; max-width: 420px;
  border-radius: var(--card-r); overflow: hidden;
  border: 1px solid var(--line-strong); transition: border-color 0.2s;
}
.hero-card:hover { border-color: rgba(255, 255, 255, 0.25); }
@media (min-width: 640px) { .hero-card { width: 420px; } }
.hero-card .ph { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.hero-card .ph img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s;
}
.hero-card:hover .ph img { transform: scale(1.04); }
.shade { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-deep) 0%, rgba(8, 8, 13, 0.6) 45%, transparent 100%); }
.badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  padding: 2px 8px; border-radius: 999px; font-size: 10px; font-weight: 700; color: #fff;
  backdrop-filter: blur(4px);
  background: color-mix(in srgb, var(--bc, #ec4899) 27%, transparent);
  border: 1px solid color-mix(in srgb, var(--bc, #ec4899) 53%, transparent);
}
.hero-card .txt { position: absolute; inset: auto 0 0 0; padding: 20px; }
.hero-card .cat {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  margin-bottom: 8px; color: var(--c); text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}
.hero-card h3 { font-size: 22px; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 6px; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.92); }
.hero-card p { font-size: 13px; color: rgba(255, 255, 255, 0.55); line-height: 1.4; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9); }
@media (min-width: 640px) { .hero-card .txt { padding: 24px; } .hero-card h3 { font-size: 24px; } }

/* ── 상품 섹션 ─────────────────────────────────── */
.section-head { text-align: center; margin: 56px 0 32px; }
.section-head .eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--violet-soft); margin-bottom: 8px;
}
.section-head h2 { font-size: 24px; font-weight: 700; }
@media (min-width: 640px) { .section-head h2 { font-size: 30px; } }

.group { margin-bottom: 36px; }
.group-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.group-head .icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 16px; font-size: 24px; flex-shrink: 0;
  background: color-mix(in srgb, var(--c) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 25%, transparent);
}
.group-head h3 { font-size: 18px; font-weight: 700; color: #fff; line-height: 1.25; }
.group-head .desc { font-size: 12px; color: rgba(255, 255, 255, 0.4); margin-top: 2px; }
.group-head .count { margin-left: auto; font-size: 11px; color: rgba(255, 255, 255, 0.25); flex-shrink: 0; }
@media (min-width: 640px) { .group-head h3 { font-size: 20px; } }

.cards-row {
  display: flex; gap: 14px; overflow-x: auto; padding-bottom: 12px;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.cards-row::-webkit-scrollbar { display: none; }
.p-card {
  position: relative; display: block; flex-shrink: 0; scroll-snap-align: start;
  width: 50vw; max-width: 200px;
  border-radius: var(--card-r); overflow: hidden;
  border: 1px solid var(--line-strong);
  transition: border-color 0.2s, transform 0.2s;
}
.p-card:hover { border-color: rgba(255, 255, 255, 0.25); transform: translateY(-2px); }
@media (min-width: 640px) { .p-card { width: 180px; max-width: none; } }
.p-card .ph { position: relative; aspect-ratio: 2 / 3; overflow: hidden; }
.p-card .ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.p-card:hover .ph img { transform: scale(1.05); }
.p-card .badge { top: 12px; right: 12px; }
.p-card .txt { position: absolute; inset: auto 0 0 0; padding: 14px; }
.p-card .cat {
  display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.06em;
  margin-bottom: 6px; color: var(--c); text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}
.p-card .bullets {
  font-size: 11px; color: rgba(255, 255, 255, 0.55); line-height: 1.4; margin-bottom: 4px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.p-card h4 { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.25; text-shadow: 0 1px 10px rgba(0, 0, 0, 0.9); }
.p-card .reader { display: block; margin-top: 6px; font-size: 10px; color: rgba(255, 255, 255, 0.35); text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85); }
.see-all { display: block; text-align: center; margin: 8px 0 0; font-size: 13.5px; font-weight: 600; color: rgba(255, 255, 255, 0.5); }
.see-all:hover { color: #fff; }

/* ── 점술사 소개 ───────────────────────────────── */
.readers-rail { display: flex; gap: 12px; overflow-x: auto; padding: 4px 16px 12px; max-width: 1024px; margin: 0 auto; scrollbar-width: none; }
.readers-rail::-webkit-scrollbar { display: none; }
.reader-card {
  flex-shrink: 0; width: 168px; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line-strong); background: #12121f;
  transition: border-color 0.2s, transform 0.2s;
}
.reader-card:hover { border-color: rgba(255, 255, 255, 0.22); transform: translateY(-2px); }
.reader-card .ph { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.reader-card .ph img { width: 100%; height: 100%; object-fit: cover; }
.reader-card .ph::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, #12121f, transparent 40%); }
.reader-card .txt { padding: 0 14px 14px; margin-top: -6px; position: relative; }
.reader-card h4 { font-size: 15px; font-weight: 700; }
.reader-card .role { font-size: 11px; color: var(--violet-soft); margin-bottom: 6px; }
.reader-card p { font-size: 11px; color: rgba(255, 255, 255, 0.45); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ── 무료 맛보기 ───────────────────────────────── */
.teaser { padding: 24px 0 96px; scroll-margin-top: 80px; }
.teaser-head { max-width: 560px; margin: 0 auto 32px; text-align: center; }
.teaser-head .pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 4px 12px; border-radius: 999px;
  background: rgba(76, 29, 149, 0.3); border: 1px solid rgba(109, 40, 217, 0.3);
  color: #c4b5fd; font-size: 12px; font-weight: 500; margin-bottom: 20px;
}
.teaser-head h2 { font-size: 24px; font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 16px; }
.teaser-head h2 .hl { color: var(--violet-soft); }
.teaser-head p { color: rgba(255, 255, 255, 0.45); font-size: 15px; }
@media (min-width: 640px) { .teaser-head h2 { font-size: 30px; } }

.teaser-box { max-width: 448px; margin: 0 auto; }
.q-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 20px; }
.q-chip {
  padding: 9px 15px; border-radius: 12px; font-size: 13.5px; font-weight: 600;
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55); transition: all 0.15s;
}
.q-chip:hover { border-color: rgba(255, 255, 255, 0.25); }
.q-chip.on { background: var(--violet); border-color: var(--violet-hi); color: #fff; }
.draw-btn {
  display: block; width: 100%; padding: 14px; border-radius: 14px;
  background: var(--violet); color: #fff; font-size: 15px; font-weight: 700; transition: background 0.15s;
}
.draw-btn:hover { background: var(--violet-hi); }
.draw-btn:disabled { opacity: 0.4; cursor: default; }

.draw-stage { display: none; margin-top: 28px; }
.draw-stage.on { display: block; }
.draw-cards { display: flex; gap: 12px; justify-content: center; }
.t-card { width: 30%; max-width: 128px; perspective: 800px; cursor: pointer; }
.t-card .flip { position: relative; width: 100%; aspect-ratio: 2 / 3; transform-style: preserve-3d; transition: transform 0.6s; }
.t-card.open .flip { transform: rotateY(180deg); }
.t-card .face {
  position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border-radius: 12px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.14);
}
.t-card .face img { width: 100%; height: 100%; object-fit: cover; }
.t-card .front { transform: rotateY(180deg); }
.t-card .front img.rv { transform: rotate(180deg); }
.t-card .pos { text-align: center; margin-top: 8px; font-size: 11px; color: rgba(255, 255, 255, 0.4); }
.draw-hint { text-align: center; margin-top: 14px; font-size: 12.5px; color: rgba(255, 255, 255, 0.35); }
.draw-result { margin-top: 20px; display: grid; gap: 10px; }
.dr-item {
  border: 1px solid var(--line-strong); border-radius: 14px; padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
}
.dr-item .t { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.dr-item .nm { font-size: 14px; font-weight: 700; }
.dr-item .ori { font-size: 11px; color: var(--violet-soft); }
.dr-item .kw { font-size: 12px; color: rgba(255, 255, 255, 0.45); margin-bottom: 6px; }
.dr-item .tx { font-size: 13px; color: rgba(255, 255, 255, 0.7); line-height: 1.6; }
.dr-cta {
  display: block; text-align: center; margin-top: 16px; padding: 13px; border-radius: 14px;
  border: 1px solid rgba(139, 92, 246, 0.5); color: #ddd6fe; font-size: 14px; font-weight: 700;
  background: rgba(124, 58, 237, 0.12); transition: background 0.15s;
}
.dr-cta:hover { background: rgba(124, 58, 237, 0.25); }

/* ── 푸터 ─────────────────────────────────────── */
.site-foot { margin-top: auto; border-top: 1px solid var(--line); }
.site-foot .inner { max-width: 1024px; margin: 0 auto; padding: 32px 16px; text-align: center; }
.site-foot .links { display: flex; align-items: center; justify-content: center; gap: 16px; font-size: 12px; color: rgba(255, 255, 255, 0.35); margin-bottom: 12px; }
.site-foot .links a:hover { color: rgba(255, 255, 255, 0.6); }
.site-foot .tag { color: rgba(255, 255, 255, 0.2); font-size: 12px; margin-bottom: 12px; }
.site-foot .fine { color: rgba(255, 255, 255, 0.15); font-size: 11px; margin-top: 12px; }

/* ── 등장 애니메이션 ───────────────────────────── */
.fade-up { opacity: 0; transform: translateY(14px); transition: opacity 0.6s, transform 0.6s; }
.fade-up.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .fade-up { opacity: 1; transform: none; transition: none; } }

/* ── 토스트 ────────────────────────────────────── */
#toast {
  position: fixed; left: 50%; bottom: 84px; transform: translateX(-50%) translateY(8px);
  z-index: 90; padding: 11px 18px; border-radius: 999px;
  background: rgba(30, 27, 50, 0.95); border: 1px solid rgba(139, 92, 246, 0.45);
  color: #ede9fe; font-size: 13px; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.25s, transform 0.25s;
  backdrop-filter: blur(8px);
}
#toast.on { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ══ 상품 상세 페이지 ══════════════════════════ */
.pd { max-width: 720px; margin: 0 auto; padding: 0 16px 120px; }
.pd-back { display: inline-flex; align-items: center; gap: 6px; margin: 20px 0 12px; font-size: 13px; color: rgba(255, 255, 255, 0.45); }
.pd-back:hover { color: #fff; }
.pd-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.pd-meta .cat { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; color: var(--c); }
.pd-meta .badge { position: static; }
.pd h1 { font-size: 28px; font-weight: 800; line-height: 1.25; letter-spacing: -0.01em; }
.pd .kicker { margin-top: 8px; font-size: 13px; color: rgba(255, 255, 255, 0.4); }
@media (min-width: 640px) { .pd h1 { font-size: 34px; } }

.pd-hero { position: relative; margin: 24px 0; border-radius: var(--card-r); overflow: hidden; border: 1px solid var(--line-strong); }
.pd-hero img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
@media (min-width: 640px) { .pd-hero img { aspect-ratio: 16 / 12; object-position: center 30%; } }
.pd-hero .txt { position: absolute; inset: auto 0 0 0; padding: 24px; }
.pd-hero h2 { font-size: 24px; font-weight: 800; line-height: 1.3; white-space: pre-line; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95); }
@media (min-width: 640px) { .pd-hero h2 { font-size: 28px; } }
.pd-pitch { font-size: 15px; line-height: 1.75; color: rgba(255, 255, 255, 0.75); }
.pd-bullets { margin-top: 12px; font-size: 13.5px; color: var(--violet-soft); font-weight: 600; }
.pd-greet {
  margin-top: 20px; padding: 14px 16px; border-radius: 14px;
  background: rgba(124, 58, 237, 0.1); border: 1px solid rgba(139, 92, 246, 0.25);
  font-size: 13.5px; color: rgba(255, 255, 255, 0.8); line-height: 1.6;
}
.pd-greet b { color: #ddd6fe; }

.pd-cta {
  display: block; width: 100%; margin: 24px 0; padding: 15px; border-radius: 14px; text-align: center;
  background: var(--violet); color: #fff; font-size: 15.5px; font-weight: 700; transition: background 0.15s;
}
.pd-cta:hover { background: var(--violet-hi); }

.pd section { margin-top: 52px; }
.pd .sec-t { font-size: 20px; font-weight: 700; margin-bottom: 18px; }
.pd .sec-t small { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; color: var(--violet-soft); margin-bottom: 6px; }

.pd-came { display: grid; gap: 10px; }
.pd-came li {
  list-style: none; display: flex; gap: 10px; align-items: flex-start;
  padding: 13px 16px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line-strong);
  font-size: 14px; color: rgba(255, 255, 255, 0.75); line-height: 1.5;
}
.pd-came li::before { content: "✓"; color: var(--violet-soft); font-weight: 700; }
.pd-came-tail { margin-top: 14px; font-size: 13.5px; color: rgba(255, 255, 255, 0.5); }

.pd-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.pd-stat {
  text-align: center; padding: 16px 8px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line-strong);
}
.pd-stat .v { font-size: 20px; font-weight: 800; color: #fff; }
.pd-stat .k { margin-top: 4px; font-size: 11.5px; color: rgba(255, 255, 255, 0.4); }
.pd-deliver { font-size: 14px; line-height: 1.75; color: rgba(255, 255, 255, 0.65); }

.pd-toc { display: grid; gap: 6px; }
.pd-toc .ch {
  display: flex; gap: 14px; align-items: baseline; padding: 12px 16px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.025); border: 1px solid var(--line);
  font-size: 14px; color: rgba(255, 255, 255, 0.8); line-height: 1.5;
}
.pd-toc .no { font-size: 12px; font-weight: 700; color: var(--violet-soft); flex-shrink: 0; }
.pd-toc .note {
  padding: 8px 16px 8px 46px; font-size: 12.5px; color: color-mix(in srgb, var(--c) 80%, #fff); line-height: 1.5;
}
.pd-toc-tail { margin-top: 14px; font-size: 12.5px; color: rgba(255, 255, 255, 0.4); line-height: 1.6; }

.pd-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pd-chips span {
  padding: 7px 13px; border-radius: 999px; font-size: 12.5px; font-weight: 600;
  background: rgba(124, 58, 237, 0.12); border: 1px solid rgba(139, 92, 246, 0.3); color: #ddd6fe;
}
.pd-chips-tail { margin-top: 14px; font-size: 13.5px; color: rgba(255, 255, 255, 0.55); line-height: 1.7; }

.pd-reader {
  display: flex; gap: 16px; padding: 18px; border-radius: 18px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line-strong); align-items: center;
}
.pd-reader img { width: 88px; height: 88px; border-radius: 16px; object-fit: cover; flex-shrink: 0; }
.pd-reader .nm { font-size: 17px; font-weight: 800; }
.pd-reader .role { font-size: 12px; color: var(--violet-soft); margin: 2px 0 8px; }
.pd-reader p { font-size: 13px; color: rgba(255, 255, 255, 0.6); line-height: 1.6; }
.pd-reader .spec { margin-top: 8px; font-size: 11.5px; color: rgba(255, 255, 255, 0.4); }
.pd-reader-tail { margin-top: 12px; font-size: 13px; color: rgba(255, 255, 255, 0.5); }

.pd-method { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 480px) { .pd-method { grid-template-columns: 1fr; } }
.pd-method .m {
  padding: 15px 16px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line-strong);
}
.pd-method .m b { display: block; font-size: 14px; margin-bottom: 5px; }
.pd-method .m p { font-size: 12.5px; color: rgba(255, 255, 255, 0.5); line-height: 1.6; }

.pd-calc { display: grid; gap: 7px; }
.pd-calc li {
  list-style: none; display: flex; gap: 10px; align-items: baseline;
  font-size: 13.5px; color: rgba(255, 255, 255, 0.7);
}
.pd-calc li::before { content: "◈"; font-size: 10px; color: var(--violet-soft); }

.pd-faq details {
  border: 1px solid var(--line-strong); border-radius: 14px; margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.02);
}
.pd-faq summary {
  list-style: none; cursor: pointer; padding: 14px 16px;
  font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, 0.85);
  display: flex; justify-content: space-between; align-items: center;
}
.pd-faq summary::-webkit-details-marker { display: none; }
.pd-faq summary::after { content: "▾"; font-size: 11px; color: rgba(255, 255, 255, 0.35); transition: transform 0.2s; }
.pd-faq details[open] summary::after { transform: rotate(180deg); }
.pd-faq .a { padding: 0 16px 14px; font-size: 13.5px; color: rgba(255, 255, 255, 0.55); line-height: 1.7; }

.pd-price { display: grid; gap: 12px; }
@media (min-width: 560px) { .pd-price { grid-template-columns: 1fr 1fr; } }
.price-card {
  position: relative; padding: 22px 20px; border-radius: 18px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line-strong);
}
.price-card.best { border-color: rgba(139, 92, 246, 0.55); background: rgba(124, 58, 237, 0.08); }
.price-card .tier { font-size: 12px; font-weight: 700; color: rgba(255, 255, 255, 0.45); margin-bottom: 8px; }
.price-card.best .tier { color: var(--violet-soft); }
.price-card .flag {
  position: absolute; top: -10px; right: 16px; padding: 3px 10px; border-radius: 999px;
  background: var(--violet); color: #fff; font-size: 11px; font-weight: 700;
}
.price-card .amount { font-size: 26px; font-weight: 800; }
.price-card .was2 { font-size: 13px; color: rgba(255, 255, 255, 0.3); text-decoration: line-through; margin-left: 6px; }
.price-card ul { margin: 12px 0 16px; display: grid; gap: 6px; }
.price-card li { list-style: none; font-size: 13px; color: rgba(255, 255, 255, 0.6); display: flex; gap: 8px; }
.price-card li::before { content: "·"; color: var(--violet-soft); font-weight: 800; }
.price-card button {
  width: 100%; padding: 11px; border-radius: 12px; font-size: 14px; font-weight: 700; transition: background 0.15s;
  background: rgba(255, 255, 255, 0.08);
}
.price-card button:hover { background: rgba(255, 255, 255, 0.14); }
.price-card.best button { background: var(--violet); }
.price-card.best button:hover { background: var(--violet-hi); }
.pd-price-tail { margin-top: 16px; font-size: 13px; color: rgba(255, 255, 255, 0.5); line-height: 1.7; }

.pd-close { margin-top: 48px; text-align: center; }
.pd-close p { font-size: 15px; color: rgba(255, 255, 255, 0.75); line-height: 1.8; }
.pd-close .em { margin-top: 10px; font-size: 16px; font-weight: 700; color: #fff; }

.pd-related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 560px) { .pd-related { grid-template-columns: 1fr; } }
.rel-card {
  padding: 15px 16px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line-strong); transition: border-color 0.15s;
}
.rel-card:hover { border-color: rgba(255, 255, 255, 0.25); }
.rel-card b { display: block; font-size: 13.5px; margin-bottom: 4px; }
.rel-card span { font-size: 11.5px; color: rgba(255, 255, 255, 0.45); line-height: 1.5; }

.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  border-top: 1px solid var(--line); background: rgba(12, 12, 20, 0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.sticky-bar .inner {
  max-width: 720px; margin: 0 auto; padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: 12px;
}
.sticky-bar .info { flex: 1; min-width: 0; }
.sticky-bar .l1 { font-size: 11px; color: rgba(255, 255, 255, 0.45); }
.sticky-bar .l2 { font-size: 16px; font-weight: 800; }
.sticky-bar .go {
  flex-shrink: 0; padding: 11px 22px; border-radius: 12px;
  background: var(--violet); color: #fff; font-size: 14.5px; font-weight: 700; transition: background 0.15s;
}
.sticky-bar .go:hover { background: var(--violet-hi); }
