 /* Carousel Styles */
.carroussel-container {
  position: relative;
}

.carroussel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.carroussel::-webkit-scrollbar {
  display: none;
}

.carroussel > div {
  flex: 0 0 auto;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.carroussel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carroussel-arrow {
  position: absolute;
  top: 105px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 10;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.carroussel-arrow:hover {
  opacity: 1;
}

.carroussel-arrow.prev {
  left: 10px;
}

.carroussel-arrow.next {
  right: 10px;
}