.ui-gradient {
      /* background: linear-gradient(to bottom right, #E5A938 0%, rgba(36, 36, 36, 0) 51%, #E5A938 98%); */
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px 6px;
    margin: 20px 5px;
}

.ui-greygradient {
  background-color: #28282a;
    border-radius: 30px 6px;
    padding: 10px;
    max-width: 100%;
    width:100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.container .text_p{
  font-size: 18px !important;
  padding-bottom: 20px;
}

.h2__inner, .h3__inner , .h4__inner, .h5__inner, .h6__inner, .h2__inner {
    padding: 10px;
}

.h2-text, .h3-text, .h4-text, .h5-text, .h6-text {
    line-height: 135%;
    font-family: var(--font-family);
    font-weight: 400;
    color: var(--text-h);
}

.h2-text {
    font-size: 58px;
}

.h3-text {
    font-size: 52px;
}

.h4-text {
    font-size: 42px;
}

.h5-text  {
    font-size: 32px;
}

.h6-text {
    font-size: 22px;
}

.cursive {
    font-family: var(--second-family);
    font-style: italic;
    font-weight: 400;
    font-size: 17px;
    line-height: 165%;
    color: var(--txt);
}

.text_p {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 165%;
    color: var(--txt);
}

.bold__text-p {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 17px;
    line-height: 165%;
    color: var(--txt);
}

.list__inner, .cursive__inner, .text__inner, .bold__text-inner {
    padding: 10px 5px;
}

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

.numeric__list li {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 165%;
    color: var(--text-h);
    display: flex;
    align-items: center;
    column-gap: 15px;
    position: relative;
    padding-left: 40px;
    min-height: 30px;
}

.numeric__list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: linear-gradient(to bottom right, #E5A938 0%, rgba(36, 36, 36, 0) 51%, #E5A938 98%);
  padding: 2px;

  border-radius: 10px 4px;
  padding: 2px;
  box-sizing: border-box;
  z-index: 0;
}

.numeric__list li::after {
    content: attr(data-number);
    position: absolute;
    top: 2px;
    left: 2px;
    content: attr(data-number);
    border-radius: 10px 4px;
    width: 26px;
    height: 26px;
    background-color: #28282a;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    color: var(--text-h);
    z-index: 1;
}




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

.doted__list li {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 165%;
    color: var(--text-h);
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.doted__list li:before {
    content: '';
    display: flex;
    border-radius: 5px 2px;
    width: 14px;
    height: 14px;
    background: #e5a938;
}



/* Table UI  */

.ui-table {
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
  overflow-x: auto;
}

.ui-table__header {
  display: flex;
  background: transparent;
  color: #d6d6d6;
  font-weight: 600;
  padding: 6px 10px;
}

tbody , table {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.ui-table__row {
  display: flex;
  background: #2b2b2f;
  border-radius: 30px 6px;
  padding: 10px 10px;
  gap: 10px;
  box-shadow: 0 0 5px rgba(229, 169, 56, 0.1);
}

.ui-table__cell {
  flex: 1;
  color: #f0f0f0;
  font-size: 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 680px) {
  .ui-table {
    padding: 8px;
  }

  .ui-table__header,
  .ui-table__row {
    padding: 6px;
    gap: 6px;
  }

  .ui-table__cell {
    font-size: 13px;
    padding: 4px;
    min-width: 80px;
  }
}

/* Spoiler UI  */

.spoiler-block {
  border-radius: 12px 0 12px 12px;
  padding: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.spoiler-icon {
    position: relative;
}

.spoiler-label.blur:before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    border: 1.50px solid #e5a938;
    width: 26px;
    height: 1px;
    transform: rotate(33deg);
    z-index: 1;
}

.spoiler-label {
  display: flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
  color: #E5A938;
  text-transform: uppercase;
  margin-bottom: 8px;
  gap: 6px;
  position: relative;
}

.spoiler-content {
  color: #dcdcdc;
  font-size: 14px;
  line-height: 1.7;
  max-height: calc(1.7em * 4); 
  overflow: hidden;
  position: relative;
  filter: blur(4px);
  transition: all 0.3s ease;
}

.spoiler-block.open .spoiler-content {
  max-height: calc(1.7em * 10); 
  overflow-y: auto;
  filter: none;
}



.text-with_left-image, .text-with_right-image {
  position: relative;
  line-height: 1.8;
  font-size: 16px;
  color: #e0e0e0;
  text-align: justify;
}

.image__left-decor {
  float: left;
  margin: 0 30px 30px 0;
}
.image__right-decor {
  float: right;
  margin: 0 0 30px 30px;
}
.image__left-decor, .image__right-decor {
  
  max-width: 700px;
  width: 44vw;
  height: auto;
  max-height: 500px;
  
  background-image: url('/wp-content/uploads/image.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 30px 10px;
  background-color: #1a1a1a;
  shape-outside: inset(0 round 30px 10px);
  shape-margin: 20px;
  box-shadow: 
    0 0 30px rgba(229, 169, 56, 0.6),
    inset 0 0 30px rgba(229, 169, 56, 0.15);
}

.decor-img {
  width: 100%;
  height: 100%;
  border-radius: 30px 10px;
}

.text-with_left-image::after, .text-with_right-image::after {
  content: "";
  display: table;
  clear: both;
}

.ui-link {
    text-decoration: none;
    color: #e5a938;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

.ui-link:hover {
    text-decoration: underline;
}




.text-with_center-image {
  position: relative;
  line-height: 1.8;
  font-size: 16px;
  color: #e0e0e0;
  text-align: justify;
  max-width: 65vw;
  margin: 35px auto;
}

.image__center-decor {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  max-height: 500px;
  margin: 0 auto 30px;
  border-radius: 30px 10px;
  background-color: #1a1a1a;
  box-shadow:
    0 0 30px rgba(229, 169, 56, 0.6),
    inset 0 0 30px rgba(229, 169, 56, 0.15);
  overflow: hidden;
}

.image__center-decor .decor-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.center-image-text {
  padding: 0 10px;
}



@media (max-width: 1330px) {
    .image__left-decor, .image__right-decor {
        max-width: 800px;
        width: 47vw;
        max-height: 500px;

    }
    .text-with_left-image, .text-with_right-image {
        padding: 10px;
    }

    .h2-text { font-size: 46px; line-height: 125%; }
    .h3-text { font-size: 40px; line-height: 125%; }
    .h4-text { font-size: 34px; line-height: 125%; }
    .h5-text { font-size: 26px; line-height: 120%; }
    .h6-text { font-size: 20px; line-height: 120%; }
}

@media (max-width:980px) {
    .h2-text { font-size: 36px; line-height: 120%; }
    .h3-text { font-size: 32px; line-height: 120%; }
    .h4-text { font-size: 28px; line-height: 120%; }
    .h5-text { font-size: 22px; line-height: 115%; }
    .h6-text { font-size: 18px; line-height: 115%; }
}

@media (max-width:680px) {
    .ui-table__cell ,.cursive__inner, .text_p, .bold__text-p, .numeric__list li, .doted__list li, .text-with_left-image p, .text-with_right-image p {
        font-size: 15px;
        line-height: 160%;
    }
}

@media (max-width: 580px) {
    .text-with_center-image {
        max-width: 100%;
    }
    .image__left-decor, .image__right-decor {
      shape-margin: 0px;
      width: 57vw;
    }
    .image__right-decor {
        margin: 0 0 10px 20px;
    }
    .image__left-decor {
        margin: 0 20px 10px 0;
    }
}

@media (max-width: 480px) {
    .h2-text { font-size: 28px; line-height: 115%; }
    .h3-text { font-size: 24px; line-height: 115%; }
    .h4-text { font-size: 22px; line-height: 115%; }
    .h5-text { font-size: 18px; line-height: 110%; }
    .h6-text { font-size: 16px; line-height: 110%; }
}




/* search  */

.section__search {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  z-index: 778;
}
.search {
}
.search__overlay {
  background-color: #1a1a1a71;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.search__container {
  margin: 0 -118px 0 0;
  width: 100%;
  height: 100%;
  max-width: 1080px;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
}
.search__header {
  min-height: 123px;
  background: rgb(165, 121, 38);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 30px;
}
.search__input-inner {
  width: 80%;
  min-width: 30px;
}
.search__input {
  width: 100%;
  height: 100%;
  background: inherit;

  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-h);
  border: none;
}
.search__input:focus-visible  { 
  border: none;
  outline: none;
}
.search__input::placeholder { 
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase; 
  color: var(--text-h);
}
.search__content {
  padding: 20px 30px;
  background: #212226;
  border-radius: 0 0 10px 10px;
}
.search__content-mobile {
  display: none;
  flex-direction: column;
  row-gap: 20px;
}
.search__tab-girls-catalog {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.search__tab-category-catalog {

}



.search__tabs-titles {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 21px;
}
.search__tabs-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--txt);
}
.search__tab-content {
}
.search__content-desk {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.search__girls {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.search__title-category {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--txt);
}
.search__catalog-gils, .search__bycategory-catalog, .search__tab-girls-catalog, .search__tab-category-catalog {
  max-height: 505px;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #d6d6d6;
  justify-content: space-between;
}
.search-card__inner {
  display: block;
  margin: 0;
  border-radius: 6px 30px;
  text-decoration: none;
  max-width: 330px;
  width: 100%;
}
.search-card {
  max-width: 326px;
  border-radius: 6px 25px;
  display: flex;
  flex-direction: row;
  column-gap: 20px;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
}
.search-card__image-inner {
  border-radius: 6px 22px;
  width: 90px;
  height: 135px;
}
.search-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px 22px;
}
.search-card__info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  row-gap: 10px;
}
.search-card__title-inner {
}
.search-card__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-h);
  line-height: 25px;
}
.search-card__age-inner {
}
.search-card__age {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-h);
  line-height: 20px;
}
.search-card__price-inner {
}
.search-card__price {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-h);
  line-height: 20px;
}
.search-card__marker {
  color: #e5a938;
}
.search-card__suptitle {
}
.search-card__icon-inner {
  border-radius: 100%;
  background: #212226;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 15px 12px 12px 13px;
  cursor: pointer;
}

.search-card__icon-inner:hover{
  box-shadow: 0 0 10px 2px rgba(229, 169, 56, 0.6);
}
.search-card__icon {
}
.search__bycategory {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.search__bycategory-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--txt);
}
.search__bycategory-catalog {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  overflow-y: auto;
  max-height: 120px;
}
.search-category__item-inner {
  max-width: 325px;
  min-width: 290px;
  width: 100%;
}
.search-category__item-link {
  border-radius: 6px 20px;
  width: 100%;
  height: 100%;
  background: #2c2c30;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  transition: all 300ms ease-in-out;
  color: #d8d8d8;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
}


.search-category__item-link:hover {
  background: #e5a938;
}
.search-category__item-link:hover .search-category__name {
  color: #000;
}
.search-category__item {
}
.search-category__name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-h);
  line-height: 48px;
}

.search__tabs-title.active {
  color: #E5A938;
}

.search__tab-girls-catalog,
.search__tab-category-catalog {
  display: none;
  flex-direction: row;
  gap: 10px;
}

.search__tab-girls-catalog.active,
.search__tab-category-catalog.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tab-girls {

}

.tab-category {

}

.image-container,
.video-container {
    margin: 0 15px 15px 0;
}

.image-single_blog,
.video_single_blog {
    max-width: 100%;
    height: auto;
    display: block;
}

.text_p {
    margin-top: 5px;
    font-size: 14px;
    color: var(--text-h);
}

.image-left img,
.video-left video{
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

.image-right img,
.video-right video{
    float: right;
    margin-left: 15px;
    margin-bottom: 15px;
}

.image-center img,
.video-center video{
    display: block;
    margin: 15px auto;
    max-width: 80%; 
    clear: both; 
}
.image-container img,
.video-container video{
  max-width: 320px;
  width: 100%;
  height: 100%;
  object-fit: contain;

}
.image-container .text_p,
.video-container .text_p{
  font-size: 17px;
  color: var(--txt);
}

.header__search-inner{
  right: 65px;
}

.search__btn-close {
  display: none;
}

@media (max-width:1310px) {
  .search__container {
    margin: 0;
  }
  .header__search-inner.active-search {
    position: absolute;
    top: 36px;
    right: 13vw !important;
    left: auto !important;
  }
  .header__search-inner.active-search .search__btn-close {
    font-size: 40px;
    color: var(--text-h);
    font-weight: 100;
    position: absolute;
    right: -42px;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
}

@media (max-width: 1080px) {
  .search-card__inner {
    max-width: 310px;
  }
}

@media (max-width: 1070px) {
  .search-category__item-inner {
    max-width: 290px;
  }
  .header__search-inner.active-search {
    /* right: 9vw!important; */
  }
}

@media (max-width: 768px) {
  .header__search-inner.active-search {
    right: 50px!important;
  }
  .header__search-inner.active-search .search__btn-close {
    right: -30px;
  }
  .search__content-mobile {
    display: flex;
  }
  .search__content-desk {
    display: none;
  }
  .search__container {
    margin: 0;
  }
  .search__header {
    min-height: 50px;
  }
  .search__content {
    padding: 20px 10px;
  }
  .search__tab-girls-catalog.active, .search__tab-category-catalog.active {
    padding: 0 8px;
  }
  .search-category__item-inner {
    min-width: 270px;
    max-width: 270px;
  }
  .search-action-bnt.active-search .header__search {
    position: relative;
    background:inherit;
    box-shadow: none;
  }
  .search-action-bnt.action-hidden.active-search .header__search:hover {
    box-shadow: none;
  }
  .search__content {
    height: 100%;
  }
  .search-action-bnt.action-hidden.active-search .search__btn-close {
    right: -30px;
  }
  .search-action-bnt.action-hidden.active-search {
    position: absolute;
    top: 0px;
    right: 40px;
    left: auto;
  }

  .search-action-bnt.action-hidden.active-search .header__search {
    position: relative;
  }
  .search__container {
    border-radius: 0;
  }
  .search__tab-content {
    max-height: 78vh;
    overflow: auto;
  }
}