
/* localhop-swiper.css */
.swiper-container.custom-localhop-swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide {
  box-sizing: border-box;
}

.custom-localhop-prev,
.custom-localhop-next {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  color: #3E5063;
  background: #ffffff;
  border: 1px solid #d1d1d1;
  border-radius: 50%;
  padding: 10px;
  width: 40px;
  height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
}

.custom-localhop-prev:hover,
.custom-localhop-next:hover {
  background: #f5f5f5;
  transform: translateY(-50%) scale(1.1);
}

.custom-localhop-prev {
  left: -20px;
}

.custom-localhop-next {
  right: -20px;
}
