:root {
    --white: #FFFFFF;
    --main: linear-gradient(111.26deg, #F4551E -0.11%, #DE2947 100.11%);
    --liner-bg: linear-gradient(157.73deg, #FFFBFB 0%, #F9CAB8 100%);
    --liner-elements: linear-gradient(157.73deg, #F9CAB8 0%, #FFFBFB 100%);
    --black: #2F2F2F;
    --bg-elements: #FFD1C0;
    --font-main: 'Comfortaa', sans-serif;
    --font-secondary: 'Comfortaa Bold', sans-serif;
    --nav-w: 365px;
    --subnav-w: 300px;
    --bg: #111;
    --bg-2: #181818;
    --txt: rgba(47, 47, 47, 1);
    --muted: #9aa0a6;
    --accent: #FFD56F;
    --overlay: rgba(47, 47, 47, 84%);
    --tr: .25s ease;
    --bg-elements-white: rgba(255, 255, 255, 0.34);
}

.neighbour_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    width: 100%;
}

.neighbour_btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    height: 50px;
    padding: 0 15px;
    border-radius: 14px;
    width: max-content;
    background: var(--bg-elements);
    text-decoration: none;
    cursor: pointer;
}

.neighbour_btn p {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: var(--black);
    margin: 0;
}

.neighbour_btn:hover {
    background: var(--main);
}

.neighbour_btn:hover p {
    background: linear-gradient(157.73deg, #FFFBFB 0%, #F9CAB8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.neighbour_btn.prev {
    flex-flow: row-reverse;
}

.neighbour_btn img {
    width: 24px;
    height: 24px;
}

.neighbour_btn.prev img {
    transform: rotate(-180deg);
}

.girl-page__header {
    margin: 0 auto;
}

.girl-details article.girl-data {
    width: 100%;
}

.girl-details article.girl-data {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.girl-thumb-wrapper-section {
    flex: 0 0 calc(50% - 10px);
}

.girl-thumb-wrapper-section .post-thumbnail img {
    object-fit: cover;
    border-radius: 30px;
}

.girl-details article.girl-data .entry-content {
    flex: 0 0 calc(50% - 10px);
    margin-top: 0;
}

.girl-header-data {
    background: var(--liner-elements);
    padding: 20px 30px;
    border-radius: 30px;
    margin-bottom: 20px;
    display: flex;
    flex-flow: column;
    flex: 0 0 calc(50% - 10px);
}

.girl-header-data.mob {
    display: none;
}

.girl-header-data header {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    margin-bottom: 20px;
    width: 100%;
}

.girl-name {
    font-family: var(--font-secondary);
    font-style: normal;
    font-weight: 700;
    font-size: 52px;
    line-height: 66px;
    color: var(--black);
    margin: 0;
}

.vote-buttons {
    flex: 0 0 auto;
    width: max-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.vote-buttons__item {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 50px;
    width: max-content;
    background: var(--bg-elements);
    border-radius: 14px;
    padding: 0 15px;
    cursor: pointer;
}

.vote-buttons__item-count {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: var(--black);
}

.vote-buttons__item:hover {
    background: var(--main);
}

.vote-buttons__item:hover .vote-buttons__item-count {
    background: linear-gradient(157.73deg, #FFFBFB 0%, #F9CAB8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.girl-contacts {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.contact-title {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    color: var(--black);
}

.contact-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
}

.contact-links-data {
    padding: 0;
    margin: 0;
}

.prices-list-wrapper {
    background: var(--liner-elements);
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 150px));
    grid-template-rows: auto;
    gap: 20px;
}

.prices-list__item {
    flex: 0 0 auto;
    width: auto;
    min-width: 120px;
    max-width: 150px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 80px;
    padding: 0 18.5px;
    border-radius: 14px;
    background: var(--liner-bg);
}

.prices-list__title {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    color: #2F2F2F;
}

.prices-list__value {
    font-family: var(--font-secondary);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    color: #2F2F2F;
    display: flex;
    gap: 5px;
}

.prices-list__value sup {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
    color: #2F2F2F;
}

.girl-list-data {
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
    background: var(--liner-elements);
    border-radius: 30px;
    padding: 20px 30px;
    margin-bottom: 20px;
}

.girl-list-data__item {
    flex: 0 0 auto;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 10px;
}

.girl-list-data__item-title {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    color: #2F2F2F;
}

.girl-list-data__item-value {
    font-family: var(--font-secondary);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #2F2F2F;
}

.girl-description {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    background: var(--bg-elements-white);
    padding: 20px 30px;
    border-radius: 30px;
    margin-bottom: 0;
}

.girl-description p,
.girl-description ul>li,
.girl-description ol>li {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #2F2F2F;
    margin-top: 0;
    margin-bottom: 20px;
}

.categories-list {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-elements-white);
    border-radius: 30px;
    padding: 30px;
    margin-bottom: 50px;
    width: 100%;
    max-width: 100%;
}

.services-list {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 20px;
    background: var(--liner-elements);
    border-radius: 30px;
    padding: 20px 30px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
}

.categories-list__title,
.services-list__title {
    font-family: var(--font-secondary);
    font-style: normal;
    font-weight: 700;
    font-size: 38px;
    line-height: 45px;
    color: #2F2F2F;
    margin-top: 0;
    margin-bottom: 0;
}

.slider-main-media img,
.slider-main-media video {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.slider-main-media.slide-left img,
.slider-main-media.slide-left video {
    transform: translateX(-30px);
    opacity: 0;
}

.slider-main-media.slide-right img,
.slider-main-media.slide-right video {
    transform: translateX(30px);
    opacity: 0;
}

.girl-categories {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 35px 30px;
}

.girl-services {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px 20px;
    width: 100%;
}

.girl-services__item {
    flex: 0 0 calc(50% - 10px);
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 15px;
}

.girl-services__item-value {
    display: flex;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    text-align: left;
    color: #2F2F2F;
    z-index: 1;
    text-decoration: none;
}

.girl-services__item-value a {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #F4551E !important;
    z-index: 1;
    text-decoration: none;
}

.girl-categories-link {
    position: relative;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #2F2F2F;
    z-index: 1;
    text-decoration: none;
}

.girl-categories-link:hover {
    background: linear-gradient(111.26deg, #F4551E -0.11%, #DE2947 100.11%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.girl-categories-link:focus,
.girl-categories-link:active,
.girl-categories-link:visited {
    color: #2F2F2F;
}

.girl-categories-link::after {
    position: absolute;
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    background: linear-gradient(111.26deg, #F4551E -0.11%, #DE2947 100.11%);
    opacity: 0.46;
    border-radius: 1px;
    bottom: -5px;
    left: 0;
}

.girl-categories-link:hover::after {
    display: none;
}

.girl-categories-link:hover::before {
    position: absolute;
    content: '';
    display: block;
    height: 15px;
    width: 100%;
    left: 0;
    bottom: 0;
    background: linear-gradient(111.26deg, #F4551E -0.11%, #DE2947 100.11%);
    opacity: 0.24;
    border-radius: 4px;
    border-radius: 1px;
    bottom: -5px;
    left: 0;
    z-index: 0;
}

/*Reviews*/
.reviews {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 30px;
    border-radius: 30px;
    background: var(--bg-elements-white);
    margin-bottom: 50px;
    width: 100%;
}

.reviews-header {
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

.reviews-title {
    font-family: var(--font-secondary);
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    color: #2F2F2F;
    margin: 0;
}

.reviews-count {
    font-family: var(--font-secondary);
    font-style: normal;
    font-weight: 700;
    font-size: 52px;
    line-height: 65px;
    background: linear-gradient(111.26deg, #F4551E -0.11%, #DE2947 100.11%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.reviews-content {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

.reviews-content__item {
    flex: 0 0 calc(50% - 10px);
    display: flex;
    flex-flow: column;
    gap: 10px;
    width: 100%;
    background: var(--liner-elements);
    border-radius: 30px;
    padding: 20px 30px;
}

.reviews-content__header {
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}

.review-author {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    color: #2F2F2F;
}

.review-date {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    color: rgba(47, 47, 47, 0.44);
}

.reviews-content__text {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: space-between;
}

.reviews-content__text p,
.reviews-content__text ul>li,
.reviews-content__text ol>li {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #2F2F2F;
}

.reviews-content__text p {
    margin-top: 0;
    margin-bottom: 20px;
}

.reviews-content__text *:last-of-type {
    margin-bottom: 0;
}

.mobilerating-group {
    width: 110px;
    height: 18px;
    margin: auto;
}

.star-rating {
    position: relative;
}

.starmob {
    position: absolute;
    left: 0;
    top: 0;
    height: 18px;
}

.star-full {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    -o-object-fit: none;
    object-fit: none;
    -o-object-position: left;
    object-position: left;
    z-index: 1;
}

.empty__stars {
    position: absolute;
    left: 0;
}

.reviews-footer {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.leave-review {
    font-family: var(--font-secondary);
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 34px;
    color: #2F2F2F;
    margin: 0;
}

.create-review {
    height: 60px;
    width: max-content;
    background: var(--main);
    border-radius: 20px;
    padding: 0 40px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.create-review:hover {
    background: linear-gradient(111.26deg, #DE2947 -0.11%, #F4551E 100.11%);
}

#reviewModal h2 {
    font-family: var(--font-secondary);
    font-style: normal;
    font-weight: 700;
    font-size: 52px;
    line-height: 65px;
    text-align: center;
    color: #2F2F2F;
    width: 100%;
    margin-bottom: 40px;
    margin-top: 0;
}

#reviewModal .modal-body {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: flex-start;
}

.review-fields {
    display: flex;
    flex-flow: row wrap;
    gap: 20px;
}

.input-group {
    display: flex;
    justify-content: flex-start;
    flex: 0 0 auto;
    width: 100%;
    max-width: 300px;
    position: relative;
}

.input-group input {
    position: relative;
    display: flex;
    height: 66px;
    background: var(--bg-elements-white);
    border-radius: 20px;
    padding: 0 24px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #2F2F2F;
    width: 100%;
    border: none;
}

.input-group input:focus,
.input-group input:active,
.input-group input:visited {
    border: none;
    outline: none;
}

.input-group input::placeholder,
.input-group textarea {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #2F2F2F;
}

.input-group img {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
}

.input-group.message {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
}

.input-group.message img {
    transform: none;
    top: 21px;
    right: 24px;
}

.input-group.message textarea {
    background: var(--bg-elements-white);
    border-radius: 20px;
    padding: 21px 24px;
    margin-bottom: 20px;
    height: 100%;
    max-height: 150px;
    margin: 0;
    border: none;
}

.input-group.message textarea::placeholder {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #2F2F2F;
}

.input-group.message textarea:focus,
.input-group.message textarea:active {
    border: none;
    outline: none;
}

.custom-rating {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex: 1;
    width: 100%;
    max-width: 100%;
    padding-right: 24px;
    position: relative;
}

.rating-stars {
    display: flex;
    gap: 10px;
}

.star {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: var(--liner-bg);
    border-radius: 10px;
}

.star img {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
}

.star.hover,
.star.active,
.star.active.hover {
    background: var(--main);
}

.custom-rating-title {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #2F2F2F;
}

.rating-text {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    color: #2F2F2F;
}

.rating-text span {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    background: linear-gradient(111.26deg, #F4551E -0.11%, #DE2947 100.11%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.send-review {
    height: 60px;
    width: 100%;
    max-width: max-content;
    border-radius: 20px;
    background: var(--main);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    color: #FFFFFF;
    border: none;
    margin: 20px auto 0 auto;
}

.error-msg {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    background: linear-gradient(111.26deg, #F4551E -0.11%, #DE2947 100.11%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    position: absolute;
    display: block;
    bottom: -25px;
    left: 5px;
}

.related-slider,
.popular-slider {
    display: flex;
    flex-flow: column;
    width: 100%;
    margin-bottom: 70px;
}

.related-slider__header,
.popular-slider__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 40px;
}

.related-slider__title,
.popular-slider__title {
    font-family: var(--font-secondary);
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    color: #2F2F2F;
    margin: 0;
}

#relatedGirls,
#popularGirls {
    max-width: 100%;
    margin: 0 auto;
    flex: 0 0 100%;
    display: flex;
    flex-wrap: nowrap;
}

#relatedGirls li,
#popularGirls li {
    flex: 0 0 calc(20% - 16px);
    max-width: 20%;
    box-sizing: border-box;
    display: block;
    box-sizing: border-box;
    text-align: center;
    padding: 0;
    min-width: 224px;
}

.lSSlideOuter,
#relatedGirls,
#popularGirls {
    overflow: visible !important;
}

/* Приховати стандартний скролбар у WebKit */
.slider-thumbs-wrapper::-webkit-scrollbar {
    height: 8px;
    /* висота скролу */
}

.slider-thumbs-wrapper::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.slider-thumbs-wrapper::-webkit-scrollbar-thumb {
    background: #ff3366;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.slider-thumbs-wrapper::-webkit-scrollbar-thumb:hover {
    background: #cc0044;
}

/* Для Firefox */
.slider-thumbs-wrapper {
    scrollbar-width: thin;
    scrollbar-color: #ff3366 #f0f0f0;
    /* колір ползунка / треку */
}

.slider-controls {
    flex: 0 0 auto;
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    width: max-content;
    gap: 10px;
}

.slider-controls-btn {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--bg-elements-white);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-controls-btn:hover {
    background: var(--main);
}

.slider-controls-btn img {
    width: 24px;
    height: 24px;
}

.slider-controls-btn.prev-slide img {
    transform: rotate(180deg);
}

.girls-list__item {
    background: var(--liner-elements);
    padding: 0 0 20px 0;
    border-radius: 20px;
}

.girls-list__item a {
    text-decoration: none;
}

.girls-list__item .entry-content {
    margin-top: 0;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.girl-thumb-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 3/4;
    /* або задай height у px */
    margin-bottom: 10px;
    /* стабільна відстань під картинкою */
        padding: 10px 10px 0 10px;

}

.girl-thumb-wrapper .post-thumbnail {
    height: 100%;
}

.girl-thumb-wrapper img {
    position: relative;
    /* top: 0;
    left: 0;
    bottom: 0; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    /* transform: scale(0.9, 1); */
    /* transform: translateX(-10px) translateY(-5px); */
    /* width: calc(100% - 20px); */
}

.girls-list__item:hover .girl-thumb-wrapper {
    padding-top: 0;
}

.girls-list__item:hover .girl-thumb-wrapper img {
    width: 100%;
}
.girls-list__item:hover .girl-thumb-wrapper{
    padding-inline: 0;
}
.girls-list__item:hover .post-thumbnail{
        overflow: hidden;
}
#relatedGirls .girl-name,
#popularGirls .girl-name {
    padding-left: 10px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    color: var(--black);
    text-decoration: none;
    margin: 0;
}

#relatedGirls .girl-price,
#popularGirls .girl-price {
    font-family: var(--font-secondary);
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;

    background: linear-gradient(111.26deg, #F4551E -0.11%, #DE2947 100.11%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

#relatedGirls .girl-price sup,
#popularGirls .girl-price sup {
    font-family: var(--font-main);
    background: linear-gradient(111.26deg, #F4551E -0.11%, #DE2947 100.11%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 13px;
    margin-left: 5px;
}



/*Custom slider*/
.custom-slider {
    display: flex;
    width: 100%;
    max-width: 640px;
    height: 100%;
    min-height: 850px;
    margin: 0 auto;
    gap: 15px;
    position: relative;
}

.slider-main {
    width: 100%;
    height: 100%;
    min-height: 850px;
    position: absolute;
    overflow: hidden;
    border-radius: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.slider-main-media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 850px;
    background: rgba(47, 47, 47, 0.74);
    border-radius: 30px;
    display: flex;
    align-items: center;
}

.custom-slider .slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    background: var(--bg-elements);
    height: 60px;
    width: max-content;
    padding: 0 5px;
    gap: 50px;
}

.custom-slider .slider-nav-arrow {
    width: auto;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    background: transparent;
    border: none;
    border-radius: 14px;
    cursor: pointer;
}

.custom-slider .slider-nav-arrow img {
    width: 24px;
    height: 24px;
}

.custom-slider .slider-nav-arrow.slider-prev img {
    transform: rotate(180deg);
}

.custom-slider .slider-nav-arrow:hover,
.custom-slider .slider-nav-arrow:focus,
.custom-slider .slider-nav-arrow:active {
    background: linear-gradient(111.26deg, #F4551E -0.11%, #DE2947 100.11%);
}

.custom-slider .slider-main-media img,
.custom-slider .slider-main-media video {
    width: 100%;
    max-width: 640px;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.slider-thumbs-wrapper {
    height: 895px;
    max-height: 960px;
    overflow-y: auto;
}

.custom-slider .slider-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    margin: 10px auto 10px 10px;
    height: auto;
    overflow-y: auto;
}

.custom-slider .thumb {
    position: relative;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
}

.custom-slider .thumb:not(.active)::before {
    position: absolute;
    content: '';
    display: block;
    background: rgba(47, 47, 47, 0.74);
    width: 100%;
    height: 100%;
}

.custom-slider .thumb img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.custom-slider .thumb.active {
    padding: 2px;
    background: var(--liner-elements);
}

.custom-slider .thumb-play {
    position: absolute;
    bottom: 7px;
    right: 7px;
}

.custom-slider .thumb-play img {
    width: 30px;
    height: 30px;
}

.slider-counter {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 21px;
    text-align: center;
    color: #A48A80;
}

.slider-counter .current-index {
    font-family: var(--font-secondary);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    background: linear-gradient(111.26deg, #F4551E -0.11%, #DE2947 100.11%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;

}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: url('../../images/play-video.svg') no-repeat center/contain;
    cursor: pointer;
    z-index: 5;
}

.video-wrapper.playing .video-play {
    display: none;
}

.video-wrapper:hover .video-play {
    background: url('../../images/play-hover.svg') no-repeat center/contain;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../images/play-hover.svg') no-repeat center/contain;
    background-size: 60px 60px;
    cursor: pointer;
    display: none;
}

@media screen and (max-width: 1200px) {

    .custom-slider,
    .slider-main,
    .slider-main-media {
        min-height: 650px;
    }

    .modal-content {
        max-width: calc(100vw - 40px);
        left: -10px;
    }
}

@media screen and (max-width: 1120px) {
    .input-group {
        flex: 0 0 calc(50% - 10px);
        max-width: 100%;
    }

    .girl-services__item-value {
        font-size: 13px;
    }

    .custom-rating {
        margin: 0 auto;
        padding: 0;
        justify-content: center;
    }

    .input-group.message {
        margin-top: 0;
    }
}

@media screen and (max-width: 1024px) {
    .girl-list-data {
        flex-wrap: wrap;
        gap: 30px;
    }

    .related-slider,
    .popular-slider {
        margin-bottom: 50px;
    }

    #relatedGirls li,
    #popularGirls li {
        flex: 0 0 calc(25% - 15px);
        max-width: 25%;
    }
}

@media screen and (max-width: 960px) {

    .girl-thumb-wrapper-section,
    .girl-details article.girl-data .entry-content {
        flex: 0 0 100%;
    }

    .girl-header-data.desktop {
        display: none;
    }

    .girl-header-data.mob {
        display: flex;
        flex: 0 0 100%;
        margin-bottom: 0;
        padding: 15px;
    }

    .custom-slider .slider-main-media img,
    .custom-slider .slider-main-media video {
        max-width: 100%;
    }

    .custom-slider,
    .slider-main,
    .slider-main-media {
        min-height: 800px;
    }
}

@media screen and (max-width: 900px) {
    .reviews-content__item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .categories-list {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {

    #relatedGirls li,
    #popularGirls li {
        flex: 0 0 calc(33.3333% - 13.33334px);
        max-width: 33%;
    }

    .leave-review {
        font-size: 18px !important;
        line-height: 28px !important;
    }

    .create-review {
        flex: 0 0 auto;
    }
}

@media (min-width: 601px) {

    .related-slider .lSAction,
    .popular-slider .lSAction {
        display: none !important;
    }
}

@media screen and (max-width: 650px) {
    .input-group {
        flex: 0 0 100%;
    }
}

@media screen and (max-width: 600px) {

    #relatedGirls li,
    #popularGirls li {
        flex: 0 0 calc(50% - 10px);
        max-width: 50%;
    }

    .slider-thumbs-wrapper {
        height: 100%;
    }

    .girl-thumb-wrapper-section,
    .girl-details article.girl-data .entry-content {
        width: 100%;
    }

    .custom-slider,
    .slider-main,
    .slider-main-media {
        min-height: 600px;
    }

    .custom-slider {
        flex-flow: column;
    }

    .slider-main {
        position: relative;
        transform: none;
        top: auto;
        left: auto;
    }

    .custom-slider .slider-thumbs {
        margin: 0;
        flex-flow: row;
        overflow: auto;
    }

    .custom-slider .thumb {
        width: 100px;
        min-width: 100px;
        height: 100px;
    }

    .lSAction>a {
        background: url(../../images/arrow-girl-right.svg) no-repeat center,
            linear-gradient(157.73deg, #F9CAB8 0%, #FFFBFB 100%);
        background-position: 50% 50%;
        width: 50px;
        height: 50px;
        border-radius: 14px;
        opacity: 1;
    }

    .lSAction>.lSNext,
    .lSAction>.lSPrev {
        background-position: 50% 50%;
    }

    .lSAction>.lSPrev {
        left: 0;
        transform: rotate(180deg);
    }

    .lSAction>.lSNext {
        right: 0;
    }

    .slider-controls {
        display: none;
    }

    .reviews-content__header {
        flex-flow: row wrap;
        gap: 10px 20px;
    }

    .reviews-header {
        margin-bottom: 10px;
    }

    .reviews-footer {
        gap: 10px;
    }
}

@media screen and (max-width: 560px) {
    .girl-header-data header {
        align-items: center;
    }

    .girl-contacts {
        flex-flow: column;
        align-items: center;
    }

    .prices-grid {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }

    .custom-slider,
    .slider-main,
    .slider-main-media {
        min-height: 400px;
    }

    .girl-categories {
        gap: 30px;
    }

    .categories-list {
        margin-bottom: 20px;
        padding: 15px;
    }

    .girl-services {
        gap: 15px;
    }

    .girl-services__item {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }

    .categories-list__title,
    .services-list__title {
        font-size: 32px;
    }

    .reviews {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .leave-review,
    .categories-list__title,
    .related-slider__title,
    #reviewModal h2 {
        font-size: 20px;
        line-height: 35px;
    }

    .related-slider,
    .popular-slider {
        margin-bottom: 30px;
    }

    #reviewModal h2 {
        margin-bottom: 20px;
    }

    #reviewModal .modal-content {
        padding: 20px;
    }

    .reviews-content {
        gap: 10px;
    }

    .reviews-footer {
        flex-flow: column;
        align-items: center;
    }
    .girl-description{
        padding: 15px;
        border-radius: 20px;
    }
    .girl-description p, .girl-description ul>li, .girl-description ol>li{
        font-size: 15px;
        line-height: 25px;
    }
    .related-slider__header {
        margin-bottom: 20px;
    }

    .slider-thumbs{
        padding-bottom: 10px;
    }

    .girl-details article.girl-data {
        gap: 10px;
    }
}

@media screen and (max-width: 475px) {

    .reviews-title,
    .reviews-count {
        font-size: 20px;
        line-height: 32px;
    }

    .contact-title {
        margin-bottom: 10px;
    }

    .girl-name {
        font-size: 34px;
        line-height: 40px;
        margin: 0;
    }

    .girl-categories {
        gap: 15px 30px;
    }

    #relatedGirls li {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .related-slider__header {
        margin-bottom: 10px;
    }

    .custom-rating {
        flex-flow: row wrap;
    }

    #reviewModal h2 {
        margin-top: 40px;
    }

    .custom-rating-title {
        order: 1;
    }

    .rating-text {
        order: 2;
    }

    .rating-stars {
        order: 3;
        flex: 0 0 100%;
        width: 100%;
        justify-content: center;
    }

    .custom-slider .slider-nav {
        padding: 0 10px;
        bottom: 10px;
    }
}

@media screen and (max-width: 375px) {
    .girl-name {
        font-size: 28px;
        line-height: 36px;
    }
}