/* =========================================
HEADER
========================================= */

.phoniyo-header{
    background:#020135;
    position:sticky;
    top:0;
    z-index:99999;
    width:100%;
}

.phoniyo-header-container{
    max-width:1200px;
    margin:0 auto;
    padding:16px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* LOGO */

.phoniyo-logo img{
    height:40px;
    width:auto;
    display:block;
}

/* DESKTOP MENU */

.phoniyo-nav ul{
    display:flex;
    align-items:center;
    gap:34px;
    list-style:none;
    margin:0;
    padding:0;
}

.phoniyo-nav a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.25s;
}

.phoniyo-nav a:hover{
    color:#ffcb21;
}

/* MOBILE BUTTON */

.phoniyo-mobile-btn{
    display:none;
    width:44px;
    height:44px;
    border:none;
    border-radius:10px;
    background:#ffcb21;
    color:#111;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

/* MOBILE MENU */

.phoniyo-mobile-menu{
    position:fixed;
    top:0;
    right:-320px;
    width:280px;
    height:100vh;
    background:#fff;
    z-index:999999;
    transition:.35s ease;
    padding:24px;
}

.phoniyo-mobile-menu.active{
    right:0;
}

.phoniyo-mobile-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:30px;
}

.phoniyo-mobile-head span{
    font-size:20px;
    font-weight:700;
}

.phoniyo-close-menu{
    width:40px;
    height:40px;
    border:none;
    border-radius:10px;
    background:#f5f5f5;
    color:#111;
    cursor:pointer;
}

.phoniyo-mobile-menu ul{
    list-style:none;
    margin:0;
    padding:0;
}

.phoniyo-mobile-menu li{
    margin-bottom:20px;
}

.phoniyo-mobile-menu a{
    text-decoration:none;
    color:#111;
    font-size:17px;
    font-weight:600;
}

/* OVERLAY */

.phoniyo-menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:9999;
}

.phoniyo-menu-overlay.active{
    opacity:1;
    visibility:visible;
}

/* =========================================
MOBILE
========================================= */

@media(max-width:991px){

.phoniyo-nav{
    display:none;
}

.phoniyo-mobile-btn{
    display:flex;
}

.phoniyo-logo img{
    height:34px;
}

.phoniyo-header-container{
    padding:14px 16px;
}

}

/* =========================================
FLOATING SEARCH SECTION
COMPACT PREMIUM VERSION
========================================= */

.phoniyo-search-strip{
    position:relative;
    margin-top:-2px;
    z-index:50;
}

.phoniyo-search-strip-inner{
    max-width:800px;
    margin:0 auto;
    background:#fff;
    border-radius:7px;
    padding:12px 28px;
    box-shadow:0 12px 40px rgba(0,0,0,.06);

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
}

/* LEFT */

.phoniyo-search-content{
    max-width:360px;
    flex-shrink:0;
}

.phoniyo-search-content h2{
    font-size:20px;
    line-height:1.1;
    font-weight:800;
    color:#111;
    margin:0 0 8px;
    letter-spacing:-.5px;
}

.phoniyo-search-content p{
    color:#666;
    font-size:14px;
    line-height:1.6;
    margin:0;
}

/* SEARCH */

.phoniyo-search-wrap{
    width:100%;
    max-width:460px;
    position:relative;
}

.phoniyo-search-form{
    position:relative;
}

.phoniyo-search-form input{
    width:100%;
    height:45px;
    border:none;
    outline:none;
    background:#f5f7fb;
    border-radius:999px;

    padding:0 64px 0 20px;

    font-size:15px;
    font-weight:500;
    color:#111;
}

.phoniyo-search-form input::placeholder{
    color:#888;
}

.phoniyo-search-form button{
    position:absolute;
    top:50%;
    right:6px;
    transform:translateY(-50%);

    width:30px;
    height:30px;

    border:none;
    border-radius:50%;

    background:#05014a;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0;
    cursor:pointer;

    transition:.25s ease;
}

.phoniyo-search-form button i{
    font-size:14px;
    line-height:1;
    display:flex;
    align-items:center;
    justify-content:center;
}

.phoniyo-search-form button:hover{
    transform:translateY(-50%) scale(1.05);
}

/* RESULTS */

#phoniyo-live-results{
    position:absolute;
    top:64px;
    left:0;
    width:100%;

    background:#fff;

    border-radius:7px;
    overflow:hidden;

    box-shadow:0 18px 45px rgba(0,0,0,.10);

    display:none;
    z-index:99999;
}

/* ITEMS */

.live-search-item{
    display:flex;
    align-items:center;
    gap:14px;

    padding:14px 16px;

    text-decoration:none;
    border-bottom:1px solid #f1f1f1;

    transition:.2s;
}

.live-search-item:hover{
    background:#f7f8fc;
}

.live-search-thumb img{
    width:54px;
    height:54px;
    object-fit:contain;

    border-radius:12px;
    background:#f5f7fb;
}

.live-search-content h4{
    font-size:15px;
    line-height:1.35;
    font-weight:700;
    color:#111;
    margin:0 0 4px;
}

.live-search-content span{
    font-size:12px;
    color:#777;
}

/* NO RESULTS */

.no-search-found{
    padding:16px;
    font-size:14px;
    color:#666;
}

/* TABLET */

@media(max-width:991px){

.phoniyo-search-strip{
    margin-top:-2px;
}

.phoniyo-search-strip-inner{
    flex-direction:column;
    align-items:flex-start;

    padding:22px;
    border-radius:7px;
    gap:18px;
}

.phoniyo-search-content{
    max-width:100%;
}

.phoniyo-search-content h2{
    font-size:22px;
}

.phoniyo-search-wrap{
    max-width:100%;
}

}

/* MOBILE */

@media(max-width:767px){

.phoniyo-search-strip-inner{
    padding:18px;
    border-radius:7px;
    max-width:350px;
}

.phoniyo-search-content h2{
    font-size:20px;
}

.phoniyo-search-content p{
    font-size:13px;
}

.phoniyo-search-form input{
    height:50px;
    padding:0 58px 0 16px;
    font-size:14px;
}

.phoniyo-search-form button{
    width:40px;
    height:40px;
    font-size:14px;
}

.live-search-thumb img{
    width:46px;
    height:46px;
}

.live-search-content h4{
    font-size:14px;
}

}