.nshq-weather-widget { background: linear-gradient(135deg, #2C5F8A, #1a4a6e); color: white; border-radius: 12px; padding: 1.5rem; margin: 1.5rem 0; }
.nshq-weather-loading { color: rgba(255,255,255,0.7); font-size: 14px; }
.nshq-weather-main { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.nshq-temp { font-size: 2.5rem; font-weight: 700; }
.nshq-condition { font-size: 1.1rem; opacity: 0.9; }
.nshq-weather-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 13px; opacity: 0.85; margin-bottom: 1rem; }
.nshq-best-months { font-size: 13px; background: rgba(255,255,255,0.15); padding: 8px 12px; border-radius: 6px; }
.nshq-aqi { margin-top: 8px; font-size: 13px; }
.nshq-aqi-warning {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 6px;
  padding: 8px 12px;
  margin-top: 8px;
  font-size: 13px;
  color: #856404;
}

/* Sits below the (dark) weather widget on the light page background, so it
 * needs a readable fill rather than the translucent-white-on-dark treatment. */
.nshq-avoid-warning {
  background: #fdecea;
  border: 1px solid #f5b7b1;
  color: #922b21;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  margin-top: 6px;
}

/* --- Sticky destination bar --------------------------------------------- */
.nshq-sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(44, 95, 138, 0.97);
  color: white;
  z-index: 99998;
  padding: 8px 20px;
  font-size: 13px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.nshq-sticky-bar.nshq-sticky-visible {
  transform: translateY(0);
}
.nshq-sticky-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.nshq-sticky-flag { font-size: 18px; }
.nshq-sticky-divider { opacity: 0.4; }
.nshq-sticky-temp { font-weight: 700; font-size: 15px; }
.nshq-sticky-location strong { font-weight: 600; }
.nshq-sticky-tz { opacity: 0.75; font-size: 11px; }
@media (max-width: 480px) {
  .nshq-sticky-divider { display: none; }
  .nshq-sticky-bar { font-size: 12px; padding: 6px 12px; }
  .nshq-sticky-flag { font-size: 16px; }
}
