.cms-popup-block {
  display: none !important;
}

.cms-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.cms-popup-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cms-popup {
  position: fixed;
  z-index: 9999;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  max-width: 480px;
  width: calc(100% - 40px);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.cms-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.cms-popup__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.cms-popup__link:hover {
  text-decoration: none;
  color: inherit;
}
.cms-popup__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(0, 0, 0, 0.06);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  cursor: pointer;
  color: #6b7280;
  padding: 0;
  z-index: 1;
  transition: background 0.15s ease;
}
.cms-popup__close:hover {
  background: rgba(0, 0, 0, 0.12);
  color: #111;
}
.cms-popup__image {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  display: block;
}
.cms-popup__body {
  padding: 22px 24px 20px;
}
.cms-popup__title {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin: 0 0 10px;
  line-height: 1.3;
  padding-right: 28px;
}
.cms-popup__content {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.cms-popup--center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
}
.cms-popup--center.is-visible {
  transform: translate(-50%, -50%) scale(1);
}

.cms-popup--top-left {
  top: 20px;
  left: 20px;
  transform: scale(0.92) translateY(-10px);
}
.cms-popup--top-left.is-visible {
  transform: scale(1) translateY(0);
}

.cms-popup--top-right {
  top: 20px;
  right: 20px;
  transform: scale(0.92) translateY(-10px);
}
.cms-popup--top-right.is-visible {
  transform: scale(1) translateY(0);
}

.cms-popup--bottom-left {
  bottom: 20px;
  left: 20px;
  transform: scale(0.92) translateY(10px);
}
.cms-popup--bottom-left.is-visible {
  transform: scale(1) translateY(0);
}

.cms-popup--bottom-right {
  bottom: 20px;
  right: 20px;
  transform: scale(0.92) translateY(10px);
}
.cms-popup--bottom-right.is-visible {
  transform: scale(1) translateY(0);
}

@media (max-width: 480px) {
  .cms-popup {
    width: calc(100% - 24px);
    max-width: none;
  }
  .cms-popup__title {
    font-size: 17px;
  }
  .cms-popup__content {
    font-size: 14px;
  }
  .cms-popup--top-left,
  .cms-popup--top-right {
    top: 12px;
    left: 12px;
    right: 12px;
  }
  .cms-popup--bottom-left,
  .cms-popup--bottom-right {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }
}

/*# sourceMappingURL=popup.css.map */
