.splide {
    margin-bottom: 20px;
}
.splide__slide img {
    width: 100%;
    height: auto;
    cursor: zoom-in;
}
.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);  /* 4 thumbnail */
    gap: 10px;
    margin-top: 10px;
}
.thumbnail {
    cursor: pointer;
    overflow: hidden;
}
.thumbnail img {
    width: 100%;
    height: 100px !important;
    transition: transform 0.3s ease;
    object-fit: cover !important;
}
.thumbnail:hover img {
    transform: scale(1.1);
}
.splide__pagination {
    display: none;
}
.zoomImg {
    transition: opacity 0.5s ease-in-out !important;  /* Lassabb zoom átmenet */
}