.slideshow-nav-container-cacd931a {
    position: relative;
    width: 100%;
    height: 600px; /* Default height, can be overridden */
    overflow: hidden;
    background: #000;
}
.sn-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.sn-slide-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}
.sn-slide-item.active {
    opacity: 1;
    z-index: 2;
}
.sn-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sn-navigation {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.sn-arrow-container {
    position: absolute;
    left: -35px;
    top: 0;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}
.sn-arrow svg {
    fill: #3d2d7d; /* Default color, can be overridden by Elementor controls */
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 3px rgba(255,255,255,0.8));
}

.sn-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #333;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.slidenav-hover-yes .sn-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.sn-btn.active {
    border-color: #fff;
    box-shadow: 0 0 10px #fff;
    transform: scale(1.1);
}