.swiper-container {
  position: relative;
  overflow: hidden;
}

.swiper-button-next,
.swiper-button-prev {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #fff;
  border-radius: 50%; /* Tam dairesel buton için */
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.swiper-button-next {
  right: 15px;
}

.swiper-button-prev {
  left: 15px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.swiper-slide {
  cursor: pointer;
}

.swiper-slide img {
  margin-left: 0 !important;
  border-radius: 12px; /* Görsel köşelerini de oval yapmak istersen */
}
