.ink-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ink-slideshow-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Only show pointer cursor when lightbox is enabled */
.ink-slideshow[data-enable-lightbox="true"] .ink-slideshow-slide {
    cursor: pointer;
}

/* Navigation Dots */
.ink-slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.ink-slideshow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid currentColor;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ink-slideshow-dot.active {
    background-color: currentColor;
}

/* Navigation Arrows */
.ink-slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
    padding: 0;
}

.ink-slideshow-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ink-slideshow-prev {
    left: 20px;
}

.ink-slideshow-next {
    right: 20px;
}

.ink-slideshow-arrow svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Touch Drag */
.ink-slideshow.touch-enabled {
    cursor: grab;
}

.ink-slideshow.touch-enabled:active {
    cursor: grabbing;
}

/* Lightbox */
.ink-slideshow-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.ink-slideshow-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.ink-slideshow-lightbox img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.ink-slideshow-lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.ink-slideshow-lightbox-nav {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 0;
    color: white;
}

.ink-slideshow-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ink-slideshow-lightbox-nav svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
