/* ================================================================
   TDR Geo — Distance badges + Directions buttons
   Loaded on both FSBO and Places pages.
================================================================ */

/* ── Distance badge (appears on cards) ──────────────────────────── */
.tdr-dist-badge {
  display: none; /* shown by JS */
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 20px;
  background: #eef6ee;
  color: #2d7a3a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  border: 1px solid #c3e6cb;
  white-space: nowrap;
  transition: background .15s;
}
.tdr-dist-badge:not(.tdr-dist-resolved):hover {
  background: #d4edda;
}
/* After JS resolves the distance, remove hover cursor hint */
.tdr-dist-badge.tdr-dist-resolved {
  cursor: default !important;
}

/* ── Directions button (in cards) ───────────────────────────────── */
.tdr-dir-btn {
  display: none; /* shown by JS after location granted */
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 6px;
  background: var(--tdr-navy, #102a52);
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background .15s;
  flex-shrink: 0;
}
.tdr-dir-btn:hover {
  background: var(--tdr-orange, #e67e22) !important;
  color: #fff !important;
  text-decoration: none !important;
}

/* ── Card geo row ────────────────────────────────────────────────── */
.tdr-card-geo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 0 4px;
  min-height: 0;
}

/* ── Standalone directions link (detail pages) ───────────────────── */
.tdr-dir-btn-standalone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--tdr-navy, #102a52);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background .15s;
  margin-top: 10px;
}
.tdr-dir-btn-standalone:hover {
  background: var(--tdr-orange, #e67e22) !important;
  color: #fff !important;
}

/* ── Inline distance label (detail pages) ────────────────────────── */
.tdr-detail-dist {
  display: none; /* shown by JS */
  font-size: 12px;
  color: #6b7280;
  margin-left: 8px;
  vertical-align: middle;
}

/* ── Directions action button (FSBO detail action bar) ───────────── */
a.tdr-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none !important;
  color: inherit;
}
a.tdr-action-btn:hover {
  color: var(--tdr-orange, #e67e22);
  text-decoration: none !important;
}

/* ── Enable geo button (optional explicit CTA) ───────────────────── */
#tdr-enable-geo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background: var(--tdr-navy, #102a52);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
}
#tdr-enable-geo:hover { background: var(--tdr-orange, #e67e22); }
