:root {
  color-scheme: dark;
  --page: #050505;
  --page-soft: #080808;
  --page-elevated: #0d0d0d;
  --panel: #080808;
  --panel-soft: #0d0d0d;
  --line: rgba(217, 140, 150, 0.12);
  --line-strong: rgba(217, 140, 150, 0.2);
  --text: #f1e7e2;
  --muted: rgba(241, 231, 226, 0.6);
  --text-soft: rgba(241, 231, 226, 0.78);
  --accent: #c98288;
  --accent-strong: #d98c96;
  --accent-soft: rgba(201, 130, 136, 0.14);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: var(--page);
}

body.menu-open {
  overflow: visible;
}

body.topup-open {
  overflow: hidden;
}

body.gallery-viewer-open {
  overflow: hidden;
}

body.view-is-switching .hero-banner,
body.view-is-switching .sections-root {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
}

body.telegram-app,
body.telegram-app * {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

body:not(.telegram-app) {
  background: #fff;
}

button {
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  background: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

.page-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 180px),
    var(--page);
}

.launch-screen {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: url("/assets/zagryzka.jpg") center / cover no-repeat;
  transition: opacity 0.56s ease, visibility 0.56s ease;
}

.launch-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(217, 140, 150, 0.02), transparent 22%, transparent 78%, rgba(217, 140, 150, 0.03)),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.02), transparent 24%);
  pointer-events: none;
}

body.telegram-app:not(.app-ready) .launch-screen {
  opacity: 1;
  visibility: visible;
}

.launch-core {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 22px;
  width: min(calc(100% - 72px), 420px);
}

.launch-glow {
  position: absolute;
  width: 56vw;
  max-width: 420px;
  height: 9px;
  opacity: 0.3;
  filter: blur(30px);
  background: linear-gradient(90deg, transparent, rgba(217, 140, 150, 0.34), transparent);
  transform: rotate(-58deg);
}

.launch-glow-top {
  top: 16%;
  left: -16%;
}

.launch-glow-bottom {
  right: -20%;
  bottom: 14%;
}

.launch-brand {
  color: var(--accent-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(62px, 10vw, 92px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: clamp(10px, 1.9vw, 18px);
  text-align: center;
  text-shadow: 0 0 22px rgba(217, 140, 150, 0.06);
}

.launch-shine {
  position: relative;
  width: min(72vw, 270px);
  height: 16px;
}

.launch-shine::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 130, 136, 0.5), transparent);
  transform: translateY(-50%);
}

.launch-shine span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 239, 233, 0.98), rgba(217, 140, 150, 0.85) 52%, transparent 74%);
  box-shadow: 0 0 12px rgba(217, 140, 150, 0.42);
  transform: translate(-50%, -50%);
}

.launch-copy {
  margin: 0;
  color: #a0666d;
  font-size: clamp(20px, 3.4vw, 26px);
  line-height: 1.15;
  text-align: center;
}

.launch-progress {
  width: min(100%, 280px);
}

.launch-progress-track {
  position: relative;
  width: 100%;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.launch-progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 225, 219, 0.92), rgba(217, 140, 150, 0.96));
  box-shadow: 0 0 18px rgba(217, 140, 150, 0.2);
  transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.app-frame {
  width: min(100%, 735px);
  margin: 0 auto;
  padding: 19px 22px 116px;
}

.topbar {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  min-height: 52px;
  margin-bottom: 18px;
}

.topbar.is-screen-topbar {
  margin-bottom: 54px;
}

.menu-button,
.search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--accent);
}

.menu-button {
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.menu-button span {
  width: 31px;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
}

.menu-button.is-back {
  align-items: center;
  color: var(--accent-strong);
}

.menu-button.is-back svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.brand-wordmark {
  justify-self: center;
  padding-left: 13px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 13px;
  color: var(--accent);
}

.topbar.is-screen-topbar .brand-wordmark {
  padding-left: 0;
  color: var(--text);
  font-size: 38px;
  letter-spacing: 0;
}

.topbar[data-screen-title="Профиль"] .brand-wordmark {
  font-size: 26px;
}

.topbar[data-screen-title="Баланс"] .brand-wordmark {
  font-size: 26px;
}

.topbar.is-title-left .brand-wordmark {
  justify-self: start;
  padding-left: 20px;
}

.topbar.is-title-center .brand-wordmark {
  justify-self: center;
}

.search-button {
  justify-self: end;
}

.search-button svg,
.hero-link svg,
.nav-item svg,
.side-menu-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-button svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.35;
}

.hero-banner {
  position: relative;
  min-height: 424px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 29px;
  background:
    radial-gradient(circle at 70% 28%, rgba(217, 140, 150, 0.18), transparent 40%),
    var(--page-soft);
  box-shadow: var(--shadow);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.hero-banner.is-hidden {
  display: none;
}

.hero-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: pan-y;
}

.hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  cursor: grab;
  will-change: transform;
  transition: transform 0.44s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-track.is-dragging {
  cursor: grabbing;
  transition: none;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  user-select: none;
  -webkit-user-select: none;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.82) 40%, rgba(5, 5, 5, 0.52) 58%, rgba(5, 5, 5, 0.16) 74%, rgba(5, 5, 5, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.38));
  pointer-events: none;
  z-index: 1;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.82;
  filter: brightness(0.72) contrast(1.07) saturate(0.9);
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: min(48%, 520px);
  min-width: 270px;
  padding: 56px 0 0 41px;
}

.hero-copy p {
  margin: 0 0 19px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.2;
}

.hero-copy h1 {
  margin: 0 0 33px;
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 76px;
  font-weight: 500;
  line-height: 0.9;
}

.hero-copy span {
  display: block;
  color: var(--muted);
  font-size: 23px;
  line-height: 1.55;
}

.hero-copy-description {
  max-width: 440px;
}

.hero-copy.is-compact .hero-copy-description {
  white-space: nowrap;
}

.hero-copy.is-compact .hero-link {
  white-space: nowrap;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 31px;
  padding-bottom: 10px;
  color: var(--accent);
  border-bottom: 1px solid rgba(217, 140, 150, 0.5);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1;
  position: relative;
  z-index: 3;
}

.hero-link svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.2;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 21px;
  z-index: 3;
  transform: translateX(-50%);
  width: max-content;
  overflow: visible;
}

.hero-dots-track {
  position: relative;
  display: flex;
  align-items: center;
  gap: 19px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(241, 231, 226, 0.26);
}

.hero-dot-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--accent-strong);
  box-shadow: 0 0 14px rgba(201, 130, 136, 0.22);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.sections-root {
  display: grid;
  gap: 35px;
  margin-top: 28px;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.showcase-section {
  min-width: 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 15px;
}

.section-title {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  line-height: 1;
}

.section-link svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.model-viewport {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.model-track {
  display: flex;
  gap: 8px;
  will-change: transform;
  transition: transform 0.44s cubic-bezier(0.22, 1, 0.36, 1);
}

.model-track.is-dragging {
  cursor: grabbing;
  transition: none;
}

.model-track .model-card {
  flex: 0 0 calc(50% - 4px);
  width: calc(50% - 4px);
  user-select: none;
}

.model-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 0.62;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel-soft);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.model-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.02) 35%, rgba(5, 5, 5, 0.78) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.22), rgba(5, 5, 5, 0.22));
  pointer-events: none;
}

.model-photo,
.model-photo-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.model-photo {
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.78) contrast(1.05) saturate(0.92);
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.model-photo-placeholder {
  display: grid;
  place-items: center;
  color: var(--accent);
  background:
    radial-gradient(circle at 50% 12%, rgba(217, 140, 150, 0.16), transparent 34%),
    var(--page-elevated);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
}

.model-info {
  position: absolute;
  left: 10px;
  right: 37px;
  bottom: 13px;
  z-index: 2;
  min-width: 0;
}

.model-name {
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}

.model-city {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: rgba(241, 231, 226, 0.66);
  font-size: 11px;
  line-height: 1.1;
}

.model-city::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--accent);
}

.model-city span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.favorite-button {
  position: absolute;
  right: 10px;
  bottom: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  color: var(--accent);
}

.favorite-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.favorite-button.is-active svg {
  fill: var(--accent-strong);
  stroke: var(--accent-strong);
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  width: min(calc(100% - 58px), 690px);
  padding: 13px 18px 12px;
  border: 1px solid rgba(217, 140, 150, 0.06);
  border-radius: 26px;
  background: rgba(10, 10, 10, 0.94);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.side-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  pointer-events: none;
}

.side-menu.is-open {
  pointer-events: auto;
}

.side-menu-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  background: rgba(0, 0, 0, 0.56);
  transition: opacity 0.26s ease;
}

.side-menu-panel {
  position: absolute;
  top: 16px;
  bottom: calc(108px + env(safe-area-inset-bottom));
  left: max(12px, env(safe-area-inset-left));
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(74vw, 350px);
  padding: 28px 22px 26px;
  border: 1px solid rgba(217, 140, 150, 0.16);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 30% 0%, rgba(217, 140, 150, 0.08), transparent 42%),
    rgba(8, 8, 8, 0.985);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.48);
  overflow: hidden;
  transform: translateX(calc(-100% - 24px));
  opacity: 0.88;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
}

.side-menu.is-open .side-menu-backdrop {
  opacity: 1;
}

.side-menu.is-open .side-menu-panel {
  transform: translateX(0);
  opacity: 1;
}

.side-menu-head {
  padding-bottom: 10px;
}

.side-menu-profile {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-align: left;
}

.side-menu-avatar-wrap {
  position: relative;
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  margin-left: 5px;
  overflow: hidden;
  border: 1px solid rgba(217, 140, 150, 0.62);
  border-radius: 999px;
  background: var(--page-elevated);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.side-menu-avatar-image,
.side-menu-avatar-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.side-menu-avatar-image {
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.72) contrast(1.06) saturate(0.88);
}

.side-menu-avatar-image.is-hidden,
.side-menu-avatar-fallback.is-hidden {
  display: none;
}

.side-menu-avatar-fallback {
  display: grid;
  place-items: center;
  color: var(--accent);
  background:
    radial-gradient(circle at 50% 15%, rgba(217, 140, 150, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0)),
    var(--page-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
}

.side-menu-identity {
  min-width: 0;
  width: auto;
}

.side-menu-user-name {
  overflow: hidden;
  color: var(--accent-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  line-height: 0.95;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.side-menu-links {
  display: grid;
  min-height: 0;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.028);
}

.side-menu-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 56px;
  padding: 0 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.028);
  color: var(--text);
  text-align: left;
}

.side-menu-item:last-child {
  border-bottom: 0;
}

.side-menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--accent-strong);
}

.side-menu-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.35;
}

.side-menu-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.side-menu-text {
  overflow: hidden;
  min-width: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.side-menu-meta {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.side-menu-brand {
  margin-top: 18px;
  padding-top: 22px;
  flex-shrink: 0;
  display: block;
  width: 100%;
  justify-self: center;
  margin-inline: auto;
  text-align: center;
  color: var(--accent-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3.6vw, 38px);
  letter-spacing: 8px;
  line-height: 1;
}

.nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 56px;
  gap: 7px;
  color: rgba(241, 231, 226, 0.48);
  transition: color 0.24s ease, transform 0.24s ease;
}

.nav-item svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.45;
  transition: transform 0.24s ease, stroke 0.24s ease, fill 0.24s ease, opacity 0.24s ease;
}

.nav-item span {
  overflow: hidden;
  max-width: 100%;
  font-size: 14px;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.24s ease, opacity 0.24s ease, transform 0.24s ease;
}

.nav-item.is-active {
  color: var(--accent);
  transform: translate3d(0, -1px, 0);
}

.nav-item.is-active svg {
  transform: translate3d(0, -1px, 0) scale(1.04);
}

.nav-item.is-active span {
  transform: translate3d(0, -1px, 0);
}

.nav-item[data-view="profile"].is-active svg {
  fill: currentColor;
  stroke: currentColor;
}

.nav-item.is-active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  transform: translate3d(-50%, 0, 0) scale(1);
  opacity: 1;
  transition: transform 0.24s ease, opacity 0.24s ease, background-color 0.24s ease;
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  transform: translate3d(-50%, 4px, 0) scale(0.35);
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.24s ease, background-color 0.24s ease;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(104px + env(safe-area-inset-bottom));
  z-index: 30;
  width: min(calc(100% - 40px), 420px);
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: rgba(13, 13, 13, 0.96);
  font-size: 13px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.screen-block,
.detail-screen {
  min-width: 0;
}

.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 5px 0 18px;
}

.screen-header h1,
.detail-body h1 {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 33px;
  font-weight: 500;
  line-height: 1;
}

.model-grid-full {
  margin-top: 6px;
}

.empty-state {
  padding: 34px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.018);
}

.back-button {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
}

.detail-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.detail-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  aspect-ratio: 0.72;
  background: var(--panel-soft);
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.82) contrast(1.04) saturate(0.9);
}

.detail-body {
  min-width: 0;
}

.detail-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.detail-title-row .detail-favorite {
  position: static;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
}

.detail-title-row .detail-favorite svg {
  width: 28px;
  height: 28px;
}

.detail-city {
  margin: 8px 0 14px;
  color: var(--accent);
  font-size: 13px;
}

.detail-description {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.detail-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.detail-specs span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 12px;
  background: rgba(255, 255, 255, 0.018);
}

.detail-list {
  display: grid;
  gap: 7px;
  margin-top: 15px;
}

.detail-list h2 {
  margin: 0 0 3px;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
}

.detail-list div,
.profile-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.018);
}

.detail-list b,
.profile-row b {
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
}

.detail-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.profile-panel {
  display: grid;
  gap: 8px;
}

.profile-main {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.profile-main span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
}

.profile-main strong {
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
}

.profile-screen,
.balance-screen {
  min-height: calc(100vh - 210px);
  padding: 2px 2px 18px;
}

.profile-screen {
  display: grid;
  gap: 26px;
}

.profile-hero-row {
  display: grid;
  grid-template-columns: auto minmax(92px, 1fr) minmax(240px, 0.94fr);
  align-items: center;
  gap: 24px;
}

.profile-avatar {
  position: relative;
  width: 164px;
  height: 164px;
  overflow: hidden;
  border: 1px solid rgba(217, 140, 150, 0.46);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 20%, rgba(217, 140, 150, 0.2), transparent 36%),
    var(--page-elevated);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.026), 0 18px 44px rgba(0, 0, 0, 0.32);
  margin-left: 8px;
  margin-top: -6px;
}

.profile-avatar img,
.profile-avatar span {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.profile-avatar img {
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.74) contrast(1.08) saturate(0.9);
}

.profile-avatar span {
  display: grid;
  place-items: center;
  color: var(--accent-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 72px;
  line-height: 1;
}

.profile-name {
  min-width: 0;
  overflow: hidden;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 4.2vw, 36px);
  font-weight: 500;
  line-height: 0.92;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-left: 6px;
  margin-top: -4px;
}

.profile-balance-card,
.profile-wide-button,
.profile-booking-card,
.profile-menu-card,
.balance-action-card,
.balance-empty-card,
.topup-panel,
.topup-method {
  border: 1px solid rgba(217, 140, 150, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.004)),
    rgba(10, 10, 10, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.018);
}

.profile-balance-card {
  position: relative;
  min-height: 100px;
  padding: 26px 68px 22px 27px;
  border-radius: 24px;
  color: var(--text);
  text-align: left;
}

.profile-balance-card span {
  display: block;
  font-size: 13px;
  line-height: 1.1;
}

.profile-balance-card strong {
  display: block;
  margin-top: 11px;
  color: rgba(241, 231, 226, 0.34);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.profile-balance-card i {
  position: absolute;
  right: 30px;
  bottom: 34px;
  width: 38px;
  height: 38px;
  color: var(--accent-strong);
  font-style: normal;
}

.profile-row-icon svg,
.profile-chevron svg,
.profile-booking-icon svg,
.profile-balance-card svg,
.balance-action-icon svg,
.topup-method-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.38;
}

.profile-wide-button,
.profile-menu-item {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 66px;
  padding: 0 62px 0 30px;
  color: var(--text);
  text-align: left;
}

.profile-wide-button::after,
.profile-menu-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 32px;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid var(--accent-strong);
  border-right: 1.5px solid var(--accent-strong);
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.88;
  pointer-events: none;
}

.profile-menu-item::after {
  right: 18px;
}

.profile-wide-button {
  border-radius: 24px;
  font-size: 17px;
}

.profile-row-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--accent-strong);
}

.profile-chevron {
  width: 24px;
  height: 24px;
  color: var(--accent-strong);
}

.profile-booking-card {
  position: relative;
  min-height: 168px;
  overflow: hidden;
  border-radius: 24px;
}

.profile-booking-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.96) 0%, rgba(10, 10, 10, 0.82) 43%, rgba(10, 10, 10, 0.24) 78%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.profile-booking-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
  max-width: 58%;
  padding: 48px 28px 30px 28px;
}

.profile-booking-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 13px;
  border-radius: 999px;
  color: var(--accent-strong);
  background: rgba(217, 140, 150, 0.11);
}

.profile-booking-copy strong {
  display: block;
  color: var(--text);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
}

.profile-booking-copy span:not(.profile-booking-icon) {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.profile-booking-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48%;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.58), rgba(10, 10, 10, 0.06)),
    url("/assets/profile-reserved.jpg") center / cover no-repeat;
  filter: brightness(0.86) contrast(1.04) saturate(0.86);
}

.profile-menu-card {
  overflow: hidden;
  border-radius: 24px;
}

.profile-menu-item {
  margin: 0 14px;
  padding: 0 52px 0 21px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
  font-size: 16px;
}

.profile-menu-item:last-child {
  border-bottom: 0;
}

.profile-city-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.profile-city-copy strong {
  overflow: hidden;
  color: var(--text);
  font-size: inherit;
  font-weight: 500;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-city-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 17px;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.screen-brand {
  align-self: end;
  margin: 25px 0 0;
  color: var(--accent-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 16px;
  line-height: 1;
  text-align: center;
}

.balance-screen {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.history-screen {
  min-height: calc(100vh - 210px);
  display: grid;
  place-items: center;
  padding: 0 18px 36px;
}

.history-empty {
  text-align: center;
  transform: translateY(-2.5vh);
}

.history-empty strong {
  display: block;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4.1vw, 44px);
  font-weight: 500;
  line-height: 0.96;
}

.history-empty span {
  display: block;
  margin-top: 16px;
  color: rgba(241, 231, 226, 0.52);
  font-size: 15px;
  line-height: 1.45;
}

.topbar[data-screen-title="История платежей"] .brand-wordmark {
  font-size: 24px;
}

.topbar[data-screen-title="История платежей"] .search-button {
  display: none;
}

.balance-summary {
  margin-top: 86px;
  text-align: center;
}

.balance-summary span {
  display: block;
  color: rgba(241, 231, 226, 0.58);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.balance-summary strong {
  display: block;
  margin-top: 16px;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 0.78;
}

.balance-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 72px;
}

.balance-action-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 0 24px;
  border-radius: 24px;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.1;
  text-align: left;
}

.balance-action-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--accent-strong);
}

.balance-empty-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 140px;
  margin-top: 0;
  padding: 42px 34px;
  border-radius: 24px;
  text-align: center;
}

.balance-empty-card strong {
  display: block;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.15;
}

.balance-empty-card span {
  display: block;
  margin-top: 6px;
  color: rgba(241, 231, 226, 0.48);
  font-size: 14px;
  line-height: 1.45;
}

.balance-screen .screen-brand {
  margin-top: auto;
  padding-top: 78px;
  align-self: center;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 16px;
}

.primary-button,
.soft-button {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
}

.primary-button {
  color: #140d0e;
  background: var(--accent);
}

.soft-button {
  border: 1px solid var(--line);
  color: var(--accent);
  background: rgba(201, 130, 136, 0.08);
}

body.profile-flow-active {
  background: #050505;
}

body.profile-flow-active .app-frame {
  width: min(100%, 735px);
  padding: 0;
}

body.profile-flow-active .topbar,
body.profile-flow-active .bottom-nav {
  display: none;
}

body.profile-flow-active .sections-root {
  margin-top: 0;
  gap: 0;
}

.escort-profile-screen {
  position: relative;
  min-height: 100vh;
  color: var(--text);
  background: #050505;
}

.escort-profile-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.28) 54%, rgba(5, 5, 5, 0.18)),
    var(--profile-image) center top / cover no-repeat;
}

.escort-profile-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, #050505 94%);
  pointer-events: none;
}

.escort-profile-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 32%, rgba(217, 140, 150, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.24));
}

.escort-profile-nav {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  min-height: 78px;
  padding: max(14px, env(safe-area-inset-top)) 28px 0;
}

.escort-hero-button,
.escort-hero-spacer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #e5a1aa;
}

.escort-hero-button svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.escort-hero-button.favorite-button {
  position: static;
  color: #f0b0b8;
}

.escort-hero-button.favorite-button svg {
  width: 34px;
  height: 34px;
}

.escort-hero-brand {
  justify-self: center;
  overflow: hidden;
  max-width: 100%;
  color: var(--accent-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: 15px;
  line-height: 1;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.escort-profile-person {
  position: relative;
  z-index: 2;
  width: min(44%, 320px);
  min-width: 230px;
  padding: 72px 0 54px 36px;
}

.escort-profile-person h1 {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(62px, 8.4vw, 84px);
  font-weight: 500;
  line-height: 0.9;
}

.escort-profile-person p {
  margin: 20px 0 22px;
  color: var(--accent-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3.3vw, 36px);
  line-height: 1;
}

.escort-profile-person span,
.escort-profile-person small {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text);
  font-size: clamp(19px, 2.1vw, 26px);
  line-height: 1.2;
}

.escort-profile-person small {
  margin-top: 27px;
}

.escort-profile-person svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--accent-strong);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.escort-profile-content {
  display: grid;
  gap: 12px;
  padding: 0 24px calc(118px + env(safe-area-inset-bottom));
  transform: translateY(-12px);
}

.escort-info-card,
.booking-panel,
.model-services-panel {
  border: 1px solid rgba(217, 140, 150, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.006)),
    rgba(13, 13, 13, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.018);
}

.escort-info-card {
  overflow: hidden;
  border-radius: 10px;
  padding: 18px 18px 16px;
}

.escort-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.escort-card-title h2 {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
}

.escort-card-title span {
  width: 26px;
  height: 26px;
  color: rgba(241, 231, 226, 0.62);
}

.escort-card-title svg,
.escort-row-icon svg,
.escort-sticky-actions svg,
.booking-time-summary svg,
.booking-telegram svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.escort-price-list {
  display: grid;
  margin-top: 12px;
}

.escort-price-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-size: 20px;
}

.escort-price-row:last-child {
  border-bottom: 0;
}

.escort-row-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--accent-strong);
}

.escort-price-row b {
  color: #d99aa1;
  font-weight: 500;
  white-space: nowrap;
}

.escort-gallery-row {
  display: grid;
  grid-auto-columns: minmax(120px, 1fr);
  grid-auto-flow: column;
  gap: 14px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
}

.escort-gallery-item {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
}

.escort-gallery-row img {
  width: 100%;
  aspect-ratio: 1.16;
  border-radius: 9px;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.82) contrast(1.05) saturate(0.9);
}

.gallery-viewer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  background: rgba(5, 5, 5, 0.98);
}

.gallery-viewer-top {
  position: relative;
  z-index: 2;
  padding: max(14px, env(safe-area-inset-top)) 28px 0;
}

.gallery-viewer-bar {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
}

.gallery-viewer-counter {
  justify-self: center;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  line-height: 1;
}

.gallery-viewer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  color: #f0b0b8;
  background: transparent;
}

.gallery-viewer-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.gallery-viewer-icon.favorite-button {
  position: static;
  right: auto;
  bottom: auto;
  width: 44px;
  height: 44px;
  justify-self: end;
}

.gallery-viewer-icon.favorite-button svg {
  width: 28px;
  height: 28px;
}

.gallery-viewer-track {
  display: flex;
  height: 100%;
  width: 100%;
  will-change: transform;
  transition: transform 0.44s cubic-bezier(0.22, 1, 0.36, 1);
  touch-action: pan-y;
  cursor: grab;
}

.gallery-viewer-track.is-dragging {
  cursor: grabbing;
  transition: none;
}

.gallery-viewer-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0 calc(22px + env(safe-area-inset-bottom));
}

.gallery-viewer-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

.escort-card-copy,
.escort-muted-text {
  margin: 12px 0 0;
  color: rgba(241, 231, 226, 0.72);
  font-size: 18px;
  line-height: 1.48;
}

.escort-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.escort-tags span {
  padding: 9px 14px;
  border: 1px solid rgba(217, 140, 150, 0.16);
  border-radius: 7px;
  color: #d99aa1;
  background: rgba(201, 130, 136, 0.045);
  font-size: 16px;
}

.escort-compact-card {
  padding-block: 18px;
}

.escort-sticky-actions {
  position: fixed;
  left: 50%;
  bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 24;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  width: min(calc(100% - 48px), 688px);
  transform: translateX(-50%);
}

.escort-primary-action,
.escort-secondary-action,
.booking-continue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  border-radius: 9px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
}

.escort-primary-action,
.booking-continue {
  color: #fff0ef;
  background:
    linear-gradient(135deg, rgba(255, 199, 196, 0.2), rgba(119, 55, 57, 0.24)),
    linear-gradient(180deg, #b66f68, #8c4f50);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 14px 34px rgba(0, 0, 0, 0.32);
}

.escort-secondary-action {
  border: 1px solid rgba(217, 140, 150, 0.45);
  color: #d99aa1;
  background: rgba(7, 7, 7, 0.88);
}

.escort-sticky-actions span,
.booking-telegram span {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

body.services-sheet-open {
  overflow: hidden !important;
  height: 100vh;
  height: 100dvh;
}

.model-services-sheet {
  position: fixed;
  inset: 0;
  z-index: 82;
}

.model-services-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(7px);
}

.model-services-panel {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(100%, 735px);
  max-height: 85vh;
  min-height: min(72vh, 680px);
  padding: 62px 34px calc(48px + env(safe-area-inset-bottom));
  border-radius: 42px 42px 0 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
}

.model-services-handle,
.booking-handle {
  width: 62px;
  height: 8px;
  margin: 0 auto;
  border-radius: 999px;
  background: #d98c96;
  opacity: 0.78;
}

.model-services-panel h2,
.booking-title h2 {
  margin: 24px 0 0;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 5.4vw, 58px);
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.model-services-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  overflow-y: auto;
  flex: 1;
  padding-bottom: 20px;
  align-content: start;
}

.model-service-row {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 0 24px;
  border: 1px solid rgba(217, 140, 150, 0.13);
  border-radius: 13px;
  color: rgba(241, 231, 226, 0.82);
  background: linear-gradient(180deg, rgba(217, 140, 150, 0.055), rgba(255, 255, 255, 0.012));
  font-size: 20px;
}

.booking-panel {
  position: relative;
  z-index: 4;
  max-height: 90vh;
  min-height: 62vh;
  margin-top: -52px;
  padding: 24px 30px calc(28px + env(safe-area-inset-bottom));
  border-radius: 42px 42px 0 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.booking-title {
  margin-bottom: 32px;
  text-align: center;
}

.booking-panel.booking-datetime-panel .booking-title {
  margin-bottom: 26px;
}

.booking-panel.booking-datetime-panel .booking-title h2 {
  max-width: 340px;
  margin-inline: auto;
  font-size: clamp(28px, 6.6vw, 44px);
  line-height: 0.95;
}

.booking-title p {
  margin: 16px 0 0;
  color: rgba(241, 231, 226, 0.5);
  font-size: 21px;
  line-height: 1.42;
}

.booking-group {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.booking-group h3 {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.booking-duration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.booking-two-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.booking-choice-card,
.booking-wide-choice,
.booking-time-summary,
.booking-date-card,
.booking-hour-card,
.booking-extra-row,
.booking-payment-row,
.booking-summary-card {
  border: 1px solid rgba(217, 140, 150, 0.12);
  border-radius: 13px;
  color: rgba(241, 231, 226, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), rgba(255, 255, 255, 0.004)),
    rgba(10, 10, 10, 0.64);
}

.booking-choice-card {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  min-height: 116px;
  padding: 16px 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.booking-choice-card span,
.booking-choice-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: transparent;
}

.booking-choice-card b,
.booking-wide-choice b,
.booking-hour-card,
.booking-date-card b,
.booking-extra-row b,
.booking-payment-row b,
.booking-summary-card span,
.booking-summary-card b {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}

.booking-choice-card small {
  color: rgba(241, 231, 226, 0.62);
  font-size: 17px;
}

.booking-choice-card.is-active,
.booking-wide-choice.is-active,
.booking-date-card.is-active,
.booking-hour-card.is-active,
.booking-extra-row.is-active,
.booking-payment-row.is-active {
  border-color: rgba(217, 140, 150, 0.58);
  color: #efc1c4;
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 140, 150, 0.16), transparent 62%),
    rgba(12, 12, 12, 0.76);
}

.booking-choice-card.is-active span,
.booking-wide-choice.is-active .booking-choice-dot {
  background: #eb9098;
  box-shadow: 0 0 0 5px rgba(235, 144, 152, 0.08);
}

.booking-wide-choice {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  justify-content: center;
  min-height: 80px;
  padding: 8px;
  text-align: center;
}

.booking-wide-choice b {
  font-size: 18px;
  line-height: 1.08;
}

.booking-time-summary {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 0 24px;
  text-align: left;
}

.booking-time-icon {
  width: 34px;
  height: 34px;
  color: var(--accent-strong);
}

.booking-time-summary b {
  overflow: hidden;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.05;
  text-overflow: ellipsis;
}

.booking-time-summary small {
  color: var(--accent-strong);
  font-size: 18px;
}

.booking-time-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--accent-strong);
}

.booking-date-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.booking-date-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 112px;
  padding: 14px 6px;
}

.booking-date-card.is-active b,
.booking-date-card.is-active span,
.booking-date-card.is-active small {
  color: #efc1c4;
}

.booking-date-card span,
.booking-date-card small {
  color: rgba(241, 231, 226, 0.65);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
}

.booking-hour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.booking-hour-card {
  min-height: 72px;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.booking-extra-list,
.booking-payment-list {
  display: grid;
  gap: 14px;
}

.booking-extra-row,
.booking-payment-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  min-height: 96px;
  padding: 0 28px;
  text-align: left;
}

.booking-extra-row span,
.booking-payment-row span {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.booking-extra-row small,
.booking-payment-row small {
  color: #d99aa1;
  font-size: 19px;
  line-height: 1.28;
}

.booking-extra-row i,
.booking-payment-row i {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(241, 231, 226, 0.22);
  border-radius: 999px;
}

.booking-extra-row.is-active i,
.booking-payment-row.is-active i {
  border-color: rgba(235, 144, 152, 0.7);
  box-shadow: inset 0 0 0 8px #eb9098;
}

.booking-payment-row.is-disabled {
  opacity: 0.58;
}

.booking-extra-empty {
  padding: 24px;
  border: 1px solid rgba(217, 140, 150, 0.12);
  border-radius: 13px;
  color: rgba(241, 231, 226, 0.58);
  text-align: center;
}

.booking-continue {
  width: 100%;
  margin-top: 28px;
  border-radius: 12px;
  font-size: 32px;
  min-height: 78px;
  flex-direction: column;
  gap: 3px;
}

.booking-continue small {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 18px;
}

.booking-summary-card {
  display: grid;
  gap: 0;
  padding: 24px 32px;
}

.booking-summary-card div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.booking-summary-card div:last-child {
  border-bottom: 0;
}

.booking-summary-card b {
  color: #d99aa1;
}

.booking-confirm-note {
  margin: 38px 0 0;
  color: rgba(241, 231, 226, 0.5);
  font-size: 21px;
  line-height: 1.5;
  text-align: center;
}

.booking-telegram {
  flex-direction: row;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(6px);
}

.search-modal {
  background: #050505;
  overflow: hidden;
}

.search-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 1fr;
  width: min(100%, 735px);
  height: 100vh;
  min-height: 100vh;
  height: 100dvh;
  min-height: 100dvh;
  margin: 0 auto;
  padding: max(18px, env(safe-area-inset-top)) 22px calc(28px + env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 50% 18%, rgba(80, 36, 26, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(6, 6, 6, 0.98), rgba(2, 2, 2, 1));
}

.search-modal-close {
  position: absolute;
  top: max(24px, env(safe-area-inset-top));
  right: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: rgba(241, 231, 226, 0.86);
  font-size: 42px;
  font-weight: 300;
  line-height: 0.72;
}

.search-handle {
  width: 68px;
  height: 8px;
  margin: 8px auto 34px;
  border-radius: 999px;
  background: rgba(241, 231, 226, 0.24);
}

.search-layout {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 0;
  padding-top: 82px;
}

.search-title {
  margin: 0 0 28px;
  color: var(--accent-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 6.6vw, 64px);
  font-weight: 500;
  line-height: 0.92;
}

.search-form {
  margin: 0;
}

.search-field {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 16px;
  min-height: 60px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(10, 10, 10, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.search-field-icon,
.search-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--accent-strong);
}

.search-field-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.search-clear {
  position: relative;
  border-radius: 999px;
  border: 1px solid rgba(217, 140, 150, 0.34);
  background: rgba(217, 140, 150, 0.14);
  color: transparent;
  font-size: 0;
}

.search-clear[hidden] {
  display: none;
}

.search-clear::before,
.search-clear::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--accent-strong);
}

.search-clear::before {
  transform: rotate(45deg);
}

.search-clear::after {
  transform: rotate(-45deg);
}

.search-input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  background: transparent;
  user-select: text;
  -webkit-user-select: text;
}

.search-input::placeholder {
  color: rgba(241, 231, 226, 0.36);
}

.search-results {
  min-height: 0;
  padding-top: 46px;
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
  background: transparent;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.search-results-group {
  display: grid;
}

.search-results-label {
  margin-left: 14px;
  margin-bottom: 18px;
  color: rgba(241, 231, 226, 0.62);
  font-size: 15px;
}

.search-recent-list,
.search-results-group {
  display: grid;
  gap: 0;
}

.search-recent-item {
  display: grid;
  gap: 5px;
  width: 100%;
  min-height: 62px;
  padding: 11px 14px 10px;
  border-bottom: 1px solid rgba(241, 231, 226, 0.055);
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  text-transform: none;
  text-align: left;
}

.search-recent-item:last-child {
  border-bottom: 0;
}

.search-recent-name {
  overflow: hidden;
  font-size: 24px;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-recent-meta {
  overflow: hidden;
  color: rgba(241, 231, 226, 0.36);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 12px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-model-list {
  display: grid;
  gap: 14px;
}

.search-result-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(14, 14, 14, 0.96);
  color: var(--text);
  text-align: left;
}

.search-result-media {
  position: relative;
  display: block;
  min-height: 208px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.search-result-media img,
.search-result-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.search-result-media img {
  object-fit: cover;
}

.search-result-fallback {
  display: grid;
  place-items: center;
  color: var(--accent-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 46px;
  background: radial-gradient(circle at 50% 20%, rgba(217, 140, 150, 0.18), rgba(255, 255, 255, 0.02) 60%, rgba(0, 0, 0, 0.2));
}

.search-result-content {
  display: grid;
  align-content: center;
  gap: 12px;
  min-width: 0;
  padding: 8px 4px;
}

.search-result-id {
  color: var(--accent-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-style: normal;
}

.search-result-name {
  overflow: hidden;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 0.92;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result-city {
  color: rgba(241, 231, 226, 0.56);
  font-size: 17px;
}

.search-empty-state {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: calc(100vh - 330px);
  text-align: center;
}

.search-empty-state strong {
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500;
  line-height: 0.94;
}

.search-empty-state span {
  margin-top: 18px;
  color: rgba(241, 231, 226, 0.5);
  font-size: 17px;
}

.topup-sheet {

  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
}

.topup-sheet.is-open {
  pointer-events: auto;
}

.topup-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  background: rgba(0, 0, 0, 0.56);
  transition: opacity 0.28s ease;
}

.topup-sheet.is-open .topup-backdrop {
  opacity: 1;
}

.topup-panel {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(100%, 735px);
  min-height: min(58vh, 650px);
  padding: 58px 40px calc(42px + env(safe-area-inset-bottom));
  border-radius: 42px 42px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.006)),
    rgba(12, 12, 12, 0.986);
  box-shadow: 0 -24px 72px rgba(0, 0, 0, 0.54), inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transform: translate(-50%, 104%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.topup-sheet.is-open .topup-panel {
  transform: translate(-50%, 0);
}

.topup-handle {
  position: absolute;
  top: 19px;
  left: 50%;
  width: 82px;
  height: 10px;
  border-radius: 999px;
  background: rgba(241, 231, 226, 0.16);
  transform: translateX(-50%);
}

.topup-close {
  position: absolute;
  top: 54px;
  right: 38px;
  width: 42px;
  height: 42px;
  color: rgba(241, 231, 226, 0.52);
  font-size: 52px;
  font-weight: 300;
  line-height: 0.74;
}

.topup-copy {
  text-align: center;
}

.topup-copy h2 {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.topup-copy p {
  margin: 23px 0 0;
  color: rgba(241, 231, 226, 0.48);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.topup-methods {
  display: grid;
  gap: 22px;
  margin-top: 63px;
}

.topup-methods-detail {
  margin-top: 52px;
}

.topup-method {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 143px;
  padding: 0 41px;
  border-radius: 20px;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 33px;
  font-weight: 500;
  text-align: left;
}

.topup-method-support {
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 118px;
  padding: 0 34px;
  font-size: 26px;
}

.topup-method-icon {
  width: 66px;
  height: 66px;
  color: var(--accent-strong);
}

.city-panel {
  min-height: min(54vh, 580px);
}

.info-panel {
  min-height: min(64vh, 720px);
  padding: 64px 34px calc(34px + env(safe-area-inset-bottom));
}

.info-sheet-content {
  display: grid;
  gap: 34px;
  padding-top: 32px;
}

.info-sheet-title {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4.8vw, 56px);
  font-weight: 500;
  line-height: 0.96;
}

.info-sheet-body {
  display: grid;
  gap: 34px;
}

.info-sheet-body p {
  margin: 0;
  max-width: 24ch;
  color: rgba(241, 231, 226, 0.54);
  font-size: clamp(21px, 2.35vw, 28px);
  line-height: 1.52;
}

.city-sheet-content {
  display: grid;
  gap: 18px;
}

.city-sheet-hero {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.city-sheet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  color: var(--accent-strong);
  background: radial-gradient(circle, rgba(201, 130, 136, 0.18), rgba(201, 130, 136, 0.04) 62%, transparent 100%);
  box-shadow: inset 0 0 0 1px rgba(217, 140, 150, 0.18);
}

.city-sheet-icon svg,
.city-change-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.city-sheet-copy h2 {
  margin: 0;
  max-width: calc(100% - 48px);
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}

.city-sheet-copy h2 span {
  display: inline-block;
  max-width: min(100%, 14ch);
  overflow: hidden;
  color: var(--accent-strong);
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.city-sheet-copy p {
  margin: 10px 0 0;
  color: rgba(241, 231, 226, 0.48);
  font-size: 14px;
  line-height: 1.45;
}

.city-current-card,
.city-change-button,
.city-search-result,
.city-search-empty {
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 0 20px;
  border: 1px solid rgba(217, 140, 150, 0.13);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.004)),
    rgba(10, 10, 10, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.018);
}

.city-current-card {
  gap: 14px;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
}

.city-history-list {
  display: grid;
  gap: 10px;
  max-height: min(32vh, 260px);
  overflow-y: auto;
  padding-right: 4px;
  -webkit-overflow-scrolling: touch;
}

.city-history-list::-webkit-scrollbar {
  width: 4px;
}

.city-history-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(217, 140, 150, 0.22);
}

.city-history-item,
.city-history-empty {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid rgba(217, 140, 150, 0.1);
  border-radius: 16px;
  color: rgba(241, 231, 226, 0.78);
  background: rgba(10, 10, 10, 0.52);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  text-align: left;
}

.city-history-item {
  gap: 14px;
}

.city-history-item:not(.is-active) .city-current-dot {
  opacity: 0.28;
}

.city-history-empty {
  justify-content: center;
  color: rgba(241, 231, 226, 0.42);
  font-size: 13px;
}

.city-current-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #d89ba1;
  box-shadow: 0 0 0 3px rgba(216, 155, 161, 0.08);
}

.city-change-button {
  gap: 14px;
  color: var(--accent-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  justify-content: flex-start;
  text-align: left;
}

.city-change-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--accent-strong);
}

.city-sheet-brand {
  margin-top: 4px;
  color: var(--accent-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 10px;
  line-height: 1;
  text-align: center;
}

.city-sheet-search {
  display: grid;
  gap: 16px;
  min-height: 0;
}

.city-sheet-copy-search {
  text-align: left;
}

.city-search-input-wrap {
  padding-top: 2px;
}

.city-search-input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(217, 140, 150, 0.16);
  border-radius: 16px;
  outline: 0;
  color: var(--text);
  font-size: 14px;
  background: rgba(255, 255, 255, 0.024);
  user-select: text;
  -webkit-user-select: text;
}

.city-search-input::placeholder {
  color: rgba(241, 231, 226, 0.34);
}

.city-search-results {
  display: grid;
  gap: 10px;
  min-height: 0;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;
  -webkit-overflow-scrolling: touch;
}

.city-search-results::-webkit-scrollbar {
  width: 4px;
}

.city-search-results::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(217, 140, 150, 0.22);
}

.city-search-result {
  justify-content: flex-start;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  text-align: left;
}

.city-search-empty {
  justify-content: center;
  color: rgba(241, 231, 226, 0.44);
  font-size: 13px;
}

.city-search-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  color: rgba(241, 231, 226, 0.38);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 560px) {
  .launch-core {
    gap: 18px;
    width: min(calc(100% - 54px), 340px);
  }

  .launch-shine {
    width: min(72vw, 224px);
  }

  .launch-progress {
    width: min(100%, 230px);
  }

  .app-frame {
    padding: 13px 16px 126px;
  }

  body.profile-flow-active .app-frame {
    padding: 0;
  }

  .escort-profile-hero {
    min-height: 352px;
    background-position: center top;
  }

  .escort-profile-nav {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    min-height: 64px;
    padding: max(10px, env(safe-area-inset-top)) 18px 0;
  }

  .escort-hero-button,
  .escort-hero-spacer {
    width: 38px;
    height: 38px;
  }

  .escort-hero-button svg,
  .escort-hero-button.favorite-button svg {
    width: 29px;
    height: 29px;
  }

  .escort-hero-brand {
    font-size: 23px;
    letter-spacing: 10px;
  }

  .escort-profile-person {
    width: 50%;
    min-width: 170px;
    padding: 70px 0 42px 24px;
  }

  .escort-profile-person h1 {
    font-size: 48px;
  }

  .escort-profile-person p {
    margin: 14px 0 17px;
    font-size: 25px;
  }

  .escort-profile-person span,
  .escort-profile-person small {
    gap: 10px;
    font-size: 19px;
  }

  .escort-profile-person small {
    margin-top: 20px;
    font-size: 15px;
  }

  .escort-profile-person svg {
    width: 20px;
    height: 20px;
  }

  .escort-profile-content {
    gap: 10px;
    padding: 0 14px calc(92px + env(safe-area-inset-bottom));
    transform: translateY(-8px);
  }

  .escort-info-card {
    border-radius: 10px;
    padding: 16px 15px 15px;
  }

  .escort-card-title h2 {
    font-size: 26px;
  }

  .escort-price-row {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 13px;
    min-height: 49px;
    font-size: 16px;
  }

  .escort-row-icon {
    width: 28px;
    height: 28px;
  }

  .escort-gallery-row {
    grid-auto-columns: 112px;
    gap: 10px;
  }

  .escort-card-copy,
  .escort-muted-text {
    font-size: 15px;
  }

  .escort-tags {
    gap: 8px;
  }

  .escort-tags span {
    padding: 8px 11px;
    font-size: 14px;
  }

  .escort-sticky-actions {
    bottom: calc(8px + env(safe-area-inset-bottom));
    gap: 10px;
    width: calc(100% - 28px);
  }

  .escort-primary-action,
  .escort-secondary-action {
    min-height: 56px;
    font-size: 19px;
  }

  .escort-sticky-actions span,
  .booking-telegram span {
    width: 24px;
    height: 24px;
  }

  .model-services-panel {
    max-height: 85vh;
    min-height: min(72vh, 620px);
    padding: 42px 18px calc(28px + env(safe-area-inset-bottom));
    border-radius: 34px 34px 0 0;
    display: flex;
    flex-direction: column;
  }

  .model-services-list {
    gap: 8px;
    margin-top: 28px;
    overflow-y: auto;
    flex: 1;
    align-content: start;
  }

  .model-service-row {
    min-height: 68px;
    padding: 0 20px;
    font-size: 18px;
  }

  .booking-panel {
    max-height: 90vh;
    min-height: 64vh;
    margin-top: -42px;
    padding: 22px 16px calc(24px + env(safe-area-inset-bottom));
    border-radius: 34px 34px 0 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .booking-title {
    margin-bottom: 30px;
  }

  .booking-title p {
    margin-top: 12px;
    font-size: 16px;
  }

  .booking-group {
    gap: 13px;
    margin-top: 24px;
  }

  .booking-group h3 {
    font-size: 23px;
  }

  .booking-duration-grid,
  .booking-two-grid,
  .booking-hour-grid {
    gap: 10px;
  }

  .booking-choice-card {
    min-height: 96px;
    gap: 8px;
    padding: 12px 6px;
  }

  .booking-choice-card b,
  .booking-wide-choice b,
  .booking-hour-card,
  .booking-date-card b,
  .booking-extra-row b,
  .booking-payment-row b,
  .booking-summary-card span,
  .booking-summary-card b {
    font-size: 18px;
  }

  .booking-choice-card small {
    font-size: 15px;
  }

  .booking-wide-choice {
    min-height: 62px;
    gap: 7px;
  }

  .booking-wide-choice b {
    font-size: 17px;
  }

  .booking-time-summary {
    grid-template-columns: 30px minmax(0, 1fr) auto;
    min-height: 68px;
    padding: 0 16px;
  }

  .booking-time-icon {
    width: 28px;
    height: 28px;
  }

  .booking-time-summary b {
    font-size: 17px;
    white-space: nowrap;
  }

  .booking-time-arrow {
    width: 14px;
    height: 14px;
  }

  .booking-date-row {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .booking-date-card {
    min-height: 82px;
    gap: 5px;
    padding: 10px 4px;
  }

  .booking-panel.booking-datetime-panel .booking-title {
    margin-bottom: 22px;
  }

  .booking-panel.booking-datetime-panel .booking-title h2 {
    max-width: 290px;
    font-size: 28px;
    line-height: 0.96;
  }

  .booking-panel.booking-datetime-panel .booking-date-card b {
    font-size: 18px;
  }

  .booking-panel.booking-datetime-panel .booking-date-card span,
  .booking-panel.booking-datetime-panel .booking-date-card small {
    font-size: 14px;
  }

  .booking-hour-card {
    min-height: 58px;
  }

  .booking-extra-list,
  .booking-payment-list {
    gap: 10px;
  }

  .booking-extra-row,
  .booking-payment-row {
    grid-template-columns: minmax(0, 1fr) 28px;
    min-height: 78px;
    padding: 0 18px;
  }

  .booking-extra-row small,
  .booking-payment-row small {
    font-size: 15px;
  }

  .booking-extra-row i,
  .booking-payment-row i {
    width: 26px;
    height: 26px;
  }

  .booking-continue {
    min-height: 66px;
    margin-top: 22px;
    font-size: 28px;
  }

  .booking-summary-card {
    padding: 20px 22px;
  }

  .booking-summary-card div {
    min-height: 58px;
  }

  .gallery-viewer-top {
    padding: max(10px, env(safe-area-inset-top)) 14px 0;
  }

  .gallery-viewer-progress {
    gap: 6px;
    margin-bottom: 10px;
  }

  .gallery-viewer-bar {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
  }

  .gallery-viewer-counter {
    font-size: 22px;
  }

  .gallery-viewer-icon,
  .gallery-viewer-icon.favorite-button {
    width: 36px;
    height: 36px;
  }

  .gallery-viewer-icon svg {
    width: 22px;
    height: 22px;
  }

  .gallery-viewer-icon.favorite-button svg {
    width: 24px;
    height: 24px;
  }

  .gallery-viewer-slide {
    padding: 4px 0 calc(12px + env(safe-area-inset-bottom));
  }

  .booking-confirm-note {
    margin-top: 28px;
    font-size: 17px;
  }

  .topbar {
    grid-template-columns: 34px 1fr 34px;
    min-height: 40px;
    margin-bottom: 13px;
  }

  .topbar.is-screen-topbar {
    margin-bottom: 40px;
  }

  .menu-button,
  .search-button {
    width: 34px;
    height: 34px;
  }

  .menu-button {
    gap: 6px;
  }

  .menu-button span {
    width: 24px;
  }

  .menu-button.is-back svg {
    width: 32px;
    height: 32px;
  }

  .brand-wordmark {
    padding-left: 8px;
    font-size: 24px;
    letter-spacing: 8px;
  }

  .topbar.is-screen-topbar .brand-wordmark {
    font-size: 32px;
  }

  .topbar[data-screen-title="Профиль"] .brand-wordmark {
    font-size: 22px;
  }

  .topbar[data-screen-title="Баланс"] .brand-wordmark {
    font-size: 22px;
  }

  .topbar.is-title-left .brand-wordmark {
    padding-left: 11px;
  }

  .search-button svg {
    width: 26px;
    height: 26px;
  }

  .hero-banner {
    min-height: 224px;
    border-radius: 18px;
  }

  .hero-copy {
    width: 56%;
    min-width: 0;
    padding: 26px 0 0 18px;
  }

  .hero-copy p {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .hero-copy h1 {
    margin-bottom: 11px;
    font-size: 36px;
  }

  .hero-copy span {
    font-size: 11px;
    line-height: 1.42;
  }

  .hero-link {
    gap: 11px;
    margin-top: 12px;
    padding-bottom: 4px;
    font-size: 12px;
  }

  .hero-link svg {
    width: 18px;
    height: 18px;
  }

  .hero-copy.is-compact {
    width: 70%;
    padding-top: 23px;
  }

  .hero-copy.is-compact h1 {
    margin-bottom: 9px;
    font-size: 31px;
    line-height: 0.96;
  }

  .hero-copy.is-compact .hero-copy-description {
    font-size: 10px;
    line-height: 1.25;
  }

  .hero-copy.is-compact .hero-link {
    gap: 9px;
    margin-top: 10px;
    font-size: 10px;
  }

  .hero-copy.is-compact .hero-link svg {
    width: 15px;
    height: 15px;
  }

  .hero-link svg {
    width: 19px;
    height: 19px;
  }

  .hero-dots {
    bottom: 13px;
  }

  .hero-dots-track {
    gap: 11px;
  }

  .hero-dot,
  .hero-dot-indicator {
    width: 7px;
    height: 7px;
  }

  .sections-root {
    gap: 27px;
    margin-top: 25px;
  }

  .section-header {
    gap: 12px;
    margin-bottom: 12px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-link {
    gap: 8px;
    font-size: 15px;
  }

  .section-link svg {
    width: 19px;
    height: 19px;
  }

  .model-grid {
    gap: 6px;
  }

  .model-viewport {
    touch-action: pan-y;
  }

  .model-track {
    gap: 6px;
  }

  .model-track .model-card {
    flex: 0 0 calc(50% - 3px);
    width: calc(50% - 3px);
  }

  .model-info {
    border-radius: 10px;
  }

  .model-info {
    left: 7px;
    right: 27px;
    bottom: 10px;
  }

  .model-name {
    margin-bottom: 6px;
    font-size: 12px;
  }

  .model-city {
    gap: 5px;
    font-size: 9px;
  }

  .model-city::before {
    width: 5px;
    height: 5px;
  }

  .favorite-button {
    right: 6px;
    bottom: 8px;
    width: 20px;
    height: 20px;
  }

  .favorite-button svg {
    width: 18px;
    height: 18px;
  }

  .bottom-nav {
    bottom: env(safe-area-inset-bottom);
    width: calc(100% - 32px);
    padding: 9px 10px 10px;
    border-radius: 22px;
  }

  .side-menu-panel {
    top: 12px;
    bottom: calc(92px + env(safe-area-inset-bottom));
    left: max(10px, env(safe-area-inset-left));
    width: 240px;
    padding: 14px 9px 18px;
    border-radius: 26px;
  }

  .side-menu-head {
    padding-bottom: 14px;
  }

  .side-menu-profile {
    gap: 10px;
  }

  .side-menu-avatar-wrap {
    width: 62px;
    height: 62px;
  }

  .side-menu-avatar-fallback {
    font-size: 28px;
  }

  .side-menu-user-name {
    font-size: 20px;
  }

  .side-menu-item {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px;
    min-height: 48px;
    padding: 0 2px;
  }

  .side-menu-icon {
    width: 18px;
    height: 18px;
  }

  .side-menu-icon svg {
    width: 16px;
    height: 16px;
  }

  .side-menu-text {
    font-size: 14px;
  }

  .side-menu-meta {
    font-size: 10px;
  }

  .nav-item {
    min-height: 45px;
    gap: 5px;
  }

  .nav-item svg {
    width: 21px;
    height: 21px;
  }

  .nav-item span {
    font-size: 11px;
  }

  .nav-item.is-active::after {
    bottom: -2px;
    width: 5px;
    height: 5px;
  }

  .screen-header {
    margin-top: 2px;
  }

  .screen-header h1,
  .detail-body h1 {
    font-size: 28px;
  }

  .profile-screen,
  .balance-screen {
    min-height: calc(100vh - 178px);
    padding-inline: 0;
  }

  .profile-screen {
    gap: 14px;
  }

  .balance-screen {
    gap: 18px;
  }

  .profile-hero-row {
    grid-template-columns: 90px minmax(70px, 1fr) minmax(132px, 0.92fr);
    gap: 12px;
  }

  .profile-avatar {
    width: 90px;
    height: 90px;
    margin-left: 4px;
    margin-top: -4px;
  }

  .profile-avatar span {
    font-size: 45px;
  }

  .profile-name {
    font-size: 26px;
    margin-left: 4px;
    margin-top: -3px;
  }

  .profile-balance-card {
    min-height: 74px;
    padding: 15px 38px 13px 17px;
    border-radius: 18px;
  }

  .profile-balance-card span {
    font-size: 12px;
  }

  .profile-balance-card strong {
    margin-top: 4px;
    font-size: 19px;
  }

  .profile-balance-card i {
    right: 16px;
    bottom: 20px;
    width: 27px;
    height: 27px;
  }

  .profile-wide-button,
  .profile-menu-item {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 18px;
    min-height: 50px;
    padding: 0 42px 0 18px;
  }

  .profile-wide-button::after,
  .profile-menu-item::after {
    right: 20px;
    width: 8px;
    height: 8px;
  }

  .profile-menu-item::after {
    right: 12px;
  }

  .profile-wide-button {
    border-radius: 18px;
    font-size: 15px;
  }

  .profile-row-icon {
    width: 32px;
    height: 32px;
  }

  .profile-chevron {
    width: 18px;
    height: 18px;
  }

  .profile-booking-card {
    min-height: 122px;
    border-radius: 18px;
  }

  .profile-booking-copy {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    max-width: 68%;
    padding: 27px 14px 18px 18px;
  }

  .profile-booking-icon {
    width: 44px;
    height: 44px;
    padding: 10px;
  }

  .profile-booking-copy strong {
    font-size: 15px;
    line-height: 1.45;
  }

  .profile-booking-copy span:not(.profile-booking-icon) {
    margin-top: 10px;
    font-size: 12px;
  }

  .profile-booking-visual {
    width: 50%;
  }

  .profile-menu-card {
    border-radius: 18px;
  }

  .profile-menu-item {
    margin: 0 10px;
    padding: 0 36px 0 12px;
    font-size: 14px;
  }

  .profile-city-copy small {
    font-size: 13px;
  }

  .screen-brand {
    margin-top: 6px;
    font-size: 22px;
    letter-spacing: 9px;
  }

  .balance-summary {
    margin-top: 32px;
  }

  .history-screen {
    padding: 0 18px 34px;
  }

  .history-empty {
    transform: translateY(-1vh);
  }

  .history-empty strong {
    font-size: 24px;
  }

  .history-empty span {
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.5;
  }

  .balance-summary span {
    font-size: 12px;
  }

  .balance-summary strong {
    margin-top: 10px;
    font-size: 42px;
  }

  .balance-actions {
    gap: 8px;
    margin-top: 20px;
  }

  .balance-action-card {
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    min-height: 54px;
    padding: 0 14px;
    border-radius: 18px;
    font-size: 12px;
  }

  .balance-action-icon {
    width: 20px;
    height: 20px;
  }

  .balance-empty-card {
    min-height: 100px;
    padding: 32px 18px;
    border-radius: 18px;
  }

  .balance-empty-card strong {
    font-size: 16px;
  }

  .balance-empty-card span {
    margin-top: 2px;
    font-size: 13px;
  }

  .balance-screen .screen-brand {
    margin-top: 0;
    padding-top: 0;
    align-self: center;
  }

  .search-panel {
    padding: max(12px, env(safe-area-inset-top)) 16px calc(24px + env(safe-area-inset-bottom));
  }

  .search-modal-close {
    top: max(12px, env(safe-area-inset-top));
    right: 13px;
    width: 34px;
    height: 34px;
    font-size: 34px;
  }

  .search-layout {
    padding-top: 76px;
  }

  .search-handle {
    width: 58px;
    height: 7px;
    margin: 2px auto 22px;
  }

  .search-title {
    margin-bottom: 18px;
    font-size: 34px;
  }

  .search-field {
    grid-template-columns: 24px minmax(0, 1fr) 24px;
    gap: 12px;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 15px;
  }

  .search-field-icon,
  .search-clear {
    width: 24px;
    height: 24px;
  }

  .search-field-icon svg {
    width: 24px;
    height: 24px;
  }

  .search-input {
    font-size: 18px;
  }

  .search-results {
    padding-top: 26px;
  }

  .search-results-label {
    margin-left: 10px;
    margin-bottom: 14px;
    font-size: 13px;
  }

  .search-recent-item {
    min-height: 62px;
    padding: 12px 10px;
  }

  .search-recent-name {
    font-size: 18px;
  }

  .search-recent-meta {
    font-size: 11px;
  }

  .search-model-list {
    gap: 10px;
  }

  .search-result-card {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 12px;
    padding: 8px;
    border-radius: 18px;
  }

  .search-result-media {
    min-height: 150px;
    border-radius: 12px;
  }

  .search-result-id {
    font-size: 15px;
  }

  .search-result-name {
    font-size: 28px;
  }

  .search-result-city {
    font-size: 14px;
  }

  .search-empty-state {
    min-height: calc(100vh - 260px);
  }

  .search-empty-state strong {
    font-size: 32px;
  }

  .search-empty-state span {
    margin-top: 12px;
    font-size: 14px;
  }

  .topup-panel {
    min-height: min(44vh, 410px);
    padding: 48px 18px calc(24px + env(safe-area-inset-bottom));
    border-radius: 30px 30px 0 0;
  }

  .topup-handle {
    top: 18px;
    width: 64px;
    height: 8px;
  }

  .topup-close {
    top: 44px;
    right: 18px;
    width: 30px;
    height: 30px;
    font-size: 34px;
  }

  .topup-copy h2 {
    font-size: 27px;
  }

  .topup-copy p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.35;
  }

  .topup-methods {
    gap: 12px;
    margin-top: 22px;
  }

  .topup-method {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    min-height: 72px;
    padding: 0 18px;
    border-radius: 17px;
    font-size: 17px;
  }

  .topup-method-icon {
    width: 28px;
    height: 28px;
  }

  .topup-methods-detail {
    margin-top: 26px;
  }

  .topup-method-support {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 74px;
    padding: 0 18px;
    font-size: 15px;
  }

  .city-panel {
    min-height: min(54vh, 580px);
    padding: 48px 18px calc(24px + env(safe-area-inset-bottom));
  }

  .info-panel {
    min-height: min(58vh, 540px);
    padding: 48px 22px calc(26px + env(safe-area-inset-bottom));
  }

  .info-sheet-content {
    gap: 24px;
    padding-top: 18px;
  }

  .info-sheet-title {
    font-size: 33px;
  }

  .info-sheet-body {
    gap: 24px;
  }

  .info-sheet-body p {
    max-width: 24ch;
    color: rgba(241, 231, 226, 0.52);
    font-size: 16px;
    line-height: 1.6;
  }

  .city-sheet-content,
  .city-sheet-search {
    gap: 14px;
  }

  .city-sheet-hero {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }

  .city-sheet-icon {
    width: 46px;
    height: 46px;
  }

  .city-sheet-icon svg,
  .city-change-icon svg {
    width: 22px;
    height: 22px;
  }

  .city-sheet-copy h2 {
    font-size: 24px;
  }

  .city-sheet-copy h2 span {
    max-width: 11ch;
  }

  .city-sheet-copy p {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.45;
  }

  .city-current-card,
  .city-change-button,
  .city-search-result,
  .city-search-empty {
    min-height: 58px;
    padding: 0 16px;
    border-radius: 16px;
  }

  .city-current-card,
  .city-change-button {
    font-size: 16px;
  }

  .city-history-list {
    max-height: min(30vh, 210px);
    gap: 8px;
  }

  .city-history-item,
  .city-history-empty {
    min-height: 52px;
    padding: 0 16px;
    border-radius: 15px;
    font-size: 16px;
  }

  .city-current-dot {
    width: 10px;
    height: 10px;
  }

  .city-change-icon {
    width: 22px;
    height: 22px;
  }

  .city-sheet-brand {
    font-size: 24px;
    letter-spacing: 8px;
  }

  .city-search-input {
    height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 13px;
  }

  .city-search-result {
    font-size: 16px;
  }

  .city-search-empty {
    font-size: 12px;
  }

  .city-search-hint {
    min-height: 52px;
    font-size: 11px;
  }

  .city-search-results {
    max-height: 196px;
  }

  .detail-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .detail-media {
    aspect-ratio: 1.02;
  }

  .action-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .launch-brand {
    letter-spacing: 8px;
  }

  .app-frame {
    padding-inline: 12px;
  }

  .brand-wordmark {
    padding-left: 6px;
    font-size: 21px;
    letter-spacing: 6px;
  }

  .hero-copy {
    padding-left: 18px;
  }

  .model-grid {
    gap: 6px;
  }

  .side-menu-panel {
    width: 240px;
  }

  .side-menu-user-name {
    font-size: 24px;
  }

  .profile-hero-row {
    grid-template-columns: 86px minmax(56px, 1fr) minmax(112px, 0.92fr);
    gap: 10px;
  }

  .profile-avatar {
    width: 86px;
    height: 86px;
  }

  .profile-name {
    font-size: 24px;
  }

  .profile-balance-card {
    min-height: 80px;
    padding: 13px 32px 12px 14px;
  }

  .profile-balance-card span {
    font-size: 13px;
  }

  .profile-balance-card strong {
    font-size: 18px;
  }

  .profile-balance-card i {
    right: 12px;
    bottom: 19px;
    width: 24px;
    height: 24px;
  }

  .balance-action-card {
    padding-inline: 18px;
    font-size: 19px;
  }

  .topup-method {
    padding-inline: 20px;
    font-size: 25px;
  }

  .escort-hero-brand {
    font-size: 20px;
    letter-spacing: 7px;
  }

  .escort-profile-person {
    min-width: 155px;
    padding-left: 18px;
  }

  .escort-profile-person h1 {
    font-size: 42px;
  }

  .booking-duration-grid,
  .booking-hour-grid {
    gap: 8px;
  }

  .booking-choice-card b,
  .booking-wide-choice,
  .booking-hour-card,
  .booking-date-card b {
    font-size: 19px;
  }

  .booking-choice-card small {
    font-size: 15px;
  }

  .booking-panel {
    padding-inline: 12px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .side-menu-brand {
    display: block;
    width: 100%;
    padding-top: 18px;
    font-size: 24px;
    letter-spacing: 6px;
    text-align: center;
  }
}
