/* PARTINCE LIGHTBOX MODÜLÜ CSS */
#partince_lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
}

#partince_lightbox.show {
    opacity: 1;
}

#partince_lightbox .lightbox_content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

#partince_lightbox.show .lightbox_content {
    transform: scale(1);
}

#partince_lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    object-contain: contain;
}

/* KONTROL BUTONLARI */
.lightbox_btn {
    position: absolute;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 1010;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox_btn:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.lightbox_close {
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
}

.lightbox_nav {
    top: 50%;
    transform: translateY(-50%);
    width: 4rem;
    height: 4rem;
}

.lightbox_prev { left: 1rem; }
.lightbox_next { right: 1rem; }

body.lightbox_open {
    overflow: hidden !important;
}
