
.carousel-section {
  text-align: center;
  padding: 40px 20px;
}

.carousel-section .collection-name{
    font-family: "Castoro Titling", serif;
    font-size: 1.8rem;
    font-weight: 600;
    font-style: normal;
    margin: 100px auto 0 auto;
    color: white;
    /* border: 1px solid  black; */
    width: 60%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 12px #fff;
}

.carousel {
  position: relative;
  max-width: 100%;

}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  height: 100%;
}

button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 1;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .slides img {
    height: 250px;
  }
}

