/* ══════════════════════════════════════
       CAROUSEL CONTROLS
       ══════════════════════════════════════ */
.slider-wrap {
    position: relative;
    padding: 0 44px;
}

/* ── Owl Carousel nav buttons (used by all sections) ── */
.slider-wrap .owl-carousel .owl-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    margin: 0;
}

.slider-wrap .owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 5px !important;
    background: var(--bs-secondary-500) !important;
    color: #fff !important;
    border: none;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    pointer-events: auto;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .25);
    transition: background .15s;
    margin: 0;
    line-height: 1;
}

.slider-wrap .owl-carousel .owl-nav button:hover {
    background: var(--bs-secondary-700) !important;
}

.slider-wrap .owl-carousel .owl-nav button.disabled {
    opacity: 0.35;
    cursor: default;
}

.slider-wrap .owl-carousel .owl-nav .owl-prev {
    left: -44px;
}

.slider-wrap .owl-carousel .owl-nav .owl-next {
    right: -44px;
}

/* Owl dots */
.slider-wrap .owl-carousel .owl-dots {
    margin-top: 16px;
    text-align: center;
}

.slider-wrap .owl-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bs-gray-500) !important;
    margin: 0 4px;
    transition: background .2s;
}

.slider-wrap .owl-carousel .owl-dot.active span {
    background: var(--bs-secondary-500) !important;
}

/* Legacy dot-row (keep for any remaining Bootstrap carousel) */
.dot-row {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bs-gray-500);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
}

.dot.on {
    background: var(--bs-secondary-500);
}

/* ── Responsive ── */
/* On tablet: slightly smaller nav area */
@media (max-width: 991.98px) {
    .slider-wrap {
        padding: 0 36px;
    }
    .slider-wrap .owl-carousel .owl-nav .owl-prev {
        left: -36px;
    }
    .slider-wrap .owl-carousel .owl-nav .owl-next {
        right: -36px;
    }
    .slider-wrap .owl-carousel .owl-nav button {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}

/* On mobile: hide side nav arrows, reduce padding so dots still show */
@media (max-width: 767.98px) {
    .slider-wrap {
        padding: 0;
    }
    .slider-wrap .owl-carousel .owl-nav {
        display: none;
    }
    .slider-wrap .owl-carousel .owl-dots {
        margin-top: 12px;
    }
}