/* ---------- Carousel Container ---------- */
.arcc-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* ---------- Track Wrapper (viewport) ---------- */
.arcc-track-wrapper {
    overflow: hidden;
    width: 100%;
}

/* ---------- Track (flex container) ---------- */
.arcc-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

/* ---------- Slide Wrapper ---------- */
.arcc-slide-wrapper {
    flex: 0 0 auto; /* only controls movement */
    box-sizing: border-box;
}

/* Keep inner Loop Item untouched */
.arcc-slide-wrapper > * {
    width: auto !important;
}

/* ---------- Carousel Arrows ---------- */
.arcc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 50%;
    transition: background 0.2s ease;
}

 .e-loop-item {
     width: 316.667px !important;
    margin-right: 20px !important;
 }

.arcc-arrow.prev { left: 10px; }
.arcc-arrow.next { right: 10px; }
