.thumbs-slider {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tf-product-media-thumbs {
    width: 100%;
    margin-top: 10px;
}

.tf-product-media-thumbs .swiper-slide {
    width: 119px;
    height: 119px;
    cursor: pointer;
}

.tf-product-media-thumbs .swiper-slide .item {
    position: relative;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.tf-product-media-thumbs .swiper-slide .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.tf-product-media-thumbs .swiper-slide.swiper-slide-thumb-active .item::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    border: 2px solid var(--main);
    border-radius: 5px;
}

.tf-product-media-main {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.tf-product-media-main .item {
    width: 100%;
    height: 100%;
}

.tf-product-media-main .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .tf-product-media-thumbs .swiper-slide {
        width: 80px;
        height: 80px;
    }
} 