/** Shopify CDN: Minification failed

Line 176:13 Expected identifier but found whitespace
Line 176:22 Unexpected "0.4s"
Line 218:0 Unexpected "}"

**/
/* === HAUNT POPUP STYLING === */


.haunt-popup {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  font-family: 'Quantico', sans-serif;
}


.haunt-popup.hidden {
  display: none;
}

.haunt-popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: transparent;
  z-index: 1000;
  cursor: pointer;
}

.haunt-popup__content {
  position: relative;
  background: #000;
  color: #999;
  padding: 2rem;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px);
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: popupGlowFade 1.2s ease-out forwards;
  animation-delay: 2s;
  max-width: 400px;
  width: 90%;
  z-index: 1001;
}



.haunt-popup__title {
  font-size: 2.5rem; /* was 2rem */
  margin-bottom: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
}


.haunt-popup p {
  font-size: 1.5rem;
  color: #ccc;
  text-transform: uppercase;
  text-align: center;
  margin-top: 1rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
}


.popup-form input {
  width: 100%;
  padding: 0.8rem;
  margin: 1rem 0;
  font-size: 1rem;
  background: #000;
  color: #fff;
  border: 1px solid #fff;
  text-transform: uppercase;
  font-family: 'Quantico', sans-serif;
  outline: none; /* 🧼 removes blue browser outline */
  box-shadow: none; /* 🧼 prevents Shopify's focus styling */
}
#haunt-popup .popup-btn {
  background-color: #000;
  color: #fff;
  font-weight: normal; /* removes bold look */
  border: 1px solid #fff;
  border-radius: 0 !important;
  padding: 0.9rem 2rem; /* balanced spacing */
  font-size: 1.5rem; /* big, but not overpowering */
  font-family: 'Quantico', sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.15),
    0 0 20px rgba(255, 255, 255, 0.08);
}


.popup-btn:hover {
  background-color: #111;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  font-size: 2rem;
  background: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* Fade and float animation */
@keyframes fadeInGhost {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes popupGlowFade {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* Outer popup content with darker translucency */
.haunt-popup__content {
  background: rgba(0, 0, 0, 0.9); /* Darker background for better contrast */
  padding: 1rem; /* Tighter padding */
  border-radius: 0; /* Sharp corners */
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}


/* Success message itself */
.popup-success-message {
  font-family: 'Quantico', sans-serif;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.3; /* Tight line height */
  padding: 1rem 1.5rem; /* Tight padding */
  color: white;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: 60% !important; /* Force width to 60% */
  max-width: 350px !important; /* Limit max width */
  margin: 0 auto; /* Center the box */
  animation: successFadeInUp 0.6s ease forwards;
}

.haunt-popup__content,
  transition: opacity 0.4s ease;
}

.popup-success-message {
  opacity: 0;
}






/* Smooth fade-in effect */
@keyframes successFadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Flicker effect */
.flicker-whisper {
  animation: whisper-flicker 6s infinite;
}

@keyframes whisper-flicker {
  0%, 14%, 22%, 100% {
    opacity: 1;
  }
  15%, 21%, 29%, 40%, 55%, 65% {
    opacity: 0.75;
  }
  16%, 23%, 41%, 60% {
    opacity: 0.5;
  }
}


}
