/* WooCommerce Product Gallery CSS */

.woo-gallery-container {
    max-width: 600px;
    margin: 0 auto;
}

/* Nagy kép container */
.woo-main-image {
    margin-bottom: 20px;
    position: relative;
}

.main-swiper {
    width: 100%;
    height: 500px;
}

.zoom-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: grab;
    background: #f8f8f8;
}

.zoom-container:active {
    cursor: grabbing;
}

.zoom-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.3s ease;
}

.zoom-container:hover img {
    transform: scale(2.5);
    cursor: move;
}

.zoom-container.zoomed img {
    transform: scale(2.5);
    cursor: move;
}

/* Single image styling - nincs galéria */
.single-image {
    height: 500px;
}

/* Slider navigation gombok - főképhez */
.main-swiper .swiper-button-next,
.main-swiper .swiper-button-prev {
    color: #007cba;
    background: rgba(255,255,255,0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    margin-top: -22px;
}

.main-swiper .swiper-button-next:after,
.main-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Thumbnails */
.woo-thumbnails {
    margin-top: 15px;
    position: relative;
}

.thumbnail-swiper {
    width: 100%;
}

/* Slider navigation gombok */
.swiper-button-next,
.swiper-button-prev {
    color: #007cba;
    background: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    margin-top: -17px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.thumbnail-swiper .swiper-slide {
    width: auto;
    margin-right: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s ease;
    border-radius: 4px;
}

.thumbnail:hover {
    border-color: #666;
}

.thumbnail.active {
    border-color: #007cba;
}

/* Mobile stílusok */
@media (max-width: 768px) {
    .woo-gallery-container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .main-swiper {
        height: 300px;
    }
    
    .single-image {
        height: 300px;
    }
    
    .zoom-container:hover img {
        transform: scale(2);
    }
    
    .zoom-container.zoomed img {
        transform: scale(2);
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    /* Slider gombok mobilon */
    .main-swiper .swiper-button-next,
    .main-swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
        margin-top: -17px;
    }
    
    .main-swiper .swiper-button-next:after,
    .main-swiper .swiper-button-prev:after {
        font-size: 14px;
    }
}