@media (min-width: 992px) {
    .navbar-nav > .nav-item > .nav-link {
        position: relative;
    }

    .navbar-nav > .nav-item + .nav-item > .nav-link:before {
        content: "";
        display: block;
        position: absolute;
        width: 3px;
        height: 3px;
        top: 50%;
        left: -2px;
        background: rgba(0, 0, 0, 0.25);
        border-radius: 50%;
    }
}

.filter:not(.basic-filter) ul li a.active,
.filter:not(.basic-filter) ul li a:hover,
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #fab758 !important;
}

.navbar-stick:not(.navbar-dark) {
    box-shadow: 0 0 1.25rem rgba(30, 34, 40, .06) !important;
    background: rgba(255, 255, 255, .97) !important;
}

.lang-switcher {
    position: fixed;
    bottom: 10px;
    left: 20px;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 6px;
    padding: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 999;
}

.flags {
    display: flex;
    gap: 6px;
}

.flag {
    display: inline-block;
    width: 30px;
    height: 20px;
    background-size: cover;
    border-radius: 2px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: transform 0.2s;
}

.flag:hover {
    transform: scale(1.1);
    border-color: #aaa;
}

/* Bandiere specifiche */
.flag.en { background-image: url('https://flagcdn.com/us.svg'); }
.flag.fr { background-image: url('https://flagcdn.com/fr.svg'); }
.flag.de { background-image: url('https://flagcdn.com/de.svg'); }
.flag.es { background-image: url('https://flagcdn.com/es.svg'); }


