/**
 * BFD Single Product Functions - Gallery Navigation Styles
 * 
 * @package BFDSingleProductFunctions
 */

.woocommerce-product-gallery {
    position: relative;
}

.gallery-nav-button {
    position: absolute;
    top: 250px;
    transform: translateY(-50%);
    z-index: 10;
    background: #e6f2ff;
    border: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    padding: 0 !important;
}

.gallery-nav-button:hover, 
.gallery-nav-button:focus {
    background: #e6f2ff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gallery-nav-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-nav-button svg {
    width: 20px;
    height: 20px;
    fill: #000c5e;
}

.gallery-nav-prev {
    left: 10px;
}

.gallery-nav-next {
    right: 10px;
}

.woocommerce-product-gallery.single-image .gallery-nav-button {
    display: none;
}

@media (max-width: 768px) {
    .gallery-nav-button {
        width: 36px;
        height: 36px;
        top: 135px;
    }

    .gallery-nav-button svg {
        width: 16px;
        height: 16px;
    }
    
    .gallery-nav-prev {
        left: 5px;
    }
    
    .gallery-nav-next {
        right: 5px;
    }

    ol.flex-control-nav.flex-control-thumbs {
        display: none;
    }
}
