.empty-search{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:70px 20px;

}

.empty-card{

    max-width:720px;

    width:100%;

    background:#ffffff;

    border-radius:24px;

    padding:50px;

    text-align:center;

    box-shadow:0 15px 50px rgba(0,0,0,.08);

    border:1px solid #eef2f7;

}

.empty-image{

    width:240px;

    max-width:100%;

    margin:auto;

    display:block;

    margin-bottom:30px;

    border-radius:20px;

    object-fit:cover;

}

.empty-card h2{

    font-size:34px;

    font-weight:800;

    color:#111827;

    margin-bottom:15px;

}

.empty-card p{

    font-size:18px;

    color:#64748b;

    line-height:1.7;

    max-width:550px;

    margin:auto;

    margin-bottom:35px;

}

.empty-suggestions{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin-bottom:40px;

}

.empty-suggestions div{

    background:#f8fafc;

    border:1px solid #e5e7eb;

    border-radius:14px;

    padding:15px;

    display:flex;

    align-items:center;

    gap:10px;

    font-size:15px;

    font-weight:600;

    color:#374151;

}

.empty-suggestions i{

    font-size:22px;

    color:#0d6efd;

}

.btn-empty{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 35px;

    background:#0d6efd;

    color:#ffffff;

    text-decoration:none;

    font-weight:700;

    border-radius:14px;

    transition:.30s;

    font-size:16px;

}

.btn-empty:hover{

    background:#0b5ed7;

    color:#ffffff;

    transform:translateY(-2px);

}

@media(max-width:768px){

    .empty-card{

        padding:30px 20px;

    }

    .empty-image{

        width:180px;

    }

    .empty-card h2{

        font-size:28px;

    }

    .empty-card p{

        font-size:16px;

    }

    .empty-suggestions{

        grid-template-columns:1fr;

    }

}