/* Swiper налаштування */
.reelsSwiper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 280px; /* Ширина одного відео (як телефон) */
    height: 500px; /* Висота відео */

    /* Ефект для неактивних слайдів */
    transition: all 0.3s ease;
    transform: scale(0.85); /* Трохи зменшені */
    opacity: 0.6; /* Напівпрозорі */
    filter: blur(1px); /* Легке розмиття */
}

/* Ефект для АКТИВНОГО (центрального) слайду */
.swiper-slide-active {
    transform: scale(1); /* Повний розмір */
    opacity: 1;
    filter: blur(0);
    z-index: 10;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2); /* Гарна тінь */
    border-radius: 20px; /* Заокруглення */
}

/* Контейнер відео */
.reel-container {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #000;
}

/* Саме відео */
.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Щоб заповнило весь блок без смуг */
}

/* Іконка інсти */
.reel-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* Контейнер для кнопок внизу справа */
.swiper-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 20; /* Щоб були поверх слайдів */
    display: flex;
    gap: 15px; /* Відстань між стрілочками */
}

/* Самі кнопки */
.custom-prev,
.custom-next {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Легка тінь */
    transition: all 0.3s ease;
    color: #333;
}

/* Ефект при наведенні */
.custom-prev:hover,
.custom-next:hover {
    background-color: #0d6efd; /* Синій колір (Bootstrap primary) */
    color: white;
    transform: scale(1.1); /* Легке збільшення */
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

/* Збільшимо іконки */
.custom-prev i,
.custom-next i {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Адаптив: на мобільних можна сховати стрілки, бо там зручніше свайпати */
@media (max-width: 768px) {
    .swiper-controls {
        display: none;
    }
}


/************* *****************************/
