/* =======================================
   SOULFULSYNC — MOBILE HEADER
   STRUCTURALLY CORRECT (2026 FINAL)
   ======================================= */

@media (max-width: 1023px) {

    /* HEADER = CONTENEDOR REAL */
    .ssx-mobile-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: var(--ssx-header-bg, #ffffff);
        z-index: 99999;
        border-bottom: 1px solid rgba(0,0,0,0.07);
        box-sizing: border-box;
    }

    /* INNER FLEX */
    .ssx-mobile-inner {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 18px;
        box-sizing: border-box;
    }

    /* LOGO */
    .ssx-mobile-logo {
        display: flex;
        align-items: center;
    }

    .ssx-mobile-logo img {
        max-height: 55px;
        width: auto;
        object-fit: contain;
    }

    /* ACTIONS */
    .ssx-mobile-actions {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    /* MENTORSYNC */
    .ssx-mentor-button {
        width: 38px;
        height: 38px;
    }

    /* THEME SWITCH */
    .ssx-theme-switch {
        transform: scale(0.85);
    }

    /* HAMBURGER */
    .ssx-hamburger {
        width: 40px;
        height: 40px;
        padding: 7px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        background: rgba(0,0,0,0.05);
        border-radius: 12px;
        border: none;
    }

    .ssx-hamburger span {
        height: 2.5px;
        width: 100%;
        background: var(--ssx-text, #333);
        border-radius: 3px;
    }
}

@media (min-width: 1024px) {
    .ssx-mobile-header {
        display: none !important;
    }
}
