.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); /* overlay hitam transparan */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  padding: 0;
  max-width: 800px;
  width: 90%;
  text-align: center;
  position: relative;
  background: transparent; /* hilangkan kotak putih */
  box-shadow: none;
}

.popup-image {
  max-width: 100%;
  border-radius: 10px;
  display: block;
}

.popup-close {
  position: absolute;
  top: -10px; 
  right: -10px;
  font-size: 28px;
  cursor: pointer;
  color: #fff; /* biar kontras di atas gambar */
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  padding: 5px 10px;
}

.popup-footer {
  margin-top: 15px;
}

.popup-btn {
  display: inline-block;
  background: #e63946;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.popup-btn:hover {
  background: #fff;
}
