/* Galeria produktu ze Swiperem */
.dst-product-gallery-wrapper {
    width: 100%;
    position: relative;
}

.dst-product-gallery-main {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.dst-product-gallery-main .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    aspect-ratio: 1 / 1;
}

.dst-product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dst-product-gallery-thumbs {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 10;
    width: 50px;
    max-height: calc(100% - 40px);
}

.dst-product-gallery-thumbs .swiper-wrapper {
    flex-direction: column;
}

.dst-product-gallery-thumbs .swiper-slide {
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
    border: 2px solid transparent;
    overflow: hidden;
    background: #fff;
}

.dst-product-gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--primary-color, #BEA45A);
}

.dst-product-gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dst-product-gallery-main .swiper-button-next,
.dst-product-gallery-main .swiper-button-prev {
    color: #000;
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s;
}

.dst-product-gallery-main .swiper-button-next:hover,
.dst-product-gallery-main .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.dst-product-gallery-main .swiper-button-next:after,
.dst-product-gallery-main .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {
    .dst-product-gallery-thumbs {
        left: 10px;
        bottom: 10px;
        width: 40px;
    }
    
    .dst-product-gallery-thumbs .swiper-slide {
        width: 40px;
        height: 40px;
    }
    
    .dst-product-gallery-main .swiper-button-next,
    .dst-product-gallery-main .swiper-button-prev {
        width: 36px;
        height: 36px;
    }
    
    .dst-product-gallery-main .swiper-button-next:after,
    .dst-product-gallery-main .swiper-button-prev:after {
        font-size: 16px;
    }
}
