/* =============================================
   Görsel Pop-up - Posenda
   ============================================= */

#gp-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    animation: gp-fade-in 0.2s ease;
}

#gp-overlay.gp-active {
    display: flex;
}

@keyframes gp-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#gp-modal {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: gp-zoom-in 0.25s ease;
}

@keyframes gp-zoom-in {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

#gp-modal img {
    display: block;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
    object-fit: contain;
}

#gp-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    z-index: 10;
    padding: 0;
    transition: background 0.15s, transform 0.15s;
}

#gp-close:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

#gp-close svg {
    width: 16px;
    height: 16px;
    stroke: #333;
    stroke-width: 2.5;
    fill: none;
}

/* Galeri görsellerini tıklanabilir yap */
.woocommerce-product-gallery__image a,
.woocommerce-product-gallery__image img {
    cursor: zoom-in !important;
}
