/* ECS – Cinematic Slider v6.0 */

.elementor-widget-ecs_cinematic_slider,
.elementor-widget-ecs_cinematic_slider .elementor-widget-container {
    width: 100%;
    max-width: 100%;
    padding: 0 !important;
    margin: 0 !important;
}

.ecs-slider-wrap {
    width: 100%;
    background-color: #f5efe6;
    padding: 40px 0;
    box-sizing: border-box;
    overflow: hidden;
}

/* Stage: contiene las 3 imágenes posicionadas absolutamente */
.ecs-stage {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ecs-slot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}

.ecs-slot-center {
    cursor: grab;
    z-index: 2;
}

.ecs-slot-center:active {
    cursor: grabbing;
}

.ecs-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    pointer-events: none;
    user-select: none;
}

/* Flechas */
.ecs-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.ecs-arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #3a5a3a;
    transition: color 0.2s, background-color 0.2s, opacity 0.2s, transform 0.15s;
    line-height: 1;
}

.ecs-arrow svg {
    width: 22px;
    height: 22px;
    display: block;
}

.ecs-arrow:hover       { opacity: 0.55; transform: scale(1.1); }
.ecs-arrow:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
