body {
  background: #070707;
  color: #fff;
}

body.page-home {
  background: #000;
}

body.page-catalog,
body.page-profile,
body.page-dashboard,
body.page-login,
body.page-not-found {
  background:
    radial-gradient(circle at top, rgba(255, 122, 24, 0.18), transparent 35%),
    linear-gradient(180deg, #090909 0%, #030303 100%);
}

body.is-locked {
  overflow: hidden;
}

#site-header {
  background: rgba(12, 12, 12, 0.34);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

#site-header.is-inner-page {
  background: rgba(10, 10, 10, 0.72);
}

#site-header.scrolled {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
}

#site-header .main-nav a,
#site-header .logo-text,
#site-header .header-phone {
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lang-switcher {
  position: relative;
}

.lang-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: radial-gradient(circle at 35% 35%, rgba(74, 31, 10, 0.96), rgba(14, 7, 3, 0.94));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.lang-toggle svg {
  width: 28px;
  height: 28px;
  fill: #71c4ff;
  filter: drop-shadow(0 0 8px rgba(113, 196, 255, 0.48));
}

#site-header.scrolled .lang-toggle {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 0, 0, 0.1);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 190px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(11, 11, 11, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1200;
}

.lang-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 14px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.lang-option:hover,
.lang-option.is-active {
  background: rgba(255, 122, 24, 0.16);
}

.lang-check {
  color: #ffcb7f;
}

.mobile-lang-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mobile-lang-list a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}

.mobile-lang-list a.is-active {
  background: rgba(255, 122, 24, 0.22);
  color: #ffca7c;
}

.search-form--catalog {
  margin-top: 130px;
  margin-bottom: 24px;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 24px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 30px rgba(255, 122, 24, 0.12);
}

.catalog-filters select {
  min-width: 190px;
  background: #0e0e0e;
  border: 1px solid rgba(255, 122, 24, 0.25);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
}

.filter-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dedede;
  cursor: pointer;
}

.filter-checkbox input {
  display: none;
}

.checkbox-ui {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.checkbox-ui::after {
  content: "✓";
  color: #111;
  font-size: 12px;
  opacity: 0;
  transform: scale(0.4);
  transition: all 0.2s ease;
}

.filter-checkbox input:checked + .checkbox-ui {
  background: linear-gradient(135deg, #f2c94c, #e0b93c);
  border-color: #e0b93c;
}

.filter-checkbox input:checked + .checkbox-ui::after {
  opacity: 1;
  transform: scale(1);
}

.profiles-tabs {
  display: flex;
  gap: 10px;
  margin: 4px 0 18px;
}

.profiles-tabs .tab-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 17, 17, 0.74);
  color: #dadada;
  padding: 12px 22px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.profiles-tabs .tab-btn.active {
  color: #ffd978;
  border-color: rgba(255, 215, 100, 0.56);
  background: linear-gradient(180deg, #161616, #0d0d0d);
}

.tabs-area {
  position: relative;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.catalog-map {
  height: 560px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 40px rgba(255, 122, 24, 0.18);
}

.catalog-map-empty {
  min-height: 280px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #c9c9c9;
}

.map-popup-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 210px;
  padding: 4px 2px;
  color: #fff;
  text-decoration: none;
}

.map-popup-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1b1b1b, #090909);
  box-shadow: 0 0 0 2px rgba(255, 174, 94, 0.34);
}

.map-popup-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-popup-card__avatar span {
  color: #ffcb87;
  font-weight: 700;
  font-size: 20px;
}

.map-popup-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.map-popup-card__body strong {
  color: #111;
}

.map-popup-card__body span {
  color: #6b3f16;
  font-size: 12px;
  font-weight: 700;
}

.map-avatar-pin {
  background: transparent;
  border: none;
}

.map-avatar-pin__inner {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #171717, #090909);
  box-shadow:
    0 14px 24px rgba(0, 0, 0, 0.35),
    0 0 0 3px rgba(255, 184, 112, 0.7);
}

.map-avatar-pin__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-avatar-pin__inner span {
  color: #ffcb87;
  font-weight: 700;
  font-size: 21px;
}

.profile-distance-meta strong,
[data-distance-output] {
  color: #ff7a18;
}

.profile-info[data-collapsed="true"] .profile-info-text {
  max-height: 92px;
  overflow: hidden;
}

.profile-info-toggle {
  display: inline-flex;
  margin-top: 8px;
  color: #ffba6b;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.profile-info.no-expand .profile-info-toggle {
  display: none;
}

.auth-form-status,
.review-message {
  margin-top: 10px;
  font-size: 13px;
  color: #d2d2d2;
}

.auth-form-status.is-error,
.review-message.is-error {
  color: #ff7f7f;
}

.auth-form-status.is-success,
.review-message.is-success {
  color: #8ad79d;
}

.auth-box--user {
  width: min(760px, calc(100vw - 28px));
  max-width: 760px;
  padding: 86px 28px 24px;
  overflow: hidden;
}

.auth-close {
  top: 16px;
  right: 16px;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #ff8a20;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  z-index: 4;
}

.auth-close:hover {
  background: #ff9b3d;
}

.auth-user-box {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, #121212, #0a0a0a);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.auth-avatar-wrapper {
  width: 160px;
  height: 160px;
  border-width: 4px;
}

.auth-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  max-width: 100%;
  flex: 1 1 100%;
}

.auth-user-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.auth-user-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
}

.auth-link {
  color: #d7b251;
  text-decoration: none;
  font-weight: 600;
}

.auth-link.danger {
  color: #ff5b5b;
}

.auth-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 18px;
}

.auth-messages-link {
  order: 2;
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.auth-unread-badge:not(:empty) {
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff5a3d;
  color: #fff;
  font-size: 18px;
}

.auth-badges {
  order: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.auth-badges .badge {
  min-width: auto;
  height: auto;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
}

.auth-badges .badge.vip {
  background: linear-gradient(135deg, #edc863, #d6a53f);
  color: #241609;
}

.auth-badges .badge.online {
  background: rgba(74, 222, 128, 0.18);
  color: #78f0a0;
}

.auth-entry-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 80px;
}

.auth-entry-card {
  width: min(520px, 100%);
  padding: 34px 30px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.58);
  box-shadow: 0 0 40px rgba(255, 122, 24, 0.22);
  text-align: center;
}

.auth-entry-card h1 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  margin-bottom: 16px;
}

.auth-entry-card p {
  color: #b9b9b9;
  margin-bottom: 24px;
}

.locked-blur {
  min-height: 420px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 50px rgba(255, 122, 24, 0.08);
}

.locked-title {
  font-size: 26px;
  margin-bottom: 10px;
}

.locked-subtitle {
  color: #b8b8b8;
  margin-bottom: 18px;
}

.locked-btn {
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff7a18, #ff3d00);
  cursor: pointer;
}

.rating-input {
  display: flex;
  gap: 8px;
  font-size: 28px;
  color: #4d4d4d;
  margin-bottom: 14px;
}

.rating-input span {
  cursor: pointer;
}

.rating-input span.active {
  color: #ff7a18;
}

#scrollTopBtn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: radial-gradient(circle, #ffae00, #ff5a00, #b30000);
  color: #fff;
  box-shadow: 0 0 24px rgba(255, 120, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 999;
}

#scrollTopBtn.show {
  opacity: 1;
  pointer-events: auto;
}

#scrollTopBtn:hover {
  transform: translateY(-2px);
}

.adult-modal[hidden],
.cookie-banner[hidden] {
  display: none !important;
}

.adult-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  padding: 20px;
}

.adult-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.adult-modal-content {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(180deg, #111, #060606);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.adult-modal-content h2 {
  margin: 18px 0 12px;
  font-size: 42px;
}

.adult-modal-content p {
  color: #d1d1d1;
  line-height: 1.6;
}

.modal-buttons {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-buttons button {
  min-width: 180px;
  padding: 14px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}

#adultConfirm {
  background: linear-gradient(135deg, #ffae00, #ff5a00);
  color: #fff;
}

#adultExit {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9990;
}

.cookie-banner__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(11, 11, 11, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.24);
}

.cookie-banner__inner p {
  color: #dadada;
  line-height: 1.5;
}

.cookie-banner__inner button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #ffae00, #ff5a00);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
}

.page-head {
  padding: 140px 20px 30px;
}

.page-head__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.profile-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.profile-chip img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.section {
  padding: 30px 20px 70px;
}

.site-container {
  padding: 130px 20px 70px;
}

.shell {
  max-width: 1200px;
  margin: 0 auto;
}

.shell.narrow {
  max-width: 760px;
}

.empty-state {
  padding: 30px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #ffb66a;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.dashboard-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dashboard-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.56);
  box-shadow: 0 0 30px rgba(255, 122, 24, 0.15);
}

.dashboard-card__head,
.request-card__head,
.review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.stack-form,
.stack-form--compact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stack-form label span,
.stack-form--compact label span,
.lk-form label span {
  display: block;
  margin-bottom: 6px;
  color: #cfcfcf;
  font-size: 14px;
}

.stack-form input,
.stack-form textarea,
.stack-form select,
.stack-form--compact input,
.stack-form--compact textarea,
.stack-form--compact select,
.inline-form select,
.lk-form input,
.lk-form textarea,
.lk-form select,
.lk-form-inline input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.stack-form input::placeholder,
.stack-form textarea::placeholder,
.stack-form--compact input::placeholder,
.stack-form--compact textarea::placeholder,
.lk-form input::placeholder,
.lk-form textarea::placeholder,
.lk-form-inline input::placeholder {
  color: #9d9d9d;
}

.stack-form button,
.stack-form--compact button,
.inline-form button,
.button,
.lk-form-inline button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #ff7a18, #ff3d00);
  color: #fff;
  cursor: pointer;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.08);
}

.button--small {
  padding: 8px 14px;
  font-size: 12px;
}

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

.gallery-grid--compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.gallery-card--compact img {
  width: 100%;
  border-radius: 12px;
}

.tour-card,
.request-card,
.service-card {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.lk-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.lk-panel-head h2 {
  margin: 0;
  font-size: 24px;
}

.lk-panel-head p {
  margin: 0;
  color: #bcbcbc;
}

.specialist-profile-shell {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.specialist-avatar-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lk-avatar--large {
  width: 220px;
  height: 220px;
  margin: 0 auto;
}

.specialist-profile-form {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.specialist-profile-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.specialist-info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.specialist-location-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-map-box {
  height: 320px;
  margin: 14px 0 18px;
  border-radius: 18px;
  overflow: hidden;
}

.dashboard-inline-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.dashboard-divider {
  height: 1px;
  margin: 28px 0 22px;
  background: rgba(255, 255, 255, 0.08);
}

.lk-form-inline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.lk-services-group + .lk-services-group {
  margin-top: 22px;
}

.lk-services-group h4 {
  margin: 0 0 12px;
  color: #ffd978;
}

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

.lk-service-chip {
  position: relative;
  display: flex;
  align-items: stretch;
}

.lk-service-chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.lk-service-chip span {
  width: 100%;
  display: block;
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f0f0f0;
  transition: all 0.2s ease;
}

.lk-service-chip input:checked + span {
  background: rgba(255, 193, 94, 0.14);
  border-color: rgba(255, 215, 120, 0.56);
  color: #ffd978;
  box-shadow: 0 0 0 1px rgba(255, 215, 120, 0.16);
}

.chat-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-list__item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
}

.chat-list__item.is-active {
  box-shadow: inset 0 0 0 1px rgba(255, 122, 24, 0.45);
}

.chat-list__item img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.badge {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff5a3d;
  color: #fff;
  font-size: 12px;
}

.message-thread {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 6px;
}

.message-bubble {
  max-width: 80%;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.message-bubble.is-own {
  margin-left: auto;
  background: rgba(255, 122, 24, 0.2);
}

.muted-copy,
.inline-link {
  color: #b9b9b9;
}

#site-footer {
  padding: 78px 20px 62px;
  background: #111;
}

.footer-inner--custom {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(220px, 280px) minmax(320px, 1.25fr);
  gap: 44px;
  align-items: center;
  text-align: left;
}

.footer-brand {
  display: flex;
  justify-content: center;
}

.footer-logo--large img {
  width: min(260px, 100%);
  filter: drop-shadow(0 0 24px rgba(255, 149, 0, 0.45));
}

.footer-links-col,
.footer-social-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-title {
  margin: 0 0 4px;
  color: #f59c47;
  font-size: 32px;
  font-weight: 700;
}

.footer-link {
  color: #dfdfdf;
  text-decoration: none;
  font-size: 17px;
}

.footer-link:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.social-btn {
  min-width: 160px;
  padding: 16px 28px;
  border-radius: 999px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
}

.social-btn.telegram {
  background: linear-gradient(135deg, #58baff, #4798e8);
  box-shadow: 0 0 28px rgba(88, 186, 255, 0.35);
}

.social-btn.instagram {
  background: linear-gradient(135deg, #ff9551, #d44297);
  box-shadow: 0 0 28px rgba(212, 66, 151, 0.32);
}

.app-download {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-download__label {
  color: #d7d7d7;
  font-size: 15px;
}

.app-download__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.app-btn img {
  display: block;
  max-width: 100%;
  height: auto;
}

.footer-logo--modal img {
  width: 190px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .footer-inner--custom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-socials,
  .app-download__buttons {
    justify-content: center;
    align-items: center;
  }

  .footer-links-col,
  .footer-social-col {
    align-items: center;
  }
}

@media (max-width: 900px) {
  .dashboard-grid,
  .compact-grid,
  .page-head__inner,
  .specialist-profile-shell,
  .specialist-info-grid,
  .specialist-profile-grid,
  .specialist-location-grid,
  .lk-form-inline {
    grid-template-columns: 1fr;
    display: grid;
  }

  .catalog-filters {
    padding: 16px;
  }

  .catalog-filters select {
    min-width: 0;
    width: 100%;
  }

  .profiles-tabs {
    flex-wrap: wrap;
  }

  .auth-box--user {
    padding: 78px 18px 18px;
  }

  .auth-user-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .auth-avatar-wrapper {
    margin: 0 auto;
  }

  .auth-user-row {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .auth-actions-row,
  .auth-badges {
    justify-content: center;
  }

  .auth-close {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .lang-toggle {
    width: 48px;
    height: 48px;
  }

  .lang-toggle svg {
    width: 22px;
    height: 22px;
  }

  .catalog-map {
    height: 420px;
  }

  .lk-services-grid {
    grid-template-columns: 1fr;
  }

  .lk-avatar--large {
    width: 180px;
    height: 180px;
  }
}

@media (min-width: 1025px) {
  .header-inner {
    max-width: 1380px;
    display: grid;
    grid-template-columns: minmax(220px, max-content) minmax(0, 1fr) max-content;
    gap: 30px;
    align-items: center;
  }

  .main-nav {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }

  .mobile-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2vw, 44px);
    width: 100%;
  }

  .main-nav a {
    white-space: nowrap;
  }

  .header-actions {
    justify-self: end;
  }
}

.page-profile .profile-page {
  padding-top: 138px;
}

.page-profile .profile-top-section {
  padding-top: 18px;
}

.page-profile .profile-main-card {
  align-items: start;
  gap: clamp(24px, 4vw, 40px);
}

.page-profile .profile-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.page-profile .profile-city-rating {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.page-profile .profile-city {
  padding: 0;
  border-radius: 0;
  background: none;
  color: #d88432;
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
}

.page-profile .profile-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-profile .profile-distance-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  background: none;
  color: #d9d9d9;
}

.page-profile .profile-distance-line strong {
  color: #ff9f47;
}

.profile-presence {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.profile-presence.is-online {
  background: rgba(61, 191, 97, 0.16);
  color: #84f0a4;
  box-shadow: inset 0 0 0 1px rgba(132, 240, 164, 0.18);
}

.profile-presence.is-recent {
  background: rgba(255, 179, 71, 0.14);
  color: #ffce7d;
  box-shadow: inset 0 0 0 1px rgba(255, 206, 125, 0.18);
}

.profile-presence.is-offline {
  background: rgba(255, 255, 255, 0.08);
  color: #c7c7c7;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.profile-card-v2 .profile-presence {
  margin-top: 10px;
  padding: 8px 14px;
}

.profile-card-v2 .profile-meta-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.profile-card-v2 .profile-rating--catalog {
  margin-top: 10px;
}

.profile-card-v2 .profile-city {
  padding: 0;
  border-radius: 0;
  background: none;
  font-size: 18px;
  color: #d88432;
}

.profile-card-v2 .profile-last-active {
  display: block;
  margin-top: 10px;
}

.profile-card-v2 .profile-distance-meta {
  margin-top: 6px;
}

.profile-webcam-preview {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 112, 67, 0.14), rgba(18, 18, 18, 0.68));
  border: 1px solid rgba(255, 153, 85, 0.22);
}

.profile-webcam-preview__label {
  color: #ffcd85;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.profile-webcam-preview__title {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.profile-webcam-preview__price {
  margin-top: 6px;
  color: #ffd59d;
}

.btn-webcam {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #ff9341, #ff5d2c);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(255, 115, 62, 0.28);
}

.btn-webcam:hover {
  filter: brightness(1.05);
}

.profile-contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 20px;
}

.profile-contact-buttons .btn-whatsapp,
.profile-contact-buttons .btn-telegram,
.profile-contact-buttons .btn-webcam {
  flex: 1 1 170px;
  min-width: 150px;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 999px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.availability-popup {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
}

.availability-popup.active {
  display: flex;
}

.apx-box {
  position: relative;
  width: min(960px, calc(100vw - 40px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 30px 30px 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 131, 57, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(7, 7, 7, 0.98));
  border: 1px solid rgba(255, 154, 87, 0.18);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.apx-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(26, 26, 26, 0.92);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.apx-tabs {
  display: flex;
  gap: 12px;
  padding-right: 72px;
  margin-bottom: 24px;
}

.apx-tab {
  flex: 1 1 0;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.apx-tab.active {
  background: linear-gradient(135deg, #ff8a20, #ff5a13);
  box-shadow: 0 0 28px rgba(255, 120, 0, 0.28);
}

.apx-panel {
  display: none;
}

.apx-panel.active {
  display: block;
}

.availability-booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.availability-booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.availability-booking-form input,
.availability-booking-form select,
.availability-booking-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.availability-booking-form select:disabled {
  opacity: 0.6;
}

.availability-slots-hint {
  color: #d7d7d7;
  font-size: 13px;
}

.availability-slots-hint.is-empty {
  color: #ffb3a2;
}

.availability-booking-submit {
  align-self: flex-start;
}

.catalog-hero {
  margin-top: 120px;
  margin-bottom: 28px;
  padding: 28px 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 137, 76, 0.25), transparent 30%),
    linear-gradient(135deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 0.9));
  border: 1px solid rgba(255, 160, 96, 0.16);
  box-shadow: 0 0 40px rgba(255, 122, 24, 0.16);
}

.catalog-hero__eyebrow {
  color: #ffca82;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-hero h1 {
  margin: 10px 0 10px;
  font-size: clamp(34px, 4vw, 54px);
}

.catalog-hero p {
  max-width: 760px;
  margin: 0;
  color: #d2d2d2;
  line-height: 1.6;
}

.page-webcam .search-form--catalog {
  margin-top: 28px;
}

#site-footer {
  margin-top: 34px;
  padding-top: 92px;
}

.footer-inner--custom {
  align-items: start;
}

.app-download__buttons {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.app-btn {
  display: inline-flex;
  align-items: center;
}

.app-btn img {
  max-height: 76px;
}

.city-card.is-active {
  transform: translateY(-4px);
  box-shadow:
    0 24px 50px rgba(255, 122, 24, 0.24),
    0 0 0 2px rgba(255, 195, 108, 0.72);
}

.city-card.is-active .city-name {
  color: #ffd48f;
}

.lk-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  overflow: visible !important;
  padding-bottom: 0;
}

.lk-tabs::-webkit-scrollbar {
  display: none;
}

.lk-tabs > * {
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap;
}

.lk-tabs button,
.lk-tabs .lk-tab {
  padding: 10px 16px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.lk {
  max-width: 1360px;
}

.lk-panel-inner {
  padding: 34px;
}

.lk-request-booking {
  color: #ffd08a;
  font-weight: 600;
}

.lk-switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lk-switch input {
  width: auto;
  margin: 0;
}

.webcam-grid {
  margin-bottom: 18px;
}

@media (max-width: 1100px) {
  .page-profile .profile-page {
    padding-top: 126px;
  }

  .catalog-hero {
    margin-top: 112px;
  }

  .availability-booking-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .page-profile .profile-page {
    padding-top: 118px;
  }

  .lk-tabs {
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .page-profile .profile-page {
    padding-top: 108px;
  }

  .catalog-hero {
    margin-top: 102px;
    padding: 22px 20px;
  }

  .profile-contact-buttons .btn-whatsapp,
  .profile-contact-buttons .btn-telegram,
  .profile-contact-buttons .btn-webcam {
    flex-basis: calc(50% - 7px);
  }

  .apx-box {
    width: min(100vw - 22px, 100%);
    padding: 22px 18px 20px;
  }

  .apx-tabs {
    padding-right: 58px;
  }

  .app-download__buttons {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .lk-tabs > * {
    flex: 1 1 calc(50% - 8px);
  }

  .page-profile .profile-city-rating {
    align-items: flex-start;
  }

  .profile-contact-buttons .btn-whatsapp,
  .profile-contact-buttons .btn-telegram,
  .profile-contact-buttons .btn-webcam {
    flex-basis: 100%;
  }

  .apx-tabs {
    flex-wrap: wrap;
    padding-right: 0;
  }
}

.map-person-pin-wrap {
  background: transparent;
  border: 0;
}

.map-person-pin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 176px;
  max-width: 244px;
  padding: 8px 12px 8px 8px;
  border-radius: 24px;
  background: rgba(10, 10, 10, 0.94);
  border: 1px solid rgba(255, 190, 120, 0.22);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32);
}

.map-person-pin__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  flex: 0 0 54px;
  background: linear-gradient(135deg, #1b1b1b, #090909);
  box-shadow: 0 0 0 2px rgba(255, 184, 112, 0.55);
}

.map-person-pin__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-person-pin__avatar span {
  color: #ffcf8d;
  font-size: 20px;
  font-weight: 700;
}

.map-person-pin__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.map-person-pin__content strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.map-person-pin__content span {
  color: #ffbd78;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.map-person-pin-wrap--single .map-person-pin {
  max-width: 250px;
}

.profile-name-row,
.profile-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.profile-verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 214, 120, 0.12);
  border: 1px solid rgba(255, 214, 120, 0.3);
  color: #ffd88d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.profile-verified-badge--card {
  font-size: 10px;
  padding: 4px 9px;
}

.page-profile .profile-name {
  margin: 0;
}

.page-profile .profile-contact-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  width: min(760px, 100%);
  margin: 20px 0 18px;
}

.page-profile .profile-contact-buttons .btn-whatsapp,
.page-profile .profile-contact-buttons .btn-telegram,
.page-profile .profile-contact-buttons .btn-webcam {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 62px !important;
  height: auto !important;
  padding: 16px 24px !important;
  border-radius: 26px !important;
  font-size: 18px !important;
  line-height: 1.15;
  white-space: normal !important;
  box-sizing: border-box;
  text-decoration: none !important;
}

.page-profile .btn-whatsapp {
  background: linear-gradient(135deg, #27d267, #1db954) !important;
  color: #fff !important;
}

.page-profile .btn-telegram {
  background: linear-gradient(135deg, #4dbbff, #2d91db) !important;
  color: #fff !important;
}

.page-profile .btn-webcam {
  background: linear-gradient(135deg, #ff9341, #ff5d2c) !important;
  color: #fff !important;
}

.page-profile .btn-disponibilita {
  margin-top: 2px;
}

.page-profile .two-cols {
  align-items: start;
}

.page-profile .col-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-profile .number-phone,
.page-profile .year,
.page-profile .nazionalnost-profile,
.page-profile .y-video {
  margin: 0;
}

.page-profile .write-specialist {
  position: static !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 22px;
  border: 1px solid rgba(110, 146, 255, 0.22);
  background: linear-gradient(180deg, rgba(12, 20, 44, 0.95), rgba(8, 13, 32, 0.95));
  color: #f3f7ff;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(8, 14, 34, 0.35);
}

.page-profile .profile-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 12px;
}

.profile-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.profile-video-card {
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-video-card video {
  width: 100%;
  display: block;
  border-radius: 14px;
  background: #000;
}

.profile-card-v2 .profile-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profile-card-v2 .profile-text-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.profile-card-v2 .profile-last-active {
  margin-top: 0;
  font-size: 13px;
}

.profile-card-v2 .profile-right-actions {
  display: grid;
  gap: 12px;
}

.profile-card-v2 .profile-right-actions .btn-whatsapp,
.profile-card-v2 .profile-right-actions .btn-telegram,
.profile-card-v2 .profile-right-actions .btn-webcam {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 18px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.profile-card-v2 .profile-right-actions .btn-whatsapp {
  background: linear-gradient(135deg, #27d267, #1fb45a);
}

.profile-card-v2 .profile-right-actions .btn-telegram {
  background: linear-gradient(135deg, #4dbbff, #3094dd);
}

.profile-card-v2 .profile-right-actions .btn-webcam {
  background: linear-gradient(135deg, #ff9341, #ff5d2c);
  min-height: 50px;
  font-size: 15px;
}

.profile-card-v2 .profile-right-actions .btn-whatsapp:hover,
.profile-card-v2 .profile-right-actions .btn-telegram:hover,
.profile-card-v2 .profile-right-actions .btn-webcam:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.dashboard-status-card {
  margin-bottom: 20px;
  padding: 18px 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 203, 128, 0.18);
  background: linear-gradient(180deg, rgba(30, 20, 5, 0.85), rgba(12, 11, 9, 0.92));
}

.dashboard-status-card strong {
  display: block;
  margin-bottom: 6px;
  color: #ffd08d;
  font-size: 18px;
}

.dashboard-status-card p {
  margin: 0;
  color: #e0ddd8;
}

.media-manager-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.media-manager-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lk-video-list {
  display: grid;
  gap: 14px;
}

.lk-services-grid {
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 8px;
}

.lk-services-group {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lk-panel#services .lk-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lk-panel#services .lk-services-group + .lk-services-group {
  margin-top: 0;
}

.lk-service-chip span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 12px;
  border-radius: 12px;
  line-height: 1.2;
  font-size: 14px;
}

.chat-shell {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: 20px;
}

.chat-sidebar,
.chat-main {
  min-height: 620px;
}

.chat-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.chat-main__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.chat-partner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.chat-partner img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.chat-partner strong {
  display: block;
  color: #fff;
}

.chat-partner span {
  color: #bcbcbc;
  font-size: 13px;
}

.chat-list {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding-right: 4px;
}

.chat-list__item {
  border: 1px solid transparent;
}

.chat-list__item.is-active {
  border-color: rgba(255, 156, 89, 0.44);
  background: rgba(255, 122, 24, 0.08);
}

.chat-list__body {
  min-width: 0;
}

.chat-list__body p {
  margin: 4px 0 0;
  color: #bbbbbb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.message-thread {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  padding-right: 4px;
}

.message-bubble {
  max-width: min(78%, 520px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.message-bubble p {
  margin: 0;
  line-height: 1.5;
}

.message-bubble small {
  color: #b9b9b9;
}

.chat-attachment {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.chat-attachment img,
.chat-attachment video {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.chat-attachment audio {
  width: 100%;
}

.chat-attachment a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  color: #ffd08a;
  text-decoration: none;
  font-weight: 700;
}

.chat-composer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-composer .auth-form-status {
  grid-column: 1 / -1;
  margin: 0;
}

.chat-attach-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  overflow: hidden;
}

.chat-attach-btn__icon {
  font-size: 24px;
}

.chat-attachment-name {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  display: none;
}

.chat-composer__input input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 6, 6, 0.6);
  color: #fff;
}

.chat-send-btn {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 0;
  background: linear-gradient(135deg, #ff9341, #ff5d2c);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.chat-empty {
  min-height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  color: #cfcfcf;
}

.chat-empty strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  color: #fff;
}

.manager-specialists-grid,
.admin-specialists-grid,
.manager-list-grid {
  display: grid;
  gap: 18px;
}

.manager-specialist-card,
.manager-list-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.manager-specialist-card__head,
.manager-actions-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.manager-specialist-card__title strong,
.manager-list-card strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.manager-specialist-card__title span,
.manager-list-card span,
.admin-specialist-meta p {
  color: #c8c8c8;
}

.manager-specialist-card__badges {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.manager-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.manager-badge.is-approved {
  background: rgba(61, 191, 97, 0.16);
  color: #90f0ae;
}

.manager-badge.is-pending {
  background: rgba(255, 177, 72, 0.14);
  color: #ffd188;
}

.manager-profile-link {
  color: #ffd188;
  text-decoration: none;
  font-weight: 700;
}

.manager-specialist-form {
  margin-top: 18px;
}

.manager-specialist-form__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.manager-feature-grid,
.manager-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.manager-feature-toggle,
.manager-select-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.manager-feature-toggle input[type="checkbox"],
.manager-select-chip input[type="checkbox"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.manager-feature-toggle span,
.manager-select-chip span {
  margin: 0 !important;
  color: inherit !important;
  font-weight: 600;
  text-align: center;
}

.manager-feature-toggle input[type="checkbox"]:checked + span,
.manager-select-chip input[type="checkbox"]:checked + span {
  color: #ffd188 !important;
}

.manager-feature-toggle:has(input[type="checkbox"]:checked),
.manager-select-chip:has(input[type="checkbox"]:checked) {
  border-color: rgba(255, 201, 122, 0.45);
  background: rgba(255, 181, 94, 0.1);
}

.admin-specialist-meta {
  display: grid;
  gap: 6px;
  margin: 18px 0;
}

@media (max-width: 1200px) {
  .chat-shell,
  .media-manager-grid {
    grid-template-columns: 1fr;
  }

  .manager-specialist-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lk-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .page-profile .profile-contact-buttons {
    grid-template-columns: 1fr;
  }

  .manager-specialist-form__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .chat-composer {
    grid-template-columns: 1fr auto;
  }

  .chat-attach-btn {
    grid-column: 1 / 2;
    justify-self: start;
  }

  .chat-composer__input {
    grid-column: 1 / -1;
  }

  .chat-send-btn {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .lk-services-grid {
    grid-template-columns: 1fr;
  }

  .map-person-pin {
    min-width: 150px;
    max-width: 196px;
  }
}

.map-popup-card__body strong {
  color: #fff;
}

.map-popup-card__body span {
  color: #ffbe7a;
}

.map-popup-card__avatar--image,
.map-person-pin__avatar--image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.map-popup-card__avatar--image img,
.map-person-pin__avatar--image img {
  display: none;
}

.footer-title {
  font-size: 24px;
}

.footer-link {
  font-size: 15px;
}

.page-profile .profile-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(460px, 100%);
  margin: 20px 0 18px;
}

.page-profile .profile-contact-buttons__row {
  display: flex;
  gap: 12px;
  width: 100%;
}

.page-profile .profile-contact-buttons__row:empty {
  display: none;
}

.page-profile .profile-contact-buttons__row > * {
  flex: 1 1 0;
}

.page-profile .profile-contact-buttons__webcam {
  width: 100%;
}

.page-profile .profile-contact-buttons .btn-whatsapp,
.page-profile .profile-contact-buttons .btn-telegram {
  min-height: 50px !important;
  padding: 12px 18px !important;
  border-radius: 18px !important;
  font-size: 15px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.page-profile .profile-contact-buttons .btn-webcam {
  min-height: 58px !important;
  padding: 14px 22px !important;
  border-radius: 20px !important;
  font-size: 17px !important;
}

.page-profile .profile-gallery {
  grid-template-columns: repeat(auto-fill, minmax(112px, 112px));
  justify-content: flex-start;
  gap: 10px;
}

.page-profile .profile-gallery img {
  width: 112px;
  height: 140px;
  object-fit: cover;
}

.page-profile .none-informazia {
  margin: 0 0 10px;
  line-height: 1.22;
}

.page-profile #tab-services .col-left,
.page-profile #tab-services .col-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-profile #tab-services .none-informazia {
  margin: 0;
  line-height: 1.18;
}

.page-profile #tab-services .none-informazia-h {
  margin: 0 0 8px;
}

.availability-auth-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 18px;
}

.gallery-lightbox,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9997;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(8px);
}

.gallery-lightbox.active,
.lightbox.active {
  display: flex;
}

.gallery-lightbox .lightbox-inner,
.lightbox .lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1040px, 100%);
  min-height: min(72vh, 720px);
  padding: 42px 70px;
}

.gallery-lightbox .lightbox-image,
.lightbox [data-lightbox-image] {
  max-width: min(100%, 920px);
  max-height: min(76vh, 820px);
  border-radius: 24px;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.lightbox-close,
.lightbox-arrow {
  border: 0;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(16, 16, 16, 0.9);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(16, 16, 16, 0.9);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.lightbox-arrow.prev {
  left: 0;
}

.lightbox-arrow.next {
  right: 0;
}

.lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  min-width: 92px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.9);
  color: #fff;
  text-align: center;
  font-size: 13px;
}

.chat-send-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.chat-send-btn svg {
  width: 24px;
  height: 24px;
}

.lk-btn--icon {
  width: 56px;
  min-width: 56px;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lk-btn--icon span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 32px;
  line-height: 1;
  transform: translateY(-1px);
}

.tour-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
}

.tour-item strong,
.tour-item span {
  margin: 0;
}

.tour-item__remove {
  min-width: 122px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.dashboard-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.dashboard-summary-card {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-summary-card span {
  display: block;
  color: #bdbdbd;
  font-size: 13px;
  margin-bottom: 8px;
}

.dashboard-summary-card strong {
  display: block;
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.admin-users-grid {
  display: grid;
  gap: 18px;
}

.admin-user-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-user-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.admin-user-card__head strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.admin-user-card__head span {
  color: #c8c8c8;
}

.admin-user-card__badges {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-user-form,
.admin-create-user-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.admin-user-form__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-user-form__toggles {
  margin: 0;
}

.manager-specialist-form__grid--wide {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.webcam-studio {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 22px;
}

.webcam-studio__stage,
.webcam-studio__card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.webcam-studio__media {
  position: relative;
  min-height: 420px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 126, 51, 0.18), transparent 38%),
    linear-gradient(180deg, #0e0e0e 0%, #030303 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.webcam-studio__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.webcam-studio__media.is-ready video {
  display: block;
}

.webcam-studio__placeholder {
  max-width: 320px;
  text-align: center;
  color: #d7d7d7;
  line-height: 1.5;
  padding: 0 20px;
}

.webcam-studio__controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}

.webcam-studio__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.webcam-studio__meta,
.webcam-room-inline__label {
  color: #c8c8c8;
  font-size: 14px;
}

.webcam-studio__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.webcam-studio__room-link,
.webcam-room-inline a {
  color: #ffd08a;
  text-decoration: none;
  word-break: break-all;
}

.webcam-studio__sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.webcam-studio__queue {
  display: grid;
  gap: 12px;
}

.webcam-viewer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.webcam-viewer-item strong {
  color: #fff;
}

.webcam-viewer-item span {
  color: #ffd08a;
  text-transform: capitalize;
}

.webcam-room-inline {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home-experience {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 20px 84px;
}

.home-experience__intro {
  max-width: 720px;
  margin-bottom: 26px;
}

.home-experience__intro h2 {
  margin: 10px 0 12px;
  font-size: clamp(30px, 4vw, 52px);
}

.home-experience__intro p {
  margin: 0;
  color: #d0d0d0;
  line-height: 1.65;
}

.home-experience__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-experience__card {
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 133, 61, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 220px;
}

.home-experience__card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  color: #fff;
}

.home-experience__card p {
  margin: 0;
  color: #d2d2d2;
  line-height: 1.55;
}

.webcam-room-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 138px 20px 80px;
}

.webcam-room-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
}

.webcam-room-stage,
.webcam-room-sidebar {
  padding: 24px;
  border-radius: 26px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.webcam-room-video {
  position: relative;
  min-height: 520px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 126, 51, 0.18), transparent 38%),
    linear-gradient(180deg, #0e0e0e 0%, #030303 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.webcam-room-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.webcam-room-video.is-playing video {
  display: block;
}

.webcam-room-placeholder {
  max-width: 340px;
  text-align: center;
  color: #d5d5d5;
  line-height: 1.55;
  padding: 0 18px;
}

.webcam-room-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.webcam-room-profile {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
}

.webcam-room-profile img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
}

.webcam-room-profile strong {
  display: block;
  color: #fff;
  font-size: 28px;
}

.webcam-room-profile span {
  display: block;
  color: #ffcb84;
  margin-top: 6px;
}

.webcam-room-copy strong {
  display: block;
  color: #fff;
  font-size: 22px;
  margin-bottom: 8px;
}

.webcam-room-copy p {
  margin: 0 0 10px;
  color: #d5d5d5;
  line-height: 1.55;
}

.webcam-room-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.webcam-room-actions .lk-btn {
  width: 100%;
}

.page-profile .profile-contact-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(430px, 100%);
  margin: 20px 0 18px;
}

.page-profile .profile-contact-buttons {
  width: 100%;
  margin: 0;
  gap: 10px;
}

.page-profile .profile-contact-buttons__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.page-profile .profile-contact-buttons__row > * {
  min-width: 0;
}

.page-profile .profile-contact-buttons__row > *:only-child {
  grid-column: 1 / -1;
}

.page-profile .profile-contact-buttons__webcam,
.page-profile .profile-contact-buttons__availability {
  width: 100%;
}

.page-profile .profile-contact-buttons .btn-whatsapp,
.page-profile .profile-contact-buttons .btn-telegram {
  min-height: 46px !important;
  padding: 12px 16px !important;
  border-radius: 16px !important;
  font-size: 14px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.page-profile .profile-contact-buttons .btn-webcam,
.page-profile .btn-disponibilita.profile-contact-buttons__availability {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 52px !important;
  padding: 14px 20px !important;
  border-radius: 18px !important;
  font-size: 16px !important;
  line-height: 1.05 !important;
  text-align: center;
  box-sizing: border-box;
}

.page-profile .profile-contact-buttons .btn-whatsapp,
.page-profile .profile-contact-buttons .btn-telegram,
.page-profile .profile-contact-buttons .btn-webcam,
.page-profile .btn-disponibilita.profile-contact-buttons__availability {
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.page-profile .profile-contact-buttons .btn-whatsapp:hover,
.page-profile .profile-contact-buttons .btn-telegram:hover,
.page-profile .profile-contact-buttons .btn-webcam:hover,
.page-profile .btn-disponibilita.profile-contact-buttons__availability:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.page-profile .btn-disponibilita.profile-contact-buttons__availability {
  margin-top: 0;
}

.manager-specialists-grid {
  display: flex !important;
  flex-direction: column;
  max-width: 1240px;
  margin: 0 auto;
}

.manager-specialists-grid > * {
  width: 100%;
}

.manager-specialist-card {
  padding: 0;
  overflow: hidden;
}

.manager-specialist-card__toggle {
  position: relative;
  width: 100%;
  display: block;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.manager-specialist-card__head {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.manager-specialist-card__title {
  display: grid;
  gap: 6px;
  justify-items: center;
}

.manager-specialist-card__badges {
  justify-content: center;
}

.manager-specialist-card__chevron {
  position: absolute;
  right: 20px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffd188;
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.2s ease, background 0.2s ease;
}

.manager-specialist-card.is-open .manager-specialist-card__chevron {
  transform: translateY(-50%) rotate(45deg);
  background: rgba(255, 193, 112, 0.12);
}

.manager-specialist-card__body {
  padding: 0 24px 24px;
}

.manager-specialist-card__body .manager-actions-row {
  justify-content: flex-end;
  margin-bottom: 8px;
}

.manager-profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 193, 112, 0.1);
  border: 1px solid rgba(255, 193, 112, 0.22);
}

.manager-feature-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.manager-selection-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.manager-feature-toggle {
  min-height: 84px;
  padding: 14px 16px;
}

.manager-select-chip {
  min-height: 58px;
}

.manager-bulk-selection {
  margin: 20px 0 18px;
}

.manager-bulk-selection__title {
  margin: 0 0 12px;
  color: #ffd188;
  font-weight: 700;
}

.page-home .cities-carousel--compact {
  width: fit-content;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.page-home .cities-carousel--compact .cities-viewport {
  flex: 0 0 auto;
  width: auto !important;
  max-width: none;
  overflow: hidden;
}

.page-home .cities-carousel--compact .cities-track {
  display: flex;
  justify-content: center;
  gap: 28px;
  width: fit-content;
  margin: 0 auto;
  transform: none !important;
}

.page-home .cities-carousel--compact .city-card {
  flex: 0 0 340px;
}

.page-home .cities-carousel--compact .cities-nav {
  position: static !important;
  transform: none !important;
  flex: 0 0 auto;
}

.profile-card-v2 .profile-right-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

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

.profile-card-v2 .profile-right-actions__row:empty {
  display: none;
}

.static-page-shell {
  padding: 148px 20px 64px;
}

.static-page-card {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 34px 34px 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 132, 68, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(7, 7, 7, 0.96));
  border: 1px solid rgba(255, 154, 87, 0.16);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.static-page-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #ffcd8a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.static-page-card h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
}

.static-page-lead {
  margin: 0 0 20px;
  color: #ffd3a2;
  font-size: 18px;
  line-height: 1.6;
}

.static-page-content {
  display: grid;
  gap: 16px;
}

.static-page-content p {
  margin: 0;
  color: #dfdfdf;
  line-height: 1.7;
}

@media (max-width: 1200px) {
  .dashboard-summary-grid,
  .home-experience__grid,
  .webcam-studio,
  .webcam-room-shell {
    grid-template-columns: 1fr;
  }

  .manager-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .manager-specialist-form__grid--wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .admin-user-form__grid,
  .manager-specialist-form__grid--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manager-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .footer-title {
    font-size: 20px;
  }

  .page-profile .profile-contact-stack {
    width: 100%;
  }

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

  .gallery-lightbox,
  .lightbox {
    padding: 16px;
  }

  .gallery-lightbox .lightbox-inner,
  .lightbox .lightbox-inner {
    padding: 48px 0 54px;
  }

  .lightbox-arrow {
    width: 48px;
    height: 48px;
  }

  .dashboard-summary-grid,
  .admin-user-form__grid,
  .manager-specialist-form__grid--wide {
    grid-template-columns: 1fr;
  }

  .manager-feature-grid,
  .manager-selection-grid,
  .manager-specialists-grid {
    grid-template-columns: 1fr;
  }

  .manager-specialist-card__toggle {
    padding-right: 62px;
  }

  .page-home .cities-carousel--compact {
    gap: 14px;
  }

  .static-page-shell {
    padding-top: 132px;
  }

  .static-page-card {
    padding: 28px 20px 24px;
  }

  .webcam-studio__media,
  .webcam-room-video {
    min-height: 340px;
  }
}

.leaflet-container {
  background: linear-gradient(180deg, #131313, #090909);
}

.leaflet-container img,
.leaflet-container .leaflet-marker-icon,
.leaflet-container .leaflet-marker-shadow,
.leaflet-container .leaflet-tile {
  max-width: none !important;
}

.leaflet-control-zoom a {
  background: rgba(255, 255, 255, 0.92);
  color: #2b2b2b;
}

.profile-card-v2[data-card-url],
.profile-card--latest[data-card-url] {
  cursor: pointer;
}

.profile-gallery img,
[data-gallery-image] {
  cursor: zoom-in;
}

.profile-card-description {
  margin-top: 10px;
}

.profile-card-description__text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #e6e0d8;
}

.profile-photo,
.profile-image {
  position: relative;
  overflow: hidden;
}

.profile-media-badges {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 2;
}

.profile-media-badge {
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(7, 7, 7, 0.84);
  border: 1px solid rgba(255, 193, 120, 0.36);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.profile-media-badge svg {
  width: 14px;
  height: 14px;
  fill: #ffd28f;
}

.profile-media-badge strong {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.profile-card-v2 .profile-gallery {
  position: relative;
  z-index: 2;
}

.profile-natural-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.profile-gallery--natural img {
  box-shadow: 0 0 0 1px rgba(255, 204, 132, 0.18);
}

.availability-date-list,
.availability-time-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.availability-pill {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

button.availability-pill {
  cursor: pointer;
}

.availability-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 183, 101, 0.34);
}

.availability-pill.is-active {
  background: linear-gradient(135deg, #ff9a43, #ff6b2c);
  border-color: rgba(255, 191, 126, 0.55);
  box-shadow: 0 12px 28px rgba(255, 107, 44, 0.28);
}

.availability-pill--empty {
  width: 100%;
  justify-content: flex-start;
  color: #cfcbc6;
  background: rgba(255, 255, 255, 0.03);
}

.availability-booking-grid {
  grid-template-columns: 1fr;
}

.availability-booking-grid label {
  display: flex;
  flex-direction: column;
}

.availability-slots-hint {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stories-strip {
  max-width: 1240px;
  margin: 34px auto 22px;
  padding: 0 20px;
}

.stories-strip__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.stories-strip__eyebrow {
  display: inline-block;
  color: #ffbe73;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stories-strip__title {
  margin: 6px 0 0;
  font-size: clamp(24px, 3vw, 36px);
}

.stories-strip__row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.stories-strip__row::-webkit-scrollbar {
  height: 6px;
}

.story-bubble {
  min-width: 86px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.story-bubble__ring {
  width: 76px;
  height: 76px;
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb96f, #ff6d2a);
  box-shadow: 0 0 28px rgba(255, 114, 53, 0.22);
}

.story-bubble__ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid #0b0b0b;
}

.story-bubble__name {
  max-width: 82px;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.story-modal {
  position: fixed;
  inset: 0;
  z-index: 9900;
  display: none;
  place-items: center;
  padding: 24px;
}

.story-modal.active {
  display: grid;
}

.story-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
}

.story-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  padding: 18px 18px 16px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.98), rgba(7, 7, 7, 0.98));
  border: 1px solid rgba(255, 184, 112, 0.18);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}

.story-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.story-modal__header {
  padding: 8px 52px 16px 4px;
}

.story-modal__profile {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.story-modal__profile img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(255, 184, 112, 0.38);
}

.story-modal__profile span {
  font-weight: 700;
}

.story-modal__media {
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  background: #050505;
  display: grid;
  place-items: center;
}

.story-modal__media img,
.story-modal__media video {
  width: 100%;
  height: 100%;
  max-height: 72vh;
  object-fit: cover;
  display: block;
}

.story-modal__footer {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  gap: 12px;
  align-items: center;
}

.story-modal__nav {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.story-modal__counter {
  text-align: center;
  color: #efdfd0;
  font-weight: 600;
}

.last-profiles .profile-card--latest {
  width: min(100%, 280px);
  max-width: none;
  padding: 16px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.96), rgba(7, 7, 7, 0.96));
  border: 1px solid rgba(255, 190, 120, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.last-profiles .profile-card--latest:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(255, 122, 24, 0.18);
}

.last-profiles .profile-card--latest .profile-image {
  height: 430px;
  border-radius: 24px;
}

.last-profiles .profile-card--latest .profile-card__body {
  padding-top: 14px;
}

.profile-image__socials {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.profile-mini-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 7, 7, 0.84);
  border: 1px solid rgba(255, 193, 120, 0.3);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(8px);
}

.profile-mini-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.profile-mini-social--whatsapp {
  color: #7be596;
}

.profile-mini-social--telegram {
  color: #74c2ff;
}

.last-profiles .profile-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.last-profiles .profile-card__category {
  color: #e4dbcf;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-map-section {
  max-width: 1240px;
  margin: 30px auto 60px;
  padding: 0 20px;
  position: relative;
}

.home-map-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.section-title--left {
  text-align: left;
  margin: 6px 0 0;
}

.home-map-section__expand {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 193, 120, 0.28);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
}

.home-specialists-map {
  height: 560px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 190, 120, 0.14);
  box-shadow: 0 0 38px rgba(255, 122, 24, 0.14);
}

.home-map-categories {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-map-category {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
}

.home-map-category.is-active {
  background: linear-gradient(135deg, #ff9341, #ff5d2c);
  border-color: rgba(255, 191, 126, 0.45);
}

[data-home-map-shell].is-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 9800;
  margin: 0;
  max-width: none;
  padding: 26px 24px 24px;
  background: rgba(6, 6, 6, 0.96);
}

[data-home-map-shell].is-fullscreen .home-specialists-map {
  height: calc(100vh - 176px);
}

.map-person-pin-wrap--client .map-person-pin {
  border-color: rgba(113, 196, 255, 0.34);
}

.map-person-pin-wrap--client .map-person-pin__avatar {
  box-shadow: 0 0 0 2px rgba(113, 196, 255, 0.56);
}

.media-manager-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.lk-gallery--natural .lk-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 210, 143, 0.26);
  pointer-events: none;
}

.lk-photo {
  position: relative;
}

.lk-photo-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(8, 8, 8, 0.82);
  border: 1px solid rgba(255, 197, 122, 0.24);
  color: #ffd89d;
  font-size: 11px;
  font-weight: 700;
}

.media-manager-card--history {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stories-manager-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.story-manager-card {
  position: relative;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.story-manager-card__media {
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

.story-manager-card__media img,
.story-manager-card__media video {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.story-manager-card__meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.story-manager-card__type {
  color: #ffd89d;
  font-weight: 700;
}

.story-manager-card__date {
  color: #cfc7bf;
  font-size: 12px;
}

.lk-remove--story {
  position: absolute;
  top: 18px;
  right: 18px;
}

@media (max-width: 900px) {
  .last-profiles .profiles-left {
    flex-wrap: wrap;
  }

  .home-map-section__head {
    flex-direction: column;
    align-items: flex-start;
  }

  [data-home-map-shell].is-fullscreen {
    padding: 20px 16px 16px;
  }
}

@media (max-width: 768px) {
  .stories-strip,
  .home-map-section {
    padding: 0 16px;
  }

  .story-modal {
    padding: 14px;
  }

  .story-modal__media {
    min-height: 400px;
  }

  .last-profiles .profile-card--latest {
    width: 100%;
  }

  .last-profiles .profile-card--latest .profile-image {
    height: 360px;
  }

  .home-specialists-map {
    height: 420px;
  }

  .availability-pill {
    min-height: 44px;
    padding: 0 14px;
    font-size: 13px;
  }
}

.catalog-filters {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.catalog-filters__selects {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.catalog-filters__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  width: 100%;
}

.catalog-filters__checks .filter-checkbox {
  min-height: 22px;
}

.specialists-list .specialists-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.specialists-list .profile-card-v2 {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr) minmax(240px, 270px);
  gap: 24px;
  align-items: start;
  padding: 18px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 132, 68, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.98), rgba(6, 6, 6, 0.98));
  border: 1px solid rgba(255, 160, 96, 0.16);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.specialists-list .profile-card-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 58px rgba(255, 122, 24, 0.12);
}

.specialists-list .profile-photo-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.specialists-list .profile-photo {
  width: 100%;
  height: 332px;
  border-radius: 24px;
  overflow: hidden;
}

.specialists-list .profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.specialists-list .profile-date {
  margin: 0;
  text-align: center;
  color: #b4b4b4;
  font-size: 14px;
}

.specialists-list .profile-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.specialists-list .profile-card-v2 .profile-title-group {
  gap: 10px;
}

.specialists-list .profile-card-v2 .profile-text-main {
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
}

.specialists-list .profile-card-v2 .profile-text-sub {
  margin-top: 4px;
  color: #ded8d1;
  font-size: 16px;
}

.specialists-list .profile-card-v2 .profile-presence {
  margin-top: 14px;
}

.specialists-list .profile-card-v2 .profile-rating {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 22px;
}

.specialists-list .profile-card-v2 .profile-rating .star.full {
  color: #ffab49;
}

.specialists-list .profile-card-v2 .profile-rating .star.empty {
  color: rgba(255, 255, 255, 0.18);
}

.specialists-list .profile-card-v2 .rating-count {
  margin-left: 6px;
  color: #e0dfdd;
  font-size: 14px;
}

.specialists-list .profile-card-v2 .profile-city {
  font-size: 18px;
  font-weight: 700;
  color: #e19a4d;
}

.specialists-list .profile-card-v2 .profile-distance-meta {
  margin-top: 6px;
  color: #dedede;
}

.specialists-list .profile-card-v2 .profile-distance-meta [data-distance-output] {
  color: #ff9f47;
}

.specialists-list .profile-card-description {
  margin-top: 14px;
}

.specialists-list .none-gallery-h {
  margin: 16px 0 8px;
  color: #f2ebe2;
  font-weight: 600;
}

.specialists-list .profile-card-v2 .profile-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 72px));
  justify-content: flex-start;
  gap: 8px;
  margin-top: 0;
}

.specialists-list .profile-card-v2 .profile-gallery img {
  width: 72px;
  height: 96px;
  border-radius: 14px;
  object-fit: cover;
}

.specialists-list .profile-card-v2 .profile-gallery .profile-gallery__item {
  width: 72px;
  height: 96px;
  border-radius: 14px;
  overflow: hidden;
}

.specialists-list .profile-card-v2 .profile-gallery .profile-gallery__item img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

.specialists-list .profile-info-right {
  min-height: 100%;
  padding: 16px 18px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.specialists-list .profile-info-right .none-informazia-h {
  margin: 0 0 12px;
  color: #f5f1eb;
}

.specialists-list .profile-info-right .none-informazia {
  margin: 0 0 6px;
  color: #ece8e1;
  line-height: 1.28;
}

.specialists-list .profile-right-actions {
  margin-top: 16px;
}

.page-profile .profile-top-section,
.page-profile .tabs-wrapper {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0 20px;
}

.page-profile .profile-main-card {
  display: grid;
  grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
  gap: 28px;
  padding: 24px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(255, 132, 68, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.98), rgba(6, 6, 6, 0.98));
  border: 1px solid rgba(255, 160, 96, 0.16);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
}

.page-profile .profile-photo-large {
  width: 100%;
  max-width: none;
}

.page-profile .profile-photo-large img,
.page-profile .profile-photo-large .map-box {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.page-profile .profile-photo-large img {
  height: 470px;
  object-fit: cover;
}

.page-profile .profile-details {
  min-width: 0;
}

.page-profile .profile-short-info {
  margin-top: 18px;
}

.page-profile .profile-short-info p {
  margin: 10px 0 0;
  color: #f0ede8;
  line-height: 1.5;
}

.page-profile .tabs-wrapper {
  margin-top: 24px;
}

.page-profile .tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.page-profile .tab-link {
  min-height: 56px;
  padding: 0 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 198, 125, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.page-profile .tab-link.active {
  background: linear-gradient(135deg, #ffb65a, #ff8730);
  color: #261306;
  box-shadow: 0 14px 32px rgba(255, 135, 48, 0.22);
}

.page-profile .tabs-content {
  display: block;
}

.page-profile .tab-panel {
  display: none;
}

.page-profile .tab-panel.active {
  display: block;
}

.page-profile .two-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 28px;
}

.page-profile #tab-info .col-right:not(.locked),
.page-profile #tab-services .col-left,
.page-profile #tab-services .col-right {
  padding: 22px 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.page-profile .number-phone {
  color: #ffb461;
  font-size: 18px;
  font-weight: 700;
}

.page-profile .profile-gallery {
  margin-top: 8px;
}

.page-profile .profile-video-grid {
  margin-top: 8px;
}

.page-profile .profile-natural-block {
  margin-top: 6px;
}

.profile-media-badge {
  color: #f6e0c1;
}

.profile-media-badge svg {
  fill: currentColor !important;
}

.profile-media-badge--verified {
  color: #ffd37c;
}

.profile-media-badge--video {
  color: #74c2ff;
}

.profile-media-badge--count {
  color: #f0f0f0;
}

.profile-media-badge--rating {
  color: #ffbd59;
}

.last-profiles .profiles-left {
  gap: 20px;
}

.last-profiles .profile-card--latest {
  padding: 14px;
}

.last-profiles .profile-card--latest .profile-image {
  height: 388px;
}

.profile-image__socials {
  display: none;
}

.last-profiles .profile-card__footer {
  align-items: center;
}

.last-profiles .profile-card__socials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.last-profiles .profile-card__category {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
}

.last-profiles .profile-mini-social {
  width: 34px;
  height: 34px;
}

.lk-avatar {
  position: relative;
  border-radius: 50% !important;
}

.lk-avatar img {
  display: block;
  border-radius: 50%;
}

.lk-avatar--large {
  width: 200px;
  height: 200px;
}

.lk-avatar-remove-form {
  position: absolute;
  top: 6px;
  right: 6px;
  margin: 0;
}

.lk-avatar-remove {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.88);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.camera-capture-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.camera-capture-form {
  margin: 0;
}

.camera-capture {
  position: relative;
  min-height: 164px;
  padding: 22px 20px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  overflow: hidden;
}

.camera-capture__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.camera-capture__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
}

.camera-capture__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.camera-capture__title {
  font-size: 22px;
  font-weight: 700;
}

.camera-capture__text {
  color: #d3d0cb;
  line-height: 1.42;
}

.camera-capture--photo {
  color: #ffd07c;
}

.camera-capture--video {
  color: #7dc7ff;
}

.media-manager-card--history {
  gap: 18px;
}

@media (max-width: 1180px) {
  .catalog-filters__selects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .specialists-list .profile-card-v2 {
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  }

  .specialists-list .profile-info-right {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .page-profile .profile-main-card,
  .page-profile .two-cols,
  .camera-capture-grid {
    grid-template-columns: 1fr;
  }

  .last-profiles .profile-card--latest .profile-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .catalog-filters__selects {
    grid-template-columns: 1fr;
  }

  .catalog-filters__checks {
    gap: 14px;
  }

  .specialists-list .profile-card-v2 {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .specialists-list .profile-photo {
    height: 320px;
  }

  .page-profile .profile-top-section,
  .page-profile .tabs-wrapper {
    padding: 0 16px;
  }

  .page-profile .profile-main-card {
    padding: 18px;
  }

  .page-profile .profile-photo-large img {
    height: 360px;
  }

  .page-profile .tab-link {
    flex: 1 1 calc(50% - 6px);
  }
}

/* Final UI polish overrides */

.auth-file,
.lk-file,
.lk-avatar-shell,
.specialist-avatar-upload__label,
.profile-gallery__item,
.manager-specialist-card__media,
.profile-photo,
.profile-image,
.profile-photo-large--hero {
  position: relative;
}

.auth-file-input,
.lk-file-input,
.specialist-avatar-upload__input,
.camera-capture__input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  white-space: nowrap !important;
}

.auth-file,
.lk-file {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.auth-file-label,
.lk-file-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-file-btn,
.lk-file-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #f5ecdf;
  font-weight: 600;
}

.auth-file-name,
.lk-file-name {
  min-width: 0;
  color: #d7d0c5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.auth-box {
  width: min(560px, calc(100vw - 24px));
  max-width: 560px;
  padding: 26px 22px 22px;
  border-radius: 28px;
}

.auth-box--user {
  width: min(620px, calc(100vw - 24px));
  max-width: 620px;
  padding: 24px;
}

.auth-close {
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.auth-close:hover {
  background: rgba(255, 165, 92, 0.18);
  transform: scale(1.04);
}

.auth-user-box {
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
}

.auth-avatar-wrapper {
  width: 96px;
  height: 96px;
  border-width: 3px;
}

.auth-title {
  font-size: clamp(22px, 3vw, 26px);
  line-height: 1.08;
}

.auth-actions-row {
  font-size: 16px;
}

.auth-messages-link {
  min-width: 48px;
  height: 48px;
}

.auth-tabs,
.auth-subtabs {
  gap: 10px;
}

.auth-tab,
.auth-subtab,
.page-profile .tab-link {
  color: #e6ddd0;
}

.auth-tab:not(.active),
.auth-subtab:not(.active) {
  background: rgba(255, 255, 255, 0.04);
  color: #e6ddd0;
}

.specialist-avatar-card {
  align-items: stretch;
}

.lk-avatar-shell {
  width: fit-content;
  margin: 0 auto;
}

.specialist-avatar-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.specialist-avatar-upload__label {
  cursor: pointer;
  overflow: hidden;
}

.specialist-avatar-upload__overlay {
  position: absolute;
  inset: auto auto 14px 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 8, 0.78);
  border: 1px solid rgba(255, 210, 143, 0.32);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: transform 0.18s ease, background 0.18s ease;
  z-index: 2;
}

.specialist-avatar-upload__label:hover .specialist-avatar-upload__overlay {
  transform: translateX(-50%) scale(1.05);
  background: rgba(255, 164, 81, 0.18);
}

.specialist-avatar-upload__icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.specialist-avatar-upload__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.specialist-avatar-upload__hint {
  margin: 0;
  text-align: center;
  color: #d7d0c4;
}

.lk-avatar-remove-form {
  top: 8px;
  right: 8px;
  z-index: 3;
}

.lk-avatar-remove {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  color: #fff;
  font-size: 19px;
}

.lk-form--password {
  margin-top: 6px;
}

.camera-capture {
  min-height: 188px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.camera-capture__icon {
  width: 78px;
  height: 78px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.camera-capture__icon svg {
  width: 30px;
  height: 30px;
}

.camera-capture__text {
  max-width: 290px;
  text-align: center;
}

.profiles-tabs {
  justify-content: center;
}

.catalog-view-switch {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0 0 20px;
}

.catalog-view-switch__btn {
  min-width: 138px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 196, 123, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: #ece2d3;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.catalog-view-switch__btn.is-active {
  background: linear-gradient(135deg, #ffbe67, #ff8b34);
  color: #291609;
  box-shadow: 0 16px 32px rgba(255, 139, 52, 0.2);
}

#profilesList[hidden],
#profilesCompactGrid[hidden] {
  display: none !important;
}

.specialists-list .specialists-grid--compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
  justify-content: center;
  gap: 24px;
}

.profile-card--catalog-compact {
  width: min(100%, 270px);
}

.specialists-list .profile-card-v2 {
  align-items: stretch;
}

.specialists-list .profile-photo-wrap {
  align-self: stretch;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.specialists-list .profile-photo {
  height: 100%;
  min-height: 100%;
}

.specialists-list .profile-date {
  align-self: end;
}

.profile-mini-social,
.btn-whatsapp,
.btn-telegram {
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.profile-mini-social:hover,
.btn-whatsapp:hover,
.btn-telegram:hover {
  transform: scale(1.08);
}

.profile-image::after,
.profile-photo::after,
.profile-photo-large--hero::after,
.profile-gallery__item::after,
.manager-specialist-card__media::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(52%, 180px);
  height: 64px;
  transform: translate(-50%, -50%);
  background: url("/theme/blossom-spa/images/logo.png") center / contain no-repeat;
  opacity: 0.16;
  filter: grayscale(1) brightness(1.35);
  pointer-events: none;
  z-index: 1;
}

.profile-photo-large--hero::after {
  width: min(48%, 220px);
  height: 72px;
}

.profile-gallery__item::after {
  width: min(60%, 130px);
  height: 42px;
}

.profile-image img,
.profile-photo img,
.profile-photo-large--hero img,
.profile-gallery__item img,
.manager-specialist-card__media img {
  position: relative;
  z-index: 0;
}

.profile-media-badges,
.specialist-avatar-upload__overlay,
.lk-avatar-remove-form {
  z-index: 2;
}

.page-profile .col-right {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

.page-profile .profile-side-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-profile .profile-side-card {
  padding: 22px 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.page-profile .profile-side-card--map {
  padding: 16px;
}

.page-profile .profile-map-box {
  min-height: 260px;
  height: 260px;
  border-radius: 24px;
  overflow: hidden;
}

.page-profile .profile-gallery-shell {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 10px;
  align-items: center;
}

.page-profile .profile-gallery--slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 24px) / 3);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.page-profile .profile-gallery--slider::-webkit-scrollbar {
  display: none;
}

.page-profile .profile-gallery__item {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 0.82;
  scroll-snap-align: start;
}

.page-profile .profile-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.profile-gallery-nav {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.profile-gallery-nav:hover {
  background: rgba(255, 175, 92, 0.18);
  transform: scale(1.04);
}

.profile-gallery-nav[hidden] {
  display: none !important;
}

.page-profile .profile-tour-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-profile .profile-tour-card {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-profile .profile-tour-card:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.page-profile .profile-tour-card p,
.page-profile .profile-side-card p {
  margin: 0 0 6px;
}

.manager-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.manager-filters__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.manager-filters__field span {
  color: #ded5c9;
  font-size: 14px;
}

.manager-filters__field input,
.manager-filters__field select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 196, 123, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.manager-specialists-grid {
  gap: 18px;
}

.manager-specialist-card {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(10, 10, 10, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.manager-specialist-card__summary {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
}

.manager-specialist-card__media {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 2px rgba(255, 204, 133, 0.3);
}

.manager-specialist-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manager-specialist-card__toggle {
  display: block;
  padding: 0 60px 0 0;
  text-align: left;
}

.manager-specialist-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}

.manager-specialist-card__title {
  display: grid;
  gap: 6px;
  justify-items: start;
  text-align: left;
}

.manager-specialist-card__title strong {
  line-height: 1.05;
  word-break: break-word;
}

.manager-specialist-card__badges {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.manager-specialist-card__chevron {
  right: 0;
  width: 46px;
  height: 46px;
}

.manager-specialist-card__activate {
  justify-self: end;
  min-width: 0;
}

.manager-activate-btn {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffbe67, #ff8a33);
  color: #291609;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.manager-specialist-card__body {
  padding: 0 22px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.manager-feature-grid,
.manager-selection-grid,
.admin-users-grid {
  gap: 16px;
}

.manager-feature-toggle,
.manager-select-chip,
.admin-user-card,
.manager-list-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.manager-feature-toggle,
.manager-select-chip {
  overflow: hidden;
}

.manager-select-chip span {
  display: inline-flex;
  align-items: center;
  min-height: 100%;
}

.lk-panel-inner,
.admin-user-card,
.manager-list-card {
  overflow: hidden;
}

@media (max-width: 1180px) {
  .manager-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .manager-specialist-card__summary {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .manager-specialist-card__activate {
    grid-column: 1 / -1;
    justify-self: start;
    margin-left: 88px;
  }
}

@media (max-width: 768px) {
  .auth-box,
  .auth-box--user {
    width: min(100vw - 16px, 100%);
    padding: 20px 16px 16px;
  }

  .auth-user-box {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .auth-user-row,
  .auth-actions-row {
    justify-content: center;
  }

  .manager-filters {
    grid-template-columns: 1fr;
  }

  .page-profile .profile-gallery-shell {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
  }

  .page-profile .profile-gallery--slider {
    grid-auto-columns: calc((100% - 12px) / 2);
  }

  .profile-gallery-nav {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .specialists-list .specialists-grid--compact {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}
