.mobile-menu {
    background: #fff;
    padding: 0.5rem 1rem;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #ddd;
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 0.3rem;
    list-style: none;
    /* removes bullet */
}

.mobile-menu a {
    display: block;
    padding: 0.4rem 0.8rem;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    border-radius: 4px;
   transition: background 0.3s ease, color 0.3s ease;
  font-weight: 500;
}

.mobile-menu a:hover {
    background: #eaeaea;
    color: #000;
}

.mobile-menu-toggle {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
}

@media (min-width: 992px) {
    .mobile-menu {
        display: none !important;
    }
}