/* ═══ COMPONENTS — Vibe Popup, PIN Modal ═══ */

/* ═══ VIBE POPUP ═══ */
.vibe-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

.vibe-popup-overlay.active {
  display: flex;
}

.vibe-popup {
  position: relative;
  width: 90vw;
  height: 85vh;
  max-width: 1200px;
  background: #fff;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .25);
  overflow: hidden;
}

.vibe-popup__close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  z-index: 10;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--t1);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
}

.vibe-popup__close:hover {
  opacity: .8;
}

.vibe-popup__iframe {
  width: 100%;
  height: 100%;
  border: none;
}

