/* ================================================
   ALHIDAYA — Styles Navbar
   ================================================ */

#alhidaya-navbar {
    background: var(--blue-dark);
    border-bottom: 2px solid var(--teal);
    padding: 8px 0;
}

#alhidaya-navbar .nav-link {
    color: #b0c4d4;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}

#alhidaya-navbar .nav-link:hover,
#alhidaya-navbar .nav-link.active {
    color: white;
    border-bottom-color: var(--teal);
}

/* .logo-img {
    filter: none;
    transition: opacity 0.2s;
}

.logo-img:hover {
    opacity: 0.85;
} */

/* .logo-img {
    filter: none;
    background: white;
    border-radius: 10px;
    padding: 5px 8px;
    transition: opacity 0.2s;
    height: 46px;
} */

/* .logo-img {
    filter: none;
    background: transparent !important;
    border-radius: 0;
    padding: 0;
    height: 100px;
    transition: opacity 0.2s;
}

.logo-img:hover {
    opacity: 0.85;
} */

.logo-img {
    filter: none;
    background: transparent !important;
    border-radius: 0;
    padding: 0;
    height: 50px;
    transform: scale(2.4);
    transform-origin: left center;
    transition: opacity 0.2s;
}

.logo-img:hover {
    opacity: 0.85;
}

#alhidaya-navbar {
    overflow: visible;
}

#alhidaya-navbar .navbar-brand {
    overflow: visible;
}



.nav-action-btn {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 9px;
    background: transparent;
    color: #b0c4d4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s;
    text-decoration: none;
}

.nav-action-btn:hover {
    background: rgba(255,255,255,0.07);
    color: white;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background: var(--gold);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-compte {
    background: var(--teal);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}

.btn-compte:hover {
    background: var(--teal-dark);
    color: white;
}

/* ================================================
   RESPONSIVE MOBILE
   ================================================ */
@media (max-width: 991px) {
    #navbarMenu {
        background: var(--blue-dark);
        padding: 16px;
        border-top: 1px solid rgba(255,255,255,0.08);
        margin-top: 8px;
    }

    #alhidaya-navbar .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        border-radius: 0;
    }

    .d-flex.align-items-center.gap-2 {
        margin-top: 12px;
        justify-content: center;
    }
}