.ecoland-swiper {
    padding: 0px;
}

.swiper-slide {
    width: auto;
}

.ecoland-watch-card {
    text-align: center;
}

.ecoland-video-wrapper {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.ecoland-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ecoland-shop-btn {
    display: inline-block;
    margin-top: 12px;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}


.ecoland-watch-card h3 {
    font-size: 1rem ;
    letter-spacing: 1px ;
    font-weight: 900 ;
    text-transform : uppercase ;
}

.ecoland-shop-btn {

    background: #338156 ;
    font-size: 0.95rem ;

}


.ecoland-shop-btn:hover {
    background: #f3a900;
}


.ecoland-video-wrapper {
    position: relative;
}

.ecoland-play-btn,
.ecoland-sound-btn {
    position: absolute;
    width: 55px;
    height: 55px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: 0.3s ease;
}

.ecoland-play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ecoland-sound-btn {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
}

.ecoland-play-btn:hover,
.ecoland-sound-btn:hover {
    background: #0d502b;
}


/* =========================
   LUCIDE NAVIGATION STYLE
========================= */

.ecoland-slider-nav {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 20px;
}

.ecoland-prev,
.ecoland-next {
    width: 48px;
    height: 48px;
    background: #ff7a00;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.ecoland-prev:hover,
.ecoland-next:hover {
    background: #e56700;
}

.ecoland-prev i,
.ecoland-next i {
    color: #fff;
    width: 20px;
    height: 20px;
}