/* === Saskia Slider === */
.saskia-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    -webkit-user-select: none;
    user-select: none;
}
.saskia-slider-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
    align-items: stretch;
}
.saskia-slider-track.is-dragging {
    transition: none;
}
.saskia-slide {
    flex: 0 0 auto;
    box-sizing: border-box;
    padding: 0 8px;
}
.saskia-slide a {
    display: block;
    height: 100%;
}
.saskia-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
.saskia-lightbox-trigger {
    cursor: zoom-in;
}
.saskia-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, box-shadow 0.2s;
    color: #333;
    padding: 0;
}
.saskia-slider-arrow:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.saskia-slider-prev { left: 12px; }
.saskia-slider-next { right: 12px; }

/* === Lightbox === */
.saskia-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    align-items: center;
    justify-content: center;
}
.saskia-lightbox.is-open {
    display: flex;
}
.saskia-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}
.saskia-lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.saskia-lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.saskia-lightbox-caption {
    color: #fff;
    font-size: 14px;
    margin-top: 12px;
    text-align: center;
    max-width: 600px;
}
.saskia-lightbox-close {
    position: absolute;
    top: -40px;
    right: -10px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    z-index: 2;
    transition: opacity 0.2s;
}
.saskia-lightbox-close:hover {
    opacity: 0.7;
}
.saskia-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}
.saskia-lightbox-arrow:hover {
    background: rgba(255,255,255,0.3);
}
.saskia-lightbox-prev { left: -60px; }
.saskia-lightbox-next { right: -60px; }

@media (max-width: 768px) {
    .saskia-lightbox-prev { left: 10px; }
    .saskia-lightbox-next { right: 10px; }
    .saskia-lightbox-close {
        top: -36px;
        right: 0;
    }
}
