.ls-0f3e0ca9-wrapper {
    position: relative;
    width: 100%;
}
.ls-0f3e0ca9-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #000;
}
.ls-0f3e0ca9-slides {
    display: flex;
    /* transition-duration set inline */
    transition-property: transform;
    transition-timing-function: ease-in-out;
    height: 100%;
}
.ls-0f3e0ca9-slide {
    min-width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ls-0f3e0ca9-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.ls-0f3e0ca9-prev, .ls-0f3e0ca9-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ls-0f3e0ca9-prev { left: 10px; }
.ls-0f3e0ca9-next { right: 10px; }

/* Lightbox Styles */
.ls-0f3e0ca9-lightbox {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.ls-0f3e0ca9-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}
.ls-0f3e0ca9-lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ls-0f3e0ca9-lightbox img {
    max-width: 100%;
    max-height: 100%;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    object-fit: contain;
}
.ls-0f3e0ca9-lightbox-info {
    text-align: center;
    margin-top: 15px;
    max-width: 90%;
}
.ls-0f3e0ca9-lightbox-title {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
    font-weight: bold;
}
.ls-0f3e0ca9-lightbox-caption {
    margin: 0;
    font-size: 1rem;
}
.ls-0f3e0ca9-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1000000;
}