/* ==========================================================
   MOBILE MENU — CLEAN, WORKING BASELINE
========================================================== */

/* Desktop default */
.pp-hamburger {
    display: none;
}

/* ==========================================================
   MOBILE ONLY
========================================================== */
@media (max-width: 768px) {

    /* Header stack */
    .pp-header {
        position: relative;
        z-index: 1000;
    }

    .pp-header-inner {
        position: relative;
        padding: 12px 16px;
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Hamburger */
    .pp-hamburger {
        display: flex;
        flex-direction: column;
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        z-index: 2000;
    }

    .pp-hamburger span {
        width: 24px;
        height: 3px;
        background: #ffffff;
        margin-bottom: 4px;
        border-radius: 2px;
    }

    /* Logo centered */
    .pp-logo-wrap {
        margin: 0 auto;
    }

    /* Hide desktop center wrapper */
    .pp-center {
        display: none;
    }

    /* ==============================
       MOBILE DROPDOWN NAV
    ============================== */
    #pp-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #001a33;
        padding: 16px 0;
        z-index: 1500;
    }

    /* OPEN STATE */
    #pp-nav.pp-open {
        display: block;
    }

    /* Menu list */
    .pp-menu {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .pp-menu li a {
        color: #ffffff;
        font-size: 17px;
        font-weight: 600;
        text-decoration: none;
    }

    /* Hide right spacer */
    .pp-right {
        display: none;
    }
}
