/* ── Destination Deep Dive ─────────────────────────────────────────── */

.dest-preview-section {
  margin-top: 20px;
  display: none;
}

.dest-preview-section.active {
  display: block;
}

.dest-preview-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  padding-left: 4px;
}

/* ── Glass card base ─────────────────────────────────────────────── */

.dest-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px;
  margin-bottom: 14px;
  transition: opacity 0.3s ease;
}

.dest-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

/* ── Street View ─────────────────────────────────────────────────── */

.dest-streetview-img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

.dest-streetview-empty {
  text-align: center;
  padding: 30px 10px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* ── Aerial View ─────────────────────────────────────────────────── */

.dest-aerial-video {
  width: 100%;
  border-radius: 14px;
  display: block;
}

.dest-aerial-fallback {
  text-align: center;
  padding: 20px 10px;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-style: italic;
}

/* ── Timezone ────────────────────────────────────────────────────── */

.dest-tz-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dest-tz-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.dest-tz-info {
  flex: 1;
}

.dest-tz-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.dest-tz-detail {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ── Air Quality ─────────────────────────────────────────────────── */

.dest-aqi-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.dest-aqi-number {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.dest-aqi-meta {
  flex: 1;
}

.dest-aqi-category {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.dest-aqi-dominant {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

.dest-aqi-health {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 12px;
  padding: 10px 12px;
  background: rgba(128, 128, 128, 0.08);
  border-radius: 12px;
}

.dest-aqi-pollutants {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dest-pollutant-chip {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(128, 128, 128, 0.1);
  color: var(--ink-soft);
  white-space: nowrap;
}

/* ── UV / Sunshine ───────────────────────────────────────────────── */

.dest-uv-row {
  display: flex;
  gap: 14px;
  align-items: stretch;
}

.dest-uv-block {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  border-radius: 14px;
  background: rgba(128, 128, 128, 0.06);
}

.dest-uv-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.dest-uv-desc {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

.dest-uv-level {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: 6px;
  color: #fff;
}

/* ── Loading skeleton ────────────────────────────────────────────── */

.dest-loading {
  text-align: center;
  padding: 30px 10px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.dest-loading-dot {
  display: inline-block;
  animation: destPulse 1.4s ease-in-out infinite;
}

.dest-loading-dot:nth-child(2) { animation-delay: 0.2s; }
.dest-loading-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes destPulse {
  0%, 80%, 100% { opacity: 0.3; }
  40% { opacity: 1; }
}
