/* PWA install strip — mobile home screen */
.pwa-install-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 12px 14px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: linear-gradient(135deg, #18181b, #27272a);
  color: #fafafa;
  box-shadow: 0 -8px 32px rgba(24, 24, 27, 0.25);
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.88rem;
  line-height: 1.45;
}
.pwa-install-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pwa-ios-msg {
  flex: 1;
  min-width: 200px;
}
.pwa-install-btn {
  flex-shrink: 0;
  padding: 10px 16px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
}
.pwa-dismiss {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}
