/* ===== Gallery Nav Buttons ===== */

.woocommerce-product-gallery {
    position: relative !important;
}

.gnb-btn {
    position: absolute !important;
    top: 40% !important;
    transform: translateY(-50%) !important;
    z-index: 999 !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.92) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
    -webkit-tap-highlight-color: transparent !important;
}

.gnb-btn:hover {
    background: #ffffff !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25) !important;
}

.gnb-btn:active {
    transform: translateY(-50%) scale(0.93) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18) !important;
}

.gnb-btn svg {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
    color: #333333 !important;
    stroke: #333333 !important;
    flex-shrink: 0 !important;
}

/* دکمه چپ */
.gnb-left {
    left: 10px !important;
    right: auto !important;
}

/* دکمه راست */
.gnb-right {
    right: 10px !important;
    left: auto !important;
}

/* ===== موبایل ===== */
@media (max-width: 768px) {
    .gnb-btn {
        width: 36px !important;
        height: 36px !important;
        top: 40% !important;
    }

    .gnb-btn svg {
        width: 16px !important;
        height: 16px !important;
    }

    .gnb-left {
        left: 6px !important;
        right: auto !important;
    }

    .gnb-right {
        right: 6px !important;
        left: auto !important;
    }
}

/* ===== تبلت ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .gnb-btn {
        width: 40px !important;
        height: 40px !important;
    }
}
