:root {
  --bg: #050505;
  --bg-soft: #111;
  --panel: #0e0e0e;
  --panel-2: #151515;
  --line: #3a2e20;
  --line-soft: #6c4d1d;
  --text: #f6e7ba;
  --muted: #aa9f87;
  --accent: #a40b0b;
  --accent-2: #cb2424;
  --shadow: rgba(0, 0, 0, 0.58);
}

@font-face {
  font-family: "Lucida Grande";
  src: url("../fonts/LucidaGrande.woff2") format("woff2");
  font-weight: 400; /* або normal */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lucida Grande";
  src: url("../fonts/LucidaGrandeBold.woff2") format("woff2");
  font-weight: 700; /* або bold */
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Lucida Grande", sans-serif;
  font-weight: 400;
}
.hr-line {
  background: url(../img/hr.png) no-repeat 50% 0%;
  height: 15px;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(95, 0, 0, 0.18), transparent 35%),
    linear-gradient(
      90deg,
      #000 0,
      #030303 16%,
      #070707 50%,
      #030303 84%,
      #000 100%
    );
  z-index: -3;
}

.page-glow {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 16vw;
  min-width: 120px;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(
    circle at center,
    rgba(123, 8, 8, 0.38),
    transparent 68%
  );
  filter: blur(26px);
}

.page-glow--left {
  left: 0;
}
.page-glow--right {
  right: 0;
}

.page-frame {
  width: calc(100% + -201px);
  margin: 0 auto;
  background-image: url(../img/bg/bachground.webp);
  position: relative;
  z-index: 2;
}
@media (max-width: 1250px) {
  .page-frame {
    width: calc(100% + -177px);
  }
}

@media (max-width: 1024px) {
  .page-frame {
    width: calc(100% - 20px);
    border-left: 1px solid #ffffff;
    border-right: 1px solid #ffffff;

    box-shadow:
      -1px 0 2px rgba(255, 128, 160, 0.5),
      -3px 0 6px rgba(212, 53, 82, 0.4),
      -6px 0 12px rgba(102, 0, 17, 0.3),
      1px 0 2px rgba(255, 128, 160, 0.5),
      3px 0 6px rgba(212, 53, 82, 0.4),
      6px 0 12px rgba(102, 0, 17, 0.3);
  }
  .page-frame-wrapper {
    background-image: none;
  }
}
.page-frame-wrapper {
  margin: 0 auto;
  background-image: url(../img/bg/page_bgr_cnt.webp);
  background-repeat: repeat;
  background-size: contain;
  height: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  z-index: 1;
  max-width: 1483px;
  transform: translateX(-50%);
  overflow-y: scroll;
  scrollbar-color: #222222 #0c0c0c;
  scrollbar-width: thin;
  ::-webkit-scrollbar {
    width: 10px; /* Для вертикального скролу */
    height: 10px; /* Для горизонтального скролу */
  }

  /* Фон дорожки (фон під повзунком) */
  ::-webkit-scrollbar-track {
    background: #0c0c0c;
  }

  /* Сам повзунок (бігунок) */
  ::-webkit-scrollbar-thumb {
    background: #222222;
    border-radius: 5px; /* Закруглення кутів */
    border: 2px solid #0c0c0c; /* Невеликий відступ від країв треку */
  }
}
body::before {
  content: "";
}

.topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 14px;
  border-bottom: 1px solid #221a14;
  background: linear-gradient(180deg, #090909, #151515);
}

.topbar--desktop {
  min-height: 50px;
}

.topbar--mobile {
  display: none;
  min-height: 46px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  min-width: 148px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand__main,
.brand__suffix {
  color: #fff;
}

.brand__dot {
  color: #ff2525;
}

.city-tabs {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 0;
}

.city-tab {
  min-width: 112px;
  padding: 13px 18px;
  border-left: 1px solid #2b231d;
  border-right: 1px solid #100d0b;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.city-tab:hover,
.city-tab.is-active {
  background: linear-gradient(180deg, #840404, #4a0909);
}

.mobile-menu-button {
  border: 1px solid #2e1b12;
  background: linear-gradient(180deg, #770303, #3e0808);
  color: #a49270;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
  cursor: pointer;
  white-space: nowrap;
}

.content-shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
}

.sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
}

.sidebar-box,
.profile-card,
.info-block__inner {
  border: 1px solid #201714;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(9, 9, 9, 0.96)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.012),
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px,
      transparent 36px
    );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.sidebar-menu {
  display: grid;
}

.sidebar-menu a {
  position: relative;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: #f3e7c0;
  font-size: 19px;
  text-align: center;
}

.sidebar-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 54px;
  height: 6px;
  transform: translateX(-50%);
  opacity: 0.65;
  background: radial-gradient(
    circle at center,
    rgba(214, 190, 140, 0.7),
    transparent 68%
  );
}

.sidebar-menu a:hover {
  color: #fff;
}

.sidebar-copy {
  padding: 18px 16px;
}

.sidebar-copy h2,
.catalog-headline h1,
.info-block,
.info-block h1,
.info-block h2,
.profile-page__heading h1,
.profile-page__section h2 {
  margin: 0 0 14px;
  color: #a49270;
  font-weight: 700;
}

.sidebar-copy p,
.catalog-headline p,
.info-block p,
.profile-page__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}
.info-block {
  display: flex;
  justify-content: center;
  padding: 10px;
  font-size: 20px;
  text-decoration: underline;
  border: 1px solid #201714;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(9, 9, 9, 0.96)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.012),
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px,
      transparent 36px
    );
}

.main-column {
  display: grid;
  gap: 18px;
  align-content: start;
}

.notice-banner {
  padding: 16px 18px;
  border: 1px solid rgba(186, 13, 13, 0.72);
  background: linear-gradient(180deg, rgba(28, 7, 7, 0.96), rgba(10, 8, 8, 0.96));
  text-align: center;
}

.notice-banner p {
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.25;
}

.notice-banner__button,
.notice-banner a {
  width: 90%;
  max-width: 420px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, #c80808, #6f0606);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  font-family: inherit;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 8px 18px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.directory-search {
  padding: 4px 0 2px;
}

.directory-search__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.directory-search__form input,
.directory-search__form button {
  min-height: 46px;
  border: 1px solid #2d2119;
  background: #111;
  color: #f6e7ba;
  font: inherit;
  padding: 0 14px;
}

.directory-search__form button {
  cursor: pointer;
  font-weight: 700;
  background: linear-gradient(180deg, #770303, #3e0808);
}

.catalog-headline {
  text-align: center;
  padding: 8px 0 2px;
}

.catalog-headline h1 {
  font-size: clamp(28px, 3.4vw, 44px);
}

.profile-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid #6a4b12;
  background: linear-gradient(
    180deg,
    rgba(112, 16, 16, 0.95),
    rgba(55, 5, 5, 0.95)
  );
  color: #ffdf9d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.profile-card__badge.is-available {
  background: linear-gradient(180deg, #1c7f2a, #14571f);
}

.profile-card__city-badge,
.profile-page__city-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid rgba(164, 146, 112, 0.72);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(41, 26, 12, 0.96), rgba(16, 12, 10, 0.96));
  color: #ffdf9d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.profile-card__grid {
  display: grid;
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(120, 164, 212, 0.08);
}

.profile-card__media-topbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.profile-card__mini-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 100%;
  padding-top: 10px;
}

.profile-card__mini-button {
  width: 100%;
  min-width: 0;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}

.profile-card__mini-button svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex: 0 0 14px;
}

.profile-card__mini-button--tg {
  background: linear-gradient(180deg, #2aa8f7, #1678c9);
}

.profile-card__mini-button--wa {
  background: linear-gradient(180deg, #37d764, #21b84d);
}

.profile-card__photo-note,
.profile-card__reports,
.profile-card__stats div,
.profile-card__meta div {
  text-align: center;
}

.profile-card__photo-note {
  color: var(--muted);
  font-size: 14px;
}

.profile-card__photo-link {
  display: block;
  border: 1px solid #3f3024;
  background: #151515;
}

.profile-card__photo-link img {
  width: 100%;
  aspect-ratio: 0.98;
  object-fit: cover;
}

.profile-card__photo-col {
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.96), rgba(8, 8, 8, 0.98)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.01),
      rgba(255, 255, 255, 0.01) 1px,
      transparent 1px,
      transparent 32px
    );
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-card__details-col {
  padding: 14px 16px 16px;
}

.profile-card__photo-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.profile-card__reports {
  display: grid;
  gap: 10px;
  padding-top: 10px;
}

.profile-card__reports a {
  color: #fff0c2;
  font-size: 14px;
}

.profile-card__button {
  width: 100%;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid #803519;
  background: linear-gradient(180deg, #7d0808, #3b0707);
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  text-transform: uppercase;
}

.profile-card__title-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
}

.profile-card__title-row h2 {
  margin: 0;
  color: #a49270;
  font-size: 25px;
  text-decoration: underline;
}

.profile-card__title-block {
  display: grid;
  gap: 8px;
}

.profile-card__stats {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 3px 10px;
}

.profile-card__stats span,
.profile-card__meta span,
.profile-page__specs span {
  color: #d3c3a0;
  font-weight: 700;
}
.profile-page__specs span {
  font-size: 12px;
}

.profile-card__stats div,
.profile-card__meta div {
  color: #f8fbff;
  text-align: left;
  font-size: 12px;
}

.profile-card__features,
.profile-card__extras ul {
  margin: 12px 0 0;
  padding: 0 0 0 16px;
  color: #c9c0ae;
  line-height: 1.35;
}
.profile-page__section ul {
  margin: -10px 0 0;
  padding: 0 0 0 10px;
  color: #c9c0ae;
  line-height: 1.2;
}
.profile-card__extras li,
.profile-page__section li {
  margin-bottom: 6px;
}

.profile-card__pricing,
.profile-page__rates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 15px;
  row-gap: 4px;
  margin-top: -10px;
}

.profile-page__rates div {
  justify-content: space-between;
  padding: 4px;
  text-align: center;
}

.profile-card__pricing small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.profile-card__pricing strong,
.profile-page__rates strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 13px;
}

.profile-card__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.profile-card__meta--single {
  grid-template-columns: 1fr;
}

.profile-card__extras {
  margin-top: 12px;
}

.profile-card__extras p {
  margin: 0;
  color: #eef5ff;
  font-size: 16px;
}

.profile-card__actions {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.profile-card__actions--profile {
  margin-top: 24px;
}

.profile-card__manager-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-button {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 0 18px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.contact-button--tg {
  background: linear-gradient(180deg, #2aa8f7, #1678c9);
}

.contact-button--wa {
  background: linear-gradient(180deg, #37d764, #21b84d);
}

.contact-button--channel {
  background: linear-gradient(180deg, #c80808, #6f0606);
  font-size: 20px;
}

.city-choice-popup,
.tg-city-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.68);
}

.city-choice-popup__card,
.tg-city-popup__card {
  position: relative;
  width: min(420px, 100%);
  padding: 28px 24px 24px;
  border: 1px solid rgba(186, 13, 13, 0.78);
  background: linear-gradient(180deg, #160606, #090707);
  color: #fff;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.58);
}

.city-choice-popup__close,
.tg-city-popup__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.city-choice-popup__eyebrow,
.tg-city-popup__eyebrow {
  color: #c6a36b;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.city-choice-popup h2,
.tg-city-popup h2 {
  margin: 10px 0 20px;
  color: #fff;
  font-size: clamp(24px, 5vw, 32px);
  line-height: 1.15;
}

.city-choice-popup__actions,
.tg-city-popup__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.city-choice-popup__actions a,
.tg-city-popup__actions a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, #c80808, #6f0606);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.info-block__inner {
  padding: 22px 20px;
}

.info-block--policy .info-block__inner {
  max-width: 900px;
}

.inline-link {
  color: #a49270;
  text-decoration: underline;
}

.profile-page {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 24px;
  padding: 18px;
  border: 1px solid #201714;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(9, 9, 9, 0.96)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.012),
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px,
      transparent 36px
    );
}

.profile-page__gallery {
  display: grid;
  gap: 12px;
}

.profile-page__main-photo {
  width: 100%;
  aspect-ratio: 0.76;
  object-fit: cover;
  border: 1px solid #3f3024;
}

.profile-page__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.profile-page__thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid #3f3024;
}

.profile-page__kicker {
  margin: 0 0 8px;
  color: #d6c58c;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.profile-page__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.profile-page__heading h1 {
  margin: 0;
}

.profile-page__quick-actions {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-width: 184px;
}

.profile-page__quick-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.profile-page__quick-button--tg {
  background: linear-gradient(180deg, #2aa8f7, #1678c9);
}

.profile-page__quick-button--wa {
  background: linear-gradient(180deg, #37d764, #21b84d);
}

.profile-page__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.profile-page__specs div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 2px 5px;
}

.profile-page__specs strong {
  display: block;
  margin-top: 4px;
  color: #fff;
}

.profile-page__toggle {
  margin-top: 12px;
  min-height: 42px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #2f2411, #171109);
  color: #a49270;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.profile-page__toggle.is-open {
  background: linear-gradient(180deg, #5d0d0d, #2d0707);
}

.profile-page__rates--extra {
  margin-top: 10px;
}

.site-footer {
  padding: 28px 20px 32px;
  border-top: 1px solid #1d1612;
  text-align: center;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  margin-bottom: 14px;
}

.site-footer__links a {
  color: #d7caab;
  text-decoration: underline;
}

.site-footer__copy {
  margin: 0;
  color: #8f8779;
  font-size: 14px;
}

.mobile-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 20;
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  width: min(84vw, 340px);
  padding: 16px 14px;
  background: linear-gradient(180deg, #111, #050505);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  z-index: 21;
  transform: translateX(-110%);
  transition: transform 0.22s ease;
}

.mobile-drawer--right {
  right: 0;
  left: auto;
  transform: translateX(110%);
}

.mobile-drawer.is-open {
  transform: translateX(0);
  display: block;
}

body.menu-open .mobile-drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: #a49270;
  font-size: 22px;
}

.drawer-header button {
  border: 0;
  background: transparent;
  color: #a49270;
  font-size: 30px;
  cursor: pointer;
}

.drawer-nav {
  display: grid;
  gap: 6px;
}

.drawer-nav a {
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: #d8c9a1;
}

.drawer-nav a.is-active {
  background: linear-gradient(180deg, #840404, #4a0909);
  color: #fff;
}

@media (max-width: 980px) {
  .mobile-drawer-overlay {
    display: block;
  }

  .content-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .topbar--desktop {
    display: none;
  }

  .topbar--mobile {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .brand {
    justify-self: center;
    min-width: auto;
  }

  .profile-page {
    grid-template-columns: 1fr;
  }

  .profile-card__title-row {
    grid-template-columns: 1fr;
  }

  .profile-card__photo-col {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 640px) {
  .content-shell {
    padding: 8px;
    gap: 10px;
  }

  .notice-banner {
    padding: 14px 12px;
  }

  .catalog-headline h1 {
    font-size: 22px;
  }

  .catalog-headline p {
    font-size: 14px;
  }

  .directory-search__form {
    grid-template-columns: 1fr;
  }

  .profile-card__badge {
    font-size: 10px;
  }

  .profile-card__details-col {
    padding: 5px;
  }

  .profile-card__mini-button {
    min-height: 32px;
    width: 100%;
    min-width: 0;
    padding: 0 6px;
    font-size: 11px;
  }

  .profile-card__phone {
    font-size: 16px;
  }

  .profile-card__title-row h2 {
    font-size: 18px;
  }
  .profile-card__meta,
  .profile-page__specs {
    grid-template-columns: 1fr 1fr;
  }

  .profile-card__meta div,
  .profile-card__features,
  .profile-card__extras ul {
    font-size: 11px;
  }

  .profile-page__rates div {
    padding: 2px 5px;
  }

  .profile-card__pricing strong,
  .profile-page__rates strong {
    font-size: 11px;
  }

  .profile-card__actions {
    order: -1;
  }

  .profile-card__manager-buttons {
    grid-template-columns: 1fr 1fr;
  }

  .contact-button {
    font-size: 16px;
    padding: 0 10px;
  }

  .contact-button--channel {
    font-size: 16px;
  }

  .profile-page__title-row {
    align-items: stretch;
    gap: 10px;
  }

  .profile-page__heading h1 {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 28px;
  }

  .profile-page__quick-actions {
    display: flex;
    min-width: 150px;
    justify-content: end;
  }

  .profile-page__main-photo {
    aspect-ratio: 0.72;
  }

  .profile-page__thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Базовое выравнивание иконок и текста внутри кнопок */
.profile-card__mini-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important; /* Расстояние между SVG и текстом */
}

.profile-card__mini-icon {
  flex-shrink: 0;
  display: block;
}

/* МОБИЛЬНАЯ ВЕРСИЯ (< 800px): скрываем текст, остаются только SVG */
.profile-card__btn-text {
  display: inline !important;
}

/* ДЕСКТОП ВЕРСИЯ (>= 800px): показываем текст рядом с SVG */
@media (max-width: 800px) {
  .profile-card__features {
    display: none;
  }
}

.profile-card__actions--profile .profile-card__manager-buttons {
  display: grid;
  grid-template-columns: 1fr;
}

.profile-card__actions--profile .contact-button--tg {
  width: 100%;
}

[hidden] {
  display: none !important;
}

.profile-page__rates div {
  padding: 8px 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(21, 26, 33, 0.22);
  text-align: center;
}
@media (max-width: 640px) {
  .profile-card__stats,
  .profile-card__meta,
  .profile-page__specs {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .profile-card__media-topbar {
    grid-template-columns: 1fr auto;
  }

  .profile-card__badge {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .profile-card__city-badge {
    padding: 5px 9px;
    font-size: 10px;
  }

  .profile-card__stats div,
  .profile-card__meta div,
  .profile-card__features,
  .profile-card__extras ul {
    font-size: 11px;
  }
  .profile-card__stats,
  .profile-card__meta,
  .profile-page__specs {
    grid-template-columns: 1fr 1fr;
  }
}
.profile-card__stats div,
.profile-card__meta div {
  color: #f8fbff;
  text-align: left;
  font-size: 12px;
}
.profile-card__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px 10px;
}
.profile-card__pricing,
.profile-page__rates {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 14px;
}
.profile-page__rates-model-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 15px;
  row-gap: 4px;
  margin-top: -10px;
}
.profile-page__rates-model-page div {
  display: flex;
  gap: 20px;
  align-items: center;
}
.profile-page__rates-model-page > div > strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 15px;
}
.profile-page__rates-model-page > div > span {
  color: #d3c3a0;
  font-size: 12px;
  font-weight: 700;
}
.profile-card__pricing div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.profile-card__stats > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.profile-card__stats > div > div:first-child {
  color: #ffffff;
}
.profile-card__stats > div > div:last-child {
  color: #777;
}
.profile-card {
  position: relative;
}

@supports (content-visibility: auto) {
  .profile-card {
    content-visibility: auto;
    contain-intrinsic-size: 620px;
  }
}

.profile-card:first-of-type {
  content-visibility: visible;
}
.image-crown-card {
  position: absolute;
  top: -35px;
  right: -30px;
}
.image-crown-card {
  object-fit: contain;
  width: 70px;
  height: 70px;
}
.profile-card__extras,
.profile-card__features {
  font-size: 14px;
}
@media (max-width: 550px) {
  .profile-card__stats {
    grid-template-columns: 1fr;
    row-gap: 5px;
  }
  .profile-card__extras {
    display: none;
  }
  .none-sm {
    display: none;
  }
  .profile-page__specs {
    gap: 4px;
  }
  .page__section > li {
    margin-bottom: 6px;
    font-size: 14px;
  }
  .profile-page__section h2 {
    font-size: 18px;
  }
  .profile-page__rates-model-page > div > strong {
    font-size: 12px;
  }
  .profile-page__rates-model-page > div > span {
    font-size: 10px;
  }
  .profile-page__rates-model-page {
    gap: 0px;
  }
}
.info-block__inner h1 {
  font-size: 22px;
}
.info-block__inner h2,
.info-block__inner h3 {
  font-size: 18px;
}

.telegram-button-icon {
  flex: 0 0 auto;
  display: block;
}

.profile-page__quick-button--tg,
.contact-button--tg {
  gap: 8px;
}

.profile-page__rates-model-page {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.profile-page__rates-model-page div {
  min-height: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(21, 26, 33, 0.22);
  text-align: center;
}

.profile-page__rates-model-page > div > span,
.profile-page__rates-model-page > div > strong {
  display: block;
  margin: 0;
  line-height: 1.15;
  white-space: nowrap;
}

.profile-page__rates-model-page > div > span {
  color: #d3c3a0;
  font-size: 13px;
  font-weight: 700;
}

.profile-page__rates-model-page > div > strong {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 420px) {
  .profile-page__rates-model-page {
    gap: 5px;
  }

  .profile-page__rates-model-page div {
    min-height: 50px;
    padding: 7px 4px;
  }

  .profile-page__rates-model-page > div > span {
    font-size: 11px;
  }

  .profile-page__rates-model-page > div > strong {
    font-size: 12px;
  }
}
.info-block__inner p {
  font-size: 16px;
}

.profile-page__main-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 323px;
  margin-inline: auto;
}

.profile-page__main-photo {
  display: block;
  width: 100%;
}

.profile-page__gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 38px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(10, 10, 10, 0.72);
  color: #f5d4de;
  font-size: 34px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  cursor: pointer;
}

.profile-page__gallery-nav--prev {
  left: 8px;
}

.profile-page__gallery-nav--next {
  right: 8px;
}

.profile-page__thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid #3f3024;
  background: #151515;
  cursor: pointer;
}

.profile-page__thumb.is-active {
  border-color: #b70000;
  box-shadow: 0 0 0 2px rgba(183, 0, 0, 0.32);
}

.profile-page__thumb img {
  display: block;
  border: 0;
}

@media (max-width: 980px) {
  .profile-page__main-photo-wrap {
    max-width: min(100%, 323px);
  }
}

@media (max-width: 520px) {
  .profile-page__main-photo-wrap {
    max-width: min(100%, 323px);
  }

  .profile-page__gallery-nav {
    width: 34px;
    height: 42px;
    font-size: 30px;
  }
}

.profile-page__main-photo {
  aspect-ratio: 1.085;
}

.profile-page__main-photo {
  display: block;
  height: 100%;
  width: 100%;
}

@media (max-width: 400px) {
  .profile-page__gallery,
  .profile-page__thumbs {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .profile-page__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .profile-page__thumb,
  .profile-page__thumb img {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.page-frame-wrapper,
.page-frame,
.content-shell,
.main-column,
.notice-banner,
.profile-card,
.profile-card__grid,
.profile-card__photo-col,
.profile-card__details-col {
  max-width: 100%;
  min-width: 0;
}

.notice-banner {
  overflow: hidden;
}

.notice-banner__button,
.notice-banner a {
  width: min(90%, 520px);
  max-width: 90%;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .page-frame-wrapper {
    width: 100%;
    padding-inline: 0;
  }

  .page-frame {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .content-shell,
  .main-column {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .notice-banner {
    padding-inline: 8px;
  }

  .notice-banner__button,
  .notice-banner a {
    width: 90%;
    max-width: 90%;
    padding-inline: 14px;
  }

  .profile-card {
    width: 100%;
    max-width: 100%;
    overflow: initial;
  }

  .profile-card__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .profile-card__photo-col,
  .profile-card__details-col {
    width: 100%;
    max-width: 100%;
  }

  .profile-card__photo-col {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .profile-card__details-col {
    padding: 12px;
  }

  .profile-card__photo-link img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .profile-card__pricing {
    width: 100%;
  }

  .profile-card__pricing div {
    justify-content: space-between;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .profile-card__details-col {
    padding-inline: 8px;
  }

  .notice-banner__button,
  .notice-banner a {
    padding-inline: 10px;
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .page-frame {
    width: 100%;
    border-left-width: 0;
    border-right-width: 0;
  }

  .content-shell {
    padding: 6px;
  }

  .topbar--mobile {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 6px;
    padding-inline: 6px;
  }

  .brand {
    max-width: 124px;
    overflow: hidden;
    font-size: 18px;
    white-space: nowrap;
  }

  .mobile-menu-button {
    min-width: 0;
    max-width: 92px;
    padding-inline: 7px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .notice-banner {
    padding: 10px 6px;
  }

  .notice-banner__button,
  .notice-banner a {
    width: 100%;
    max-width: 100%;
    min-height: 42px;
    padding-inline: 8px;
    font-size: 16px;
  }

  .catalog-headline {
    padding-inline: 4px;
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .profile-card {
    margin-inline: 0;
  }

  .profile-card__grid {
    border-left-width: 0;
    border-right-width: 0;
  }

  .profile-card__media-topbar {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 5px;
  }

  .profile-card__photo-note,
  .profile-card__city-badge,
  .profile-card__badge {
    min-width: 0;
    font-size: 10px;
    white-space: nowrap;
  }

  .profile-card__city-badge {
    padding-inline: 8px;
  }

  .profile-card__badge {
    padding-inline: 7px;
  }

  .profile-card__details-col {
    padding: 8px 7px;
  }

  .profile-card__title-row h2,
  .profile-card__title-row h2 a {
    max-width: 100%;
    font-size: 20px;
    overflow-wrap: anywhere;
  }

  .profile-card__stats,
  .profile-card__meta,
  .profile-page__specs {
    grid-template-columns: minmax(0, 1fr);
  }

  .profile-card__stats > div,
  .profile-page__specs div {
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
  }

  .profile-card__stats > div > div,
  .profile-page__specs span,
  .profile-page__specs strong {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .profile-card__features,
  .profile-card__extras ul {
    padding-left: 16px;
    font-size: 12px;
    line-height: 1.35;
  }

  .profile-card__pricing {
    gap: 5px;
  }

  .profile-card__pricing div {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 8px;
  }

  .profile-card__pricing span {
    white-space: nowrap;
  }

  .profile-card__pricing strong {
    min-width: 0;
    text-align: right;
    font-size: 12px;
    overflow-wrap: anywhere;
  }

  .profile-card__mini-button,
  .profile-card__button,
  .contact-button {
    min-width: 0;
    max-width: 100%;
    padding-inline: 8px;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .profile-page {
    gap: 14px;
    padding: 10px 7px;
    border-left-width: 0;
    border-right-width: 0;
  }

  .profile-page__gallery,
  .profile-page__content,
  .profile-page__heading,
  .profile-page__section,
  .profile-card__actions,
  .profile-card__manager-buttons {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .profile-page__main-photo-wrap {
    max-width: 100%;
  }

  .profile-page__gallery-nav {
    width: 30px;
    height: 38px;
    font-size: 27px;
  }

  .profile-page__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .profile-page__title-row {
    flex-wrap: wrap;
    align-items: center;
  }

  .profile-page__heading h1 {
    width: 100%;
    font-size: 26px;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .profile-page__city-badge {
    min-height: 26px;
    padding: 5px 9px;
    font-size: 10px;
  }

  .profile-page__section h2 {
    font-size: 17px;
  }

  .profile-page__section li,
  .profile-page__content p {
    font-size: 14px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .profile-page__rates-model-page {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  .profile-page__rates-model-page div {
    min-height: 44px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    text-align: left;
  }

  .profile-page__rates-model-page > div > span {
    font-size: 12px;
    white-space: nowrap;
  }

  .profile-page__rates-model-page > div > strong {
    min-width: 0;
    text-align: right;
    font-size: 13px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .profile-card__manager-buttons {
    grid-template-columns: minmax(0, 1fr);
  }

  .profile-card__actions--profile .contact-button,
  .profile-card__actions--profile .contact-button--channel {
    width: 100%;
    max-width: 100%;
    min-height: 44px;
    font-size: 15px;
  }

  .profile-page__quick-actions {
    width: 100%;
    min-width: 0;
    justify-content: stretch;
  }

  .profile-page__quick-button {
    width: 100%;
    min-width: 0;
  }
}

.model-quiz-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.78);
}

body.model-quiz-is-open {
  overflow: hidden;
}

.model-quiz-popup[hidden] {
  display: none;
}

.model-quiz-popup__card {
  width: min(100%, 460px);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  position: relative;
  padding: 22px;
  border: 1px solid rgba(183, 0, 0, 0.78);
  background:
    linear-gradient(180deg, rgba(22, 22, 22, 0.98), rgba(8, 8, 8, 0.98)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.012),
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px,
      transparent 32px
    );
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.62);
}

.model-quiz-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.model-quiz-popup__eyebrow {
  color: #d8c9a1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-quiz-popup h2 {
  margin: 6px 42px 18px 0;
  color: #fff;
  font-size: 26px;
  line-height: 1.1;
}

.model-quiz-popup__step {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.model-quiz-popup__step p {
  margin: 0;
  color: #ffdf9d;
  font-weight: 800;
}

.model-quiz-popup__options {
  display: grid;
  gap: 8px;
}

.model-quiz-popup__options--place {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.model-quiz-popup__option {
  min-width: 0;
  min-height: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(164, 146, 112, 0.45);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.model-quiz-popup__option span {
  min-width: 0;
  color: #d8c9a1;
  font-weight: 800;
}

.model-quiz-popup__option strong {
  min-width: 0;
  color: #fff;
  font-size: 15px;
  overflow-wrap: anywhere;
}

.model-quiz-popup__option.is-active {
  border-color: #e00000;
  background: linear-gradient(180deg, rgba(172, 0, 0, 0.92), rgba(105, 0, 0, 0.92));
  box-shadow: 0 0 0 2px rgba(224, 0, 0, 0.22);
}

.model-quiz-popup__options--place .model-quiz-popup__option {
  display: inline-flex;
  justify-content: center;
  text-align: center;
  font-weight: 800;
}

.model-quiz-popup__submit {
  width: 100%;
  min-height: 50px;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  background: linear-gradient(180deg, #2aa8f7, #1678c9);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.model-quiz-popup__submit.is-disabled {
  opacity: 0.48;
  pointer-events: none;
}

@media (max-width: 420px) {
  .model-quiz-popup {
    padding: 10px;
  }

  .model-quiz-popup__card {
    padding: 18px 12px;
  }

  .model-quiz-popup h2 {
    font-size: 22px;
  }

  .model-quiz-popup__option {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }
}
