.shop-carousel .shop-carousel-card .mobile-image {
    display: block;
    width: 100%;
}

.shop-carousel .shop-carousel-card .desktop-image {
    display: none;
    width: 100%;
}

@media only screen and (min-width: 768px) {
    .shop-carousel .shop-carousel-card .mobile-image {
        display: none;
    }
    
    .shop-carousel .shop-carousel-card .desktop-image {
        display: block;
    }
}

/* ESTILOS FLECHAS */

.shop-carousel {
    display: none;
    position: relative;
}

.slick-prev, 
.slick-next {
    position: absolute;
    top: 50%; 
    transform: translateY(-50%);
    z-index: 10;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    background-color: transparent;
}

.slick-prev:active, 
.slick-next:active {
    transform: translateY(-50%) !important;
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

/* INICIALIZACIÓN DE ESTILOS */

.shop-carousel.slick-initialized{
    display: block;
}



