/* reset */

/* Overlay: covers entire screen and centers content */
#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Force it to become flex only when visible */
#popup-overlay.show {
  display: flex; /* Center when shown */
}

/* Popup box styling */
#popup-window {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* Close button styling */
#popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

#popup-content a {
  display: inline-block;
}

#popup-content a:hover {
  opacity: 0.9; /* optional hover effect */
}

#popup-content img {
  max-width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}
.desktop-promo {width: 100%; cursor: pointer !important; }
.mobile-promo {width: 100%; display: none; cursor: pointer !important; }

#popup-action-btn {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.popup-button {
  cursor: pointer;
  border: 2px solid #000;
  background-color: #fff;
  color: #333;
  padding: 5px 18px;
  font-family: 'Mulish',sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.popup-button:hover {
  background-color: #4E3D2D;
  border: 2px solid #fff;
  color: #fff;
}

/*
#popup-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  box-shadow: 0 0 10px #0003;
  z-index: 9999;
}

#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#popup-window {
  display: none;
  background: #fff;
  padding: 20px;
  max-width: 90%;
  width: 400px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
}

#popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}
*/
@media (max-width: 500px) {
  #popup-window {
    width: 90%;
    padding: 15px;
  }

  #popup-close {
    top: 8px;
    right: 10px;
    font-size: 20px;
  }
.desktop-promo {display: none; }
.mobile-promo {display: block;  }
	#popup-action-btn {
  bottom: 24px;
}
