/* Slider Lite Frontend Styles */

.slider-lite-section {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.slider-lite-item {
    position: relative;
}

.slider-lite-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.slider-lite-item picture {
    display: block;
    width: 100%;
}

.slider-lite-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Owl Carousel Slider Styles */
.owl-slider-lite .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.owl-slider-lite .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.owl-slider-lite .owl-dot.active,
.owl-slider-lite .owl-dot:hover {
    background: #fff;
}

.owl-slider-lite .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
    box-sizing: border-box;
}

.owl-slider-lite .owl-nav button {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 50%;
    font-size: 24px;
    color: #333;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.owl-slider-lite .owl-nav button:hover {
    background: #fff !important;
}

.owl-slider-lite .owl-nav.disabled {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .owl-slider-lite .owl-dots {
        bottom: 10px;
    }

    .owl-slider-lite .owl-dot {
        width: 10px;
        height: 10px;
    }

    .owl-slider-lite .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .owl-slider-lite .owl-nav {
        padding: 0 10px;
    }
}
