/* Kenar Bantları Product Lightbox - sadece ürün sayfasında JS ile aktifleşir */
.kb-pl-clickable {
    cursor: zoom-in !important;
}

.kb-pl-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(20, 14, 10, 0.84);
    padding: 28px;
    box-sizing: border-box;
}

.kb-pl-overlay.kb-pl-open {
    display: flex;
}

.kb-pl-frame {
    position: relative;
    max-width: min(1375px, 96vw);
    max-height: 94vh;
    background: #fffaf4;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    box-sizing: border-box;
}

.kb-pl-image {
    display: block;
    max-width: calc(96vw - 36px);
    max-height: calc(94vh - 36px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.kb-pl-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: #3a2418;
    color: #fff;
    font-size: 26px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.kb-pl-close:hover,
.kb-pl-close:focus {
    background: #1f120c;
    outline: none;
}

body.kb-pl-locked {
    overflow: hidden !important;
}

@media (max-width: 768px) {
    .kb-pl-overlay {
        padding: 14px;
    }

    .kb-pl-frame {
        max-width: 98vw;
        padding: 12px;
        border-radius: 14px;
    }

    .kb-pl-image {
        max-width: calc(98vw - 24px);
        max-height: calc(90vh - 24px);
    }

    .kb-pl-close {
        top: -10px;
        right: -10px;
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 24px;
    }
}
