.image-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image-container {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #2e2e2e;
    height: 100%;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all .3s ease;
}

.thumbnail-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.thumbnail-container {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    scrollbar-width: none;
}

.thumbnail-container::-webkit-scrollbar {
    display: none;
}

.thumbnail {
    min-width: 85px;
    width: 85px;
    height: 85px;

    background: #fff;

    border-radius: 16px;
    border: 2px solid transparent;

    overflow: hidden;
    cursor: pointer;

    transition: all .25s ease;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumbnail:hover {
    transform: translateY(-4px);
    border-color: #c9a961;
}

.thumbnail.active {
    border-color: #c9a961;
    box-shadow: 0 0 0 2px #c9a961;
}

.thumb-nav {
    width: 42px;
    height: 42px;

    border-radius: 9999px;

    border: 1px solid #404040;

    background: #1f1f1f;

    color: #c9a961;

    cursor: pointer;

    transition: .2s;
}

.thumb-nav:hover {
    background: #c9a961;
    color: #111;
}

@media(max-width:768px){

    .main-image-container {
        height: 380px;
    }

    .thumbnail {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }

}