/* ═══════════════════════════════════════════════════════════════
   WEATHER FORECAST — right panel widget
   ═══════════════════════════════════════════════════════════════ */

.weather-card {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
}
.weather-loading, .weather-error {
  color: var(--text-muted, #3D5A70);
  padding: 20px 0;
}

/* Header — icon + current temp */
.weather-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.weather-icon {
  font-size: 42px;
  line-height: 1;
}
.weather-now h3 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 2px;
  color: var(--text-primary, #E8F0F7);
}
.weather-temp {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary, #E8F0F7);
  line-height: 1.1;
}
.weather-desc {
  font-size: 11px;
  color: var(--text-secondary, #7A9BB5);
  margin-top: 2px;
}

/* Current conditions grid */
.weather-current-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 14px;
}
.wc-item {
  display: flex;
  justify-content: space-between;
  padding: 5px 8px;
  background: var(--bg-primary, #080B0F);
  border-radius: 4px;
}
.wc-label {
  color: var(--text-muted, #3D5A70);
  font-size: 10px;
}
.wc-val {
  color: var(--text-primary, #E8F0F7);
  font-weight: 500;
  font-size: 11px;
}

/* Section titles */
.weather-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted, #3D5A70);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 14px 0 8px;
  padding-top: 10px;
  border-top: 1px solid var(--border, #1E2A35);
}

/* 7-day forecast */
.weather-forecast {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wf-day {
  display: grid;
  grid-template-columns: 50px 28px 80px 1fr;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 4px;
  transition: background 0.1s;
}
.wf-day:hover {
  background: var(--bg-primary, #080B0F);
}
.wf-name {
  font-weight: 500;
  color: var(--text-primary, #E8F0F7);
  font-size: 11px;
}
.wf-icon {
  font-size: 16px;
  text-align: center;
}
.wf-temp {
  font-weight: 600;
  color: var(--text-primary, #E8F0F7);
  font-size: 11px;
}
.wf-detail {
  color: var(--text-muted, #3D5A70);
  font-size: 10px;
  text-align: right;
}

/* Map weather hint */
.weather-hint {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  background: var(--bg-card, #111820);
  border: 1px solid var(--border, #1E2A35);
  border-radius: 8px;
  padding: 10px 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--text-primary, #E8F0F7);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  white-space: nowrap;
  animation: weather-hint-in 0.3s ease-out;
  transition: opacity 0.5s;
}
.weather-hint.fade { opacity: 0; }
@keyframes weather-hint-in {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
