/* PWA install prompt — bottom of page */
.hx-pwa-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  padding-bottom: max(0.85rem, env(safe-area-inset-bottom));
  background: #351e10;
  color: #ededec;
  box-shadow: 0 -8px 24px rgba(28, 22, 16, 0.18);
  font-family: 'Manrope', system-ui, sans-serif;
}

.hx-pwa-banner.is-visible {
  display: flex;
}

.hx-pwa-banner__text {
  flex: 1;
  min-width: 0;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.hx-pwa-banner__text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: #e8c382;
}

.hx-pwa-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.hx-pwa-banner__btn {
  border: none;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.hx-pwa-banner__btn--install {
  background: #e8c382;
  color: #351e10;
}

.hx-pwa-banner__btn--dismiss {
  background: transparent;
  color: #a3a3a3;
  border: 1px solid rgba(237, 237, 236, 0.25);
}

body.hx-pwa-banner-active {
  padding-bottom: 5.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .hx-pwa-banner {
    transition: none;
  }
}
