

.carousel-sine {
    position: relative;
    width: 100%;
    overflow: visible;
    padding: 20px 0;
    touch-action: pan-y pinch-zoom;
}

.carousel-sine__container {
    overflow: visible;
    width: 100%;
    position: relative;
}

.carousel-sine__track {
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    will-change: transform;
    gap: 0;
}

/* Каждый слайд */
.carousel-sine__slide {
    flex-shrink: 0;
    flex-grow: 0;
    width: 50%;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

/* Контейнер для изображения - БЕЗ РАМКИ И ФОНА */
.carousel-sine__img-wrapper {
    width: 100%;
    padding: 0;
    background: transparent;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    overflow: hidden;
}

/* Центральный слайд — самый крупный */
.carousel-sine__slide--center .carousel-sine__img-wrapper {
    transform: scale(1.15);
    z-index: 10;
}

/* Боковые слайды (уменьшенные) */
.carousel-sine__slide--side .carousel-sine__img-wrapper {
    transform: scale(0.9);
    opacity: 0.85;
}

/* Самый крайний (ещё меньше) */
.carousel-sine__slide--far .carousel-sine__img-wrapper {
    transform: scale(0.7);
    opacity: 0.5;
}

/* Изображение внутри слайда */
.carousel-sine__img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    display: block;
    border-radius: 16px;
    margin: 0 auto;
    background: transparent;
}

/* Для центрального слайда изображение чуть крупнее */
.carousel-sine__slide--center .carousel-sine__img {
    max-height: 340px;
}

/* Индикаторы (точки) */
.carousel-sine__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    padding-bottom: 1px;
}

.carousel-sine__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    padding: 0;
}

.carousel-sine__dot--active {
    width: 24px;
    border-radius: 4px;
    background-color: #78acb3;
}

/* Адаптивность */
@media (max-width: 992px) {
    .carousel-sine__slide {
        width: 55%;
    }
    .carousel-sine__img {
        max-height: 280px;
    }
    .carousel-sine__slide--center .carousel-sine__img {
        max-height: 310px;
    }
    .carousel-sine__slide--center .carousel-sine__img-wrapper {
        transform: scale(1.1);
    }
    .carousel-sine__slide--side .carousel-sine__img-wrapper {
        transform: scale(0.85);
    }
    .carousel-sine__slide--far .carousel-sine__img-wrapper {
        transform: scale(0.65);
    }
}

@media (max-width: 768px) {
    .carousel-sine__slide {
        width: 60%;
    }
    .carousel-sine__slide--center .carousel-sine__img-wrapper {
        transform: scale(1.05);
    }
    .carousel-sine__slide--side .carousel-sine__img-wrapper {
        transform: scale(0.8);
    }
    .carousel-sine__slide--far .carousel-sine__img-wrapper {
        transform: scale(0.55);
    }
    .carousel-sine__img {
        max-height: 220px;
    }
    .carousel-sine__slide--center .carousel-sine__img {
        max-height: 250px;
    }
}

@media (max-width: 576px) {
    .carousel-sine__slide {
        width: 70%;
    }
    .carousel-sine__slide--center .carousel-sine__img-wrapper {
        transform: scale(1);
    }
    .carousel-sine__slide--side .carousel-sine__img-wrapper {
        transform: scale(0.75);
    }
    .carousel-sine__slide--far .carousel-sine__img-wrapper {
        transform: scale(0.5);
    }
    .carousel-sine__img {
        max-height: 180px;
    }
    .carousel-sine__slide--center .carousel-sine__img {
        max-height: 200px;
    }
    .carousel-sine__dots {
        gap: 6px;
        margin-top: 15px;
    }
    .carousel-sine__dot {
        width: 6px;
        height: 6px;
    }
    .carousel-sine__dot--active {
        width: 18px;
    }
}

@media (max-width: 480px) {
    .carousel-sine__slide {
        width: 80%;
    }
    .carousel-sine__slide--center .carousel-sine__img-wrapper {
        transform: scale(0.98);
    }
    .carousel-sine__slide--side .carousel-sine__img-wrapper {
        transform: scale(0.7);
    }
    .carousel-sine__slide--far .carousel-sine__img-wrapper {
        transform: scale(0.45);
    }
    .carousel-sine__img {
        max-height: 150px;
    }
    .carousel-sine__slide--center .carousel-sine__img {
        max-height: 170px;
    }
}