.angie-lightbox-overlay-b42d8d5f {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
}

.angie-lightbox-hidden-b42d8d5f {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.angie-lightbox-container-b42d8d5f {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
}

.angie-lightbox-image-wrapper-b42d8d5f {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.angie-lightbox-image-b42d8d5f {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(1);
}

.angie-lightbox-hidden-b42d8d5f .angie-lightbox-image-b42d8d5f {
    transform: scale(0.95);
}

.angie-lightbox-close-b42d8d5f {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    padding: 10px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.angie-lightbox-close-b42d8d5f:hover {
    transform: scale(1.1);
    color: #e0e0e0;
}

.angie-lightbox-prev-b42d8d5f,
.angie-lightbox-next-b42d8d5f {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 40px;
    line-height: 1;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.angie-lightbox-prev-b42d8d5f:hover,
.angie-lightbox-next-b42d8d5f:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.angie-lightbox-prev-b42d8d5f { left: 30px; }
.angie-lightbox-next-b42d8d5f { right: 30px; }

@media (max-width: 768px) {
    .angie-lightbox-prev-b42d8d5f,
    .angie-lightbox-next-b42d8d5f {
        font-size: 24px;
        padding: 8px 15px;
    }
    .angie-lightbox-prev-b42d8d5f { left: 10px; }
    .angie-lightbox-next-b42d8d5f { right: 10px; }
    .angie-lightbox-close-b42d8d5f {
        top: 10px;
        right: 15px;
        font-size: 32px;
    }
    .angie-lightbox-container-b42d8d5f {
        padding: 1rem;
    }
}