@import url("https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  font-family: "Montserrat", sans-serif;
}

.logo h1 {
  font-family: "Alegreya", sans-serif;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.animate-marquee {
  animation: marquee 25s linear infinite;
}
.group:hover .animate-marquee {
  animation-play-state: paused;
}
.card-img {
  max-width: 150px;
  max-height: 130px;
}
.swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide {
  height: auto !important; /* Let the height be determined by content */
  display: flex; /* Make slide a flex container */
}

.slide-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%; /* Take full height of slide */
}

.button-container {
  margin-top: auto; /* Push button to bottom */
}

.star-rating {
  min-height: 24px; /* Ensure consistent height for ratings */
}

.swiper-button-prev {
  left: -2px !important;
  top: 300px !important;
  color: #898989 !important;
  &:hover {
    color: #00ba74 !important;
  }
}

.swiper-button-next {
  right: -2px !important;
  color: #898989 !important;
  top: 300px !important;
  &:hover {
    color: #00ba74 !important;
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -3px;
}

.swiper-pagination-bullet-active {
  background: #898989 !important;
}
