.carousel-container {
    position: relative;
    overflow: hidden;
}

.swiper-class {
    width: 100vw;
    height: 500px;
}

 @media (min-width: 1024px) {
    .swiper-class {
        height: 700px;
    }
 }

.carousel-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    cursor: grab;
    user-select: none;
}

.carousel-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.carousel-wrapper:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    min-width: max-content;
}

.carousel-track > * {
    flex-shrink: 0;
    scroll-snap-align: start;
}

.carousel-nav {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
    margin-right: 1rem;
}

.carousel-prev,
.carousel-next {
    background: #f0f0f0;
    /* border: 1px solid #ddd; */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: #f0f0f0;
    /* transform: scale(1.1); */
}