.smooth-carousel-7bdec9b7 {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.smooth-carousel-track-7bdec9b7 {
    display: flex;
    width: max-content;
    animation: marquee-7bdec9b7 var(--carousel-speed, 20s) linear infinite;
}

/* Pause on hover */
.smooth-carousel-7bdec9b7.pause-on-hover:hover .smooth-carousel-track-7bdec9b7 {
    animation-play-state: paused;
}

.smooth-carousel-item-7bdec9b7 {
    flex-shrink: 0;
    width: var(--item-width, 250px);
    margin-right: var(--item-gap, 15px);
    box-sizing: border-box;
    cursor: pointer;
}

.smooth-carousel-img-wrapper-7bdec9b7 {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--item-radius, 12px);
    position: relative;
}

.smooth-carousel-img-7bdec9b7 {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    transition: transform 0.3s ease;
}

.smooth-carousel-item-7bdec9b7:hover .smooth-carousel-img-7bdec9b7 {
    transform: scale(1.05);
}

/* Keyframes */
@keyframes marquee-7bdec9b7 {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Lightbox overlay */
.lightbox-overlay-7bdec9b7 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay-7bdec9b7.active {
    opacity: 1;
}

.lightbox-content-7bdec9b7 {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content-7bdec9b7 img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    display: block;
}

.lightbox-close-7bdec9b7 {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}
