.featured-slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.featured-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.featured-slide {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    box-sizing: border-box;
}

.item-img {
    position: relative;
    overflow: hidden;
}

.item-img img {
    transition: transform 0.5s ease;
}

.item-img:hover img {
    transform: scale(1.1);
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.slider-arrow {
    background-color: #c19b76;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.slider-arrow:hover {
    background-color: #a17d5c;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: #c19b76;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .featured-slide {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .featured-slide {
        flex: 0 0 calc(100% - 20px);
    }
}