#MoM-pwa-popup {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 32px;
  margin: auto;
  max-width: 380px;
  z-index: 10000;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .35s, transform .35s;
}

#MoM-pwa-popup.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.MoM-pwa-card {
  background: #f9f9fb;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.17);
  padding: 1.6em 1.2em 1.2em 1.2em;
  text-align: center;
  font-family: system-ui,sans-serif;
  border: 1px solid #ececec;
}

.MoM-pwa-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.7em;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(211,47,47,.07);
}

.MoM-pwa-title {
  font-weight: 600;
  font-size: 1.15em;
  margin-bottom: 0.6em;
  color: #d32f2f;
}

.MoM-pwa-message {
  color: #333;
  font-size: 1.02em;
  margin-bottom: 1em;
}

.MoM-pwa-message ul {
  text-align: left;
  margin: 0.6em 0 0 1.2em;
  color: #333;
  font-size: 1em;
  padding-left: 1em;
}

#MoM-pwa-close {
  width: 96%;
  background: #d32f2f;
  color: #fff;
  border: none;
  padding: 0.8em 0;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.08em;
  margin-top: 0.5em;
  box-shadow: 0 2px 8px rgba(211,47,47,.09);
  cursor: pointer;
  transition: background .18s;
}
