:root {
  --header-height: 80px;
}

/* ── Фільтри ───────────────────────────────────────────────── */
.btn-wrapper-filters {
  display: flex;
  gap: 10px;
  margin: 16px 0 24px;
  flex-wrap: wrap;
}

.btn-wrapper-filters .btn {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid #c4a47c;
}

.btn-wrapper-filters .btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-wrapper-filters .btn.active,
.btn-filter-vip.active {
  background-color: var(--color-primary);
  border-color: rgba(255, 180, 0, 0.5);
  color: #ffca28;
}
.btn-filter-novip.active {
  background: rgba(100, 180, 255, 0.2);
  border-color: rgba(100, 180, 255, 0.5);
  color: #90caf9;
}
.btn-filter-all.active {
  background: rgba(120, 80, 255, 0.2);
  border-color: rgba(140, 100, 255, 0.5);
  color: #c4b0ff;
}

/* ── Ціна на картці ────────────────────────────────────────── */
.model-card__price {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 4px 0 8px;
}

.model-card__price strong {
  color: #fff;
  font-size: 14px;
}

.model-card__price span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.btn {
  transition: all 0.3s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.header__nav a:hover {
  color: var(--color-primary);
}
.btn--outline {
  border: 1px solid #e0e0e0;
  background: 0 0;
}
.btn--circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.2rem;
  backdrop-filter: blur(4px);
}
.btn--circle:hover {
  background: #fff;
  color: var(--color-primary);
}
.catalog {
  padding: 4rem 0 6rem;
}
.catalog__header {
  max-width: var(--container-width);
  margin: 0 auto 2rem;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
}
.catalog__count {
  color: var(--color-text-light);
  font-size: 0.875rem;
}
.catalog__count strong {
  color: var(--color-text);
}
.catalog__grid {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .catalog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.model-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #eaeaea;
  transition: transform 0.4s ease;
}
.model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.model-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.model-card:hover .model-card__img {
  transform: scale(1.05);
}

.badge {
  position: absolute;

  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.badge--vip {
  background: #b620e0;
  color: #fff;
  left: 5px;
  top: 5px;
}
.badge--novip {
  background: rgba(196, 164, 124, 0.4);
  border: 1px solid rgba(200, 200, 200, 0.5);
  color: #fff;
  left: 5px;
  top: 5px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  transform-origin: center;
  border: 1px solid #c4a47c;
}

.badge--verified {
  background: rgba(120, 80, 255);
  border: 1px solid rgba(140, 100, 255, 0.5);
  color: #fff;
  right: 5px;
  top: 40px;
}
@keyframes pulse-online {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}
/* ── Confidential ──────────────────────────────────────────── */
.badge--confidential {
  background: rgb(57 186 17);
  border: 1px solid rgba(255, 200, 0, 0.4);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  animation: pulse-online 1.8s infinite;
  right: 13px;
  top: 5px;
}

.model-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  z-index: 10;
}
.model-card__name {
  font-size: 1.25rem;
  font-family: var(--font-serif);
}
.model-card__location {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.model-card__actions {
  display: flex;
  gap: 0.5rem;
}
.btn--small {
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  flex: 1;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 4rem;
}
.pagination__item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #fff;
}
.pagination__item.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.pagination__dots {
  color: #999;
  align-self: end;
  padding-bottom: 0.5rem;
}
.footer {
  background: #fff;
  padding: 4rem 0 2rem;
  border-top: 1px solid #eaeaea;
}
.footer__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 3fr;
  gap: 3rem;
}
.footer__logo {
  font-family: var(--font-serif);
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
}
.footer__warning {
  font-size: 0.75rem;
  color: #999;
}
.model-page {
  background-color: var(--color-bg);
  padding-top: var(--header-height);
}
.profile-split {
  display: flex;
  min-height: 100vh;
  align-items: flex-start;
}
.profile-split__left {
  width: 50%;
  position: sticky;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
}
.slider-container {
  position: relative;
  width: 100%;
  flex-grow: 1;
  min-height: 0;
  overflow: hidden;
  touch-action: pan-y;
}
.profile-main-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile-main-img {
  position: relative;
  top: var(--header-height);
  width: 100%;
  height: calc(100vh - var(--header-height));
  object-fit: cover;
  object-position: center top;
}
.profile-split__right {
  width: 50%;
  padding: 120px 4rem 4rem 4rem;
}
.badge--now-booking {
  background: #f0e6ff;
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: inline-block;
}
.profile-name {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--color-text);
}
.profile-location {
  font-size: 1.125rem;
  color: var(--color-primary);
  font-style: italic;
  font-family: var(--font-serif);
  margin-bottom: 2rem;
}
.profile-stats {
  display: flex;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 2rem;
}
.stat-box {
  flex: 1;
  padding: 1.5rem 0;
  text-align: center;
  border-right: 1px solid #e0e0e0;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-text-light);
  letter-spacing: 1px;
}
.stat-box:last-child {
  border-right: none;
}
.stat-box strong {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-serif);
  color: var(--color-primary);
  margin-bottom: 0.25rem;
  font-weight: 400;
}
.profile-section {
  margin-bottom: 2.5rem;
}
.section-title {
  font-size: 0.875rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.tag {
  padding: 0.5rem 1.25rem;
  background: #edeef2;
  border-radius: 4px;
  font-size: 0.875rem;
  color: var(--color-text);
}
.rates-table {
  width: 100%;
  border-collapse: collapse;
}
.rates-table td,
.rates-table th {
  padding: 1.25rem;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.875rem;
}
.rates-table th {
  color: var(--color-primary);
  font-weight: 500;
  border-top: 1px solid #e0e0e0;
}
.rates-table td:first-child,
.rates-table th:first-child {
  text-align: left;
}
.rates-table td:last-child,
.rates-table th:last-child {
  text-align: right;
}
.profile-gallery {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0;
  padding: 1rem;
  background: #4a4a4a;
}
.profile-gallery img {
  width: calc(20% - 0.4rem);
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.profile-gallery img:hover {
  border-color: var(--color-primary);
}
.profile-buttons {
  display: flex;
  gap: 1rem;
}
.other-models {
  padding: 6rem 0;
  background: #fff;
}
.other-models__container {
  max-width: var(--container-width);
  margin: 0 auto;
}
.subtitle {
  font-size: 0.75rem;
  color: var(--color-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
  text-align: center;
}
.other-models .title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}
.other-models .title span {
  font-style: italic;
  color: var(--color-primary);
}
@media (max-width: 992px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
  }
  .footer__warning {
    grid-column: 1/-1;
    text-align: center;
  }
  .profile-split {
    flex-direction: column;
  }
  .profile-split__left,
  .profile-split__right {
    width: 100%;
  }
  .profile-split__left {
    position: relative;
    top: 0;
    height: auto;
  }
  .slider-container {
    height: 70vh;
  }
  .profile-split__right {
    padding: 3rem 2rem;
  }
}
@media (max-width: 768px) {
  .catalog__header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 1rem;
  }
  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__socials {
    justify-content: center;
  }
  .profile-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .catalog__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 450px) {
  .rates-table td,
  .rates-table th {
    padding: 0.8rem !important;
  }
}
.about-page {
  padding-top: var(--header-height);
  background-color: #fff;
}
.about-hero {
  padding: 6rem 2rem 4rem;
  text-align: center;
  background-color: var(--color-bg);
  border-bottom: 1px solid #eaeaea;
}
.about-hero__container {
  max-width: 800px;
  margin: 0 auto;
}
.about-hero .title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}
.about-hero .title span {
  font-style: italic;
  color: var(--color-primary);
}
.about-hero__desc {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.6;
}
.about-section {
  padding: 6rem 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-grid__image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-grid__content p {
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 1rem;
}
.about-features-section {
  padding: 6rem 2rem;
  background-color: var(--color-bg);
}
.about-features-container {
  max-width: var(--container-width);
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #eaeaea;
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.feature-card__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-weight: 600;
}
.feature-card__text {
  color: var(--color-text-light);
  font-size: 0.875rem;
  line-height: 1.6;
}
.about-cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #1a1a1a 0, #333 100%);
  text-align: center;
}
.about-cta__content {
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-grid__image {
    order: -1;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .about-hero {
    padding: 4rem 1.5rem 3rem;
  }
  .about-hero .title {
    font-size: 2.5rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.faq-page {
  padding-top: var(--header-height);
  background-color: #fff;
  min-height: 100vh;
}
.faq-hero {
  padding: 6rem 2rem 2rem;
  text-align: center;
  background-color: var(--color-bg);
  border-bottom: 1px solid #eaeaea;
}
.faq-hero__container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-hero .title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.faq-hero .title span {
  font-style: italic;
  color: var(--color-primary);
}
.faq-hero__desc {
  font-size: 1.125rem;
  color: var(--color-text-light);
}
.faq-section {
  padding: 4rem 2rem 6rem;
  background-color: #fff;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #eaeaea;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  font-size: 1.125rem;
  font-family: var(--font-sans);
  font-weight: 600;
  background: 0 0;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text);
  transition: color 0.3s ease;
}
.faq-question:hover {
  color: var(--color-primary);
}
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    opacity 0.4s ease;
  opacity: 0;
}
.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--color-text-light);
  line-height: 1.6;
  font-size: 1rem;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .faq-hero {
    padding: 4rem 1.5rem 2rem;
  }
  .faq-hero .title {
    font-size: 2.5rem;
  }
  .faq-question {
    font-size: 1rem;
    padding: 1.25rem 0;
  }
}
.contacts-page {
  padding-top: var(--header-height);
  background-color: var(--color-bg);
  min-height: 100vh;
}
.contacts-hero {
  padding: 6rem 2rem 2rem;
  text-align: center;
  border-bottom: 1px solid #eaeaea;
  background-color: #fff;
}
.contacts-hero__container {
  max-width: 800px;
  margin: 0 auto;
}
.contacts-hero .title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.contacts-hero .title span {
  font-style: italic;
  color: var(--color-primary);
}
.contacts-hero__desc {
  font-size: 1.125rem;
  color: var(--color-text-light);
}
.contacts-section {
  padding: 5rem 2rem 6rem;
  max-width: var(--container-width);
  margin: 0 auto;
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-card {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eaeaea;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--color-text);
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-color: var(--color-primary);
}
.contact-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-right: 1.5rem;
  flex-shrink: 0;
}
.contact-card--wa .contact-card__icon {
  background-color: var(--color-wa);
}
.contact-card--tg .contact-card__icon {
  background-color: var(--color-tg);
}
.contact-card--email .contact-card__icon {
  background-color: #333;
}
.contact-card__details h3 {
  font-size: 1.25rem;
  font-family: var(--font-sans);
  margin-bottom: 0.25rem;
}
.contact-card__details p {
  font-size: 0.875rem;
  color: var(--color-text-light);
}
.contact-card__arrow {
  margin-left: auto;
  font-size: 1.5rem;
  color: #ccc;
  transition: color 0.3s ease;
}
.contact-card:hover .contact-card__arrow {
  color: var(--color-primary);
}
.contacts-form-wrapper {
  background: #fff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background-color: var(--color-bg);
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text);
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--color-primary);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(155, 81, 224, 0.1);
}
.form-note {
  font-size: 0.75rem;
  color: #999;
  text-align: center;
  margin-top: 1rem;
}
@media (max-width: 992px) {
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contacts-form-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .contacts-hero {
    padding: 4rem 1.5rem 2rem;
  }
  .contacts-hero .title {
    font-size: 2.5rem;
  }
  .contacts-form-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  .hero__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    display: none;
  }
}
.btn--gold {
  color: #c4a47c;
  border: 1px solid #c4a47c;
}
.slider-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
  width: 100%;
  height: 100%;
}
.slider-slide {
  min-width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tg-channel-wrapper {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.tg-channel-toggle {
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  transform-origin: center;
}

.tg-channel-toggle.hidden {
  display: none;
}

.tg-channel-dropdown {
  display: none;
  gap: 10px;
}

.tg-channel-dropdown.open {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
}

.tg-channel-dropdown .btn {
  transform: scale(0);
  opacity: 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  transform-origin: center;
  white-space: nowrap;
}

.tg-channel-dropdown.open .btn {
  transform: scale(1);
  opacity: 1;
}

.tg-channel-dropdown.open .btn:nth-child(2) {
  transition-delay: 0.07s;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.2s;
}
.slider-arrow.prev {
  left: 10px;
}
.slider-arrow.next {
  right: 10px;
}
.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}
.profile-gallery.under-slider {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-top: 15px;
  padding-bottom: 10px;
  flex-wrap: nowrap;
  scrollbar-width: thin;
}
.profile-gallery.under-slider::-webkit-scrollbar {
  height: 6px;
}
.profile-gallery.under-slider::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}
.thumb-item {
  width: 80px;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 8px;
  border: 2px solid transparent;
  overflow: hidden;
  position: relative;
  transition: border-color 0.2s;
}
.thumb-item img,
.thumb-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb-item.active {
  border-color: #9b59b6;
}
.video-icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  pointer-events: none;
}
.hidden-price {
  display: none;
}
.load-more-btn {
  display: block;
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  background: 0 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  color: inherit;
  transition: background 0.2s;
}
.load-more-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}
.service-tag {
  background-color: rgba(155, 89, 182, 0.1);
  border-color: rgba(155, 89, 182, 0.3);
}
