/* بنر نصب روی گوشی */
.pwa-banner {
  position: fixed;
  inset-inline: 12px;
  bottom: 12px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 16px;
  background: #0f3d5c;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  font-family: inherit;
  direction: rtl;
  animation: pwaUp 0.25s ease-out;
}
@keyframes pwaUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.pwa-banner-text { display: flex; flex-direction: column; gap: 2px; flex: 1 1 180px; }
.pwa-banner-text strong { font-size: 15px; }
.pwa-banner-text span { font-size: 12px; opacity: 0.85; line-height: 1.6; }
.pwa-banner-actions { display: flex; gap: 8px; }
.pwa-btn {
  background: #fff; color: #0f3d5c; border: 0; border-radius: 10px;
  padding: 8px 16px; font-size: 14px; font-weight: 700; cursor: pointer;
}
.pwa-btn-ghost {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.5);
  border-radius: 10px; padding: 8px 14px; font-size: 13px; cursor: pointer;
}
@media (min-width: 900px) { .pwa-banner { max-width: 460px; inset-inline-start: auto; } }
