/* ======= */
/* WEATHER */
/* ======= */

.weather-widget {
  position: absolute;
  top: 18px;
  right: 16px;
  z-index: 40;

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 8px 14px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.14);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.weather-icon {
  font-size: 18px;
  transform: translateY(-1px);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.weather-temp {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.3px;
}

@media (max-width: 480px) {
  .weather-widget {
    top: calc(12px + env(safe-area-inset-top));
    right: 12px;
    padding: 7px 12px;
    gap: 6px;
  }

  .weather-icon {
    font-size: 17px;
  }

  .weather-temp {
    font-size: 14px;
  }
}
