/* ═══════════════════════════════════════════════
   신농 보이옥션 — 메인 스타일시트
   골드·먹·한지 프리미엄 테마
═══════════════════════════════════════════════ */

/* ── CSS 토큰 ── */
:root {
  --gold: #B8860B;
  --gold-lt: #D4A017;
  --gold-pale: #F5E6C8;
  --gold-dim: rgba(184,134,11,.15);
  --ink: #1a1208;
  --ink2: #2d1f08;
  --ink3: #3d2b0e;
  --paper: #FBF6EE;
  --paper2: #F2E8D5;
  --paper3: #E0CFA8;
  --red: #8B1A1A;
  --red-lt: #a52020;
  --celadon: #4A7B6F;
  --celadon-lt: #6BA89A;
  --muted: #7a6548;
  --blue: #1e509a;

  --hdr: 60px;
  --catbar: 54px;
  --bot: 62px;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.12);
  --shadow-gold: 0 0 0 3px rgba(184,134,11,.25);
}

/* ── 리셋 & 기본 ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; -webkit-tap-highlight-color: transparent; scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans KR', sans-serif;
  background: #f0ebe0;
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── 스크롤바 숨김 ── */
.no-scroll::-webkit-scrollbar { display: none; }
.no-scroll { scrollbar-width: none; -webkit-overflow-scrolling: touch; }

/* ══════════════════════════════
   TOP HEADER
══════════════════════════════ */
.top-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--ink);
  border-bottom: 1px solid rgba(184,134,11,.25);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.header-row1 {
  height: var(--hdr);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 10px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* 햄버거 */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all .3s;
}

/* 로고 */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex: 1;
}
.logo-emblem {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #8B6508 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif KR', serif;
  font-size: 20px;
  color: var(--ink);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(184,134,11,.4), var(--shadow);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: 'Noto Serif KR', serif;
  font-size: 15px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .5px;
}
.logo-sub { font-size: 10px; color: var(--paper3); margin-top: 2px; letter-spacing: .3px; }

/* 헤더 우측 */
.hdr-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* ── 제휴사 드롭다운 ── */
.partner-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.partner-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(74,123,111,.15);
  border: 1px solid rgba(74,123,111,.5);
  color: var(--celadon);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
  letter-spacing: .3px;
}
.partner-btn:hover { background: rgba(74,123,111,.28); border-color: var(--celadon); }
.partner-btn .pb-arrow {
  font-size: 8px;
  transition: transform .2s;
  opacity: .7;
}
.partner-wrap.open .pb-arrow { transform: rotate(180deg); }
.partner-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--paper2);
  border: 1px solid var(--paper3);
  border-radius: 12px;
  padding: 6px;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  z-index: 999;
}
.partner-wrap.open .partner-dropdown { display: block; }
.partner-dropdown-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .8px;
  padding: 4px 8px 6px;
  border-bottom: 1px solid var(--paper3);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.partner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s;
  text-decoration: none;
}
.partner-item:hover { background: rgba(74,123,111,.12); }
.partner-item-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.partner-item-info { flex: 1; min-width: 0; }
.partner-item-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1px;
}
.partner-item-url {
  font-size: 10px;
  color: var(--muted);
}
.partner-item-badge {
  font-size: 9px;
  font-weight: 700;
  background: rgba(74,123,111,.2);
  color: var(--celadon);
  border: 1px solid rgba(74,123,111,.3);
  padding: 2px 6px;
  border-radius: 6px;
  white-space: nowrap;
}
@media (max-width: 400px) {
  .partner-btn span:first-child { display: none; }
}
.pv-pill {
  background: rgba(184,134,11,.18);
  border: 1px solid rgba(184,134,11,.4);
  color: var(--gold-lt);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
  font-weight: 500;
}
.btn-hdr {
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  transition: all .2s;
}
.btn-hdr:hover { background: rgba(184,134,11,.12); }
.btn-hdr.fill {
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
}
.btn-hdr.fill:hover { background: var(--gold-lt); }

/* ── 헤더 로그인 후 유저 버튼 ── */
.hdr-user-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(184,134,11,.15);
  border: 1px solid var(--gold);
  color: var(--gold-pale);
  padding: 5px 11px 5px 8px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.hdr-user-pill:hover { background: rgba(184,134,11,.28); }
.hdr-avatar-icon { font-size: 15px; }
.hdr-username { max-width: 72px; overflow: hidden; text-overflow: ellipsis; }

/* 모바일 검색바 */
.search-bar {
  padding: 8px 16px 10px;
  background: var(--ink2);
  border-bottom: 1px solid rgba(184,134,11,.2);
}
.search-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(184,134,11,.3);
  border-radius: 22px;
  padding: 7px 14px;
  max-width: 1400px;
  margin: 0 auto;
}
.search-inner input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 13px;
  color: var(--paper);
}
.search-inner input::placeholder { color: rgba(255,255,255,.3); }
.search-inner .s-icon { font-size: 15px; color: rgba(255,255,255,.4); }
.search-inner .s-go {
  font-size: 13px;
  color: var(--gold);
  cursor: pointer;
  font-weight: 700;
  background: none;
  border: none;
  padding: 0;
}

/* ══════════════════════════════
   CATEGORY BAR — 중앙 정렬 핵심
══════════════════════════════ */
.cat-bar-wrap {
  position: sticky;
  top: 0;
  z-index: 280;
  background: var(--ink2);
  border-bottom: 2px solid rgba(184,134,11,.5);
  box-shadow: 0 3px 16px rgba(0,0,0,.35);
}

.cat-bar {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  max-width: 1400px;
  margin: 0 auto;
  /* 모바일: 좌우 스크롤, 중앙 정렬 불가한 경우 대비 */
  min-width: 0;
}
.cat-bar::-webkit-scrollbar { display: none; }

.cat-btn {
  /* 균등 분배 핵심 */
  flex: 1 1 0;
  min-width: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 9px 6px 8px;
  border: none;
  background: none;
  border-bottom: 2.5px solid transparent;
  color: rgba(255,255,255,.45);
  font-size: 10px;
  white-space: nowrap;
  transition: all .22s;
  position: relative;
}
.cat-btn .c-icon { font-size: 18px; line-height: 1; }
.cat-btn.on, .cat-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  background: rgba(184,134,11,.09);
}
.cat-btn.on::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
  box-shadow: 0 0 8px rgba(184,134,11,.6);
}
.cat-btn:hover { color: var(--gold-lt); background: rgba(184,134,11,.06); }

/* ══════════════════════════════
   SIDEBAR
══════════════════════════════ */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 490;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(2px);
}
.sidebar-overlay.on { display: block; }

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  width: 280px;
  height: 100vh;
  background: var(--ink2);
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-right: 1px solid rgba(184,134,11,.3);
}
.sidebar.open { transform: translateX(0); }

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(184,134,11,.25);
  background: linear-gradient(180deg, rgba(184,134,11,.1) 0%, transparent 100%);
}
.sidebar-logo {
  font-family: 'Noto Serif KR', serif;
  font-size: 16px;
  color: var(--gold);
  font-weight: 700;
}
.sidebar-close {
  background: none;
  border: none;
  color: var(--paper3);
  font-size: 22px;
  line-height: 1;
}

.nav-section {
  font-size: 9px;
  color: var(--paper3);
  padding: 14px 18px 4px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: .7;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  border: none;
  border-left: 3px solid transparent;
  background: none;
  width: 100%;
  text-align: left;
  transition: all .18s;
}
.nav-item:hover, .nav-item.on {
  background: rgba(184,134,11,.12);
  color: var(--gold);
  border-left-color: var(--gold);
}
.nav-sub {
  padding-left: 40px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.nav-sub:hover, .nav-sub.on {
  color: var(--gold-lt);
  background: rgba(184,134,11,.07);
  border-left-color: var(--gold-lt);
}
.sidebar-foot {
  padding: 14px 18px;
  border-top: 1px solid rgba(184,134,11,.2);
  margin-top: auto;
}
.sidebar-foot p { font-size: 10px; color: var(--muted); line-height: 1.8; }

/* ══════════════════════════════
   LAYOUT & PAGE SYSTEM
══════════════════════════════ */
.main-wrap { display: block; width: 100%; }
.content { width: 100%; overflow-x: hidden; padding-bottom: var(--bot); }

.page { display: none; animation: fadeUp .24s ease; }
.page.on { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pg { max-width: 1200px; margin: 0 auto; padding: 16px; }

/* ══════════════════════════════
   BOTTOM NAV
══════════════════════════════ */
.bot-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 270;
  height: var(--bot);
  background: var(--ink);
  border-top: 1px solid rgba(184,134,11,.35);
  display: flex;
  box-shadow: 0 -2px 16px rgba(0,0,0,.3);
  padding-bottom: env(safe-area-inset-bottom);
}
.bot-btn {
  flex: 1;
  border: none;
  background: none;
  color: rgba(255,255,255,.38);
  font-size: 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  transition: color .18s;
  padding: 0 2px;
}
.bot-btn .b-ic { font-size: 20px; line-height: 1; }
.bot-btn.on { color: var(--gold); }

/* ══════════════════════════════
   히어로 섹션 — 고급 리디자인
══════════════════════════════ */
.hero-wrap {
  background: linear-gradient(170deg, #1a1208 0%, #2d1f08 55%, #3d2b0e 100%);
  border-bottom: 2px solid rgba(184,134,11,.6);
  position: relative;
  overflow: hidden;
}

/* 배경 패턴 */
.hero-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(184,134,11,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(74,123,111,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,134,11,.6), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 20px 0;
}

/* 브랜드 태그라인 */
.hero-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(184,134,11,.15);
  border: 1px solid rgba(184,134,11,.4);
  color: var(--gold-lt);
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: .3px;
}
.hero-tag-badge .tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* 메인 카피 */
.hero-copy {
  margin-bottom: 24px;
}
.hero-copy-line1 {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(26px, 5.5vw, 46px);
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.5px;
}
.hero-hl {
  color: var(--gold);
  text-shadow: 0 0 30px rgba(184,134,11,.5);
}
.hero-copy-line2 {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(22px, 4.5vw, 38px);
  color: rgba(255,255,255,.85);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
.hero-copy-sub {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  max-width: 560px;
}

/* 히어로 탭 */
.hero-cat-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(184,134,11,.25);
  overflow-x: auto;
  scrollbar-width: none;
}
.hero-cat-tabs::-webkit-scrollbar { display: none; }

.hct {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,.45);
  font-size: 13px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all .22s;
  white-space: nowrap;
}
.hct .hct-icon { font-size: 16px; }
.hct.on {
  color: var(--gold);
  border-bottom-color: var(--gold);
  background: rgba(184,134,11,.07);
}
.hct:hover { color: var(--gold-lt); }

/* 검색 폼 패널 */
.hero-form { display: none; padding: 18px 0 14px; }
.hero-form.on { display: block; animation: fadeUp .22s ease; }

.hero-selects {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.hs {
  border: 1px solid rgba(184,134,11,.3);
  background: rgba(255,255,255,.06);
  color: var(--paper);
  font-size: 12px;
  padding: 10px 12px;
  border-radius: 7px;
  outline: none;
  transition: border-color .2s, background .2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23B8860B'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}
.hs:focus { border-color: var(--gold); background: rgba(184,134,11,.1); }
.hs option { background: #2d1f08; color: #FBF6EE; }

.hero-search-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--ink);
  border: none;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(184,134,11,.35);
  white-space: nowrap;
  letter-spacing: .3px;
}
.hero-search-btn:hover {
  background: linear-gradient(135deg, var(--gold-lt) 0%, #e0b01c 100%);
  box-shadow: 0 6px 24px rgba(184,134,11,.5);
  transform: translateY(-1px);
}

/* 빠른 시세 태그 */
.hero-quick-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.hq-tag {
  background: rgba(184,134,11,.1);
  border: 1px solid rgba(184,134,11,.25);
  color: rgba(255,255,255,.6);
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .18s;
}
.hq-tag:hover {
  background: rgba(184,134,11,.2);
  color: var(--gold-lt);
  border-color: rgba(184,134,11,.5);
}
.hq-tag strong { color: var(--gold); font-weight: 700; }

/* ── 통계 스트립 ── */
.hero-stats-strip {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  border-top: 1px solid rgba(184,134,11,.2);
  margin: 0 -20px;
}
.hero-stats-strip::-webkit-scrollbar { display: none; }

.hss-item {
  flex: 1 1 0;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  border-right: 1px solid rgba(184,134,11,.12);
  text-align: center;
  transition: background .18s;
}
.hss-item:last-child { border-right: none; }
.hss-item.clickable { cursor: pointer; }
.hss-item.clickable:hover { background: rgba(184,134,11,.08); }

.hss-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.hss-num small { font-size: 12px; }
.hss-unit { font-size: 11px; color: var(--gold-lt); font-weight: 500; }
.hss-lbl { font-size: 10px; color: rgba(255,255,255,.4); margin-top: 2px; }

/* 친구 초대 팝업 */
.invite-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.invite-popup.show { display: flex; }
.invite-box {
  background: linear-gradient(160deg, #2d1f08 0%, #1a1208 100%);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 32px 26px 28px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 40px rgba(184,134,11,.15);
}
.invite-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none; border: none;
  color: var(--paper3);
  font-size: 22px;
  line-height: 1;
}
.invite-icon { font-size: 52px; margin-bottom: 12px; }
.invite-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 20px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}
.invite-amount {
  font-size: 42px;
  font-weight: 700;
  color: #FFD700;
  line-height: 1;
  margin-bottom: 3px;
  text-shadow: 0 0 30px rgba(255,215,0,.4);
}
.invite-unit { font-size: 14px; color: var(--gold-lt); margin-bottom: 14px; display: block; }
.invite-desc { font-size: 12px; color: var(--paper3); line-height: 1.8; margin-bottom: 14px; }
.invite-desc strong { color: var(--gold); }
.invite-steps {
  background: rgba(184,134,11,.1);
  border: 1px solid rgba(184,134,11,.2);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 18px;
  text-align: left;
}
.invite-steps li {
  font-size: 11px;
  color: var(--paper3);
  line-height: 1.9;
  list-style: none;
}
.invite-steps li::before { content: "✓ "; color: var(--gold); font-weight: 700; }
.invite-kakao-btn {
  width: 100%;
  padding: 13px;
  background: #FEE500;
  color: #3C1E1E;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  transition: background .2s;
}
.invite-kakao-btn:hover { background: #ffd900; }
.invite-link-btn {
  width: 100%;
  padding: 11px;
  background: rgba(184,134,11,.15);
  color: var(--gold);
  border: 1px solid rgba(184,134,11,.4);
  border-radius: 10px;
  font-size: 13px;
  transition: background .2s;
}
.invite-link-btn:hover { background: rgba(184,134,11,.25); }

/* ══════════════════════════════
   HOMEPAGE SECTIONS
══════════════════════════════ */
/* 섹션 헤더 */
.sec-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px 10px;
  max-width: 1200px;
  margin: 0 auto;
}
.sec-hdr-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sec-hdr-left::before {
  content: '';
  display: block;
  width: 3px;
  height: 18px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-lt) 100%);
  border-radius: 2px;
}
.sec-hdr-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.2px;
}
.sec-hdr-more {
  font-size: 12px;
  color: var(--gold);
  background: none;
  border: none;
  font-weight: 500;
  opacity: .8;
  transition: opacity .18s;
}
.sec-hdr-more:hover { opacity: 1; }

/* 가로 스크롤 컨테이너 */
.h-scroll {
  overflow-x: auto;
  display: flex;
  gap: 12px;
  padding: 0 16px 16px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.h-scroll::-webkit-scrollbar { display: none; }

/* ── 상품 카드 ── */
.prod-card {
  flex: 0 0 150px;
  background: var(--paper);
  border: 1px solid var(--paper3);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all .22s;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.prod-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(184,134,11,.2);
  transform: translateY(-2px);
}
.prod-card .pc-img {
  width: 100%;
  height: 116px;
  background: linear-gradient(135deg, var(--paper2) 0%, #E8D8B5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  border-bottom: 1px solid var(--paper3);
}
.prod-card .pc-body { padding: 9px 10px 12px; }
.prod-card .pc-badge {
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 4px;
}
.pb-auction { background: var(--red); color: #fff; }
.pb-new { background: var(--gold); color: var(--ink); }
.pb-free { background: var(--celadon); color: #fff; }
.prod-card .pc-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.45;
  margin-bottom: 4px;
}
.prod-card .pc-meta { font-size: 9px; color: var(--muted); margin-bottom: 4px; }
.prod-card .pc-price { font-size: 14px; font-weight: 700; color: var(--red); }
.auc-time { font-size: 10px; color: var(--red); font-family: monospace; font-weight: 700; margin-top: 3px; }

/* ── 체험 카드 ── */
.exp-card {
  flex: 0 0 165px;
  background: var(--paper);
  border: 1px solid var(--paper3);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all .22s;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.exp-card:hover {
  border-color: var(--celadon);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(74,123,111,.2);
}
.exp-card .ec-img {
  width: 100%;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}
.exp-card .ec-body { padding: 10px 12px 12px; }
.exp-card .ec-cat {
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 5px;
}
.ec-puerh { background: rgba(74,123,111,.12); color: var(--celadon); }
.ec-wellness { background: rgba(107,80,156,.1); color: #6b509c; }
.ec-cert { background: rgba(184,134,11,.15); color: var(--gold); }
.exp-card .ec-title { font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 3px; line-height: 1.35; }
.exp-card .ec-meta { font-size: 10px; color: var(--muted); line-height: 1.5; }
.exp-card .ec-price { font-size: 14px; font-weight: 700; color: var(--red); margin-top: 5px; }

/* ── 구인 카드 ── */
.job-mini {
  flex: 0 0 210px;
  background: var(--paper);
  border: 1px solid var(--paper3);
  border-radius: var(--radius);
  padding: 14px;
  cursor: pointer;
  transition: all .22s;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.job-mini:hover { border-color: var(--gold); transform: translateY(-2px); }
.job-mini .jm-type {
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 7px;
}
.jmt-recruit { background: rgba(184,134,11,.15); color: var(--gold); }
.jmt-seek { background: rgba(74,123,111,.12); color: var(--celadon); }
.job-mini .jm-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.job-mini .jm-co { font-size: 10px; color: var(--muted); margin-bottom: 7px; }
.job-mini .jm-salary { font-size: 13px; font-weight: 700; color: var(--red); }

/* ── 나눔 카드 ── */
.nanum-mini {
  flex: 0 0 210px;
  background: var(--paper);
  border: 1px solid var(--paper3);
  border-radius: var(--radius);
  padding: 14px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all .22s;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.nanum-mini:hover { border-color: var(--celadon); transform: translateY(-2px); }
.nanum-ribbon {
  position: absolute;
  top: 8px;
  right: -18px;
  background: var(--celadon);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 26px;
  transform: rotate(45deg);
}
.nanum-mini .nm-title { font-size: 12px; font-weight: 700; margin-bottom: 5px; padding-right: 24px; line-height: 1.4; }
.nanum-mini .nm-desc {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 9px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nanum-mini .nm-footer { display: flex; justify-content: space-between; align-items: center; }
.nanum-mini .nm-who { font-size: 10px; color: var(--muted); }
.nanum-mini .nm-cnt { font-size: 10px; color: var(--celadon); font-weight: 700; }

/* 배너 스트립 */
.banner-strip {
  margin: 0 16px 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink2) 100%);
  border: 1px solid rgba(184,134,11,.45);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: border-color .2s;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
}
.banner-strip:hover { border-color: var(--gold-lt); }
.banner-text .bt-tag {
  font-size: 9px;
  background: rgba(184,134,11,.2);
  color: var(--gold);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 5px;
}
.banner-text .bt-title { font-size: 14px; color: var(--paper); font-weight: 700; line-height: 1.4; }
.banner-text .bt-sub { font-size: 10px; color: var(--paper3); margin-top: 3px; }
.banner-icon { font-size: 36px; flex-shrink: 0; }

/* ══════════════════════════════
   INNER TABS
══════════════════════════════ */
.inner-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 2px solid var(--paper3);
  margin-bottom: 16px;
}
.inner-tabs::-webkit-scrollbar { display: none; }
.itab {
  flex: 0 0 auto;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all .18s;
  white-space: nowrap;
}
.itab.on { color: var(--gold); border-bottom-color: var(--gold); font-weight: 700; }
.ipanel { display: none; }
.ipanel.on { display: block; animation: fadeUp .2s ease; }

/* ══════════════════════════════
   공통 UI 컴포넌트
══════════════════════════════ */
.sec-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--paper3);
}
.sec-title::before {
  content: '';
  display: block;
  width: 3px;
  height: 18px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-lt) 100%);
  border-radius: 2px;
}

/* 칩 필터 */
.chip-bar {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 14px;
  scrollbar-width: none;
}
.chip-bar::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto;
  padding: 6px 14px;
  border-radius: 18px;
  font-size: 11px;
  border: 1px solid var(--paper3);
  background: var(--paper);
  color: var(--muted);
  cursor: pointer;
  transition: all .15s;
  font-weight: 500;
}
.chip.on {
  background: var(--ink2);
  color: var(--gold);
  border-color: var(--gold);
  font-weight: 700;
}

/* 필터 카드 */
.filter-card {
  background: var(--paper2);
  border: 1px solid var(--paper3);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
}
.fg { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
.fi label { font-size: 10px; color: var(--muted); display: block; margin-bottom: 3px; font-weight: 500; }
.fi select, .fi input {
  width: 100%;
  border: 1px solid var(--paper3);
  background: var(--paper);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
}
.fi select:focus, .fi input:focus { border-color: var(--gold); }

.btn-search {
  width: 100%;
  margin-top: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--ink);
  border: none;
  padding: 12px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 3px 14px rgba(184,134,11,.3);
  transition: all .2s;
  letter-spacing: .3px;
}
.btn-search:hover {
  box-shadow: 0 5px 20px rgba(184,134,11,.45);
  transform: translateY(-1px);
}

/* 시세 결과 */
.price-result {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink2) 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  display: none;
  box-shadow: 0 0 0 1px rgba(184,134,11,.15), var(--shadow);
}
.price-result.show { display: block; animation: fadeUp .3s ease; }
.pr-lbl { font-size: 11px; color: var(--paper3); margin-bottom: 4px; }
.pr-amt { font-size: 30px; color: var(--gold); font-weight: 700; letter-spacing: -.5px; }
.pr-range { font-size: 12px; color: var(--celadon-lt); margin-top: 4px; }
.pr-meta { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 14px; }
.prm { background: rgba(184,134,11,.1); border-radius: 7px; padding: 10px; }
.prm .pm-l { font-size: 9px; color: var(--paper3); }
.prm .pm-v { font-size: 14px; color: var(--gold-lt); font-weight: 700; margin-top: 3px; }

/* 리스트 카드 */
.list-card {
  background: var(--paper);
  border: 1px solid var(--paper3);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  gap: 12px;
  cursor: pointer;
  transition: all .2s;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.list-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(184,134,11,.15); }
.lc-img {
  width: 78px;
  height: 78px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--paper2) 0%, #e8d8b5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
  border: 1px solid var(--paper3);
}
.lc-body { flex: 1; min-width: 0; }
.lc-title { font-size: 13px; font-weight: 700; margin-bottom: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lc-meta { font-size: 10px; color: var(--muted); margin-bottom: 6px; }
.lc-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 6px; }
.tag { font-size: 10px; padding: 2px 7px; border-radius: 4px; background: var(--paper2); color: var(--muted); border: 1px solid var(--paper3); }
.tag.g { background: rgba(184,134,11,.12); color: var(--gold); border-color: rgba(184,134,11,.28); }
.tag.r { background: rgba(139,26,26,.1); color: var(--red); border-color: rgba(139,26,26,.2); }
.tag.gr { background: rgba(74,123,111,.1); color: var(--celadon); border-color: rgba(74,123,111,.2); }
.tag.b { background: rgba(30,80,160,.08); color: var(--blue); border-color: rgba(30,80,160,.18); }
.lc-price { font-size: 15px; font-weight: 700; color: var(--red); }

/* 정보 박스 */
.ibox {
  border-radius: 9px;
  padding: 13px 15px;
  margin-bottom: 14px;
  border-left: 3px solid var(--gold);
  background: var(--paper2);
}
.ibox.c { border-left-color: var(--celadon); }
.ibox.r { border-left-color: var(--red); }
.ibox h4 { font-size: 12px; font-weight: 700; margin-bottom: 6px; }
.ibox p, .ibox li { font-size: 11px; color: var(--muted); line-height: 1.8; }
.ibox ul { padding-left: 14px; }

/* 한자 배지 */
.hanja-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  background: rgba(184,134,11,.1);
  border: 1px solid rgba(184,134,11,.22);
  border-radius: 4px;
  padding: 1px 6px;
}
.hanja-badge .hj { font-family: 'Noto Serif KR', serif; font-size: .93em; color: var(--gold); }
.hanja-badge .ko { font-size: .76em; color: var(--muted); }

/* ══════════════════════════════
   경매 카드
══════════════════════════════ */
.auc-card {
  background: var(--paper);
  border: 1px solid var(--paper3);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
  transition: all .2s;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.auc-card:hover { border-color: var(--gold); box-shadow: 0 4px 22px rgba(184,134,11,.18); }
.auc-card-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 9px; }
.auc-title { font-size: 14px; font-weight: 700; flex: 1; line-height: 1.4; }
.auc-type-badge { font-size: 10px; padding: 3px 9px; border-radius: 5px; font-weight: 700; white-space: nowrap; flex-shrink: 0; }
.auc-type-auction { background: rgba(139,26,26,.15); color: var(--red); border: 1px solid rgba(139,26,26,.25); }
.auc-type-direct { background: rgba(184,134,11,.15); color: var(--gold); border: 1px solid rgba(184,134,11,.3); }
.auc-meta { font-size: 11px; color: var(--muted); margin-bottom: 8px; line-height: 1.5; }
.auc-bid-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; flex-wrap: wrap; gap: 8px; }
.auc-price-block .auc-label { font-size: 10px; color: var(--muted); }
.auc-price-block .auc-price { font-size: 18px; font-weight: 700; color: var(--red); }
.auc-price-block .auc-start { font-size: 11px; color: var(--muted); }
.auc-bid-info { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.bid-count { background: rgba(139,26,26,.1); border: 1px solid rgba(139,26,26,.2); color: var(--red); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 14px; }
.bid-status { font-size: 11px; color: var(--celadon); font-weight: 700; }
.auc-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--paper3); padding-top: 10px; margin-top: 10px; gap: 10px; flex-wrap: wrap; }
.auc-timer { font-family: monospace; font-weight: 700; color: var(--red); font-size: 14px; }
.btn-bid { background: linear-gradient(135deg, var(--red) 0%, var(--red-lt) 100%); color: #fff; border: none; padding: 8px 20px; border-radius: 7px; font-size: 13px; font-weight: 700; transition: all .2s; box-shadow: 0 3px 12px rgba(139,26,26,.3); }
.btn-bid:hover { box-shadow: 0 5px 18px rgba(139,26,26,.45); transform: translateY(-1px); }
.discount-badge { display: inline-block; background: var(--celadon); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; margin-left: 6px; vertical-align: middle; }
.original-price { font-size: 11px; color: var(--muted); text-decoration: line-through; }
.discount-price { font-size: 18px; font-weight: 700; color: var(--red); }

/* 버튼 공통 */
.btn-outline {
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 9px 20px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  transition: all .18s;
}
.btn-outline:hover { background: rgba(184,134,11,.1); }
.btn-sm-outline {
  background: none;
  border: 1px solid var(--paper3);
  color: var(--muted);
  padding: 6px 13px;
  border-radius: 6px;
  font-size: 11px;
  transition: all .18s;
}
.btn-sm-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-celadon { background: var(--celadon); color: #fff; border: none; padding: 7px 16px; border-radius: 6px; font-size: 12px; transition: background .2s; }
.btn-celadon:hover { background: var(--celadon-lt); }

/* 가격대 탭 */
.price-tab-bar { display: flex; overflow-x: auto; scrollbar-width: none; border-bottom: 2px solid var(--paper3); margin-bottom: 16px; }
.price-tab-bar::-webkit-scrollbar { display: none; }
.ptab { flex: 0 0 auto; padding: 7px 13px; font-size: 11px; color: var(--muted); cursor: pointer; border: none; background: none; border-bottom: 2px solid transparent; margin-bottom: -2px; white-space: nowrap; transition: all .18s; }
.ptab.on { color: var(--gold); border-bottom-color: var(--gold); font-weight: 700; }

/* 테이블 */
.tbl-wrap { overflow-x: auto; border-radius: 9px; border: 1px solid var(--paper3); }
.comm-tbl { width: 100%; border-collapse: collapse; font-size: 12px; }
.comm-tbl th { background: var(--ink2); color: var(--gold); padding: 10px 13px; text-align: left; font-weight: 500; white-space: nowrap; }
.comm-tbl td { padding: 10px 13px; border-bottom: 1px solid var(--paper3); }
.comm-tbl tr:nth-child(even) td { background: var(--paper2); }
.comm-tbl tr:last-child td { border-bottom: none; }
.hi { color: var(--gold); font-weight: 700; }

/* 지도 */
#dealer-map { width: 100%; height: 340px; border-radius: var(--radius); border: 1px solid var(--paper3); margin-bottom: 14px; position: relative; z-index: 1; background: var(--paper2); }
.map-loading { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: var(--paper2); border-radius: var(--radius); z-index: 2; }
.map-loading .ml-icon { font-size: 40px; animation: pulse 1.5s infinite; }
.map-loading .ml-txt { font-size: 12px; color: var(--muted); }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.map-locate-btn { position: absolute; bottom: 12px; right: 12px; z-index: 10; background: var(--ink); color: var(--gold); border: 1px solid var(--gold); border-radius: 7px; padding: 8px 14px; font-size: 11px; font-weight: 700; cursor: pointer; }
.map-locate-btn:hover { background: var(--gold); color: var(--ink); }
.leaflet-popup-content-wrapper { background: var(--ink2) !important; border: 1px solid var(--gold) !important; border-radius: 10px !important; }
.leaflet-popup-tip { background: var(--ink2) !important; }
.leaflet-popup-content { color: var(--paper) !important; font-family: 'Noto Sans KR', sans-serif !important; }
.pop-name { font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.pop-type { font-size: 10px; padding: 2px 7px; border-radius: 3px; background: rgba(184,134,11,.2); color: var(--gold-lt); display: inline-block; margin-bottom: 6px; }
.pop-addr { font-size: 11px; color: var(--paper3); line-height: 1.5; }
.pop-btn { display: block; width: 100%; padding: 6px; background: var(--gold); color: var(--ink); border: none; border-radius: 5px; font-size: 11px; font-weight: 700; cursor: pointer; text-align: center; margin-top: 8px; }

/* 딜러 카드 */
.dealer-card { background: var(--paper); border: 1px solid var(--paper3); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 10px; transition: all .2s; }
.dealer-card:hover { border-color: var(--celadon); box-shadow: 0 4px 18px rgba(74,123,111,.15); }
.dc-top { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.dc-type { color: var(--gold); font-size: 9px; padding: 3px 8px; border-radius: 4px; white-space: nowrap; flex-shrink: 0; font-weight: 700; }
.dc-name { font-size: 14px; font-weight: 700; }
.dc-meta { font-size: 10px; color: var(--muted); margin-top: 3px; line-height: 1.6; }
.dc-dist { font-size: 11px; color: var(--celadon); font-weight: 700; }
.dc-foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--paper3); padding-top: 9px; margin-top: 9px; flex-wrap: wrap; gap: 8px; }
.d-pill { font-size: 9px; padding: 2px 8px; border-radius: 11px; background: var(--paper2); color: var(--muted); border: 1px solid var(--paper3); }
.d-pill.g { background: rgba(184,134,11,.1); color: var(--gold); border-color: rgba(184,134,11,.25); }

/* 업체등록 마법사 */
.reg-steps { display: flex; margin-bottom: 22px; position: relative; }
.reg-steps::before { content: ''; position: absolute; top: 18px; left: 0; right: 0; height: 2px; background: var(--paper3); z-index: 0; }
.reg-step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; position: relative; z-index: 1; cursor: pointer; }
.rs-circle { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; background: var(--paper2); color: var(--muted); border: 2px solid var(--paper3); transition: all .2s; }
.reg-step.done .rs-circle { background: var(--celadon); color: #fff; border-color: var(--celadon); }
.reg-step.active .rs-circle { background: var(--gold); color: var(--ink); border-color: var(--gold); box-shadow: 0 0 0 4px rgba(184,134,11,.2); }
.rs-label { font-size: 9px; color: var(--muted); text-align: center; line-height: 1.3; }
.reg-step.active .rs-label { color: var(--gold); font-weight: 700; }
.reg-step.done .rs-label { color: var(--celadon); }
.reg-section { display: none; animation: fadeUp .2s ease; }
.reg-section.on { display: block; }

/* 폼 */
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fg1 { margin-bottom: 10px; }
.fg1 label { font-size: 11px; color: var(--muted); display: block; margin-bottom: 3px; font-weight: 500; }
.fg1 input, .fg1 select, .fg1 textarea { width: 100%; border: 1px solid var(--paper3); background: var(--paper); border-radius: 7px; padding: 9px 11px; font-size: 12px; color: var(--ink); outline: none; transition: border-color .2s; }
.fg1 input:focus, .fg1 select:focus { border-color: var(--gold); }
.fg1 textarea { height: 75px; resize: none; }
.tgl-grp { display: flex; gap: 7px; margin-bottom: 12px; }
.tgl { flex: 1; padding: 9px; border: 1px solid var(--paper3); border-radius: 7px; font-size: 12px; background: var(--paper); color: var(--muted); cursor: pointer; text-align: center; transition: all .18s; }
.tgl.on { background: var(--ink2); color: var(--gold); border-color: var(--gold); font-weight: 700; }

/* PV 박스 */
.pv-box { background: linear-gradient(135deg, var(--ink) 0%, var(--ink2) 100%); border: 1px solid var(--gold); border-radius: var(--radius); padding: 20px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; gap: 14px; flex-wrap: wrap; }
.pv-num { font-size: 36px; font-weight: 700; color: var(--gold); line-height: 1; }
.pv-lbl { font-size: 11px; color: var(--paper3); margin-bottom: 2px; }
.pv-unit { font-size: 13px; color: var(--gold-lt); }

/* 유틸리티 */
.divider { border: none; border-top: 1px solid var(--paper3); margin: 16px 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sm-text { font-size: 10px; color: var(--muted); line-height: 1.8; }
.text-gold { color: var(--gold); font-weight: 700; }
.map-ph { background: var(--paper2); border: 1px solid var(--paper3); border-radius: var(--radius); height: 220px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.map-ph p { font-size: 12px; color: var(--muted); }

/* 체험 그리드 */
.exp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 12px; }
.exp-full { background: var(--paper); border: 1px solid var(--paper3); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: all .2s; }
.exp-full:hover { border-color: var(--celadon); transform: translateY(-2px); }
.ef-img { width: 100%; height: 120px; display: flex; align-items: center; justify-content: center; font-size: 44px; }
.ef-body { padding: 11px 13px 13px; }
.ef-cat { font-size: 9px; padding: 2px 7px; border-radius: 4px; font-weight: 700; display: inline-block; margin-bottom: 5px; }
.efc-tea { background: rgba(74,123,111,.12); color: var(--celadon); }
.efc-well { background: rgba(107,80,156,.1); color: #6b509c; }
.efc-cert { background: rgba(184,134,11,.15); color: var(--gold); }
.ef-title { font-size: 12px; font-weight: 700; margin-bottom: 4px; line-height: 1.35; }
.ef-meta { font-size: 10px; color: var(--muted); line-height: 1.55; margin-bottom: 7px; }
.ef-price { font-size: 15px; font-weight: 700; color: var(--red); }

/* 잡 카드 */
.job-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; }
.job-card { background: var(--paper); border: 1px solid var(--paper3); border-radius: var(--radius); padding: 15px; transition: all .2s; }
.job-card:hover { border-color: var(--gold); box-shadow: 0 4px 18px rgba(184,134,11,.15); }
.jc-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 6px; }
.jc-title { font-size: 13px; font-weight: 700; flex: 1; line-height: 1.4; }
.jc-badge { font-size: 9px; padding: 3px 8px; border-radius: 4px; font-weight: 700; flex-shrink: 0; }
.jcb-r { background: rgba(184,134,11,.15); color: var(--gold); border: 1px solid rgba(184,134,11,.3); }
.jcb-s { background: rgba(74,123,111,.12); color: var(--celadon); border: 1px solid rgba(74,123,111,.28); }
.jc-co { font-size: 11px; color: var(--muted); margin-bottom: 9px; }
.jc-dg { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-bottom: 9px; }
.jdi .jd-l { font-size: 9px; color: var(--muted); }
.jdi .jd-v { font-size: 11px; font-weight: 500; }
.jc-foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--paper3); padding-top: 9px; }
.jc-date { font-size: 10px; color: var(--muted); }
.jc-salary { font-size: 14px; font-weight: 700; color: var(--red); }

/* 나눔 풀 카드 */
.nanum-full { background: var(--paper); border: 1px solid var(--paper3); border-radius: var(--radius); padding: 14px 16px; position: relative; overflow: hidden; margin-bottom: 10px; transition: all .2s; }
.nanum-full:hover { border-color: var(--celadon); }
.nf-ribbon { position: absolute; top: 9px; right: -18px; background: var(--celadon); color: #fff; font-size: 9px; font-weight: 700; padding: 2px 26px; transform: rotate(45deg); }
.nf-title { font-size: 13px; font-weight: 700; margin-bottom: 5px; padding-right: 30px; line-height: 1.4; }
.nf-desc { font-size: 11px; color: var(--muted); margin-bottom: 10px; line-height: 1.65; }
.nf-footer { display: flex; justify-content: space-between; align-items: flex-end; }

/* 이력 카드 */
.resume-card { background: var(--paper); border: 1px solid var(--paper3); border-radius: var(--radius); padding: 14px; display: flex; gap: 13px; margin-bottom: 10px; transition: all .2s; }
.resume-card:hover { border-color: var(--gold); }
.rc-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--ink2); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Noto Serif KR', serif; font-size: 20px; flex-shrink: 0; }
.rc-name { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.rc-job { font-size: 11px; color: var(--gold); font-weight: 500; margin-bottom: 4px; }
.rc-meta { font-size: 10px; color: var(--muted); line-height: 1.7; }

/* 거래 그리드 */
.trade-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 10px; margin-bottom: 14px; }
.trade-card { background: var(--paper); border: 1px solid var(--paper3); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: all .2s; }
.trade-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.tc-img { width: 100%; height: 110px; background: linear-gradient(135deg, var(--paper2) 0%, #e8d8b5 100%); display: flex; align-items: center; justify-content: center; font-size: 38px; border-bottom: 1px solid var(--paper3); }
.tc-body { padding: 10px 11px; }
.tc-type { font-size: 9px; padding: 2px 7px; border-radius: 3px; font-weight: 700; display: inline-block; margin-bottom: 4px; }
.tt-sell { background: rgba(139,26,26,.1); color: var(--red); }
.tt-buy { background: rgba(30,80,160,.1); color: var(--blue); }
.tt-swap { background: rgba(74,123,111,.1); color: var(--celadon); }
.tc-title { font-size: 11px; font-weight: 700; margin-bottom: 3px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tc-price { font-size: 13px; font-weight: 700; color: var(--red); }
.tc-loc { font-size: 9px; color: var(--muted); }

/* ══════════════════════════════
   등록 가이드 전용 스타일
══════════════════════════════ */

/* ── 가이드 히어로 배너 ── */
.guide-hero-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #1a1408 0%, #2a1f08 50%, #1a1408 100%);
  border: 1.5px solid rgba(184,134,11,.4);
  border-radius: 18px;
  padding: 24px 28px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.ghb-left { flex: 1; min-width: 200px; }
.ghb-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  background: rgba(184,134,11,.15);
  border: 1px solid rgba(184,134,11,.35);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: .5px;
}
.ghb-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold-pale);
  line-height: 1.35;
  margin-bottom: 8px;
  font-family: 'Noto Serif KR', serif;
}
.ghb-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.ghb-right { flex-shrink: 0; }
.ghb-progress-wrap {
  background: rgba(184,134,11,.08);
  border: 1px solid rgba(184,134,11,.2);
  border-radius: 14px;
  padding: 14px 18px;
  text-align: center;
}
.ghb-prog-title { font-size: 11px; color: var(--muted); margin-bottom: 10px; font-weight: 600; }
.ghb-prog-ring {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 8px;
}
.ghb-prog-pct {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
}
.ghb-prog-count { font-size: 11px; color: var(--muted); }

/* ── 빠른 링크 그리드 ── */
.guide-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .guide-quick-grid { grid-template-columns: repeat(2, 1fr); }
}
.gq-card {
  background: var(--paper);
  border: 1.5px solid rgba(184,134,11,.2);
  border-radius: 14px;
  padding: 16px 12px;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.gq-card:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 6px 20px rgba(184,134,11,.2); }
.gq-icon { font-size: 28px; margin-bottom: 2px; }
.gq-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.gq-desc { font-size: 10px; color: var(--muted); }
.gq-arrow { font-size: 12px; color: var(--gold); margin-top: 3px; }
.gq-android { border-color: rgba(74,123,111,.3); }
.gq-android:hover { border-color: var(--celadon); box-shadow: 0 6px 20px rgba(74,123,111,.2); }
.gq-google { border-color: rgba(66,133,244,.25); }
.gq-google:hover { border-color: #4285F4; box-shadow: 0 6px 20px rgba(66,133,244,.2); }
.gq-naver { border-color: rgba(3,199,90,.25); }
.gq-naver:hover { border-color: #03C75A; box-shadow: 0 6px 20px rgba(3,199,90,.2); }
.gq-daum { border-color: rgba(254,229,0,.25); }
.gq-daum:hover { border-color: #FEE500; box-shadow: 0 6px 20px rgba(254,229,0,.15); }

/* ── PC 2단 레이아웃 ── */
.guide-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .guide-two-col { grid-template-columns: 1fr 1fr; gap: 18px; }
  .guide-hero-banner { flex-wrap: nowrap; }
  .ghb-title { font-size: 22px; }
}

/* ── 가이드 카드 추가 스타일 ── */
.gc-step-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  background: rgba(184,134,11,.18);
  color: var(--gold);
  border: 1px solid rgba(184,134,11,.35);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: .3px;
}
.gc-step-badge.green { background: rgba(74,123,111,.15); color: var(--celadon); border-color: rgba(74,123,111,.35); }
.gc-step-badge.gray  { background: rgba(120,100,70,.12); color: var(--muted);   border-color: rgba(120,100,70,.3); }

.gc-title-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.gc-title-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(184,134,11,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.gc-green { border-color: rgba(74,123,111,.4) !important; }

/* ── 등록 순서 스트립 ── */
.guide-order-strip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--ink2);
  border: 1px solid rgba(184,134,11,.2);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.gos-item {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: .5;
}
.gos-item.active { opacity: 1; }
.gos-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(184,134,11,.15);
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(184,134,11,.3);
}
.gos-num.naver { background: rgba(3,199,90,.12); color: #03C75A; border-color: rgba(3,199,90,.3); }
.gos-num.daum  { background: rgba(254,229,0,.12); color: #c8a000; border-color: rgba(254,229,0,.3); }
.gos-lbl { font-size: 11px; color: var(--muted); white-space: nowrap; }
.gos-arrow { color: var(--muted); font-size: 12px; }

/* ── 가이드 액션 버튼 ── */
.guide-action-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 12px 0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  margin-top: 14px;
  transition: all .2s;
  box-shadow: 0 3px 10px rgba(184,134,11,.25);
  cursor: pointer;
  border: none;
  width: 100%;
  box-sizing: border-box;
}
.guide-action-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(184,134,11,.35); }
.guide-action-btn.green-btn { background: linear-gradient(135deg, #4A7B6F, #6EE7B7); color: #fff; box-shadow: 0 3px 10px rgba(74,123,111,.3); }
.guide-action-btn.green-btn:hover { box-shadow: 0 6px 18px rgba(74,123,111,.4); }

/* ── 비교표 ── */
.guide-compare-table {
  background: var(--ink2);
  border: 1px solid rgba(184,134,11,.2);
  border-radius: 14px;
  padding: 16px 18px;
  margin-top: 8px;
  overflow-x: auto;
}
.gct-title { font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
.guide-compare-table table { width: 100%; border-collapse: collapse; font-size: 12px; }
.guide-compare-table th {
  background: rgba(184,134,11,.1);
  color: var(--gold);
  font-weight: 700;
  padding: 9px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(184,134,11,.2);
  white-space: nowrap;
}
.guide-compare-table td {
  padding: 9px 12px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 12px;
}
.guide-compare-table tr:last-child td { border-bottom: none; }
.td-good { color: var(--celadon) !important; font-weight: 600; }

/* ── 우선순위 배너 ── */
.guide-priority-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(184,134,11,.08);
  border: 1px solid rgba(184,134,11,.25);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 13px 16px;
  margin-bottom: 16px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.gpb-icon { font-size: 20px; flex-shrink: 0; }

/* ── 정보 박스 ── */
.gs-info-box {
  background: var(--ink);
  border: 1px solid rgba(184,134,11,.2);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 10px 0;
}
.gsib-row {
  display: flex;
  gap: 10px;
  font-size: 11px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.gsib-row:last-child { border-bottom: none; }
.gsib-lbl { color: var(--muted); flex-shrink: 0; min-width: 60px; }
.gsib-val { color: var(--ink); font-weight: 500; }

/* ── 가이드 링크 ── */
.gs-link { color: var(--gold); text-decoration: underline; word-break: break-all; }
.gs-link:hover { color: var(--gold-pale); }
.gs-link.naver { color: #03C75A; }
.gs-link.naver:hover { color: #5dd98a; }

/* ── 효과 박스 ── */
.geb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 768px) {
  .geb-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── gth 배지 ── */
.gth-badge-wrap { display: flex; gap: 6px; margin-left: auto; flex-shrink: 0; flex-wrap: wrap; justify-content: flex-end; }
.gth-bdg {
  font-size: 10px; font-weight: 700;
  background: rgba(184,134,11,.15);
  color: var(--gold);
  border: 1px solid rgba(184,134,11,.35);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ── PWA 설치 탭 전용 ── */
.pwa-device-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  .pwa-device-grid { grid-template-columns: repeat(3, 1fr); }
}
.pwa-device-card {
  background: var(--paper);
  border: 1.5px solid rgba(184,134,11,.2);
  border-radius: 14px;
  padding: 18px 16px;
  transition: all .2s;
}
.pwa-device-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.pdc-icon { font-size: 30px; margin-bottom: 8px; }
.pdc-title { font-size: 14px; font-weight: 700; color: var(--gold-pale); margin-bottom: 4px; }
.pdc-sub { font-size: 11px; color: var(--muted); margin-bottom: 12px; }

/* ── 체크리스트 최종 ── */
.guide-checklist-final {
  background: var(--ink);
  border: 1.5px solid rgba(184,134,11,.35);
  border-radius: 16px;
  padding: 20px;
  margin-top: 8px;
}
.gcf-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.gcf-title { font-size: 14px; font-weight: 700; color: var(--gold); }
.gcf-subtitle { font-size: 11px; color: var(--muted); margin-top: 2px; }
.gcf-reset {
  font-size: 11px; color: var(--muted);
  background: none; border: 1px solid rgba(184,134,11,.2);
  border-radius: 20px; padding: 4px 12px; cursor: pointer;
  transition: all .18s;
}
.gcf-reset:hover { color: var(--gold); border-color: var(--gold); }
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}
@media (min-width: 768px) {
  .checklist-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}
.gcf-footer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(184,134,11,.15);
  text-align: center;
}
.gcf-pct-text { font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.gcf-bar-wrap { height: 8px; background: var(--ink3); border-radius: 4px; overflow: hidden; }
.gcf-bar { height: 100%; background: linear-gradient(90deg, var(--gold), var(--celadon)); border-radius: 4px; transition: width .4s ease; width: 0%; }
.gcf-tip { font-size: 11px; color: var(--muted); margin-top: 8px; }

/* ══ PC 전용 가이드 레이아웃 ══ */
@media (min-width: 768px) {
  .guide-hero-banner { padding: 28px 36px; }
  .ghb-title { font-size: 24px; }
  .guide-compare-table table { font-size: 13px; }
  .guide-compare-table th,
  .guide-compare-table td { padding: 11px 14px; }
  .guide-tab-hero { padding: 20px 24px; }
  .gth-title { font-size: 18px; }
}

/* 진행 현황 배너 */
.guide-progress-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ink2);
  border: 1px solid rgba(184,134,11,.25);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.gpb-title { font-size: 12px; font-weight: 700; color: var(--gold); white-space: nowrap; }
.gpb-bar-wrap {
  flex: 1; min-width: 80px;
  height: 8px; background: var(--ink3);
  border-radius: 4px; overflow: hidden;
}
.gpb-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--celadon));
  border-radius: 4px;
  transition: width .4s ease;
}
.gpb-count { font-size: 11px; color: var(--muted); white-space: nowrap; }

/* 탭 히어로 */
.guide-tab-hero {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--ink2), var(--ink3));
  border: 1.5px solid rgba(184,134,11,.3);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 16px;
}
.gth-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(184,134,11,.3);
}
.gth-title { font-size: 16px; font-weight: 700; color: var(--gold-pale); margin-bottom: 3px; }
.gth-sub { font-size: 11px; color: var(--muted); }

/* 가이드 카드 */
.guide-card {
  background: var(--paper);
  border: 1.5px solid rgba(184,134,11,.25);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 14px;
}
.gc-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.gc-num {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 20px;
  margin-top: 2px;
  letter-spacing: .5px;
}
.gc-num-gray {
  background: var(--paper3);
  color: var(--muted);
}
.gc-info { flex: 1; min-width: 0; }
.gc-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.gc-sub { font-size: 11px; color: var(--muted); }
.gc-badge {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid;
  white-space: nowrap;
  margin-top: 2px;
}
.gc-badge-green { background: rgba(74,123,111,.15); color: var(--celadon); border-color: rgba(74,123,111,.4); }
.gc-badge-gray  { background: rgba(122,101,72,.12); color: var(--muted);   border-color: rgba(122,101,72,.3); }

/* 가이드 코드 블록 */
.gs-code-block {
  background: var(--ink);
  border: 1px solid rgba(184,134,11,.3);
  border-radius: 8px;
  padding: 11px 14px;
  margin: 12px 0;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: #ffe566;
  line-height: 1.6;
  word-break: break-all;
}
.gs-code { background: var(--ink2); padding: 2px 6px; border-radius: 4px; font-size: 11px; font-family: monospace; color: #ffe566; }

/* 하위 목록 */
.gs-sub-list { margin: 6px 0 0 4px; padding-left: 14px; }
.gs-sub-list li { font-size: 11px; color: var(--muted); margin-bottom: 3px; }

/* 팁 박스 */
.gs-tip {
  background: rgba(184,134,11,.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 9px 12px;
  font-size: 11px;
  color: var(--muted);
  margin: 12px 0;
  line-height: 1.5;
}

/* 가이드 링크 버튼 */
.guide-link-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 12px 0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-top: 14px;
  transition: all .2s;
  box-shadow: 0 3px 10px rgba(0,0,0,.2);
}
.guide-link-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.3); }

/* 효과 박스 */
.guide-effect-box {
  background: var(--ink2);
  border: 1px solid rgba(184,134,11,.2);
  border-radius: 12px;
  padding: 16px;
  margin-top: 4px;
}
.geb-title { font-size: 12px; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
.geb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.geb-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}
.geb-icon { font-size: 18px; flex-shrink: 0; }

/* 스텝 목록 */
.guide-steps-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gs-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--ink);
  line-height: 1.55;
}
.gs-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* 체크리스트 래퍼 */
.guide-checklist-wrap {
  background: var(--ink);
  border: 1px solid rgba(184,134,11,.35);
  border-radius: 14px;
  padding: 18px;
  margin-top: 20px;
}
.gcl-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.gcl-title { font-size: 13px; font-weight: 700; color: var(--gold); }
.gcl-reset {
  font-size: 11px; color: var(--muted);
  background: none; border: 1px solid rgba(184,134,11,.2);
  border-radius: 20px; padding: 4px 10px; cursor: pointer;
  transition: all .18s;
}
.gcl-reset:hover { color: var(--gold); border-color: var(--gold); }
.gcl-footer { margin-top: 10px; font-size: 11px; color: var(--muted); text-align: center; }

/* 체크리스트 아이템 */
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid rgba(184,134,11,.18);
  margin-bottom: 7px;
  transition: all .18s;
}
.check-item:hover { background: rgba(184,134,11,.07); }
.check-item.done { background: rgba(74,123,111,.12); border-color: rgba(74,123,111,.3); }
.check-box {
  font-size: 18px;
  flex-shrink: 0;
  color: rgba(255,255,255,.35);
  transition: color .18s;
}
.check-item.done .check-box { color: var(--celadon); }
.check-body { flex: 1; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.check-text {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
  flex: 1;
}
.check-item.done .check-text {
  color: var(--celadon-lt);
  text-decoration: line-through;
  text-decoration-color: rgba(74,123,111,.5);
}
.check-tag {
  font-size: 10px; font-weight: 700;
  padding: 2px 7px; border-radius: 20px;
  white-space: nowrap;
}
.ck-android { background: rgba(74,123,111,.2); color: var(--celadon); }
.ck-google  { background: rgba(66,133,244,.15); color: #7eb7f7; }
.ck-naver   { background: rgba(3,199,90,.12);   color: #5dd98a; }
.ck-daum    { background: rgba(254,229,0,.12);   color: #c8a800; }

/* 브랜드 체크 아이템 */
.brand-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--paper2);
  border: 1px solid var(--paper3);
  border-radius: 7px;
  padding: 8px 11px;
  cursor: pointer;
  font-size: 11px;
  color: var(--ink);
  transition: all .15s;
}
.brand-item:hover { border-color: var(--gold); background: rgba(184,134,11,.06); }
.brand-item input[type=checkbox] { accent-color: var(--gold); cursor: pointer; }
.brand-item:has(input:checked) { border-color: var(--gold); background: rgba(184,134,11,.1); color: var(--gold); font-weight: 700; }

/* 등록 위자드 버튼 */
.reg-btn-row { display: flex; gap: 10px; margin-top: 16px; }
.btn-reg-next { flex: 1; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%); color: var(--ink); border: none; padding: 12px; border-radius: 7px; font-size: 13px; font-weight: 700; cursor: pointer; box-shadow: 0 3px 12px rgba(184,134,11,.3); transition: all .2s; }
.btn-reg-next:hover { box-shadow: 0 5px 18px rgba(184,134,11,.45); transform: translateY(-1px); }
.btn-reg-prev { background: none; border: 1px solid var(--paper3); color: var(--muted); padding: 12px 20px; border-radius: 7px; font-size: 13px; cursor: pointer; transition: all .18s; }
.btn-reg-prev:hover { border-color: var(--gold); color: var(--gold); }

/* 스크롤 상단 버튼 */
.scroll-top-btn {
  position: fixed;
  bottom: calc(var(--bot) + 14px);
  right: 14px;
  z-index: 200;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  border: none;
  font-size: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(184,134,11,.4);
  transition: all .2s;
}
.scroll-top-btn.show { display: flex; }
.scroll-top-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(184,134,11,.55); }

/* LIVE 배지 */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(139,26,26,.15);
  border: 1px solid rgba(139,26,26,.35);
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.2s infinite;
}

/* ══════════════════════════════
   데스크톱 반응형
══════════════════════════════ */
@media (min-width: 768px) {
  :root { --hdr: 64px; --bot: 0px; }

  /* 햄버거/검색바/하단 네비 숨김 */
  .hamburger { display: none; }
  .search-bar { display: none; }
  .bot-nav { display: none; }
  .content { padding-bottom: 0; }
  .sidebar { display: none !important; }
  .sidebar-overlay { display: none !important; }
  .scroll-top-btn { bottom: 24px; }

  /* 카테고리 바 — 데스크톱 균등 배치 */
  .cat-bar {
    overflow-x: visible;
    justify-content: center;
  }
  .cat-btn {
    flex: 1 1 0;
    min-width: 80px;
    max-width: 130px;
    font-size: 11px;
    padding: 10px 8px 9px;
  }
  .cat-btn .c-icon { font-size: 20px; }

  /* 히어로 */
  .hero-inner { padding: 36px 32px 0; }
  .hero-selects { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .hero-stats-strip { margin: 0 -32px; }
  .hss-item { min-width: 120px; padding: 14px 12px; }
  .hss-num { font-size: 20px; }

  /* 탭 */
  .hct { padding: 12px 24px; font-size: 14px; }

  /* 페이지 */
  .pg { padding: 22px 32px; }

  /* ── 홈 카드 섹션 PC 그리드 변환 ── */
  /* 가로스크롤 컨테이너 → 그리드 */
  .h-scroll {
    overflow-x: visible;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    padding: 0 32px 24px;
    flex-wrap: wrap;
  }

  /* 카드 크기 고정 해제 → 그리드에서 자동 */
  .prod-card { flex: none; width: 100%; }
  .exp-card  { flex: none; width: 100%; }
  .job-mini  { flex: none; width: 100%; }
  .nanum-mini{ flex: none; width: 100%; }

  .prod-card .pc-img { height: 140px; font-size: 48px; }

  /* 섹션 헤더 */
  .sec-hdr { padding: 22px 32px 12px; }
  .banner-strip { padding: 18px 24px; }

  /* 배너 */
  .banner-icon { font-size: 44px; }
  .banner-text .bt-title { font-size: 16px; }

  /* 그리드 확장 */
  .exp-grid { grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); }
  .job-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .trade-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }

  /* 지도 */
  #dealer-map { height: 440px; }
}

@media (min-width: 1024px) {
  .pg { padding: 26px 40px; }
  .sec-hdr { padding: 24px 40px 13px; }

  .cat-btn { font-size: 12px; }

  .hero-inner { padding: 40px 40px 0; }
  .hero-selects { grid-template-columns: repeat(4, 1fr); }
  .hero-stats-strip { margin: 0 -40px; }

  /* 홈 섹션 그리드 — 1024px 이상: 5열 */
  .h-scroll {
    grid-template-columns: repeat(5, 1fr);
    padding: 0 40px 24px;
    gap: 18px;
  }

  /* 경매/직거래 카드 이미지 더 크게 */
  .prod-card .pc-img { height: 150px; font-size: 52px; }

  /* 체험 카드 */
  .exp-card .ec-img { height: 120px; font-size: 48px; }

  /* 구인/나눔은 4열 */
  .h-scroll.jobs-scroll,
  .h-scroll.nanum-scroll {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  .hero-inner { padding: 44px 48px 0; }
  .hero-stats-strip { margin: 0 -48px; }
  .cat-btn { max-width: 140px; }

  /* 1280px 이상: 실시간 경매·직거래 5열, 체험 5열, 구인/나눔 4열 유지 */
  .h-scroll {
    grid-template-columns: repeat(5, 1fr);
    padding: 0 48px 24px;
    gap: 20px;
  }
  .h-scroll.jobs-scroll,
  .h-scroll.nanum-scroll {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── 히어로 PC 2단 레이아웃 ── */
@media (min-width: 1100px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    align-items: start;
    gap: 0 48px;
    padding-bottom: 0;
  }
  .hero-tagline {
    grid-column: 1 / 2;
    grid-row: 1;
    margin-bottom: 14px;
  }
  .hero-copy {
    grid-column: 1 / 2;
    grid-row: 2;
    margin-bottom: 18px;
  }
  .hero-cat-tabs {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    align-self: end;
    border-bottom: 1px solid rgba(184,134,11,.25);
    margin-bottom: 0;
  }
  /* 검색 폼은 2열 전체 */
  .hero-form {
    grid-column: 1 / 3;
    grid-row: 3;
    padding: 16px 0 12px;
  }
  .hero-stats-strip {
    grid-column: 1 / 3;
    grid-row: 4;
    margin: 0 -48px;
  }
}

/* 모바일 소형 */
@media (max-width: 380px) {
  .cat-btn { min-width: 60px; font-size: 9px; }
  .cat-btn .c-icon { font-size: 16px; }
  .hss-num { font-size: 15px; }
  .hero-copy-line1 { font-size: 22px; }
}

/* ══════════════════════════════════════════════
   🖥️ 가이드 페이지 PC 전용 최적화 (768px+)
   ※ 기존 홈/히어로 레이아웃에 영향 없이 가이드만 조정
══════════════════════════════════════════════ */
@media (min-width: 768px) {

  /* 가이드 빠른 링크 4열 고정 */
  .guide-quick-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* 가이드 히어로 배너 — PC에서 더 넓게 */
  .guide-hero-banner {
    padding: 30px 40px;
    align-items: center;
  }
  .ghb-title { font-size: 26px; }

  /* 가이드 2단 레이아웃 확실히 적용 */
  .guide-two-col {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
  }

  /* 체크리스트 2열 */
  #checklist-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  #checklist-items .check-item { margin-bottom: 0; }

  /* 효과 박스 4열 */
  .geb-grid { grid-template-columns: repeat(4, 1fr); }

  /* 탭 히어로 더 넓게 */
  .guide-tab-hero { padding: 22px 28px; }
  .gth-title { font-size: 18px; }
  .gth-sub { font-size: 12px; }

  /* 등록 순서 스트립 */
  .guide-order-strip { flex-wrap: nowrap; justify-content: flex-start; }
  .gos-lbl { font-size: 12px; }

  /* 내부 탭 PC */
  .inner-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 6px;
    padding: 0 0 4px;
  }
  .itab {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* ── 1280px 이상: 넓은 화면 최적화 ── */
@media (min-width: 1280px) {
  /* 가이드 2단 레이아웃 더 넓게 */
  .guide-two-col { gap: 24px; }
  .guide-card { padding: 24px 28px; }

  /* 히어로 배너 */
  .guide-hero-banner { padding: 34px 48px; }
  .ghb-title { font-size: 30px; }

  /* 빠른 링크 카드 더 크게 */
  .gq-card { padding: 22px 20px; }
  .gq-icon { font-size: 36px; }

  /* 내부 탭 간격 */
  .inner-tabs { gap: 8px; }
  .itab { padding: 9px 20px; font-size: 13px; }
}

/* ══════════════════════════════════════════════
   🔐 인증 페이지 (로그인 / 회원가입)
══════════════════════════════════════════════ */

/* 탭 바 */
.auth-tab-wrap {
  display: flex;
  gap: 0;
  border-radius: 12px;
  background: var(--ink2);
  padding: 4px;
  margin-bottom: 24px;
  border: 1px solid rgba(184,134,11,.2);
}
.auth-tab {
  flex: 1;
  padding: 10px 0;
  background: none;
  border: none;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}
.auth-tab.on {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--ink);
  box-shadow: 0 3px 10px rgba(184,134,11,.35);
}

/* 패널 전환 */
.auth-panel { display: none; }
.auth-panel.on { display: block; }

/* 브랜드 헤더 */
.auth-brand {
  text-align: center;
  margin-bottom: 26px;
}
.auth-emblem {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 700; color: var(--gold);
  margin: 0 auto 10px;
  box-shadow: 0 0 0 4px rgba(184,134,11,.15);
  font-family: 'Noto Serif KR', serif;
}
.auth-brand-name {
  font-size: 18px; font-weight: 700; color: var(--gold-pale);
  margin-bottom: 4px;
}
.auth-brand-sub {
  font-size: 12px; color: var(--muted);
}

/* 소셜 버튼 묶음 */
.social-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 18px;
  border-radius: 12px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .18s;
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
  position: relative;
}
.social-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.35); }
.social-btn:active { transform: translateY(0); }

.social-btn.kakao {
  background: #FEE500;
  color: #3A1D1D;
}
.social-btn.naver {
  background: #03C75A;
  color: #fff;
}
.social-btn.google {
  background: #fff;
  color: #333;
  border: 1.5px solid #e0e0e0;
}

.social-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.social-label {
  flex: 1;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

/* 구분선 */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 12px;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(184,134,11,.2);
}

/* 이메일 폼 */
.auth-form { display: flex; flex-direction: column; gap: 12px; }

.auth-field { display: flex; flex-direction: column; gap: 5px; }
.auth-field label {
  font-size: 12px; font-weight: 600;
  color: var(--muted);
}
.auth-field input {
  width: 100%;
  padding: 11px 14px;
  background: var(--ink2);
  border: 1.5px solid rgba(184,134,11,.25);
  border-radius: 10px;
  color: var(--gold-pale);
  font-size: 14px;
  transition: border-color .2s;
  box-sizing: border-box;
}
.auth-field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,134,11,.15);
}
.auth-field input::placeholder { color: rgba(122,101,72,.7); }

/* 에러 메시지 */
.auth-error {
  background: rgba(139,26,26,.15);
  border: 1px solid rgba(139,26,26,.4);
  border-radius: 8px;
  padding: 9px 13px;
  font-size: 12px;
  color: #e07070;
}

/* 제출 버튼 */
.auth-submit {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--ink);
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(184,134,11,.4);
  margin-top: 4px;
}
.auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,134,11,.5);
}

/* 하단 링크 */
.auth-foot-link {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  padding-top: 4px;
}
.auth-foot-link a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}
.auth-foot-link a:hover { text-decoration: underline; }

/* ── 소셜 팝업 애니메이션 ── */
@keyframes fadeIn { from { opacity:0; transform:scale(.96); } to { opacity:1; transform:scale(1); } }

/* ══════════════════════════════════════════════
   👤 마이페이지 — 로그인 전/후
══════════════════════════════════════════════ */

/* 로그인 전 */
.my-guest { text-align: center; padding: 30px 0 10px; }
.my-guest-icon { font-size: 56px; margin-bottom: 12px; }
.my-guest-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--gold-pale); }
.my-guest-desc { font-size: 13px; color: var(--muted); margin-bottom: 22px; line-height: 1.6; }
.my-guest-btns {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 8px;
}

/* 로그인 후 — 프로필 카드 */
.my-profile-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--ink2), var(--ink3));
  border: 1px solid rgba(184,134,11,.3);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 14px;
  position: relative;
}
.my-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(184,134,11,.15);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.my-profile-info { flex: 1; min-width: 0; }
.my-name {
  font-size: 16px; font-weight: 700;
  color: var(--gold-pale);
  margin-bottom: 3px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.my-provider { margin-bottom: 3px; }
.my-email {
  font-size: 11px; color: var(--muted);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.my-logout-btn {
  position: absolute; top: 12px; right: 14px;
  background: rgba(139,26,26,.15);
  border: 1px solid rgba(139,26,26,.4);
  color: #e07070;
  font-size: 11px; font-weight: 600;
  padding: 5px 10px; border-radius: 20px;
  cursor: pointer;
  transition: all .2s;
}
.my-logout-btn:hover { background: rgba(139,26,26,.3); }

/* PV 포인트 카드 */
.my-pv-card {
  background: linear-gradient(135deg, rgba(184,134,11,.18), rgba(184,134,11,.08));
  border: 1.5px solid rgba(184,134,11,.35);
  border-radius: 16px;
  padding: 18px 18px 14px;
  margin-bottom: 14px;
  text-align: center;
}
.my-pv-label { font-size: 12px; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
.my-pv-num {
  font-size: 32px; font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
  font-family: 'Noto Serif KR', serif;
}
.my-pv-desc { font-size: 11px; color: var(--muted); margin-bottom: 12px; line-height: 1.5; }
.my-pv-actions { display: flex; justify-content: center; }

/* 활동 통계 그리드 */
.my-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.my-stat {
  background: var(--ink2);
  border: 1px solid rgba(184,134,11,.15);
  border-radius: 12px;
  padding: 12px 6px;
  text-align: center;
}
.my-stat-n { font-size: 20px; font-weight: 700; color: var(--gold-pale); margin-bottom: 4px; }
.my-stat-l { font-size: 10px; color: var(--muted); line-height: 1.3; }

/* 메뉴 리스트 */
.my-menu-list {
  display: flex; flex-direction: column; gap: 2px;
  background: var(--ink2);
  border: 1px solid rgba(184,134,11,.15);
  border-radius: 14px;
  overflow: hidden;
}
.my-menu-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: none; border: none;
  color: var(--gold-pale);
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  transition: background .15s;
  border-bottom: 1px solid rgba(184,134,11,.08);
  text-align: left;
  width: 100%;
}
.my-menu-item:last-child { border-bottom: none; }
.my-menu-item:hover { background: rgba(184,134,11,.08); }
.mmi-icon { font-size: 18px; width: 24px; text-align: center; flex-shrink: 0; }
.mmi-label { flex: 1; }
.mmi-arrow { color: var(--muted); font-size: 18px; }

/* ══════════════════════════════
   🏢 회사소개 PAGE
══════════════════════════════ */

/* 히어로 배너 */
.about-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink3) 100%);
  border: 1px solid rgba(184,134,11,.3);
  border-radius: 14px;
  padding: 22px 20px;
  margin-bottom: 18px;
}
.ah-emblem {
  font-family: 'Noto Serif KR', serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(184,134,11,.5);
  border-radius: 50%;
  background: rgba(184,134,11,.08);
}
.ah-texts { flex: 1; min-width: 0; }
.ah-brand {
  font-family: 'Noto Serif KR', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2px;
}
.ah-brand-en {
  font-size: 10px;
  color: rgba(212,160,23,.7);
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ah-tagline {
  font-size: 11px;
  color: rgba(251,246,238,.7);
  line-height: 1.5;
}

/* 대표 카드 */
.about-rep-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink2) 100%);
  border: 1.5px solid rgba(184,134,11,.4);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 14px;
}
.arc-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--ink);
  font-family: 'Noto Serif KR', serif;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(184,134,11,.35);
}
.arc-info { flex: 1; min-width: 0; }
.arc-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-pale);
  margin-bottom: 2px;
  letter-spacing: 2px;
}
.arc-title {
  font-size: 11px;
  font-weight: 400;
  background: rgba(184,134,11,.25);
  color: var(--gold);
  padding: 1px 7px;
  border-radius: 10px;
  letter-spacing: .5px;
  margin-left: 6px;
}
.arc-name-en {
  font-size: 10px;
  color: rgba(212,160,23,.75);
  letter-spacing: .6px;
  margin-bottom: 3px;
}
.arc-company {
  font-size: 11px;
  color: var(--muted);
}

/* 정보 그리드 */
.about-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.aig-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--paper);
  border: 1px solid var(--paper3);
  border-radius: 10px;
  padding: 13px 14px;
  transition: border-color .15s;
}
.aig-item:hover { border-color: var(--gold); }
.aig-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  margin-top: 2px;
}
.aig-body { flex: 1; min-width: 0; }
.aig-label {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .4px;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.aig-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  word-break: break-all;
}
a.aig-val { color: var(--gold); }
a.aig-val:hover { text-decoration: underline; }
.aig-sub {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}
@media (min-width: 600px) {
  .about-info-grid { grid-template-columns: 1fr 1fr; }
}

/* 연혁 타임라인 */
.about-timeline {
  margin-top: 16px;
  border-left: 3px solid rgba(184,134,11,.35);
  padding-left: 18px;
}
.atl-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .5px;
  margin-bottom: 14px;
}
.atl-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
}
.atl-item::before {
  content: '';
  position: absolute;
  left: -23px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--paper);
}
.atl-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  width: 40px;
}
.atl-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* 2026 신농 오픈 — 강조 항목 */
.atl-item-highlight {
  background: linear-gradient(90deg, rgba(184,134,11,.12), transparent);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 8px 10px 8px 12px;
  margin-left: -12px;
  margin-bottom: 4px;
}
.atl-item-highlight::before {
  left: -11px;
  width: 11px;
  height: 11px;
  background: var(--gold-lt);
  box-shadow: 0 0 0 3px rgba(184,134,11,.25);
}
.atl-year-now {
  font-size: 13px;
  color: #111;
  font-weight: 800;
}
.atl-item-highlight .atl-desc {
  color: #111;
  font-size: 13px;
  font-weight: 600;
}

/* 연락처 히어로 */
.contact-hero {
  text-align: center;
  padding: 24px 20px 20px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink3) 100%);
  border: 1.5px solid rgba(184,134,11,.4);
  border-radius: 14px;
  margin-bottom: 16px;
}
.ch-title {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .6px;
  margin-bottom: 8px;
}
.ch-phone {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 6px;
  font-family: 'Noto Serif KR', serif;
}
.ch-phone:hover { text-decoration: underline; }
.ch-name {
  font-size: 12px;
  color: rgba(251,246,238,.65);
}

/* 연락처 목록 */
.contact-list { display: flex; flex-direction: column; gap: 10px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--paper3);
  border-radius: 12px;
  padding: 14px 16px;
  transition: all .15s;
  text-decoration: none;
  color: var(--ink);
}
a.contact-row:hover { border-color: var(--gold); background: rgba(184,134,11,.06); }
.cr-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.cr-body { flex: 1; min-width: 0; }
.cr-label { font-size: 10px; color: var(--muted); margin-bottom: 3px; }
.cr-val { font-size: 14px; font-weight: 700; color: var(--ink); word-break: break-all; }
.cr-sub { font-size: 10px; color: var(--muted); margin-top: 2px; }
.cr-arrow { font-size: 20px; color: var(--muted); flex-shrink: 0; }

/* 명함 캔버스 */
.biz-card-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}

/* 서비스 그리드 */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
@media (min-width: 640px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
}
.svc-card {
  background: var(--paper);
  border: 1px solid var(--paper3);
  border-radius: 12px;
  padding: 16px 14px;
  transition: all .15s;
}
.svc-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(184,134,11,.12); }
.svc-icon { font-size: 26px; margin-bottom: 8px; }
.svc-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.4;
}
.svc-desc { font-size: 10px; color: var(--muted); line-height: 1.5; }

/* 통계 */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink3) 100%);
  border: 1px solid rgba(184,134,11,.3);
  border-radius: 12px;
  padding: 16px 12px;
  margin-bottom: 14px;
}
.ast-item { text-align: center; }
.ast-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Noto Serif KR', serif;
  margin-bottom: 3px;
}
.ast-lbl { font-size: 9px; color: rgba(251,246,238,.6); }

/* ══════════════════════════════════════════════
   🏪 회원유형 선택 카드 (이메일 가입 폼)
══════════════════════════════════════════════ */
.mtype-card-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}
.mtype-card {
  cursor: pointer;
  display: block;
  position: relative;
}
.mtype-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.mtype-card-inner {
  border: 2px solid rgba(184,134,11,.22);
  border-radius: 14px;
  padding: 16px 10px;
  text-align: center;
  background: rgba(184,134,11,.05);
  transition: all .2s ease;
}
.mtype-card input:checked + .mtype-card-inner,
.mtype-card.mtype-card-active .mtype-card-inner {
  border-color: var(--gold);
  background: rgba(184,134,11,.15);
  box-shadow: 0 0 0 3px rgba(184,134,11,.15);
}
.mtype-card-inner:hover {
  border-color: rgba(184,134,11,.5);
  background: rgba(184,134,11,.1);
}
.mtype-icon  { font-size: 28px; margin-bottom: 6px; }
.mtype-title { font-size: 13px; font-weight: 700; color: var(--gold-pale); margin-bottom: 5px; }
.mtype-desc  { font-size: 10px; color: var(--muted); line-height: 1.5; }
.mtype-pv    { font-size: 10px; color: var(--gold); font-weight: 700; margin-top: 6px; }

/* 사업자 정보 입력 박스 */
.biz-info-box {
  background: rgba(184,134,11,.07);
  border: 1px solid rgba(184,134,11,.25);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 10px;
}
.biz-info-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ══════════════════════════════════════════════
   🏪 마이페이지 — 사업자 정보 카드
══════════════════════════════════════════════ */
.my-biz-info-card {
  background: linear-gradient(135deg, rgba(184,134,11,.12), rgba(184,134,11,.05));
  border: 1px solid rgba(184,134,11,.35);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 14px;
}
.my-biz-badge {
  display: inline-block;
  background: linear-gradient(135deg, #B8860B, #D4A017);
  color: #1a1208;
  font-size: 11px;
  font-weight: 800;
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 12px;
}
.my-biz-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  margin-bottom: 6px;
  color: var(--gold-pale);
}
.my-biz-lbl {
  min-width: 72px;
  color: var(--muted);
  font-size: 11px;
}
.my-biz-reg-btn {
  width: 100%;
  margin-top: 14px;
  padding: 11px;
  background: linear-gradient(135deg, #B8860B, #D4A017);
  border: none;
  border-radius: 10px;
  color: #1a1208;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: .3px;
  transition: .2s;
}
.my-biz-reg-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* 사업자 전용 메뉴 아이템 */
.my-menu-biz {
  background: rgba(184,134,11,.06);
  border-color: rgba(184,134,11,.2) !important;
}
.mmi-badge-biz {
  margin-left: auto;
  margin-right: 4px;
  font-size: 9px;
  background: linear-gradient(135deg, #B8860B, #D4A017);
  color: #1a1208;
  font-weight: 700;
  border-radius: 20px;
  padding: 2px 8px;
}

/* ══════════════════════════════════════════════
   🔒 업체등록 접근 제한 게이트
══════════════════════════════════════════════ */
.reg-gate-box {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(184,134,11,.2);
  border-radius: 16px;
  margin: 10px 0;
}
.reg-gate-icon  { font-size: 48px; margin-bottom: 12px; }
.reg-gate-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-pale);
  margin-bottom: 8px;
}
.reg-gate-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 4px;
}

/* ══════════════════════════════════════════════
   🏪 거래소 팝업 & 카카오 초대 애니메이션
══════════════════════════════════════════════ */
#exchange-promo-popup {
  animation: fadeIn .2s ease;
}
#exchange-promo-popup > div {
  animation: slideUp .25s cubic-bezier(.34,1.36,.64,1);
}
@keyframes slideUp {
  from { transform: translateY(30px) scale(.96); opacity: 0; }
  to   { transform: translateY(0) scale(1);      opacity: 1; }
}

/* 계정 전환 버튼 — 현재 활성 계정 표시 */
#switch-to-personal-btn.active-account {
  background: rgba(74,123,111,.3) !important;
  border-color: var(--celadon) !important;
  box-shadow: 0 0 0 2px rgba(74,123,111,.25);
}
#switch-to-biz-btn.active-account {
  background: rgba(184,134,11,.28) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 2px rgba(184,134,11,.25);
}

/* 사업자 필드 라벨 필수 표시 */
.fg1 label span[style*="e55"],
.fg1 label .req-star { color: #e55; }

/* 사업자등록증 업로드 박스 hover */
#reg-cert-preview:hover,
#auth-cert-preview:hover { opacity: .85; }

/* ══════════════════════════════════════════════
   📋 다도·명상 교육 신청 탭 스타일
══════════════════════════════════════════════ */

/* 신청 탭 버튼 강조 */
.itab.itab-apply {
  background: linear-gradient(135deg, rgba(184,134,11,.18), rgba(184,134,11,.08));
  border-color: rgba(184,134,11,.4);
  color: var(--gold);
  font-weight: 700;
  position: relative;
}
.itab.itab-apply::after {
  content: 'NEW';
  position: absolute;
  top: -6px;
  right: -4px;
  background: var(--gold);
  color: var(--ink);
  font-size: 8px;
  font-weight: 900;
  padding: 1px 4px;
  border-radius: 10px;
  letter-spacing: .5px;
}
.itab.itab-apply.on {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--ink);
}

/* 교육 신청 헤더 */
.edu-apply-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(184,134,11,.1), rgba(184,134,11,.05));
  border: 1px solid rgba(184,134,11,.25);
  border-radius: 14px;
}
.edu-apply-icon {
  font-size: 36px;
  flex-shrink: 0;
}
.edu-apply-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--gold-pale);
  margin-bottom: 4px;
}
.edu-apply-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* 폼/현황 전환 탭 내비 */
.edu-apply-nav {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  border: 1.5px solid rgba(184,134,11,.3);
  border-radius: 10px;
  overflow: hidden;
}
.eap-tab {
  flex: 1;
  padding: 11px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.eap-tab:first-child { border-right: 1px solid rgba(184,134,11,.2); }
.eap-tab.on {
  background: rgba(184,134,11,.18);
  color: var(--gold);
}
.eap-tab:hover:not(.on) { background: rgba(184,134,11,.07); }

/* 폼 카드 */
.edu-apply-card {
  background: var(--paper2);
  border: 1px solid var(--paper3);
  border-radius: 14px;
  padding: 22px 18px;
  margin-bottom: 14px;
}

/* 폼 그룹 */
.eaf-group {
  margin-bottom: 16px;
}
.eaf-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 7px;
  letter-spacing: .2px;
}
.eaf-req {
  color: #e55;
  margin-left: 2px;
  font-size: 11px;
}

/* 라디오 그리드 */
.eaf-radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
}
.eaf-radio-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1.5px solid rgba(184,134,11,.2);
  border-radius: 9px;
  cursor: pointer;
  font-size: 12px;
  color: var(--muted);
  background: rgba(255,255,255,.03);
  transition: border-color .18s, background .18s, color .18s;
  user-select: none;
}
.eaf-radio-item:has(input:checked) {
  border-color: var(--gold);
  background: rgba(184,134,11,.14);
  color: var(--gold-pale);
  font-weight: 700;
}
.eaf-radio-item input[type="radio"] {
  accent-color: var(--gold);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* 텍스트 입력 */
.eaf-input {
  width: 100%;
  padding: 11px 13px;
  background: rgba(255,255,255,.05);
  border: 1.5px solid var(--paper3);
  border-radius: 10px;
  color: var(--fg);
  font-size: 13px;
  box-sizing: border-box;
  outline: none;
  transition: border-color .18s;
}
.eaf-input:focus { border-color: rgba(184,134,11,.6); }
.eaf-input::placeholder { color: var(--muted); }

/* 셀렉트 */
.eaf-select {
  width: 100%;
  padding: 11px 13px;
  background: var(--paper2);
  border: 1.5px solid var(--paper3);
  border-radius: 10px;
  color: var(--fg);
  font-size: 13px;
  outline: none;
  cursor: pointer;
  transition: border-color .18s;
}
.eaf-select:focus { border-color: rgba(184,134,11,.6); }
.eaf-select option, .eaf-select optgroup { background: var(--paper2); }

/* 텍스트에리어 */
.eaf-textarea {
  width: 100%;
  min-height: 100px;
  padding: 11px 13px;
  background: rgba(255,255,255,.05);
  border: 1.5px solid var(--paper3);
  border-radius: 10px;
  color: var(--fg);
  font-size: 13px;
  box-sizing: border-box;
  outline: none;
  resize: vertical;
  line-height: 1.7;
  transition: border-color .18s;
  font-family: inherit;
}
.eaf-textarea:focus { border-color: rgba(184,134,11,.6); }
.eaf-textarea::placeholder { color: var(--muted); }

/* 2열 행 */
.eaf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.eaf-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 480px) {
  .eaf-row { grid-template-columns: 1fr; }
  .eaf-row-3 { grid-template-columns: 1fr 1fr; }
  .eaf-radio-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 개인정보 동의 */
.eaf-agree {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  padding: 11px 13px;
  background: rgba(184,134,11,.06);
  border: 1px solid rgba(184,134,11,.2);
  border-radius: 10px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.eaf-agree input[type="checkbox"] {
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* 제출 버튼 행 */
.eaf-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}
.eaf-btn-submit {
  padding: 14px;
  background: linear-gradient(135deg, #4A7B6F, #6EE7B7);
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-shadow: 0 4px 16px rgba(74,123,111,.35);
  transition: transform .15s, box-shadow .15s;
}
.eaf-btn-submit:hover { transform: scale(1.02); box-shadow: 0 6px 22px rgba(74,123,111,.45); }
.eaf-btn-status {
  padding: 14px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid var(--paper3);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background .18s, color .18s;
}
.eaf-btn-status:hover { background: rgba(255,255,255,.1); color: var(--fg); }
@media (max-width: 400px) {
  .eaf-btn-row { grid-template-columns: 1fr; }
}

/* ─── 진행현황 카드 ─── */
.apply-empty {
  text-align: center;
  padding: 32px 20px;
  color: var(--muted);
}

.apply-card {
  background: var(--paper3);
  border: 1px solid rgba(184,134,11,.18);
  border-radius: 14px;
  padding: 16px 16px 14px;
  margin-bottom: 13px;
  animation: fadeUp .22s ease;
}

.apply-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 13px;
}
.apply-card-id {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .5px;
}
.apply-card-date {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}

.apply-status-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.apply-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.apply-info-row {
  display: flex;
  gap: 8px;
  font-size: 12px;
  line-height: 1.5;
}
.apply-info-lbl {
  color: var(--muted);
  flex-shrink: 0;
  min-width: 64px;
  font-size: 11px;
}
.apply-info-val {
  color: var(--fg);
  word-break: break-all;
}

/* 진행 단계 바 */
.apply-progress-bar {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-top: 6px;
}
.apply-progress-bar::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--paper2);
  z-index: 0;
}
.apb-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 1;
}
.apb-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--paper2);
  border: 2px solid var(--paper3);
  transition: background .2s, border-color .2s;
}
.apb-step.done .apb-dot {
  background: var(--celadon);
  border-color: var(--celadon);
}
.apb-step.active .apb-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184,134,11,.2);
}
.apb-label {
  font-size: 9px;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
}
.apb-step.done .apb-label  { color: var(--celadon); }
.apb-step.active .apb-label { color: var(--gold); font-weight: 700; }
