    /* UX Product Slider - Mobile First */

    /* Reset and base styles */
    .teklly-slider {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .teklly-slider *,
    .teklly-slider *::before,
    .teklly-slider *::after {
        box-sizing: border-box;
    }

    /* Main image container - Mobile */
    .teklly-slider__main-image {
        position: relative;
        width: 100%;
        aspect-ratio: var(--slider-aspect-ratio, 1 / 1);
        overflow: hidden;
        margin-bottom: 16px;
        
    }

    .teklly-slider__main-image-container {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 4px;
        overflow: hidden;
    }

    .teklly-slider__main-image-item {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .teklly-slider__main-image-item--active {
        opacity: 1;
        pointer-events: auto;
    }

    /* Picture element - make it behave like img */
    .teklly-slider__main-image-item picture {
        display: block;
        width: 100%;
        height: 100%;
    }

    /* Images inside picture or direct img */
    .teklly-slider__main-image-item img,
    .teklly-slider__main-image-item picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Navigation arrows */
    .teklly-slider__arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        background-color: rgba(255, 255, 255, 0.9);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        transition: all 0.2s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .teklly-slider__arrow:hover {
        background-color: rgba(255, 255, 255, 1);
        transform: translateY(-50%) scale(1.05);
    }

    .teklly-slider__arrow:active {
        transform: translateY(-50%) scale(0.95);
    }

    .teklly-slider__arrow--prev {
        left: 12px;
    }

    .teklly-slider__arrow--next {
        right: 12px;
    }

    .teklly-slider__arrow--disabled {
        opacity: 0.4;
        cursor: not-allowed;
        pointer-events: none;
    }

    .teklly-slider__arrow svg {
        width: 20px;
        height: 20px;
        color: #333;
    }

    /* Thumbnails container - Mobile */
    .teklly-slider__thumbnails {
        width: 100%;
        overflow: hidden;
    }

    .teklly-slider__thumbnails-container {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 0 4px 4px 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .teklly-slider__thumbnails-container::-webkit-scrollbar {
        display: none;
    }

    /* Thumbnails */
    .teklly-slider__thumbnail {
        flex: 0 0 calc(25% - 6px);
        aspect-ratio: 1 / 1;
        cursor: pointer;
        border: 2px solid transparent;
        border-radius: 4px;
        overflow: hidden;
        transition: all 0.2s ease;
        background-color: #f8f8f8;
        max-width: var(--thumbnail-max-width, 100px);
    }

    .teklly-slider__thumbnail:hover {
        border-color: #ddd;
    }

    .teklly-slider__thumbnail--active {
        border-color: #000000;
        box-shadow: 0 0 0 1px #000000;
    }

    .teklly-slider__thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Video play buttons */
    .teklly-slider__video-item {
        cursor: pointer;
    }

    .teklly-slider__play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 5;
        transition: opacity 0.2s ease;
    }

    .teklly-slider__video-item:hover .teklly-slider__play-button {
        opacity: 0.8;
    }

    /* Video thumbnails */
    .teklly-slider__video-thumbnail {
        position: relative;
    }

    .teklly-slider__thumbnail-play {
        position: absolute;
        bottom: 4px;
        right: 4px;
        z-index: 5;
    }

    /* Desktop styles - only when NOT thumbnails-bottom */
    @media (min-width: 922px) {
        .teklly-slider:not(.teklly-slider--thumbnails-bottom) {
            display: flex;
            gap: 24px;
            align-items: flex-start;
        }

        /* Main image - Desktop */
        .teklly-slider:not(.teklly-slider--thumbnails-bottom) .teklly-slider__main-image {
            flex: 1;
            margin-bottom: 0;
            max-width: calc(100% - 120px);
        }

        /* Thumbnails - Desktop */
        .teklly-slider:not(.teklly-slider--thumbnails-bottom) .teklly-slider__thumbnails {
            flex: 0 0 96px;
            width: 96px;
            order: -1;
        }

        .teklly-slider:not(.teklly-slider--thumbnails-bottom) .teklly-slider__thumbnails-container {
            flex-direction: column;
            overflow-x: visible;
            overflow-y: auto;
            max-height: 456px;
            gap: 12px;
            padding: 4px;
        }

        .teklly-slider:not(.teklly-slider--thumbnails-bottom) .teklly-slider__thumbnail {
            flex: 0 0 auto;
            width: 100%;
            aspect-ratio: 1 / 1;
        }

        /* Navigation arrows - Desktop */
        .teklly-slider:not(.teklly-slider--thumbnails-bottom) .teklly-slider__arrow {
            width: 48px;
            height: 48px;
        }

        .teklly-slider:not(.teklly-slider--thumbnails-bottom) .teklly-slider__arrow--prev {
            left: 16px;
        }

        .teklly-slider:not(.teklly-slider--thumbnails-bottom) .teklly-slider__arrow--next {
            right: 16px;
        }

        .teklly-slider:not(.teklly-slider--thumbnails-bottom) .teklly-slider__arrow svg {
            width: 22px;
            height: 22px;
        }
    }

    /* Large desktop */
    @media (min-width: 1200px) {
        .teklly-slider:not(.teklly-slider--thumbnails-bottom) .teklly-slider__thumbnails {
            flex: 0 0 120px;
            width: 120px;
        }

        .teklly-slider:not(.teklly-slider--thumbnails-bottom) .teklly-slider__main-image {
            max-width: calc(100% - 144px);
        }
    }

    /************************* lightbox *************************/
    /* Lightbox */
.teklly-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.teklly-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.teklly-lightbox__content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.teklly-lightbox__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.teklly-lightbox__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
}

/* Lightbox navigation */
.teklly-lightbox__prev,
.teklly-lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 60px;
    font-weight: 300;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.teklly-lightbox__prev:hover,
.teklly-lightbox__next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.teklly-lightbox__prev {
    left: -80px;
}

.teklly-lightbox__next {
    right: -80px;
}

/* Counter */
.teklly-lightbox__counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 15px;
    border-radius: 20px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .teklly-lightbox__prev {
        left: 10px;
        width: 50px;
        height: 50px;
        font-size: 40px;
    }
    
    .teklly-lightbox__next {
        right: 10px;
        width: 50px;
        height: 50px;
        font-size: 40px;
    }
    
    .teklly-lightbox__close {
        top: 10px;
        right: 10px;
    }
    
    .teklly-lightbox__counter {
        bottom: 10px;
    }
}