:root {
    --sg-container-padding: 28px;
    --sg-container-sm-padding: 20px;
    --sg-gap: 20px;
    --sg-container-xs: 100%;
    --sg-container-sm: 536px;
    --sg-container-md: 728px;
    --sg-container-lg: 984px;
    --sg-container-xl: 100%;
    --sg-container-xxl: 1320px;

    --white: #f4f4f4;
    --acsent: #cd3433;
    --grey: #5c5a66;
    --black: rgba(0, 0, 0, 0.85);
    --bg: #f5f5f5;

    --font-family: "Noto Sans", sans-serif;
    --second-family: "Roboto", sans-serif;
    --third-family: "Anta", sans-serif;
    --font3: "Agdasima", sans-serif;
    --font4: "Bakbak One", sans-serif;
}

/* breadcrums */
.breadcrums-container {
    width: max-content;
    display: flex;
    gap: 15px;
    margin: 20px auto 50px auto;
    border-radius: 10px;
    padding: 14px 24px;
    background: var(--black);
}

.breadcrums-text {
    margin: 0;
    padding: 0;
}

.separator-holder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrums-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: var(--grey);
}

.breadcrums-link {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: var(--acsent);
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .breadcrums-text {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: 16px;
        color: var(--grey);

        max-width: 200px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media screen and (max-width: 567px) {
    .breadcrums-container {
        margin: 15px 15px 20px 15px;
        width: calc(100% - 30px);
    }
    .separator-holder{
        flex: 0 0 15px;
    }
    .breadcrums-text{
        max-width: 100%;
    }
    .breadcrums-text-container{
        flex: 0 0 auto;
    }
    .breadcrums-text-container:last-child{
        flex: 1;
        overflow: hidden;
    }
}
.sg-inner-container{
    padding-inline: var(--sg-container-sm-padding);
}
.girl-content-block {
    margin-bottom: 50px;
    gap: 20px;
}

.girl-content-block .sg-row {
    display: flex;
    flex-flow: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.girl-name {
    font-weight: 700;
    font-style: normal;
    font-size: 62px;
    line-height: 73px;
    letter-spacing: 0;
    text-align: center;
    color: var(--black);
    margin-bottom: 50px;
    margin-top: 50px;
}

.girl-data-grid {
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

.girl-data-grid__item {
    flex: 0 0 calc(33% - 4.66667px);
    background: rgba(244, 244, 244, .1);
    border-radius: 10px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.girl-data-grid__item-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 5px;
    color: rgba(92, 90, 102, 1);
}

.girl-data-grid__item-value {
    font-family: var(--font-family);
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
}

.girl-tags-list {
    font-family: var(--font-family);
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 0;
    color: rgba(244, 244, 244, 1);
    margin-top: 37px;
}

.girl-tags-list span {
    color: rgba(92, 90, 102, 1);

}

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

.girl-content-block .gallery {
    width: 100%;
    max-width: 620px;
    flex: 0 0 auto;
}

.girl-content-block .girl-data {
    width: 100%;
    max-width: 660px;
    flex: 1;
}

.thumbs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 200px;
    height: 600px;
    overflow: hidden;
}

.thumb-image .thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}

.thumb-image {
    height: 193px;
    /* висота однієї */
    flex-shrink: 0;
    transition: transform 0.3s ease;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;

}

.thumb-image::before {
    display: block;
    content: '';
    background: rgba(0, 0, 0, 0.85);
    position: absolute;
    opacity: 54%;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.thumb-image.active-thumb {
    opacity: 1;
    border: 2px solid rgba(0, 0, 0, 0.85);
}

.thumb-image.active-thumb::before {
    opacity: 1;
    display: none;
}

.preview-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.preview-image {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

.gallery-controls {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 20px;
    width: 100%;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 10px;
    padding: 14px 30px;
}

.gallery-controls .nav-prev,
.gallery-controls .nav-next {
    width: 30px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    cursor: pointer;
}

.nav-prev.disabled,
.nav-next.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}

.image-counter {
    font-weight: 500;
    font-style: normal;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
}

.image-counter .current-index {
    font-size: 24px;
    line-height: 28px;

}

.image-counter .total-count {
    font-size: 17px;
    line-height: 20px;
}

.gallery-controls .nav-prev img,
.gallery-controls .nav-next img {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(269deg) brightness(107%) contrast(102%);
}

.gallery-controls .nav-prev:hover img,
.gallery-controls .nav-next:hover img {
    filter: none;
}

.girl-data {
    background: rgba(0, 0, 0, 0.85);
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-flow: column;
}

.girl-data__item {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
}

.girl-data .price {
    font-family: var(--second-family);
    font-weight: 700;
    font-style: normal;
    font-size: 44px;
    line-height: 52px;
    letter-spacing: 0;
    color: #fff;
    margin-bottom: 30px;
}

.order-escort {
    display: flex;
    flex-flow: row;
    align-items: center;
    gap: 25px;
    margin-bottom: 36px;
}

.order-escort__title {
    flex: 0 0 auto;
    word-break: break-all;
    font-family: var(--font-family);
    font-weight: 500;
    font-style: normal;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0;
    color: var(--grey);
    width: 100%;
    max-width: 176px;
}

.order-escort__links {
    display: flex;
    flex-flow: row;
    flex: 1;
    width: 100%;
    max-width: 100%;
    gap: 10px;
}

.order-escort__links-item {
    background: #CD3433;
    box-shadow: 0px 8px 20px 0px #CD343380;
    width: 127px;
    height: 50px;
    padding: 0 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 127px;
}

.order-escort__links-item img {
    width: 30px;
    height: 30px;
}

/*Girl description content*/
.girl-description {
    display: flex;
    flex-flow: column;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

.girl-description__title {
    font-weight: 700;
    font-style: normal;
    font-size: 52px;
    line-height: 61px;
    letter-spacing: 0;
    text-align: center;
    color: var(--black);
    margin-bottom: 30px;
}

.girl-description__content p {
    font-family: var(--font-family);
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0;
}

.girl-description__content p {
    margin-bottom: 20px;
}

.girl-description__content p:last-child {
    margin-bottom: 0;
}

/*Girls related section*/
.related-girls-section {
    background-image: url('../images/front/slider-bkg.png');
    background-size: 100%;
    background-position: center;
    margin-bottom: 10px;
    padding: 50px 0;
    margin-top: 70px;
}

.related-girls-section__title {
    font-weight: 700;
    font-style: normal;
    font-size: 52px;
    line-height: 61px;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.slick-track {
    display: flex !important;
    gap: 20px;
}

.slick-slide {
    margin: 0 !important;
}

.related-girls .slick-slide {
    flex: 0 0 calc(33.3333% - 13.3333px);
    width: 100%;
    max-width: 415px;
    position: relative;
    margin: 0 20px 0 0;
    background: rgba(244, 244, 244, 0.1);
}

.slick-dots li button:before {
    top: -12px !important;
}

.slick-dots li button,
.slick-dots li {
    width: 6px !important;
    height: 6px !important;
    padding: 0 !important;
}

.slick-dots li button:before {
    width: 6px !important;
    height: 6px !important;
}

.related-girls .slick-list {
    margin: 0 0 0 -20px;
}

.slider-controls,.posts-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
}

.related-girls .slick-arrow:focus {
    outline: none;
}

.related-girls .slick-arrow {
    background: none;
    border: 0;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
}

.related-girls .slick-next {
    position: relative;
    right: auto;
    bottom: auto;
}

.related-girls .slick-prev {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
}

.slick-dots {
    position: relative !important;
    bottom: auto !important;
    width: auto;
    max-width: max-content;
}

.slick-prev,
.slick-next {
    transform: none !important;
    position: relative !important;
    top: auto !important;
}

.slick-prev::before,
.slick-next::before {
    display: none;
}

.slick-dots li button:before {
    opacity: 0.2 !important;
    color: #cd3433 !important;
}

.slick-dots li.slick-active button:before {
    font-size: 10px !important;
    opacity: 1 !important;
    color: rgba(205, 52, 51, 1) !important;
    top: -11px !important;
}

@media screen and (max-width: 1400px) {
    .girl-content-block .sg-row {
        gap: 20px
    }

    .related-girls .slick-slide {
        flex: 0 0 calc(33vw - 26.666667px);
    }

    .girl-content-block .gallery {
        max-width: 49%;
        height: 100%;
    }
}

@media screen and (max-width: 1240px) {
    .girl-content-block .sg-row {
        flex-wrap: wrap;
    }

    .gallery {
        flex: 0 0 100%;
        max-width: 640px !important;
        margin: 0 auto 20px auto;
    }

    .gallery-controls {
        position: relative;
        flex-flow: column;
        bottom: auto;
        width: max-content;
        height: 100%;
        background: transparent;
        padding: 0;
    }

    .image-counter {
        display: none;
    }

    .gallery-controls .nav-prev {
        transform: rotate(90deg);
        height: 30px;
    }

    .gallery-controls .nav-next {
        transform: rotate(90deg);
        height: 30px;
    }

    .girl-data {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .girl-data__item:last-child {
        flex: 1 !important;
        max-width: 100% !important;
    }

    .related-girls-section {
        background-size: auto;
        background-position: center;
    }
}

@media screen and (max-width: 1024px) {
    .girl-data {
        column-gap: 100px;
        flex-flow: row;
        flex-wrap: wrap;
    }

    .price {

        max-width: max-content;
    }

    .order-escort {
        max-width: 176px;
        flex-flow: column;
        align-items: flex-start;
    }

    .order-escort__title {
        width: auto;
        max-width: 176px;
    }

    .order-escort__links {
        flex-flow: column;
        height: 100%;
    }

    .order-escort__links-item {
        flex: 0 0 auto;
    }

    .girl-data-grid {
        order: 2;
        flex: 1;
    }

    .girl-data-grid__item {
        flex: 0 0 32%;
    }

    .girl-tags-list {
        flex: 1;
        order: 2;
    }
}

@media screen and (max-width: 900px) {
    .girl-content-block .girl-data {
        column-gap: 60px;
    }

    .girl-data-grid__item {
        flex: 1;
    }
}

@media screen and (max-width: 768px) {
    .girl-name {
        font-size: 52px;
        line-height: 61px;
        margin-bottom: 30px;
    }

    .girl-data {
        flex-flow: column;
        flex: 0 0 auto;
    }

    .girl-data__left .girl-data__item {
        flex: 0 0 auto;
        height: 100%;
    }

    .order-escort {
        flex: 0 0 auto;
        flex-flow: row;
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .order-escort__links {
        flex-flow: row;
        flex: 1;
        height: auto;
    }

    .order-escort__links-item {
        width: auto;
        flex: 0 0 calc(33.3333% - 6.666667px);
        padding: 0 10px;
    }

    .girl-data-grid__item {
        flex: 0 0 calc(33% - 6.6666px);
    }

    .related-girls .slick-slide {
        flex: 0 0 calc(50vw - 30px);
        max-width: 50%;
    }

    .related-girls-section .sg-inner-container {
        padding: 0 20px;
    }
}

@media screen and (max-width: 560px) {
    .girl-name {
        margin-top: 20px;
        margin-bottom: 15px;
        font-size: 34px;
        line-height: 40px;
    }

    .sg-services-container {
        padding: 0 5px;
    }

    .girl-data {
        padding: 20px 15px;
    }

    .gallery {
        margin-bottom: 0;
    }

    .girl-tags-list {
        margin-top: 20px;
        text-align: center;
    }

    .thumbs-wrapper {
        display: none;
    }

    .girl-content-block .sg-row {
        gap: 10px;
    }

    .girl-content-block .gallery {
        padding: 0 10px;
        position: relative;
    }

    .girl-content-block {
        margin-bottom: 40px;
    }

    .girl-description-block {
        padding: 0 15px;
    }

    .girl-description__title {
        font-size: 28px;
        line-height: 33px;
        margin-bottom: 10px;
    }

    .girl-data-grid__item {
        padding: 10px 3px;
    }

    .gallery-controls {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9;
        width: 100%;
        max-width: 100%;
        flex-flow: row;
    }

    .gallery-controls .nav-prev,
    .gallery-controls .nav-next {
        transform: none;
    }

    .gallery-controls .nav-prev {
        margin-left: -15px;
    }

    .gallery-controls .nav-next {
        margin-right: 5px;
    }

    .gallery-controls .nav-prev img,
    .gallery-controls .nav-next img {
        filter: invert(45%) sepia(12%) saturate(3084%) hue-rotate(313deg) brightness(78%) contrast(120%);

    }

    .order-escort {
        flex-flow: column;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 20px;
    }

    .girl-data .price {
        font-size: 34px;
        line-height: 40px;
        margin-bottom: 15px;
    }

    .order-escort__title {
        font-size: 17px;
        line-height: 23px;
        text-align: center;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .girl-data-grid__item {
        flex: 0 0 calc(50% - 5px)
    }

    .related-girls-section .sg-inner-container {
        padding: 0 15px;
    }

    .related-girls-section {
        margin-top: 40px;
        padding: 30px 0;
    }

    .related-girls-section__title {
        font-size: 28px;
        line-height: 33px;
        margin-bottom: 20px;
    }

    .related-girls .slick-slide {
        flex: 0 0 calc(100vw - 30px)
    }
}

@media screen and (max-width: 450px) {
    .girl-data-grid__item {
        flex: 0 0 100%;
    }
}