.swiper {
    width: 100%;
    height: 400px;
    margin-bottom: 10px;
}

.swiper-slide{
    margin-right: 10px;
    margin: auto;
    text-align: center;
}

.swiper .swiper-slide img {
    height: 100%;
    object-fit: cover;
}

.swiper-thumbs {
    height: 100px;
}

.swiper-thumbs .swiper-slide {
    width: 120px;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
}

.swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #007bff;
}

.swiper-thumbs .swiper-slide img {
    width: 120px;
    height: 100%;
    object-fit: cover;
}

.custom-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
    user-select: none;
}

.custom-button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.custom-prev {
    left: 10px;
}

.custom-next {
    right: 10px;
}

.swiper-thumbs .swiper-slide{
    width: 120px!important;
}

.swiper-thumbs{
    overflow-x: hidden;
}