.is-6fcd6067-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    user-select: none;
}

.is-6fcd6067-viewport {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #000;
    --is-6fcd6067-shine-duration: 1.2s;
}

.is-6fcd6067-slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.is-6fcd6067-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    z-index: 1;
}

.is-6fcd6067-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.is-6fcd6067-slide img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    display: block;
    box-sizing: border-box;
}

/* Shine Animation - fires only when 'is-6fcd6067-shine-run' class is toggled by JS on an interval */
.is-6fcd6067-shine {
    position: relative;
}

.is-6fcd6067-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    transform: skewX(-25deg);
    z-index: 3;
    pointer-events: none;
    opacity: 0;
}

.is-6fcd6067-shine.is-6fcd6067-shine-run::after {
    opacity: 1;
    animation: is-6fcd6067-shine-anim var(--is-6fcd6067-shine-duration, 1.2s) linear 1;
}

@keyframes is-6fcd6067-shine-anim {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}

/* Arrows */
.is-6fcd6067-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none !important;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.3s, color 0.3s, opacity 0.3s;
    padding: 0 !important;
    margin: 0;
    box-sizing: border-box;
    line-height: normal;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none !important;
    font-size: inherit;
}

.is-6fcd6067-arrow:focus {
    outline: none;
}

.is-6fcd6067-arrow svg {
    fill: currentColor;
}

.is-6fcd6067-prev {
    left: 15px;
}

.is-6fcd6067-next {
    right: 15px;
}

/* Thumbnails */
.is-6fcd6067-thumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
}

.is-6fcd6067-thumb {
    cursor: pointer;
    overflow: hidden;
    transition: opacity 0.3s, border-color 0.3s;
    box-sizing: border-box;
}

.is-6fcd6067-thumb img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover;
    display: block;
    box-sizing: border-box;
}

/* Modern Fully Styled Custom Lightbox */
.is-6fcd6067-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.admin-bar .is-6fcd6067-lightbox {
    top: var(--wp-admin--admin-bar--height, 32px);
    height: calc(100% - var(--wp-admin--admin-bar--height, 32px));
}
@media screen and (max-width: 782px) {
    body.admin-bar .is-6fcd6067-lightbox {
        top: 46px;
        height: calc(100% - 46px);
    }
}

.is-6fcd6067-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.is-6fcd6067-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.is-6fcd6067-lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.is-6fcd6067-lightbox-image.is-loaded {
    opacity: 1;
    transform: scale(1);
}

.is-6fcd6067-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none !important;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 100001;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, opacity 0.3s;
    padding: 0 !important;
    box-sizing: border-box;
    line-height: normal;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none !important;
}

.is-6fcd6067-lightbox-close:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.is-6fcd6067-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none !important;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100001;
    transition: background 0.3s, transform 0.3s;
    padding: 0 !important;
    box-sizing: border-box;
    line-height: normal;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none !important;
}

.is-6fcd6067-lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.05);
}

.is-6fcd6067-lightbox-prev {
    left: 20px;
}

.is-6fcd6067-lightbox-next {
    right: 20px;
}

@media (max-width: 767px) {
    .is-6fcd6067-lightbox-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .is-6fcd6067-lightbox-prev {
        left: 10px;
    }
    .is-6fcd6067-lightbox-next {
        right: 10px;
    }
}