.slider-container {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
    user-select: none;
    touch-action: pan-y;
}

.slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
}

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

/* Для лучшего UX на мобильных устройствах */
@media (max-width: 768px) {
    .slider-container {
        width: 100%;
        height: 220px;
    }
    .slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
    width: 100%;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
}
}

.counter {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1px 15px;
    border-radius: 20px;
    font-size: 12px;
    backdrop-filter: blur(3px);
}

.counter span {
    padding: 0 3px;
}

.controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.control-btn {
    background: #fff;
    color: #313131;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.control-btn:hover {
 	background: #313131;
    color: #fff;
}

.plus-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    color: #313131;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    transition: background 0.3s;
}

.plus-icon:hover {
    background: #313131;
    color: #fff;
}

.slider-container i {
    font-weight: 400;
}
.slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}