:root {
    --white: #fff;
    --txt: rgba(255, 255, 255, 0.74);
    --white: rgba(255, 255, 255, 1);
    --light-bg: rgba(255, 255, 255, 0.1);
    --black-bg: linear-gradient(90deg, #0A0A0A 0%, #171502 100%);
    --accent: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    --blur: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    --font-main: 'Saira', sans-serif;
    --font-title: 'Space Grotesk', sans-serif;
    --font-title-md: 'Space Grotesk Light', sans-serif;
    --black-240: rgba(0, 0, 0, 0.24);
    --txt-740: rgba(255, 255, 255, 0.74);
    --white-100: rgba(255, 255, 255, 0.1);
}

.page-title {
    margin: 0 0 10px 0;
    font-size: 52px;
    line-height: 66px;
}

.search_wrapper {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    margin-bottom: 70px;
    width: 100%;
}

.go-home {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 40px;
    gap: 10px;
    width: max-content;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    margin: 40px auto 0 auto;
}

.results-description {
    font-family: var(--font-title-md);
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 40px;
    margin-top: 0;
}

.results-description span {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.categories-search-results {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 40px;
    margin-top: 70px;
}

.categories-search-title {
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 700;
    font-size: 52px;
    line-height: 66px;
    color: #FFFFFF;
    margin: 0;
}

.go-home span {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 31px;
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.go-home::before {
    border-radius: 100px;
}

.live_search_wrapper {
    width: 100%;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    border-radius: 100px;
    padding: 16px 40px;
    background: var(--black-240);
    position: relative;
    margin: 10px auto 30px auto;
    height: 90px;
}

.live_search_input {
    width: 100%;
    border: none;
    outline: none;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 24px;
    background: transparent;
    color: var(--txt-740);
    height: 100%;
}
.search_btn {
    position: absolute;
    right: 14px;
    top: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 10px 0px #EADF8257 inset;
    backdrop-filter: blur(20px);
    border-radius: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
}
.search_btn:hover{
    background: #585649;

}

.girls-list,
.categories-search-results{
    display: none;
}
.girls-list.active,
.categories-search-results.active{
    display: flex;
}

.empty_search_wrapper{
    min-height: 30vh;
    display: none;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.empty_search_text{
    font-size: 24px;
    text-align: center;
    font-family: var(--font-main);
}

.empty_search_wrapper.active{
    display:flex;
}
.page-title.count{
    display: none;
}
.page-title.count.active{
    display: flex;
    gap: 10px;
}
@media (max-width: 1024px) {
    .results-description {
        margin-bottom: 30px;
        font-size: 24px;
        line-height: 31px;
    }

    .categories-search-results {
        gap: 30px;
        margin-top: 50px;
    }
    .live_search_wrapper{
        height: 70px;
    }
    .search_btn{
        height: 50px;
        width: 50px;
    }
    .live_search_input{
        font-size: 20px;
    }
    .empty_search_text{
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .page-title{
        font-size: 44px;
    }
}
@media (max-width: 650px) {
    .live_search_wrapper{
        height: 60px;
        margin-bottom: 10px;
        margin-top: 0;
    }
    .search_btn{
        height: 40px;
        width: 40px;
    }
    .live_search_input{
        font-size: 18px;
    }
    .empty_search_text{
        font-size: 17px;
    }

    .page-title,
    .categories-search-title {
        font-size: 32px;
        line-height: 41px;
    }

    .search_wrapper {
        margin-bottom: 50px;
    }

    .categories-search-results {
        gap: 20px;
        margin-top: 20px;
    }
     .categories-result-list .category-item ,
     .categories-result-list .category-item a{
        height: 50px;
    }
    .go-home{
        margin: 20px auto 0 auto;
        height: 50px;
        padding: 5px 15px;
    }
    .go-home span{
        font-size: 16px;
    }
}

@media (max-width: 560px) {
    
    .page-title {
        font-size: 28px;
        line-height: 41px;
    }

    .results-description {
        margin-bottom: 20px;
        font-size: 20px;
        line-height: 26px;
    }

    .search_wrapper {
        margin-bottom: 40px;
    }

   
}