/* =========================================
   Banner Slider – Frontend Styles
   ========================================= */
.bslider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.bslider-track {
    display: flex;
    width: 100%;
    transition: none;
}

.bslider-slide {
    min-width: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.bslider-slide.is-active {
    display: block;
    opacity: 1;
}

/* ---- Nav Arrows ---- */
.bslider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    padding: 0 16px;
    box-sizing: border-box;
}

.bslider-prev,
.bslider-next {
    pointer-events: all;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.bslider-prev:hover,
.bslider-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* ---- Dots ---- */
.bslider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.bslider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.bslider-dot.is-active {
    background: #fff;
    transform: scale(1.3);
}

/* ---- Video fill ---- */
.main__banner {
    position: relative;
    overflow: hidden;
}

.banner__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.main__banner .container {
    position: relative;
    z-index: 1;
}
