/* === INVEST PANEL (inside .dest-card — light theme) === */
.invest-panel {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.invest-panel-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.invest-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

.invest-score {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 12px;
  letter-spacing: 0.03em;
}

.invest-score--high {
  background: rgba(43, 77, 47, 0.12);
  color: var(--accent);
  border: 1px solid rgba(43, 77, 47, 0.2);
}

.invest-score--mid {
  background: rgba(196, 98, 45, 0.1);
  color: var(--terracotta);
  border: 1px solid rgba(196, 98, 45, 0.2);
}

.invest-score--low {
  background: rgba(92, 90, 86, 0.08);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}

.invest-summary {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.5;
}

.invest-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.invest-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.invest-stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
}

.invest-stat-value {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg);
}

.invest-reg--legal    { color: var(--accent); }
.invest-reg--restricted { color: var(--terracotta); }
.invest-reg--banned   { color: #c0392b; }

/* === WATCHLIST BUTTON === */
.watchlist-btn {
  display: inline-block;
  padding: 9px 16px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  align-self: flex-start;
}

.watchlist-btn:hover {
  background: rgba(43, 77, 47, 0.06);
}

.watchlist-btn--saved {
  background: var(--accent);
  color: #fff;
}

.watchlist-btn--saved:hover {
  background: var(--accent-light);
}

.watchlist-btn--guest {
  border-color: var(--border);
  color: var(--fg-muted);
}

.watchlist-btn--guest:hover {
  background: rgba(92, 90, 86, 0.06);
}

/* === WATCHLIST SECTION (inside dashboard dark hero) === */
.watchlist-section {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
}

.watchlist-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.watchlist-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.watchlist-card-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.watchlist-dest-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #f0f0f5;
}

.watchlist-score {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(240, 240, 245, 0.55);
  margin-top: 2px;
}

.watchlist-income {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #A8D5BA;
}

.watchlist-detail {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(240, 240, 245, 0.5);
  line-height: 1.5;
}

.watchlist-remove-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  color: rgba(240, 240, 245, 0.4);
  padding: 2px 6px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  line-height: 1;
}

.watchlist-remove-btn:hover {
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.12);
}
