/* Alap konténer stílusok */
.custom-product-gallery-container {
    margin-bottom: 30px;
    max-width: 100%;
}

/* Egyetlen kép stílusok */
.single-product-image {
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    background-color: #fff;
    position: relative;
}

.single-product-image .gallery-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    aspect-ratio: 1/1;
    background-color: #fff;
}

/* Fő galéria stílusok */
#product-gallery-splide {
    margin-bottom: 10px;
}

#product-gallery-splide .splide__track {
    border-radius: 4px;
    overflow: hidden;
}

#product-gallery-splide .gallery-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    aspect-ratio: 1/1;
    background-color: #fff;
}

/* Miniatűr galéria stílusok */
#product-gallery-thumbs {
    margin-top: 10px;
}

#product-gallery-thumbs .splide__slide {
    opacity: 0.6;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

#product-gallery-thumbs .splide__slide.is-active {
    opacity: 1;
    border-color: #4a4a4a;
}

#product-gallery-thumbs .thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Nyíl gombok stílusai */
.splide__arrow {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.splide__arrow:hover {
    opacity: 1;
}

.splide__arrow svg {
    fill: #333;
    width: 20px;
    height: 20px;
}

/* Variáció gombok stílusai */
.variation-option {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 5px 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    cursor: pointer;
    transition: all 0.2s ease;
}

.variation-option:hover {
    background-color: #eaeaea;
}

.variation-option.selected {
    background-color: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

/* Responsiv beállítások */
@media (max-width: 768px) {
    .splide__arrow {
        width: 35px;
        height: 35px;
    }
    
    #product-gallery-thumbs .splide__slide {
        transition: none; /* Mobilon kikapcsoljuk az animációkat a jobb teljesítmény érdekében */
    }
}

/* Debug információ (csak fejlesztési célra) */
.debug-info {
    background: #f5f5f5;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    font-family: monospace;
    white-space: pre-wrap;
    display: none; /* Alapértelmezetten elrejtve */
}