: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);
}


.girl-page__header {
  margin: 0 auto;
}



















.girls-list__item {
  --accent:       #d84949;
  --accent-light: #6d6962;
  --text-primary: #201b11;
  --text-muted:   #1b1911;
  --text-dim:     #221e27;
  --tag-bg:       rgba(184, 58, 20, 0.521);
  --tag-border:   rgba(32, 32, 31, 0.3);
  --radius-card:  24px;
  --radius-img:   18px;
}

.girls-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.girls-list__item {
  flex: 0 0 calc(50% - 8px);
  max-width: calc(50% - 8px);
  background: #ffbfa7;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: row;
  overflow: hidden;
  position: relative;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  cursor: pointer;
}

/* @media (max-width: 1068px) {
    .girls-list .girls-list__item {
        flex: 0 0 100%;
        max-width: 100%;
    }
} */

.girls-list__item:hover {
  transform: translateY(-3px);
  border-color: rgba(201,169,110,0.25);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.4),
    0 0 0 1px rgba(201,169,110,0.1);
}

.girl-thumb-wrapper {
  flex: 0 0 35%;
  min-width: 150px;
  max-width: 220px;
  padding: 10px 0 10px 10px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-img) 0 0 var(--radius-img);
}
.bages-wrapper,
.girl-info-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.girl-thumb-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--card-bg) 100%);
  pointer-events: none;
}

.girl-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.girls-list__item:hover .girl-thumbnail {
  transform: scale(1.04);
}

.girl-info {
  flex: 1;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  overflow: visible;
}
.girl-info.has-video{
  position: relative;
}


.girl-thumb-wrapper {
    position: relative;
    overflow: hidden;
}

.girl-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 1;
    padding: 8px;
    border-radius: 30px;
}

.girl-video.is-playing {
    opacity: 1;
}

.girl-thumbnail {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .3s ease;
}

.girl-thumbnail.is-hidden {
    opacity: 0;
}

.girl-video-btn {
    position: absolute;
    bottom: 10px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 43px;
    left: calc(50% - 20px);
    top: 50%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.with_video{
  font-size: 14px;
}
.girl-video-btn svg{
  width: 12px;
  height: 12px;
  fill: white;
}
.girl-video-btn:hover {
    background: rgba(0,0,0,0.75);
    transform: scale(1.1);
}

.girl-video-btn[aria-pressed="true"] svg path {
    d: path("M6 19h4V5H6v14zm8-14v14h4V5h-4z"); /* pause icon */
}

.girl-video-btn[aria-pressed="true"] svg {
    content: '';
}
.girl-name {
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: .01em;
  margin: 0;
}


.girl-name a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}

.girl-name a:hover{
  color: var(--accent);
}

/* stretched-link: весь <li> — клікабельний */
.girl-name a.stretched-link::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ── Локація ─────────────────────────────────────────────── */
.girl-location {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
}

.girl-location p {
  font-size: 11px;
  margin: 0;
  letter-spacing: .02em;
}

/* ── Атрибути ────────────────────────────────────────────── */
.girl-attributes {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
}

.girl-attributes div {
  display: flex;
  gap: 4px;
  align-items: baseline;
  font-size: 11px;
}

.attr-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-dim);
  font-weight: 400;
  min-width: 38px;
  flex-shrink: 0;
}

.girl-attributes dd {
  margin: 0;
  font-size: 12px;
  color: var(--text-primary);
  font-weight: 500;
  letter-spacing: .02em;
}

/* ── Ціни ────────────────────────────────────────────────── */
.girl-prices {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-item {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 12px;
}

.price-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-dim);
  flex-shrink: 0;
}

.price-item [itemprop="lowPrice"],
.price-item [itemprop="highPrice"] {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  font-family: var(--font-secondary);
}

.girl-params-block {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  overflow: hidden;
}

.girl-services {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-content: flex-start;
}

.service-tag {
    font-size: 12px;
    padding: 5px 10px;
    background: var(--tag-bg);
    border: 1px solid var(--tag-border);
    border-radius: 20px;
    color: #000000;
    letter-spacing: .04em;
    font-weight: 400;
    transition: background .2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.badge-new {
    z-index: 3;
    width: fit-content;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 600;
    background: #4D0F0F;
    color: #D9D9D9;
    padding: 2px 6px;
    border-radius: 20px;
    animation: pulse-new 2.5s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(244, 85, 30, 0.3);
}

@keyframes pulse-new {
    0%, 100% { box-shadow: 0 0 0 0 rgba(244, 85, 30, 0.6); }
    50%       { box-shadow: 0 0 0 5px rgba(244, 85, 30, 0); }
}

/* подсветка всей карточки */
.girls-list__item.is-new {
    border-color: rgba(244, 85, 30, 0.3);
    box-shadow: 0 0 0 1px rgba(244, 85, 30, 0.15),
                inset 0 0 30px rgba(244, 85, 30, 0.03);
}

.girls-list__item.is-new:hover {
    border-color: rgba(244, 85, 30, 0.5);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4),
                0 0 0 1px rgba(244, 85, 30, 0.3),
                inset 0 0 40px rgba(244, 85, 30, 0.05);
}

.girl-likes {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 3px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 20px;
    letter-spacing: .03em;
    transition: background .2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.girl-likes svg {
    fill: #e05c6e;
    flex-shrink: 0;
    width: 12px;
    height: 13px;
}
.girl-location svg{
  width: 14px;
  height: 14px;
}

.girls-list__item:hover .girl-likes {
    background: rgba(0,0,0,0.65);
}

/* ── Адаптив (мобілка) ───────────────────────────────────── */
@media (max-width: 600px) {
  .girls-list__item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}




























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





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

.girl-thumb-wrapper img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}




.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;
}

.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;
}



@media screen and (max-width: 991px) {
  .left-sidebar {
    display: none;
  }

  .catalog-wrapper {
    max-width: 100% !important;
    margin-left: 0 !important;
  }
}

@media screen and (max-width: 900px) {
  .girls-list {
    padding-left: 0;
  }

  .girl-thumb-wrapper {
    overflow: visible;
    margin-bottom: 0;
  }
}

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

  .girls-list {
    gap: 10px;
  }
}


.category-container {
  display: flex !important;
  flex-flow: column !important;
  align-items: center !important;
}

.category-container .page-title {
  margin-top: 0;
}

.catalog-wrapper {
  flex: 1;
  display: flex;
  flex-flow: column;
  height: 100%;
  width: 100%;
  max-width: calc(100% - 310px);
  margin-left: auto;
}

.catalog-wrapper.fixed {}

.sort-girls {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  padding-left: 20px;
  margin-bottom: 20px;
  flex: 0 0 auto;
}

.sort-name {
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  color: var(--black);
  margin-right: 10px;
}

.sort-btn {
  height: 50px;
  width: max-content;
  background: var(--bg-elements);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  cursor: pointer;
}

.sort-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sort-toggle {
  display: none;
}

.sort-reset {
  display: none;
}

.sort-btn span {
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 19px;
  text-align: center;
  color: var(--black);
}

.sort-btn.active {
  background: var(--main);
}

.sort-btn.active span {
  color: var(--white);
}

.catalog-wrapper .girls-list {
  flex: none;
}

.catalog-wrapper.scroll-active {
  margin-left: auto;
  max-width: calc(100% - 310px);
}

.sort-btn:hover {
  background: var(--liner-bg);
}

.sort-btn:hover span {
  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;
}

.sort-reset {
  background: var(--main);
  width: 50px;
  height: 50px;
  background: var(--main);
  border-radius: 20px;
  display: none;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.sort-reset img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(6%) saturate(395%) hue-rotate(277deg) brightness(114%) contrast(100%);
}

.sort-dropdown {
  display: none;
}

.sort-dropdown {
  position: relative;
  max-width: 100%;
  font-family: inherit;
  margin-bottom: 20px;
}

/* Шапка */
.sort-header {
  background: var(--bg-elements);
  flex: 1;
  width: 100%;
  padding: 0 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 14px;
  margin-right: 20px;
  height: 50px;
}

.sort-arrow {
  transition: transform 0.2s ease;
  transform: rotate(90deg);
}

/* Список варіантів */
.sort-options {
  display: none;
  position: absolute;
  top: 50px;
  left: 75px;
  right: 0;
  background: var(--bg-elements-white);
  padding: 20px;
  z-index: 1000;
  flex-flow: column;
  gap: 10px;
}

.sort-options .sort-btn {
  width: 100%;
}

/*Seo listing*/
.seo-content-container {
  margin: 70px auto 70px auto;
  max-width: 1290px;
  padding: 0;
  background: var(--bg-elements-white);
  border-radius: 30px;
  padding: 50px;
}

.seo-content-wrapper {
  padding: 20px;
  flex-flow: column;
  margin: 0 auto;
  column-count: 2;
  column-gap: 20px;
  background: var(--bg-elements);
  border-radius: 30px;
}

.seo-content-wrapper__item {
  display: flex;
  flex-flow: column;
  /* gap: 30px; */
}

.seo-content-wrapper__item:first-child h2 {
  margin-top: 0;
}

.seo-content-wrapper__item-title {
  font-family: var(--font-secondary);
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 50px;
  text-align: center;
  color: var(--black);
  margin: 20px 0 0 0;
  padding: 0 20px;
}

.seo-content-wrapper__item-description {
  background: var(--bg-elements);
  border-radius: 30px;
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
  padding: 20px 50px 0 50px;
}

.seo-content-wrapper__item-description ul,
.seo-content-wrapper__item-description ol {
  margin-left: 0;
  padding-left: 30px;
}

.seo-content-wrapper__item-description ul>li,
.seo-content-wrapper__item-description ol>li {
  padding-left: 0;
}

.space {
  width: 100%;
  height: 100px;
}

.seo-content-wrapper__item-description p {
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  text-align: left;
  color: var(--black);
  margin: 0;
}

.category-faq-wrapper {
  background: var(--bg-elements-white);
  border-radius: 30px;
  padding: 50px;
  gap: 20px;
  display: flex;
  flex-flow: column;
  flex: 0 0 100%;
  width: 100%;
  margin-bottom: 70px;
}

.category-faq-wrapper__title {
  font-family: var(--font-secondary);
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 50px;
  text-align: center;
  color: var(--black);
  margin: 0;
}

.category-faq-wrapper__item {
  background: var(--bg-elements);
  border-radius: 30px;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  padding: 20px 50px;
}

.faq-question {
  font-family: var(--font-secondary);
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: var(--black);
  margin: 0 0 10px 0;
}

.faq-answer p {
  margin: 0;
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  text-align: left;
  color: var(--black);
}

.faq-answer p a {
  text-decoration: none;
  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;
}

@media screen and (max-width: 1140px) {
  .sort-girls {
    gap: 8px;
  }

  .sort-btn {
    padding: 0 12px;
  }
}

@media screen and (max-width: 1024px) {
  .sort-btn {
    padding: 0 10px;
  }
}

@media screen and (max-width: 900px) {
  .seo-content-container {
    margin: 50px auto 50px auto;
    padding: 30px 20px;
  }

  .seo-content-wrapper {
    margin: 0 auto;
  }

  .category-faq-wrapper {
    margin: 50px auto 50px auto;
    padding: 30px 20px;

  }
}

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

  h2.seo-content-wrapper__item-title,
  .category-faq-wrapper__title {
    font-size: 52px;
    line-height: 65px;
  }

  .seo-content-wrapper {
    gap: 40px;
    column-count: 1;
  }

  .seo-content-wrapper .seo-content-wrapper__item {
    gap: 30px;
  }
}

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

  #relatedGayWrap .girl-price sup,
  #relatedGirls .girl-price sup,
  #popularGirls .girl-price sup {
    margin-left: 0;
  }

  .girls-list__item .entry-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  .seo-content-container {
    margin: 40px auto 40px auto
  }

  .category-faq-wrapper {
    margin: 40px auto;
  }

  h2.seo-content-wrapper__item-title,
  .category-faq-wrapper__title {
    font-size: 32px;
    line-height: 40px;
  }

  .seo-content-wrapper {
    gap: 20px;
  }

  .seo-content-wrapper .seo-content-wrapper__item {
    gap: 0;
  }

  .seo-content-wrapper__item-description,
  .category-faq-wrapper__item {
    padding: 15px;
  }

  .sort-girls {
    flex-wrap: wrap;
  }

  .sort-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 14px;
  }

  .sort-toggle .sort-arrow {
    transition: transform 0.2s;
  }

  .sort-girls.open .sort-toggle .sort-arrow {
    transform: rotate(90deg);
  }

  .sort-buttons {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px;
    margin-top: 4px;
  }

  .sort-girls.open .sort-buttons {
    display: flex;
  }

  .sort-btn {
    width: 100%;
    text-align: left;
    padding: 10px 12px;
    border-radius: 6px;
  }

  .sort-btn:hover,
  .sort-btn.active {
    background: #fef0ec;
  }
  .dropdown-header{
    width: 100%;
  }

}
@media screen and (max-width: 375px) {
  .girls-list__item{
    flex-direction:column ;
    
  }
  .girl-thumb-wrapper{
    padding: 10px;
  }
  .girls-list__item {
    flex-direction: column;
    flex: 1 1 100%;
  }

  .girl-thumb-wrapper {
    flex: 0 0 auto;
    max-width: 100%;
    max-height: 220px;
    margin-bottom: 10px;
    border-radius: var(--radius-img);
  }

  .girl-info {
    padding: 12px;
    gap: 5px;
  }
}