.all-escort-title {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 104px;
    color: #F2F1F1;
    margin-bottom: 40px;
    margin-top: 50px;
}

.all-escort-title span {
    color: var(--gold);
}

.all-girls-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.categories-menu-wrapper {
    position: relative;
    display: inline-block;
}

.toggle-menu {
    cursor: pointer;
    background: #222;
    color: #fff;
    padding: 12px 15px;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 14px;
}


.toggle-menu span {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #F2F1F1;
}

.categories-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--grey);
    border-radius: 30px;
    width: 100%;
    z-index: 1000;
    padding: 0;
}

.categories-menu.active {
    display: block;
}

.categories-columns {
    display: flex;
}

.parent-categories {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
    width: 100%;
    max-width: 277px;
    padding: 30px 50px;
    display: flex;
    flex-flow: column;
    gap: 10px;
}

.parent-categories li {
    padding: 0 0 0 16px;
    cursor: pointer;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 46px;
    color: #F2F1F1;
    position: relative;
}

.parent-categories li::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 6px;
    height: 6px;
    border: 2px solid rgba(255, 215, 0, 1);
}

.parent-categories li:hover,
.parent-categories li.active {
    color: var(--gold);
}

.parent-categories li.active {
    padding-left: 26px;
}

.child-categories {
    flex: 1;
    padding: 30px 40px;
    background: rgba(27, 28, 29, 1);
    border: 5px solid rgba(41, 43, 47, 1);
    border-radius: 0 30px 30px 0;
}

.child-list {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px 40px;
}

.child-list.active {
    display: flex;
    flex-flow: row wrap;
}

.child-list li {
    flex: 0 0 calc(25% - 30px);
}

.child-list li a {
    display: block;
    font-family: var(--second-family);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #7C828D;
}
.child-list .main_loc {
    flex: 1 1 100%;
}
.child-list .main_loc a {
    color: var(--white);
}

.child-list li a span {
    color: var(--gold);
}

.child-list li a:hover {
    color: var(--gold);
}



.child-list .current a{
    color: var(--yellow-white);
}
.back-btn {
    display: none;
    position: absolute;
    left: 20px;
    top: 20px;
    background: var(--grey);
    padding: 0 10px;
    height: 50px;
    box-shadow: none;
    border: none;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
    cursor: pointer;
    border-radius: 14px;
}

.close-menu {
    display: none;
    position: absolute;
    right: 20px;
    top: 20px;
    background: var(--bg);
    padding: 0;
    height: 50px;
    width: 50px;
    box-shadow: none;
    border: none;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
    cursor: pointer;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
}
.close-menu img{
    width: 24px;
    height: 24px;
    padding: 0;
}
.back-btn img {
    transform: rotate(180deg);
    margin-right: 0;
}

.escort-sort-dropdown {
    position: relative;
    width: auto;
    min-width: 190px;
    font-family: var(--font-family);
}

.sort-girls {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.sort-by-title {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: var(--grey-white);
}
.links-list>li:hover{
background: #ffd700;
}
.links-list>li:hover a{
color: #292b2f;
}
.sort-header {
    background: rgba(41, 43, 47, 1);
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #F2F1F1;
    padding: 2px 15px;
    height: 50px;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sort-options {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(41, 43, 47, 1);
    border-radius: 0 0 14px 14px;
    display: none;
    z-index: 100;
    padding: 0 15px 15px 15px;
}

.sort-options li {
    padding: 4px 0;
    cursor: pointer;
    color: var(--white);
}

.sort-options li:hover {
    color: var(--gold);
}

.escort-sort-dropdown.open .sort-header {
    border-radius: 14px 14px 0 0;
}

.escort-sort-dropdown.open .sort-options {
    display: flex;
    flex-flow: column;
    gap: 10px;
}

@media (max-width: 1024px) {
    .all-escort-title {
        margin: 20px auto 30px 0;
    }

    .parent-categories {
        padding: 20px;
        max-width: max-content;
    }

    .parent-categories li {
        font-size: 24px;
    }

    .child-categories {
        padding: 20px;
    }

    .child-list {
        gap: 20px;
    }

    .child-list li {
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .all-escort-title {
        margin: 20px auto 20px 0;
        font-size: 54px;
        line-height: 88px;
    }

    .child-categories {
        display: none;
        border: none;
        border-radius: 0;
        padding: 80px 30px 30px 30px;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .child-list {
        align-items: flex-start;
        justify-content: flex-start;
        height: auto;
        max-height: 100%;
    }

    .close-menu {
        display: flex;
    }

    .categories-columns {
        height: 100%;
        width: 100%;
    }

    .categories-menu.active {
        position: fixed;
        top: 0;
        height: 100vh;
        border-radius: 0;
    }
}

@media (max-width: 560px) {
    .all-escort-title {
        margin: 15px auto 15px 0;
        font-size: 32px;
        line-height: 52px;
    }
.child-categories{
    padding-top: 40px;
}
    .child-list {
        margin-top: 45px;
    }

    .sort-header {
        height: 50px;
        padding: 4px 15px;
    }

    .toggle-menu span {
        display: none;
    }
}

@media screen and (max-width: 475px) {
    .sort-by-title {
        display: none;
    }
}