/* Título y subtítulo del banner */
.pwa-banner-title {
  font-size: 15px;
  font-weight: bold;
  color: #c98002;
}
.pwa-banner-subtitle {
  font-size: 12px;
  color: #a96a01;
  margin-top: 0;
}
.pwa-modal__wrapper {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 92vw;
  max-width: 320px;
  background: #fffbe6;
  border-radius: 13px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  padding: 12px 10px 8px 10px;
  z-index: 99999;
  text-align: center;
  font-family: inherit;
  border: 1.5px solid #c98002;
  animation: pwaBannerIn 0.5s cubic-bezier(.7,-0.2,.5,1.4);
}

@keyframes pwaBannerIn {
  from { opacity: 0; transform: translateX(-50%) translateY(40px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.pwa-modal__group {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.pwa-modal__btn {
  background: #c98002;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.97rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  box-shadow: 0 2px 8px #0001;
  transition: background 0.2s, color 0.2s;
}
.pwa-modal__btn.no-ty {
  background: transparent;
  color: #c98002;
  border: 1.5px solid #c98002;
}
.pwa-modal__btn:hover {
  background: #a96a01;
  color: #fff;
  border: 1.5px solid #a96a01;
}
