.vertical-slider-wrap {
    max-width: 530px;
}
.vertical-slider {
    display: flex;
    gap: 10px;
    margin: 20px 0 0;
}

/* Left Side - Thumbnails */
.slider-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    justify-content: start;
}

.thumbnail-item {
    width: 125px;
    height: 125px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 0;
    display: flex;
}

.two-side-thumbnails .thumbnail-item {
    width: 80px;
    height: 80px;
}

.thumbnail-item:hover {
    transform: scale(1.01);
}
/* 
.thumbnail-item.active {
    border-color: #333;
} */

.thumbnail-img {
    object-fit: contain;
    height: auto;
    width: auto;
    margin: 0 auto;
}

/* Right Side - Main Slider */
.slider-main {
    flex: 1;
    position: relative;
    min-height: 0;
}

.slider-main .slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-main .slide.active {
    display: block;
    opacity: 1;
}

.slide-image {
    width: 100%;
    margin-bottom: 1.5rem;
}

.slide-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.slide-content {
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 0;
}

.slide-caption {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.vertical-slider-navigation {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.vertical-slider-navigation .vsp-prev ,
.vertical-slider-navigation .vsp-next {
    font-size: 9pt;
    text-decoration: none;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
}

.vertical-slider-navigation .vs-title {
    text-align: center;
}
/* Responsive */
@media (max-width: 768px) {
    .vertical-slider {
        flex-direction: column;
    }

    .slider-thumbnails {
        flex-direction: row;
        overflow-x: auto;
        width: 100%;
    }

    .thumbnail-item {
        flex-shrink: 0;
    }
    
    .slider-main {
        min-height: 300px;
    }
}