/**
 * Swipe Gallery Styles
 */

.sse-gallery-wrapper {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
}

.sse-gallery-track {
    display: flex;
    transition: transform 0.3s ease;
}

.sse-gallery-slide {
    flex: 0 0 100%;
    width: 100%;
}

.sse-gallery-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Dots */
.sse-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.sse-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sse-gallery-dot.active {
    background: #111;
    transform: scale(1.2);
}

/* Arrows (optional) */
.sse-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 10;
}

.sse-gallery-wrapper:hover .sse-gallery-arrow {
    opacity: 1;
}

.sse-gallery-arrow.prev {
    left: 10px;
}

.sse-gallery-arrow.next {
    right: 10px;
}

/* Mobile hide arrows */
@media screen and (max-width: 768px) {
    .sse-gallery-arrow {
        display: none;
    }
}