/* ===== Gallery Grid ===== */
.gallery-item {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* ===== Modal ===== */
.pro-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.pro-modal img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 10px;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.pro-modal .close-btn {
  position: absolute;
  top: 25px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.pro-modal .prev,
.pro-modal .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.pro-modal .prev { left: 40px; }
.pro-modal .next { right: 40px; }

@media(max-width:768px){
  .pro-modal .prev,
  .pro-modal .next{
    font-size:30px;
  }
}
