#bannerIndex {
    overflow: hidden;
    position: relative;
    width: 96%;
    max-width: 1450px;
    margin: auto;
    margin-bottom: 25px;
    transition: 0.5s ease;
}

#bannerIndex.bannerIndexMob {
    display: flex;
    /* justify-content: center; */
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    scroll-snap-type: x mandatory;
    overflow-x: scroll;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    border-radius: 0px;
}

.slider-track.slider-track-mob {
    width: 390px;
}

.slider-track.dragging {
    cursor: grabbing;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slider-track img {
    width: 100%;
    height: 250px; 
    flex: 0 0 100%;
    object-fit: cover;
    scroll-snap-align: start;
    pointer-events: none;
    user-select: none;
    user-drag: none;
    -webkit-user-drag: none;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 8px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #bbb;
    transition: background-color 0.3s;
}

.slider-dots .dot.active {
    background-color: #333;
}

.slider-dots .dot:hover { cursor: pointer; }

#bannerIndex img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.arrow:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 5;
    border-radius: 50%;
    transition: background-color 0.3s;
    display: none;
    width: 50;
}

.arrow:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.arrow.left {
    left: 10px;
}

.arrow.right {
    right: 10px;
}

.banner-overlay {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    bottom: 0;
    width: 100%;
    background: rgba(000, 000, 000, 0.3);
}

#bannerText {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 5px #000;
    padding: 10px;
    text-align: center;
    z-index: 1;
}

.slide-item {
    flex: 0 0 100%; /* cada slide ocupa el 100% del contenedor */
    position: relative;
    scroll-snap-align: start;
}

.slide-item.slideMob {
    height: max-content;
}

.slide-item img {
    width: 100%;
    height: auto;
    display: block;
}

.carrousel {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    cursor: grab;
    scroll-behavior: smooth;
    padding: 0 16px; 
    box-sizing: border-box;
    scroll-padding-left: 16px;
    scroll-padding-right: 16px;
    margin-bottom: 7px;
}

a.carruselbtn {
    text-decoration: none;
}

.carrousellink {
    text-decoration: none;
    margin-bottom: 7px;
}

.buyBtn.carrusel {
    margin-bottom: 0;
    width: fit-content;
    margin: auto;
}

.carrousel ul {
    display: flex;
    margin-bottom: 23px;
}

.carrousel:active {
    cursor: grabbing;
}

.carrousel li {
    position: relative;
    list-style: none;
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: #ddd;
    border-radius: 7px;
    margin: 0 10px;
    padding: 10px 0;
    width: 175px;
    box-sizing: border-box;
    text-align: center;
    user-select: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 7px 23px -10px #256993CC;
    align-items: center;
    overflow: auto;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(.22,1,.36,1);
}

.carrousel li.show {
    opacity: 1;
    transform: translateY(0);
}

.carrousel li:last-child {
    background: unset;
    width: 150;
    box-shadow: unset;
}


.carrousel li .carruselimg {
    position: relative;
}

.carrousel li img {
    width: 70%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    pointer-events: none;
    user-drag: none;
    user-select: none;
    aspect-ratio: 1 / 1;
}

.carrousel li .bookmark {
    position: absolute;
    bottom: 4px;
    right: 1px;
    width: 40px;
}

.carrousel li .like {
    position: absolute;
    bottom: 5px;
    left: 4px;
    width: 35px;
}

.carrousel p {
    margin: 8px 10px 0 10px;
    font-weight: 500;
    font-size: 14px;
}

.carrousel li.showcaselogos {
    background: unset;
    width: 130px;
    margin: 0;
    box-shadow: unset;
}

.carrousel li img.showcaselogos {
    aspect-ratio: 1 / 1;
    border-radius: 100px;
    width: 80%;
    object-fit: cover;
}

.carruselMenuOpts {
    width: 26px;
    right: 31px;
    bottom: 6px;
    padding: 7 4;
    position: absolute;
    border-radius: var(--btnBorderRadius);
    z-index: 4;
    background: rgba(255, 255, 255, 0.7);
}

.carruselCantimg {
    position: absolute;
    left: 30px;
    top: 5px;
    right: unset;
    padding: 5px 2px;
    border-radius: var(--btnBorderRadius);
    z-index: 4;
    background: rgba(255, 255, 255, 0.7);
    width: 28px;
}

.carrousel li .carruselCantimg img {
    border-radius: 0;
}

.bottomContainer {    
    position: relative;
    width: 100%;
}

@media only screen and (min-width: 770px) {

    #bannerIndex {
        width: 580px;
    }

    #bannerIndex img {
        height: 250px;
    }

    .carrousel {
        width: 550px;
        display: block;
        margin: auto;
        margin-bottom: 10px;
        overflow-x: hidden;
        scroll-padding-left: 13px;
    }

    .carrousel li .like {
        left: 9px;
        width: 32px;
    }

    .carrousel li .bookmark {
        right: 6px;
        width: 38px;
    }

    .carrousel.mycarrousels {
        width: 500px;
    }

    .carrousel ul {
        width: 700px;
        padding: 0;
    }

    .carrousel.prodCatalog {
        width: 500px;
        margin: 0 25px;
    }

    .carrousel.prodCatalog ul {
        width: 500px;
    }

    .arrow { display: block; }

}