.thumbnail-slider {
    width: 450px;
    max-height: 118px;
    overflow: hidden;
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 1px solid #88888830;
    border-radius: 5px;
    background-color: #FFFFFF;
    padding: 5px;
}
.thumbnail-slider img {
    width: 100px;
    cursor: pointer;
    margin: 5px 0;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.main-slider {
    width: 100%;
    max-width: 450px;
    overflow: hidden;
    border: 1px solid #88888830;
    border-radius: 5px;
    background-color: #FFFFFF;
}
.main-slider img {
    width: 100%;
    height: auto;
}

.thumbnail-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 10px;
}

@media (max-width: 1300px) {
    .thumbnail-slider {
        width: 400px;
        max-height: 118px;
    }

    .main-slider {
        max-width: 400px;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .thumbnail-wrapper {
        display: none;
    }

    .slider-section {
        flex-direction: column;
    }

    .thumbnail-slider {
        width: 80px;
        max-height: 200px;
    }

    .main-slider {
        max-width: 350px;
        width: 90%;
    }
}