.grauu-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 9999;
  backdrop-filter: blur(6px);
}

.grauu-popup.show {
  opacity: 1;
  pointer-events: auto;
}

.grauu-popup-content {
  position: relative;
  text-align: center;
  background: transparent;
  animation: fadeInUp 0.6s ease;
}

/* 🔥 Kocaman beyaz X sağ üstte */
.grauu-popup-close {
  position: absolute;
  top: -40px;
  right: -40px;
  background: none;
  border: none;
  color: #fff;
  font-size: 110px;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.2s ease;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.grauu-popup-close:hover {
  transform: scale(1.08);
  opacity: 0.9;
}

.grauu-popup img {
  max-width: 95vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.45);
}

@keyframes fadeInUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
