.vf-slider-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #000;
}

.vf-slides {
    width: 100%;
    height: 100%;
}

.vf-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vf-slide.active {
    opacity: 1;
}

.vf-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vf-prev, .vf-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vf-prev { left: 20px; }
.vf-next { right: 20px; }

.vf-prev:hover, .vf-next:hover {
    background: rgba(0,0,0,0.8);
}
