 .or-popup-wrapper {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.or-popup-wrapper.or-popup--visible {
  display: flex;
}

.or-popup {
  position: relative;
  max-width: 420px;
  width: 100%;
  margin: 0 16px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  opacity: 0;
  transform: perspective(800px) rotateY(90deg);
  transform-origin: center;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.or-popup-wrapper.or-popup--visible .or-popup {
  opacity: 1;
  transform: perspective(800px) rotateY(0deg);
}

.or-popup img {
  display: block;
  width: 100%;
  height: auto;
}

.or-popup-close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 30px;
  height: 30px;
  border: none;
  background: #ffffff;
  color: #000;
  border-radius: 50%;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
}

.or-popup-close:focus {
  outline: none;
}

@media (max-width: 767.98px) {
  .or-popup {
    max-width: 360px;
  }
}
