.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;

    z-index: 9999;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-inner {
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
    position: relative;
    padding: 50px 10px;
    background: #F3F1EE;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox.active .lightbox-inner {
    transform: scale(1);
    opacity: 1;
}
.lightbox-inner img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-inner {
    position: relative;
    padding: 50px 10px;
    background: #F3F1EE;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}