/* Baron Group — navbar link hover & active page underline (TR / EN / IL) */

.bs-headwidget .navbar-wp .navbar-nav > li > a.nav-link {
    position: relative;
    transition: color 0.25s ease;
}

.bs-headwidget .navbar-wp .navbar-nav > li > a.nav-link:hover,
.bs-headwidget .navbar-wp .navbar-nav > li > a.nav-link:focus {
    color: #d1670f !important;
    background: transparent !important;
}

.bs-headwidget .navbar-wp .navbar-nav > li.active > a.nav-link {
    color: #d1670f !important;
    background: transparent !important;
    padding-bottom: 8px;
}

.bs-headwidget .navbar-wp .navbar-nav > li.active > a.nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #d1670f 0%, #e07f1f 55%, #f0993a 100%);
    box-shadow: 0 2px 8px rgba(209, 103, 15, 0.28);
}

.bs-headwidget .navbar-wp .navbar-nav > li.active > a.nav-link::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    border-radius: 50%;
    background: #d1670f;
    box-shadow: 0 0 0 3px rgba(209, 103, 15, 0.15);
}

@media (max-width: 991.98px) {
    .bs-headwidget .navbar-wp .navbar-nav > li > a.nav-link:hover,
    .bs-headwidget .navbar-wp .navbar-nav > li > a.nav-link:focus,
    .bs-headwidget .navbar-wp .navbar-nav > li.active > a.nav-link {
        color: #f5a623 !important;
        background-color: #011e44 !important;
    }

    .bs-headwidget .navbar-wp .navbar-nav > li.active > a.nav-link::after {
        left: 16px;
        right: auto;
        width: 36px;
        bottom: 6px;
    }

    .bs-headwidget .navbar-wp .navbar-nav > li.active > a.nav-link::before {
        display: none;
    }
}
