.lbs-slider {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
    background: #000;
    border-radius: 14px;
}

/* TRACK */
.lbs-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

/* SLIDE */
.lbs-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

/* IMAGE */
.lbs-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.85);
}

/* OVERLAY */
.lbs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.25), rgba(0,0,0,0.05));
}

/* ===== ARROWS ===== */
.lbs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 5;
    transition: 0.3s;
}

.lbs-arrow:hover {
    background: rgba(0,0,0,0.9);
}

.lbs-prev {
    left: 20px;
}

.lbs-next {
    right: 20px;
}

/* ===== DOTS ===== */
.lbs-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    z-index: 5;
}

.lbs-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.lbs-dot.active {
    background: #fff;
    transform: scale(1.3);
}
