/* =============================================
   Vertical Scroll Carousel
   ============================================= */

/* Le container scroll */
.vertical-scroll-carousel {
    height: 100vh !important;
    overflow-y: scroll !important;
    scroll-snap-type: y mandatory !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.vertical-scroll-carousel::-webkit-scrollbar {
    display: none;
}

/* Elementor inner */
.vertical-scroll-carousel > .e-con-inner {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    padding: 0 !important;
    gap: 0 !important;
}

/* Piste */
.vsc-track {
    display: flex;
    flex-direction: column;
}

/* Chaque slide */
.vsc-track > .e-con,
.vsc-track > section {
    height: 100vh !important;
    min-height: 100vh !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: normal !important;
    overflow: hidden !important;
    box-sizing: border-box;
}

.vsc-track > .e-con > .e-con-inner {
    height: 100% !important;
}

/* ---- Dots ---- */
.vsc-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: none;
    flex-direction: column;
    gap: 10px;
}

.vsc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 1.5px solid rgba(255,255,255,0.8);
    cursor: pointer;
    padding: 0;
    outline: none;
    display: block;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
    transition: background 0.3s, transform 0.3s;
}

.vsc-dot:hover      { background: rgba(255,255,255,0.75); transform: scale(1.2); }
.vsc-dot.vsc-active { background: #fff; transform: scale(1.35); }

/* ---- Mobile ≤ 767px : flow normal ---- */
@media (max-width: 767px) {
    .vertical-scroll-carousel {
        height: auto !important;
        overflow-y: visible !important;
        scroll-snap-type: none !important;
    }

    .vsc-track > .e-con,
    .vsc-track > section {
        height: auto !important;
        min-height: auto !important;
        scroll-snap-align: none !important;
    }

    .vsc-track > .e-con > .e-con-inner {
        height: auto !important;
    }

    .vsc-nav { display: none !important; }
}
