#vscp-popup-root {
  position: relative;
  z-index: 99999;
}
#vscp-popup-root[aria-hidden="true"] {
  display: none;
}
.vscp-popup {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}
.vscp-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.vscp-popup__panel {
  position: relative;
  width: min(560px, 92vw);
  background: #fff;
  border-radius: 20px;
  padding: 24px 22px 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  text-align: center;
}
.vscp-popup__close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #111;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}
.vscp-popup__close:hover {
  transform: scale(1.05);
  color: #b43872;
}
.vscp-popup__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.vscp-popup__title {
  font-family: 'Archivo';
  font-size: 27px;
  font-weight: 800;
  line-height: 1.3;
  color: #b43872;
  text-align: center;
  margin: 18px 0 0;
}
.vscp-popup__message {
  margin: 12px auto 0;
  max-width: 460px;
  font-size: 16px;
  line-height: 1.55;
  color: #362b26;
  text-align: center;
}
.vscp-popup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  padding: 12px 32px;
  border-radius: 999px;
  text-decoration: none;
  background: #b43872;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s ease;
}
.vscp-popup__btn:hover {
  background: #b43872;
  color: #fff;
}

@media (max-width: 480px) {
  .vscp-popup__panel {
    padding: 20px 18px 24px;
    border-radius: 18px;
  }
  .vscp-popup__close {
    top: -14px;
    right: -14px;
    width: 34px;
    height: 34px;
    font-size: 20px;
  }
}