.phu-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0px;
    gap: 20px;
}
.phu-btn {font-family: "Sofia Pro", sans-serif;
    background: #fff966;
    padding: 8px 20px;
    border: none;        border-radius: 3px;
    font-weight: 600;
    color: #000 !important;
    font-size: 16px;
    letter-spacing: .18em;
}
.phu-btn:hover{color: #fff !important; background: #000;}
.phu-right {
    background-color: #000;
    color: #fff;
    height: 45px;
    width: 45px;
    text-align: center;
    border-radius: 100%;
    line-height: 45px;
}
.phu-left svg{height:32px; width:32px;margin-top: 5px;}
/* ICONS */
.phu-left, .phu-right {
    cursor:pointer;
    font-size:22px;
    z-index:1001;
}


/* DROPDOWN PANEL (KEY FIX) */
.phu-overlay {
    position:absolute;
    top:70px; /* adjust to header height */
    right:20px;
    width:320px;
    max-height:70vh;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    border-radius:8px;
    overflow-y:auto;
    display:none;
    z-index:1000;
}

/* MENU */
.phu-menu ul {
    list-style:none;
    margin:0;
    padding:20px;
}

.phu-item {
    margin-bottom:12px;
}

.phu-item a {
    text-decoration:none;
    color:#111 !important;font-family: "Sofia Pro", sans-serif;
}

/* SUBMENU */
.phu-submenu {
    display:none;
    padding-left:15px;
}

.phu-sub-toggle {
    float:right;
    cursor:pointer;
}
.phu-search-close {
    cursor: pointer;
    margin-bottom: 10px;
    display: block;
}
/* SEARCH LIGHTBOX */
.phu-search-box {
    display: none; /* keep hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.7);

              /* ✅ IMPORTANT */
    justify-content: center;    /* horizontal center */
    align-items: center;        /* vertical center */

    z-index: 2000;
}

.phu-search-inner {
    background: #fff;
    padding: 20px;
    width: 100%;
    max-width: 700px;
    text-align: right;
}