/* ════════════════════════════════
   PWA INSTALL BANNER
════════════════════════════════ */
@keyframes pwaSlideIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.pwa-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(73,54,232,.1), rgba(139,111,248,.12));
  border: 1.5px solid rgba(73,54,232,.25);
  border-radius: 20px;
  padding: 14px 14px 14px 16px;
  margin: 8px 0 20px;
  animation: pwaSlideIn 0.4s var(--spring) both;
}

.pwa-banner-fox {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  background: linear-gradient(135deg, #7c5bf8, #4936e8);
}

.pwa-banner-body {
  flex: 1;
  min-width: 0;
}

.pwa-banner-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  direction: rtl;
  margin-bottom: 2px;
}

.pwa-banner-sub {
  font-size: 11.5px;
  color: var(--text-soft);
  direction: rtl;
}

.pwa-install-btn {
  background: linear-gradient(135deg, #4936e8, #7c5bf8);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
  min-height: 44px;
  transition: transform 0.2s var(--spring), box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(73,54,232,.3);
}

.pwa-install-btn:active {
  transform: scale(0.93);
}

.pwa-dismiss-btn {
  background: none;
  border: none;
  color: var(--text-soft);
  font-size: 15px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  min-width: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s;
}

.pwa-dismiss-btn:active {
  background: var(--surface2);
}

/* ════ FOOTER ════ */
.app-footer {
  text-align: center;
  font-size: 11px;
  color: var(--text-soft);
  opacity: .45;
  padding: 18px 0 8px;
  font-weight: 600;
  letter-spacing: .03em;
}
