/* ================= POPUP ================= */

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.popup-box {
  background: #fff;
  width: 90%;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: popupFade 0.4s ease;
}

.popup-img {
  width: 100%;
  display: block;
}

.popup-content {
  padding: 25px;
}

.popup-content h2 {
  margin: 0 0 10px;
  color: #e44c2a;
}

.popup-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.popup-btn {
  display: inline-block;
  background: #e44c2a;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.popup-btn:hover {
  background: #cc3f21;
}

.popup-close {
  display: block;
  margin: 12px auto 0;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
}

/* ANIMASI */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}