/* Estilos básicos para el carrusel */
.ecc-container {
    position: relative;
    width: 100%;
}

.ecc-container .swiper {
    padding: 10px 0;
}

.ecc-container .swiper-slide {
    box-sizing: border-box;
    padding: 10px;
    min-height: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecc-container .ecc-fallback {
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
}

/* Personalización básica de flechas */
.ecc-container .swiper-button-prev,
.ecc-container .swiper-button-next {
    color: #2c3e50;
}

/* Pagination bullets */
.ecc-container .swiper-pagination-bullet {
    background: #2c3e50;
    opacity: 0.8;
}

/* Ajustes responsivos si hace falta */
@media (max-width: 768px) {
    .ecc-container .swiper-slide {
        padding: 6px;
    }
}
