.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-box {
  position: relative;
  width: 100%;       /* responsive için genişliği %100 */
  max-width: 300px;  /* masaüstünde 300px sınırı */
  height: auto;
  aspect-ratio: 1/1; /* kare oranı */
  border: 3px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(212,175,55,0.85);
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.overlay h3 {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}

.img-box:hover img {
  transform: scale(1.05);
}

.img-box:hover .overlay {
  opacity: 1;
}

/* Mobil uyum için yazı boyutlarını küçült */
@media (max-width: 768px) {
  .overlay h3 {
    font-size: 0.9rem;
  }
}
