.slider-container {
    margin-top: 10px;
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide.fade {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.slide:hover img {
    transform: scale(1.01);
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: background 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-button:hover {
    background: rgba(0, 0, 0, 0.7);
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}

.slider-icon {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

@media (max-width: 1024px) {
    .slider-container {
        height: 200px;
    }
    .slider-button {
        width: 32px;
        height: 32px;
    }
    .slider-icon {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 150px;
    }
    .slider-button {
        width: 28px;
        height: 28px;
    }
    .slider-icon {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 400px) {
    .slider-container {
        height: 120px;
    }
    .slider-button {
        width: 24px;
        height: 24px;
    }
    .slider-icon {
        width: 10px;
        height: 10px;
    }
}
