/* Dodaj te style do twojego CSS */
.featured-listings-section {
    overflow: hidden;
}

.featured-listings-slider {
    position: relative;
    overflow: hidden;
}

.featured-listings-track {
    display: flex;
    width: 100%;
}

.featured-listing-card {
    transition: all 0.3s ease-in-out;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
}

.slider-control.prev {
    left: 10px;
}

.slider-control.next {
    right: 10px;
}

.slider-control:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}