.pwa-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid rgba(230, 48, 48, 0.25);
  padding: 14px 20px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 200;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.5);
}

.pwa-banner.show {
  transform: translateY(0);
}

.pwa-banner-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.pwa-banner-name {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.pwa-banner-desc {
  font-size: 0.72rem;
  color: var(--muted);
  font-family: var(--mono);
}

.pwa-install-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.pwa-install-btn:hover  { background: #c42020; transform: translateY(-1px); }
.pwa-install-btn:active { transform: translateY(0); }

.pwa-dismiss-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.2s;
}
.pwa-dismiss-btn:hover { color: var(--text); }

/* ── Notification permission banner ── */
.notif-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 20px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 199;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -12px 48px rgba(0,0,0,0.5);
}
.notif-banner.show { transform: translateY(0); }

.notif-banner-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.notif-banner-info { flex: 1; min-width: 0; }
.notif-banner-title {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.notif-banner-desc {
  font-size: 0.7rem;
  color: var(--muted);
  font-family: var(--mono);
}

.notif-enable-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.notif-enable-btn:hover  { background: #c42020; transform: translateY(-1px); }
.notif-enable-btn:active { transform: translateY(0); }

.notif-dismiss-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.2s;
}
.notif-dismiss-btn:hover { color: var(--text); }
