.slider {
            max-width: 1200px;
            width: 100%;
            margin: 100px auto 40px;
        }

        .swiper {
            width: 100%;
            height: 400px;
            overflow: hidden; /* 🔥 Скрываем всё, что выходит за границы */
            position: relative;
        }

        .swiper-wrapper {
            display: flex;
        }

        .swiper-slide {
            width: 100%; /* ❌ БЫЛО 110% — исправлено */
            height: 100%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide-inner {
            width: 100%;
            height: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        /* Цвет стрелок */
        .swiper-button-next,
        .swiper-button-prev {
            color: #ffffff;
        }

        /* Пагинация внизу */
        .swiper-pagination {
            bottom: 20px;
        }

        .swiper-pagination-bullet {
            background-color: #000000 !important;
        }

        .swiper-pagination-bullet-active {
            background-color: #ffffff !important;
        }
