.carousel-container {
  width: 90%;
  max-width: 700px;
  height: 650px;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.carousel {
  display: flex;
  transition: transform 0.7s ease-in-out; 
}

.carousel img {
  width: 100%;
  flex-shrink: 0;
  user-select: none;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
  background: rgba(0,0,0,0.8);
}
