/* =========================================================
   v0.4.16 REV3 — Search overlay close button visibility fix
   Üst header search overlay'den daha yüksek katmanda olduğu için
   eski top:28px konumu header altında kalıyordu.
   X artık header'ın hemen altında, sağ üstte görünür.
   ========================================================= */
.search-overlay .search-box-close{
    position:fixed !important;
    top:96px !important;
    right:28px !important;
    left:auto !important;
    width:44px !important;
    height:44px !important;
    min-width:44px !important;
    padding:0 !important;
    margin:0 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    border:2px solid #fff !important;
    border-radius:50% !important;
    background:#ef3036 !important;
    color:#fff !important;
    cursor:pointer !important;
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
    z-index:999999 !important;
    box-shadow:0 5px 18px rgba(0,0,0,.22) !important;
}
.search-overlay .search-box-close svg{
    display:block !important;
    width:20px !important;
    height:20px !important;
    fill:currentColor !important;
    pointer-events:none !important;
}
.search-overlay .search-box-close:hover,
.search-overlay .search-box-close:focus-visible{
    background:#fff !important;
    color:#ef3036 !important;
    border-color:#ef3036 !important;
    outline:none !important;
}
@media(max-width:900px){
    .search-overlay .search-box-close{
        top:84px !important;
        right:14px !important;
        width:42px !important;
        height:42px !important;
        min-width:42px !important;
    }
}
