/* ============================================
   Elementor Image Slider Widget — Styles
   ============================================ */

.eis-slider-wrapper {
    position: relative;
    background-color: #0d4023;
    padding: 40px;
    border-radius: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.eis-swiper {
    width: 100%;
    overflow: hidden;
}

.eis-slide {
    height: auto;
    display: flex;
}

.eis-slide-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

.eis-slide-image {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 12px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.eis-slide-link:hover .eis-slide-image {
    transform: scale(1.02);
}

/* ===== Navigation buttons ===== */
.eis-nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.eis-nav-btn {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #1ea659;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.eis-nav-btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(30, 166, 89, 0.4);
}

.eis-nav-prev {
    background-color: #1ea659;
}

.eis-nav-prev svg {
    stroke: #ffffff;
    width: 20px;
    height: 20px;
}

.eis-nav-next {
    background-color: transparent;
}

.eis-nav-next svg {
    stroke: #1ea659;
    width: 20px;
    height: 20px;
}

.eis-nav-btn:hover {
    background-color: #17853f;
    transform: translateY(-2px);
}

.eis-nav-btn:hover svg {
    stroke: #ffffff;
}

.eis-nav-btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .eis-slider-wrapper {
        padding: 30px 20px;
    }
    .eis-slide-image {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .eis-slider-wrapper {
        padding: 24px 16px;
    }
    .eis-slide-image {
        height: 200px;
    }
    .eis-nav-btn {
        width: 44px;
        height: 44px;
    }
    .eis-nav-btn svg {
        width: 18px;
        height: 18px;
    }
}
