:root{
  --pwa-orange: #ff7a00;
  --pwa-text: #111;
  --pwa-bg: #fff;
  --pwa-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.pwa-install-floating {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 99999;
}

.pwa-install-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 9999px;
  background: var(--pwa-orange);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--pwa-shadow);
  border: 0;
  cursor: pointer;
}

.pwa-install-btn img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #fff;
}

.pwa-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 99998;
  background: var(--pwa-bg);
  color: var(--pwa-text);
  border-radius: 14px;
  box-shadow: var(--pwa-shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 2px solid var(--pwa-orange);
}

.pwa-banner .pwa-logo {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.pwa-banner .pwa-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pwa-banner .pwa-text {
  flex: 1 1 auto;
  font-size: 14px;
  line-height: 1.3;
}

.pwa-banner .pwa-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pwa-banner .pwa-cta {
  background: var(--pwa-orange);
  color: #fff;
  border: 0;
  padding: 10px 12px;
  border-radius: 9999px;
  font-weight: 700;
  cursor: pointer;
}

.pwa-banner .pwa-close {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  border: 2px solid var(--pwa-orange);
  background: #fff;
  color: var(--pwa-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  cursor: pointer;
  line-height: 1;
}

.pwa-hidden { display: none !important; }
