.sc-vertical-gallery {
    width: 100%;
    overflow: hidden;
}

/* Main Image */
.sc-vg-main-wrapper {
    width: 100%;
}

.sc-vg-main-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    transition: background-image 0.5s ease;
}

/* Navigation */
.sc-vg-navigation {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.sc-vg-nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    border-style: solid;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #222222;
    padding: 0;
    line-height: 1;
}

.sc-vg-nav-btn i {
    line-height: 1;
}

.sc-vg-nav-btn:hover {
    background-color: #222222;
    color: #ffffff;
    border-color: #222222;
}

.sc-vg-nav-btn:hover svg path {
    stroke: #ffffff;
}

.sc-vg-nav-btn svg {
    width: 37px;
    height: 18px;
    transition: stroke 0.3s ease;
}

.sc-vg-nav-btn svg path {
    stroke: #222222;
    transition: stroke 0.3s ease;
}

.sc-vg-nav-btn .sc-vg-nav-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.sc-vg-nav-btn:hover .sc-vg-nav-icon-img {
    filter: brightness(0) invert(1);
}

/* Preview Image - Shows half of next image */
.sc-vg-preview-wrapper {
    margin-top: 30px;
    overflow: hidden;
    height: 150px;
    position: relative;
}

.sc-vg-preview-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    border-radius: 8px 8px 0 0;
    transition: background-image 0.5s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .sc-vg-main-image {
        height: 350px;
    }

    .sc-vg-preview-wrapper {
        height: 120px;
    }

    .sc-vg-preview-image {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .sc-vg-main-image {
        height: 280px;
    }

    .sc-vg-preview-wrapper {
        height: 100px;
    }

    .sc-vg-preview-image {
        height: 200px;
    }

    .sc-vg-nav-btn {
        width: 48px;
        height: 48px;
    }

    .sc-vg-nav-btn svg {
        width: 30px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .sc-vg-main-image {
        height: 220px;
    }

    .sc-vg-preview-wrapper {
        height: 80px;
    }

    .sc-vg-preview-image {
        height: 160px;
    }

    .sc-vg-nav-btn {
        width: 40px;
        height: 40px;
    }

    .sc-vg-nav-btn svg {
        width: 24px;
        height: 12px;
    }
}
