.jquery-img-slider {
    width: 100%;
    margin: 0 auto 100px;
}

/* ==========================
    Main Image
========================== */
.jquery-img-slider-main {
    position: relative;
}

.jquery-img-slider-container {
    position: relative;
    overflow: hidden;
}

.jquery-img-slider-slide {
    display: none;
    width: 100%;
    height: 500px;
    object-fit: contain;
    vertical-align: top;
    background: #ffffff;
    border-radius: 8px;
}

.jquery-img-slider-slide.jquery-img-slider-active {
    display: block;
}

/* ==========================
    Navigation
========================== */
.jquery-img-slider-btn {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.jquery-img-slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.jquery-img-slider-prev {
    left: 8px;
}

.jquery-img-slider-next {
    right: 8px;
}

/* ==========================
    Thumbnails
========================== */
.jquery-img-slider-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    padding-bottom: 8px;
    overflow-x: auto;
    overflow-y: hidden;
}

.jquery-img-slider-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    object-fit: cover;
    border: 3px solid transparent;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jquery-img-slider-thumb:hover {
    opacity: 0.8;
}

.jquery-img-slider-thumb.jquery-img-slider-active {
    opacity: 1;
    border-color: #00664b;
}

/* ==========================
    Caption
========================== */
.jquery-img-slider-caption {
    margin-top: 8px;
    padding: 8px 16px;
    background: #f4f4f4;
    border-radius: 4px;
    color: #222222;
    font-size: 16px;
    line-height: 2;
}

.jquery-img-slider-thumbnails::-webkit-scrollbar {
    height: 8px;
}


/* ==========================
scroll
========================== */
.jquery-img-slider-thumbnails::-webkit-scrollbar-track {
    background: #e4e4e4;
}

.jquery-img-slider-thumbnails::-webkit-scrollbar-thumb {
    background: #c9c9c9;
    border-radius: 4px;
}

.jquery-img-slider-thumbnails::-webkit-scrollbar-thumb:hover {
    background: #e4e4e4;
}

.jquery-img-slider-thumbnails {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

.jquery-img-slider-thumb {
    flex-shrink: 0;
}


