/* 팜시크릿 — 매물 상세 전용
 * lv-* 프리픽스. listings.css / common.css 변수 의존.
 * 수정 금지: listings.css, talk.css, common.css, listing-form.css
 */

/* ═════════════════════════════════════════════
   1. 핵심 요약 스트립 (6칸)
   ═════════════════════════════════════════════ */
.lv-summary-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 20px;
}
@media (min-width: 640px) {
  .lv-summary-strip { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
.lv-summary-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 13px;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 10px;
  position: relative;
}
.lv-summary-item--gated {
  background: #fafafa;
}
.lv-summary-label {
  font-size: 10.5px;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lv-summary-value {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.lv-summary-value--em {
  color: var(--color-brand-dark);
}
.lv-summary-unit {
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
}
.lv-summary-note {
  font-size: 10.5px;
  color: #9ca3af;
  margin-top: 2px;
}
/* 자물쇠 오버레이 */
.lv-lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 250, 251, 0.85);
  border-radius: 10px;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
}
.lv-lock-overlay svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* 등급 게이팅: lv-summary-item[data-gate] */
/* visitor → 권리금·면적 블러+자물쇠 */
body[data-tier="visitor"] .lv-summary-item[data-gate="verified"] .lv-summary-value,
body[data-tier="visitor"] .lv-summary-item[data-gate="verified"] .lv-summary-unit,
body[data-tier="visitor"] .lv-summary-item[data-gate="verified"] .lv-summary-note {
  filter: blur(5px);
  user-select: none;
}
body[data-tier="visitor"] .lv-summary-item[data-gate="verified"] .lv-lock-overlay { display: flex; }
body[data-tier="general"] .lv-summary-item[data-gate="verified"] .lv-lock-overlay,
body[data-tier="verified"] .lv-summary-item[data-gate="verified"] .lv-lock-overlay { display: none; }

/* general → 범위값 표시 */
body[data-tier="general"] .lv-summary-item[data-gate="verified"] .lv-summary-value--exact { display: none; }
body[data-tier="general"] .lv-summary-item[data-gate="verified"] .lv-summary-value--range { display: block; }
body[data-tier="general"] .lv-summary-item[data-gate="verified"] .lv-summary-value,
body[data-tier="general"] .lv-summary-item[data-gate="verified"] .lv-summary-unit,
body[data-tier="general"] .lv-summary-item[data-gate="verified"] .lv-summary-note {
  filter: none;
  user-select: auto;
}
body[data-tier="general"] .lv-summary-item[data-gate="verified"] .lv-lock-overlay { display: none; }

/* verified → 전부 공개 */
body[data-tier="verified"] .lv-summary-item[data-gate="verified"] .lv-summary-value--exact { display: block; }
body[data-tier="verified"] .lv-summary-item[data-gate="verified"] .lv-summary-value--range { display: none; }

/* 기본 상태 (visitor 기본값) */
.lv-summary-value--range { display: none; }
.lv-lock-overlay { display: none; }

/* 헤드라인 가격 게이팅 */
body[data-tier="visitor"] .lv-detail-price-gated .ls-detail-price-num {
  filter: blur(8px);
  user-select: none;
}
body[data-tier="visitor"] .lv-detail-price-gated .lv-price-lock { display: inline-flex; }
body[data-tier="general"] .lv-detail-price-gated .ls-detail-price-num { display: none; }
body[data-tier="general"] .lv-detail-price-gated .lv-price-range { display: inline-flex; }
body[data-tier="verified"] .lv-detail-price-gated .ls-detail-price-num { display: inline; filter: none; }

.lv-price-lock,
.lv-price-range { display: none; }
.lv-price-lock {
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  background: #f3f4f6;
  padding: 4px 12px;
  border-radius: 9999px;
}
.lv-price-lock svg { width: 13px; height: 13px; }
.lv-price-range {
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: #92400e;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}
.lv-price-range::after {
  content: "범위";
  padding: 2px 8px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  color: #b45309;
  font-family: var(--font-sans);
}
@media (min-width: 768px) {
  .lv-price-range { font-size: 40px; }
}

/* ═════════════════════════════════════════════
   2. 시세 비교 모듈 (lv-valuation)
   ═════════════════════════════════════════════ */
.lv-valuation {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px 24px;
  margin-top: 8px;
}
.lv-valuation-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lv-valuation-title svg {
  width: 16px;
  height: 16px;
  color: var(--color-brand);
  flex-shrink: 0;
}
.lv-val-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.lv-val-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.lv-val-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: #4b5563;
}
.lv-val-label-name { font-weight: 600; }
.lv-val-label-num {
  font-family: var(--font-mono);
  font-weight: 700;
  color: #111827;
  font-variant-numeric: tabular-nums;
}
.lv-val-bar-track {
  position: relative;
  height: 8px;
  background: #f3f4f6;
  border-radius: 9999px;
  overflow: hidden;
}
.lv-val-bar-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  border-radius: 9999px;
  background: var(--color-brand);
  transition: width 0.4s ease;
}
.lv-val-bar-fill--avg {
  background: #9ca3af;
}
.lv-val-formula {
  margin-top: 4px;
  padding: 13px 16px;
  background: #fffaf6;
  border: 1px solid #fed7aa;
  border-radius: 10px;
  font-size: 12.5px;
  color: #78350f;
  line-height: 1.6;
}
.lv-val-formula strong { color: var(--color-brand-dark); font-weight: 700; }
.lv-val-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-brand);
  text-decoration: none;
}
.lv-val-cta:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ═════════════════════════════════════════════
   3. 검수 이력 타임라인 (lv-timeline)
   ═════════════════════════════════════════════ */
.lv-timeline {
  padding: 24px 0;
  border-bottom: 1px solid #f3f4f6;
}
.lv-timeline-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.lv-tl-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 32px;
}
.lv-tl-list::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 11px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-brand) 0%, #d1d5db 100%);
  border-radius: 1px;
}
.lv-tl-item {
  position: relative;
  padding: 0 0 24px;
}
.lv-tl-item:last-child { padding-bottom: 0; }
.lv-tl-dot {
  position: absolute;
  left: -32px;
  top: 2px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 9999px;
  color: #9ca3af;
}
.lv-tl-dot svg { width: 12px; height: 12px; }
.lv-tl-item--done .lv-tl-dot {
  background: #ecfdf5;
  border-color: #6ee7b7;
  color: #047857;
}
.lv-tl-item--active .lv-tl-dot {
  background: var(--color-brand-soft);
  border-color: var(--color-brand);
  color: var(--color-brand);
}
.lv-tl-date {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.lv-tl-name {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
}
.lv-tl-desc {
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.55;
}
.lv-tl-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  padding: 3px 10px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 9999px;
  font-size: 11.5px;
  font-weight: 700;
  color: #047857;
}
.lv-tl-badge svg { width: 12px; height: 12px; }

/* ═════════════════════════════════════════════
   4. 상권 요약 미니맵 플레이스홀더 (lv-minimap)
   ═════════════════════════════════════════════ */
.lv-minimap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
}
@media (min-width: 640px) {
  .lv-minimap { grid-template-columns: minmax(0, 1fr) 200px; }
}
.lv-minimap-canvas {
  position: relative;
  background: #f0f4f8;
  border-radius: 10px;
  overflow: hidden;
  min-height: 160px;
}
.lv-minimap-canvas svg { display: block; width: 100%; height: 100%; }
.lv-minimap-link {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-brand);
  text-align: center;
}
.lv-minimap-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.lv-minimap-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lv-minimap-info-title {
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.lv-minimap-badge {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 11px 13px;
  background: #f9fafb;
  border-radius: 8px;
}
.lv-minimap-badge-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #4b5563;
}
.lv-minimap-badge-icon svg { width: 14px; height: 14px; }
.lv-minimap-badge-text {
  font-size: 12.5px;
  color: #374151;
  line-height: 1.5;
}
.lv-minimap-badge-text strong { color: #111827; font-weight: 700; }

/* ═════════════════════════════════════════════
   5. 등급별 매출 섹션 게이팅
   ═════════════════════════════════════════════ */
/* visitor CTA 카드 */
.lv-gate-visitor,
.lv-gate-general,
.lv-gate-verified { display: none; }

body[data-tier="visitor"] .lv-gate-visitor { display: block; }
body[data-tier="general"] .lv-gate-general { display: block; }
body[data-tier="verified"] .lv-gate-verified { display: block; }

/* visitor: 섹션 딤 처리 */
body[data-tier="visitor"] .lv-revenue-content {
  position: relative;
  pointer-events: none;
}
body[data-tier="visitor"] .lv-revenue-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  z-index: 1;
}

/* visitor CTA */
.lv-cta-visitor {
  padding: 31px 26px;
  background: linear-gradient(135deg, #fffbeb 0%, #fff 100%);
  border: 1.5px solid #fde68a;
  border-radius: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.lv-cta-visitor-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fef3c7;
  border-radius: 50%;
  color: #d97706;
  margin-bottom: 4px;
}
.lv-cta-visitor-icon svg { width: 24px; height: 24px; }
.lv-cta-visitor-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
}
.lv-cta-visitor-text {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.65;
  max-width: 36ch;
}
.lv-cta-visitor-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 46px;
  padding: 0 24px;
  background: var(--color-brand);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 4px;
  transition: background 0.15s ease;
}
.lv-cta-visitor-btn:hover { background: var(--color-brand-dark); }

/* general CTA */
.lv-cta-general {
  padding: 18px 20px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.lv-cta-general-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dbeafe;
  border-radius: 8px;
  color: #1d4ed8;
}
.lv-cta-general-icon svg { width: 18px; height: 18px; }
.lv-cta-general-body { flex: 1; min-width: 0; }
.lv-cta-general-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 4px;
}
.lv-cta-general-text {
  font-size: 12.5px;
  color: #3b82f6;
  line-height: 1.55;
}
.lv-cta-general-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  height: 30px;
  padding: 0 14px;
  background: #2563eb;
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.lv-cta-general-link:hover { background: #1d4ed8; }

/* general: 매출 블러 */
body[data-tier="general"] .lv-revenue-row--blur dt,
body[data-tier="general"] .lv-revenue-row--blur dd {
  filter: blur(5px);
  user-select: none;
}

/* verified: 매출 추이 미니 바 */
.lv-trend-bar {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 32px;
}
.lv-trend-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
}
.lv-trend-bar-fill {
  width: 100%;
  background: var(--color-brand);
  border-radius: 3px 3px 0 0;
  min-height: 4px;
  opacity: 0.85;
}
.lv-trend-bar-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #9ca3af;
  font-weight: 600;
  white-space: nowrap;
}
.lv-revenue-trend {
  display: none;
}
body[data-tier="verified"] .lv-revenue-trend {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding: 16px 18px;
  background: #f9fafb;
  border-radius: 10px;
}
.lv-revenue-trend-label {
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
  flex-shrink: 0;
}

/* ═════════════════════════════════════════════
   6. 사이드 스티키 CTA + 관심 숫자
   ═════════════════════════════════════════════ */
.lv-interest-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 9999px;
  font-size: 12.5px;
  color: #4b5563;
  font-weight: 500;
}
.lv-interest-count svg {
  width: 14px;
  height: 14px;
  color: var(--color-brand);
}
.lv-interest-count strong {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--color-brand-dark);
}

/* 모바일 하단 고정 CTA */
.lv-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8900;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.10);
  gap: 10px;
  align-items: center;
}
.lv-mobile-cta.is-visible { display: flex; }
@media (min-width: 1024px) {
  .lv-mobile-cta { display: none !important; }
}
.lv-mobile-cta-interest {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  color: #6b7280;
  cursor: pointer;
  border: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.lv-mobile-cta-interest.is-on { color: var(--color-brand); background: var(--color-brand-soft); }
.lv-mobile-cta-interest svg { width: 20px; height: 20px; }
.lv-mobile-cta-submit {
  flex: 1;
  height: 46px;
  background: var(--color-brand);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.lv-mobile-cta-submit:hover { background: var(--color-brand-dark); }

/* ═════════════════════════════════════════════
   7. 이전/다음 매물 네비게이션 (lv-prevnext)
   ═════════════════════════════════════════════ */
.lv-prevnext {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0 0 32px;
}
.lv-prevnext-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.lv-prevnext-item:hover {
  border-color: var(--color-brand);
  box-shadow: 0 2px 8px rgba(254, 105, 27, 0.10);
}
.lv-prevnext-dir {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 4px;
}
.lv-prevnext-dir svg { width: 12px; height: 12px; }
.lv-prevnext-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
  line-height: 1.4;
  word-break: keep-all;
}
.lv-prevnext-price {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-brand-dark);
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}
.lv-prevnext-item--next {
  text-align: right;
  align-items: flex-end;
}
@media (max-width: 480px) {
  .lv-prevnext { grid-template-columns: 1fr; }
  .lv-prevnext-item--next { text-align: left; align-items: flex-start; }
}

/* ═════════════════════════════════════════════
   9. 매수 의향서 제출 모달 (lv-modal)
   ═════════════════════════════════════════════ */
.lv-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-modal) + 10);
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
@media (min-width: 640px) {
  .lv-modal-backdrop { align-items: center; }
}
.lv-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lv-modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 24px 24px 32px;
  box-shadow: 0 -8px 40px rgba(15, 23, 42, 0.20);
  transform: translateY(24px);
  transition: transform 0.25s ease;
  max-height: 90vh;
  overflow-y: auto;
}
@media (min-width: 640px) {
  .lv-modal { border-radius: 20px; transform: translateY(0) scale(0.96); }
}
.lv-modal-backdrop.is-open .lv-modal {
  transform: translateY(0) scale(1);
}
.lv-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.lv-modal-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  margin: 0;
}
.lv-modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border: none;
  border-radius: 8px;
  color: #6b7280;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease;
}
.lv-modal-close:hover { background: #e5e7eb; color: #111827; }
.lv-modal-close svg { width: 16px; height: 16px; }

/* 모달 내 등급별 콘텐츠 */
.lv-modal-visitor,
.lv-modal-general,
.lv-modal-verified { display: none; }
body[data-tier="visitor"] .lv-modal-visitor { display: block; }
body[data-tier="general"] .lv-modal-general { display: block; }
body[data-tier="verified"] .lv-modal-verified { display: block; }

.lv-modal-gate {
  text-align: center;
  padding: 12px 0 4px;
}
.lv-modal-gate-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 50%;
  margin: 0 auto 14px;
  color: #6b7280;
}
.lv-modal-gate-icon svg { width: 24px; height: 24px; }
.lv-modal-gate-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}
.lv-modal-gate-text {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 20px;
}
.lv-modal-gate-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 46px;
  padding: 0 24px;
  background: var(--color-brand);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.lv-modal-gate-btn:hover { background: var(--color-brand-dark); }

/* 폼 필드 */
.lv-modal-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 6px;
}
.lv-modal-textarea {
  width: 100%;
  min-height: 100px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 14px;
  color: #111827;
  font-family: var(--font-sans);
  resize: vertical;
  line-height: 1.65;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}
.lv-modal-textarea:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(254, 105, 27, 0.14);
}
.lv-modal-check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  cursor: pointer;
  user-select: none;
}
.lv-modal-check-row input { width: 16px; height: 16px; accent-color: var(--color-brand); cursor: pointer; }
.lv-modal-check-label {
  font-size: 13px;
  color: #4b5563;
  font-weight: 500;
}
.lv-modal-submit {
  width: 100%;
  height: 50px;
  background: var(--color-brand);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.15s ease;
}
.lv-modal-submit:hover { background: var(--color-brand-dark); }
.lv-modal-submit:focus-visible {
  outline: 2px solid var(--color-brand-dark);
  outline-offset: 3px;
}
.lv-modal-close:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
}

/* 제출 완료 메시지 */
.lv-modal-success {
  display: none;
  text-align: center;
  padding: 12px 0;
}
.lv-modal-success.is-shown { display: block; }
.lv-modal-success-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ecfdf5;
  border-radius: 50%;
  margin: 0 auto 14px;
  color: #047857;
}
.lv-modal-success-icon svg { width: 28px; height: 28px; }
.lv-modal-success-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.lv-modal-success-text {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.65;
}

/* ═════════════════════════════════════════════
   사이드 sticky (데스크톱)
   ═════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .ls-detail-side {
    position: sticky;
    top: 80px;
    align-self: flex-start;
  }
}

/* ═════════════════════════════════════════════
   모바일 반응형 보완
   ═════════════════════════════════════════════ */
@media (max-width: 767px) {
  .lv-valuation { padding: 16px; }
  .lv-valuation-title { font-size: 14px; }
  .lv-tl-list::before { top: 10px; left: 10px; }
  .lv-tl-dot { left: -30px; width: 20px; height: 20px; }
  .lv-tl-list { padding-left: 28px; }
  .lv-tl-dot svg { width: 10px; height: 10px; }
  .lv-minimap { padding: 14px; }
  .lv-cta-visitor { padding: 20px 16px; }
  .lv-modal { padding: 20px 16px 28px; }
}

/* 페이지 하단 모바일 패딩 보정 (고정 하단 바 공간) */
@media (max-width: 1023px) {
  .ls-detail { padding-bottom: 80px; }
}
