.dropdown { position: relative; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0D0D0D;
    border: 1px solid rgba(212,175,55,0.3);
    min-width: 220px;
    padding: 0.5rem 0;
    z-index: 100;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #fff;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { color: var(--gold); }
.mobile-toggle { display: none; background: none; border: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; }
@media (max-width: 768px) {
    .header-nav { display: none; }
    .mobile-toggle { display: block; }
    .header-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #0D0D0D;
        padding: 1rem;
        border-top: 1px solid rgba(212,175,55,0.2);
    }
    .dropdown-menu { position: static; border: none; padding-left: 1rem; }
}

/* Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(13,13,13,0.98);
    border-top: 1px solid rgba(212,175,55,0.3);
    padding: 0.5rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.mbn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 0;
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
    gap: 0.25rem;
    font-family: 'Inter', sans-serif;
}
.mbn-item:hover, .mbn-item.active {
    color: var(--gold);
}
.mbn-item svg {
    width: 22px;
    height: 22px;
}
@media (max-width: 767px) {
    .mobile-bottom-nav {
        display: flex;
    }
    body {
        padding-bottom: 4.5rem;
    }
    .mobile-action-bar {
        bottom: 4.5rem !important;
    }
    .live-chat {
        bottom: 5rem !important;
    }
}
