body.popup-open {
  overflow: hidden;
}
.appPopupOverlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(20, 8, 36, 0.75);
  backdrop-filter: blur(3px);
}
.appPopupOverlay.appPopupHidden {
  display: none;
}
.appPopupBox {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 20px;
  border: 4px solid var(--primary-color);
  padding: 45px 35px 30px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  max-height: 90vh;
  overflow-y: auto;
}
.appPopupClose {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.appPopupClose:hover {
  background: #000;
}
.appPopupLogo {
  width: 160px;
  max-width: 60%;
  margin: 0 auto 18px;
  display: block;
}
.appPopupTitle {
  color: var(--secondary-color);
  font-weight: 800;
  font-size: 21px;
  margin-bottom: 14px;
  line-height: 1.3;
}
.appPopupText {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.appPopupQrLabel {
  font-weight: 700;
  font-size: 14px;
  color: var(--secondary-color);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.appPopupQr {
  margin-bottom: 24px;
}
.appPopupQr img {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  border: 1px solid #eee;
  padding: 6px;
}
.appPopupStores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.appPopupStores a {
  display: inline-block;
}
.appPopupStores img {
  height: 46px;
  width: auto;
}
@media only screen and (max-width: 480px) {
  .appPopupBox {
    padding: 40px 20px 24px;
  }
  .appPopupTitle {
    font-size: 18px;
  }
  .appPopupQr img {
    width: 130px;
    height: 130px;
  }
  .appPopupStores img {
    height: 40px;
    width: auto;
  }
}
