/* =========================================================
    TOP NAVIGATION
========================================================= */
.mobile-top-nav {
    --blue: #1769ff;
    --blue-dark: #0f58dc;
    --text: #111827;
    --muted: #6b7280;
    --border: #e9edf3;
    --surface: #ffffff;
    --soft: #f5f7fa;
    --bottom-height: 76px;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-width: var(--page-min-width);
    height: var(--top-nav-height);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    /* =========================================================
        TOP NAV LEFT / RIGHT
    ========================================================= */
    .mobile-top-left,
    .mobile-top-right {
        position: absolute;
        top: 0;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .mobile-top-left {
        left: 14px;
    }

    .mobile-top-right {
        right: 14px;
    }

    /* =========================================================
        LOGO
    ========================================================= */
    .mobile-logo {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 21px;
        font-weight: 700;
        letter-spacing: -0.7px;
        line-height: 1;
        color: var(--text);
    }

    .mobile-logo span {
        color: var(--blue);
    }

    /* =========================================================
        TOP BUTTONS
    ========================================================= */
    .mobile-top-button {
        width: 42px;
        height: 42px;
        border: 0;
        background: transparent;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: background 0.18s ease, transform 0.18s ease;
    }

    .mobile-top-button:active {
        background: var(--soft);
        transform: scale(0.94);
    }

    /* =========================================================
        SEARCH ICON
    ========================================================= */
    .mobile-search-icon {
        width: 21px;
        height: 21px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    /* =========================================================
        HAMBURGER
    ========================================================= */
    .hamburger {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .hamburger-line {
        display: block;
        width: 21px;
        height: 2px;
        background: var(--text);
        border-radius: 10px;
    }
}