.ecoland-dot-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* TRACK */
.ecoland-dot-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 10px;
}

/* SLIDE */
.ecoland-dot-slide {
    flex-shrink: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
}

.ecoland-dot-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* MOBILE → 2 IMAGES */
@media (max-width: 767px) {
    .ecoland-dot-slide {
        width: 50%;
    }
}

/* DESKTOP → 3 IMAGES */
@media (min-width: 768px) {
    .ecoland-dot-slide {
        width: 33.333%;
    }
}

/* DOTS */
.ecoland-dot-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.ecoland-dot-nav button {
    width: 2px;
    height: 5px;
    border: none;
    background: #cfcfcf;
    cursor: pointer;
}

.ecoland-dot-nav button.active {
    background: #093d21;
}
