.section-intro.booking {
    flex: 1 1 100%;
}

.booking-page-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 52px;
    background: linear-gradient(90deg, #eadf82 0%, #efa75e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}


.intro-booking {
    display: flex;
    gap: 30px;
}

.social_wrapper {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social_icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--white-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-text {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 20px;
    color: var(--white);
}

.booking_girl_wrapper {
    display: flex;
    gap: 20px;
    width: 100%;
}

.contact_details,
.booking_details {
    border-radius: 24px;
    padding: 20px;
    min-width: 290px;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--white-100);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}


.booking_girl_form {
    width: 100%;
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.booking_girl_form .circle {
    width: 250px;
    height: 250px;
    position: absolute;
    top: 20%;
    right: 50px;
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    opacity: 14%;
    z-index: 0;
    border-radius: 50%;
}

.booking_details_header {
    display: flex;
    gap: 30px;
    align-items: center;
}

.booking_tabs {
    display: flex;
    gap: 10px;
}

.booking_tab {
    border-radius: 50px;
    padding: 20px;
    width: 95px;
    height: 50px;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--white-100);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 17px;
    cursor: pointer;
    text-align: center;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease-in;
}

.booking_tab.active {
    background: linear-gradient(90deg, #eadf82 0%, #efa75e 100%);
}

.booking_tab.active span {
    color: #171502;
}

.booking_details_header_title {
    margin: 0;
    padding: 0;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 28px;
    color: var(--white);
}

.booking_select_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.custom_booking_select {
    cursor: pointer;
    border-radius: 100px;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    height: 60px;
    position: relative;
    flex: 0 1 calc(50% - 20px);
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--white-100);
}

.booking-select_item {
    height: 60px;
    cursor: pointer;
    border-radius: 100px;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    position: relative;
    z-index: 23;
    flex: 0 1 calc(50% - 20px);
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--white-100);
    transition: .3s ease-in;
}

.booking-input-block {
    display: flex;
    gap: 20px;
    width: 100%;
    position: relative;
}

.booking-input-block .icon {
    position: absolute;
    right: 0;
}

.booking-input-block input {
    width: 100%;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    color: var(--white);
    background: transparent;
    border: none;
    outline: none;
}

.booking-input-block input::placeholder {
    color: var(--white);
    opacity: 0.6;
}

td.available {
    color: black;
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
    background-color: #151302cc !important;
}

.booking_select_dropdown {
    position: absolute;
    left: 50%;
    top: 105%;
    width: 100%;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    min-width: max-content;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
    z-index: 100;
}


.booking_select_dropdown_item {
    width: 100%;

}

.custom_booking_select.active .booking_select_dropdown {
    padding: 16px 24px;
    max-height: 300px;
    opacity: 1;
    pointer-events: all;
    z-index: 9998 !important;
}

.custom_booking_select.active {
    pointer-events: none;
    backdrop-filter: none;
}

.booking_girl_form.dropdown-open .booking_details,
.booking_girl_form.dropdown-open .contact_details {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.custom_booking_select.active[data-dropdown="price"] img {
    transform: rotate(180deg);
}


.booking_select_dropdown_list {
    padding: 0;
    list-style: none;
    margin: 0;
    overflow: auto;
    height: 100%;
}

.booking_select_dropdown_list::-webkit-scrollbar {
    width: 4px;
}

.booking_select_dropdown_list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.booking_select_dropdown_list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
}

.booking_select_dropdown_list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

.booking_select_dropdown_list {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.25) rgba(255, 255, 255, 0.05);
}

.booking_select_dropdown_item {
    color: var(--white);
    width: 100%;
    font-family: var(--font-main);
    cursor: pointer;
}

.booking_select_dropdown_item.selected {
    background: linear-gradient(90deg, #eadf82 0%, #efa75e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 2px solid #ebd77d;
}

.booking_select_dropdown_item:not(.selected):hover {
    background: linear-gradient(90deg, #eadf82 0%, #bee921 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}


.contact_details {
    position: relative;
    z-index: 1;
}



.booking_girl_visual {
    max-width: 320px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking_girl_media {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.booking_girl_media_slider {
    display: flex;
    transition: transform 0.35s ease;
    width: 100%;
}

.booking_girl_media_slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 20px;
    pointer-events: none;
}

.booking_girl_media,
.booking_girl_media_slider,
.booking_girl_media img {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;

    -webkit-user-drag: none;
    user-drag: none;
}

/* Стиль кнопок */
.slider_btn {
    position: absolute;
    width: 100%;
    bottom: 20px;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    gap: 12px;
    z-index: 20;
}

.btn_prev,
.btn_next {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: linear-gradient(90deg, #0a0a0a 0%, #171502 100%);
    transition: .25s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_prev {
    transform: rotate(90deg);
}

.btn_next {
    transform: rotate(-90deg);
}

.btn_prev:hover,
.btn_next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.boocking_girl_baige {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    z-index: 25;
}

.favorite.hover-parent {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 10px;
    right: 10px;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.94) 0%, rgba(23, 21, 2, 0.94) 100%);
}

.profile_btn {
    border-radius: 100px;
    padding: 16px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--white-100);
}

.profile_btn span {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 20px;
    background: linear-gradient(90deg, #eadf82 0%, #efa75e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom_booking_input_wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main_booking_inputs {
    display: flex;
    gap: 20px;
}

.custom_booking_input_wrapper .booking-input-block {
    border-radius: 100px;
    height: 60px;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--white-100);
    flex: 1 1 calc(50% - 20px);
    padding: 16px 24px;
    position: relative;
}

.custom_booking_input_wrapper .booking-input-block .icon {
    position: absolute;
    right: 24px;
}

.booking_submit {
    border-radius: 100px;
    padding: 16px 40px;
    width: fit-content;
    height: 60px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--white-100);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.booking_submit_title {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 20px;
    background: linear-gradient(90deg, #eadf82 0%, #efa75e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.booking-select_item.error,
.booking-input-block.error {
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: rgba(255, 0, 0, 0.1);
}
.booking-input-block.address{
    display: none;
}
.booking-input-block.address.active{
    display: flex;
}
.booking-input-block textarea {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    color: var(--txt-740);
}

.booking-input-block textarea::placeholder {
    color: var(--white);
    opacity: 0.6;
}

.booking-input-block[data-input="wishes"] {
    min-height: 120px;
    border-radius: 24px;
}

.seo-text-section {
    margin: 70px auto;
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 20px;
    position: relative;
}

.seo-text-section .circle {
    max-width: 500px;
    max-height: 500px;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    opacity: 14%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.seo-text_block {
    border-radius: 24px;
    padding: 30px;
    flex: 1 1 calc(50% - 20px);
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--black-240);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.seo-item-title {
    margin: 0;
    padding: 0;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 52px;
    background: linear-gradient(90deg, #eadf82 0%, #efa75e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-item-text {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    padding: 0;
    margin: 0;
    color: var(--txt-740);
}

.custom_booking_select span {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.ui-timepicker-container {
    z-index: 22 !important;
}

.booking_popup {
    position: fixed;
    top:10px; 
    right:10px;
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
    
}

.booking_popup_inner {
    min-width: 290px;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: rgb(0 0 0 / 77%);
    padding:15px;
    border-radius:12px;
    max-width:400px;
    width:90%;
    text-align:center;
}
.booking_popup_message{
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    padding: 0;
    margin: 0;
    color: var(--txt-740);
}

.section-intro.booking.mobile{
    margin: 70px 0 30px 0;
}

.favorite.favorite_btn.hover-parent:hover{

    background: linear-gradient(90deg, #b9b375 0%, #f1bb85 100%);
}
.favorite.favorite_btn.active{
    background: linear-gradient(90deg, #eadf82 0%, #efa75e 100%);
}
.favorite.favorite_btn.active .favorite-icon{
    transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
    .section-intro.booking {
        margin-bottom: 30px;
    }

    .seo-text-section {
        margin: 50px auto;
        flex-direction: column;
    }

    .seo-item-title {
        font-size: 44px;
    }
    .booking-page-title{
        font-size: 44px;
    }
}

@media screen and (max-width: 952px) {
    .booking_girl_wrapper {
        flex-direction: column;
        align-items: center;
    }

    .social-text {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .section-intro.booking.mobile{
        margin: 50px 0 20px 0;
    }
}
@media screen and (max-width: 620px) {
    .section-intro.booking {
        margin-bottom: 20px;
        gap: 15px;
    }

    .intro-booking {
        flex-direction: column;
        gap: 10px;
    }

    .social-text {
        display: flex;
    }

    .booking_select_wrapper {
        flex-wrap: nowrap;
        gap: 10px;
        flex-direction: column;
    }

    .booking_details_header {
        gap: 15px;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
    }
    .contact_details, .booking_details{
        gap: 15px;
    }
    .main_booking_inputs{
        flex-direction: column;
        gap: 10px;
    }
    .custom_booking_input_wrapper{
        gap: 10px;
    }
    .booking_submit{
        height: 50px;
    }
    .booking_details_header_title{
        font-size: 24px;
    }
    .seo-text-section{
        margin: 40px auto;
    }
    .seo-text_block{
        padding: 15px;
        gap: 20px;
    }
    .booking_girl_form .circle{
        top: 45%;
        left: 50%;
        transform: translate(-45%, -50%);
    }
    .seo-text-section .circle{
        display: none;
    }
    .seo-item-title{
        font-size: 28px;
    }
    .seo-item-text{
        font-size: 15px;
    }
    .profile_btn span{
        font-size: 18px;
    }
    .profile_btn{
        padding: 16px 40px;
        height: 50px;
    }
    .booking_girl_visual{
        gap: 10px;
    }
    .booking-page-title{
        font-size: 32px;
    }
    .social_wrapper{
        justify-content: flex-start;
    }
    .social_icon img{
        width: 24px;
        height: 24px;
    }
}
@media screen and (max-width: 425px) {
    .section-intro.booking.mobile{
        margin: 30px 0 20px 0;
    }
    .social-text{
        font-size: 15px;
        margin: 0;
    }
    .social_wrapper{
        gap: 5px;
    }
    .social_icon {
        width: 40px;
        height: 40px;
    }
    .intro-booking {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .booking_girl_visual {
        max-width: 280px;
    }
    .booking_girl_form{
        gap:10px;
    }
    .favorite.hover-parent{
        width: 50px;
        height: 50px;
    }
    .seo-item-title {
        font-size: 22px;
    }


}