@font-face {
    font-family: 'HelveticaNowDisplay';
    src: url('fonts/HelveticaNowDisplay-Regular.woff2') format('woff2'),
         url('fonts/HelveticaNowDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaNowDisplay';
    src: url('fonts/HelveticaNowDisplay-Medium.woff2') format('woff2'),
         url('fonts/HelveticaNowDisplay-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaNowDisplay';
    src: url('fonts/HelveticaNowDisplay-Bold.woff2') format('woff2'),
         url('fonts/HelveticaNowDisplay-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/*==Font-setup==*/

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

body {
    font-family: 'HelveticaNowDisplay';
    font-size: 16px;
    color: #000;
    background: #FBFBFB;
    overflow-x: hidden;
}

/* ===== 18+ Age Gate ===== */
.age-gate {
  position: fixed; inset: 0; z-index: 999999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(15, 17, 31, 0.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 20px;
  animation: ageGateFadeIn 0.25s ease;
}
@keyframes ageGateFadeIn { from { opacity: 0; } to { opacity: 1; } }
.age-gate-box {
  background: #fff; border-radius: 18px; max-width: 440px; width: 100%;
  padding: 32px 28px 28px; text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  font-family: 'HelveticaNowDisplay', sans-serif;
}
.age-gate-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #B48350, #8a6238);
  color: #fff; font-weight: 800; font-size: 20px; letter-spacing: 0.5px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(180,131,80,0.35);
}
.age-gate-title {
  font-size: 22px; font-weight: 700; color: #1B1F3D;
  margin: 0 0 12px;
}
.age-gate-text {
  font-size: 14px; line-height: 1.55; color: #555;
  margin: 0 0 22px;
}
.age-gate-actions {
  display: flex; flex-direction: column; gap: 10px;
}
.age-gate-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 18px; border-radius: 10px; border: 0;
  font-size: 15px; font-weight: 600; cursor: pointer; text-decoration: none;
  font-family: inherit; line-height: 1;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}
.age-gate-enter {
  background: #B48350; color: #fff;
  box-shadow: 0 4px 14px rgba(180,131,80,0.32);
}
.age-gate-enter:hover { background: #9d6f40; }
.age-gate-enter:active { transform: scale(0.98); }
.age-gate-leave {
  background: transparent; color: #888;
  border: 1px solid rgba(0,0,0,0.1);
}
.age-gate-leave:hover { background: rgba(0,0,0,0.04); color: #444; }
@media (max-width: 480px) {
  .age-gate-box { padding: 26px 20px 22px; border-radius: 14px; }
  .age-gate-badge { width: 56px; height: 56px; font-size: 18px; }
  .age-gate-title { font-size: 19px; }
  .age-gate-text { font-size: 13px; }
  .age-gate-btn { padding: 12px 16px; font-size: 14px; }
}

a,
a:hover {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
  margin: 0;
}

/*==Basic-setup==*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.scrolltotop {
  display: none;
}

.scrolltotop:hover {
  background: #B48350;
}

.scrolltotop i {
  color: #ffff;
  font-size: 20px;
}

.container {
  max-width: 1470px;
  margin: 0 auto;
  padding: 0 20px;
}

/*==container-setup==*/
.header-area {
  padding: 12px 0;
  background: #1a1a2e;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-logo img {
  height: 38px;
  width: auto;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.header-logo:hover img {
  opacity: 0.8;
  transform: scale(1.05);
}

.logo-item img {
  max-width: 48px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  column-gap: 35px;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a {
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #B48350, #D4A46A);
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.main-nav ul li a:hover {
  color: #B48350;
}

.main-nav ul li a:hover::after {
  width: 100%;
}

.menu-item a {
  font-weight: 500;
  font-size: 15px;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 13px 20px;
  text-transform: capitalize;
  text-align: left;
  border-radius: 10px;
  margin: 2px 12px;
  transition: background 0.2s, color 0.2s;
}

.menu-item a:hover {
  background: rgba(180, 131, 80, 0.08);
  color: #B48350;
}

.main-nav ul li:nth-of-type(1) span {
  width: 2px;
  height: 36px;
  background: rgba(255, 255, 255, 0.10);
  display: block;
}

#menu-act {
  font-weight: 600;
  color: #B48350;
  background: rgba(180, 131, 80, 0.08);
  position: relative;
}

#menu-act::after {
  display: none;
}

.menu-act2::after {
  display: none !important;
}

.header-right-flex {
  display: grid;
  display: flex;
  align-items: center;
  gap: 14px;
  align-items: center;
}

.header-line {
  width: 1px;
  background: rgba(255, 255, 255, 0.30);
  height: 24px;
  min-height: 24px;
}

.header-btn-wrap {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  column-gap: 8px;
  justify-content: end;
  margin-left: auto;
  align-items: center;
}

.header-search-wrap {
  position: relative;
}

.search-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.10);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.search-box {
  display: none;
  position: absolute;
  width: 250px;
  left: 0;
  bottom: -67px;
  z-index: 1100;
}

.search-box.active {
  display: block;
}

.search-icon {
  cursor: pointer;
  font-size: 18px;
  color: #333;
}

.search-wrap {
  border: 2px solid rgba(255, 255, 255, 0.20);
  background: #1B1F3D;
  border-radius: 5px;
}

.search-box input {
  font-family: 'HelveticaNowDisplay';
  font-weight: 400;
  font-size: 16px;
  color: #F9F9FB;
  width: 100%;
  outline: none;
  padding: 12px 30px 12px 10px;
  background: none;
  border: none;
} 

.search-box input::placeholder {
   font-family: 'HelveticaNowDisplay';
  font-weight: 400;
  font-size: 16px;
  color: #F9F9FB;
}

.search-wrap {
  position: relative;
}

.search-submit {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
  background: none;
}

.search-submit button {
  background: none;
  border: none;
  cursor: pointer;
}

.search-submit button img {
  width: 20px;
}


/*===language-css===*/
.lang-dropdown-wrap {
    position: relative;
}

.selected-country10 {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.20);
    padding: 0;
    border-radius: 10px;
    cursor: pointer;
    width: 38px;
    height: 38px;
    overflow: hidden;
}

.lang-flag {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.selected-country10 img {
    width: 22px;
    height: auto;
    display: block;
}

/* DROPDOWN */
.lang-dropdown10 {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 130px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    z-index: 1000;
    overflow: hidden;
    animation: fadeDown10 0.18s ease;
}

.lang-dropdown10.open {
    display: block;
}

@keyframes fadeDown10 {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dropdown-item10 {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    transition: background 0.15s;
}

.dropdown-item10:hover {
    background: #f4f4f8;
}

.dropdown-item10 img {
    width: 20px;
    height: auto;
    display: block;
    border-radius: 2px;
}
/*===language-css===*/
.header-btn a {
  font-weight: 400;
  font-size: 13px;
  color: #F9F9FB;
  display: block;
  text-align: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  padding: 8px 20px;
  white-space: nowrap;
  transition: 0.2s all ease;
}

.header-btn1 a:hover {
  background: #B48350;
  border-color: #B48350;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180,131,80,0.3);
}

.header-btn2 a {
  background: #B48350;
  border-color: #B48350;
}

.header-btn2 a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.menu-btn {
  width: 30px;
  cursor: pointer;
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.menu-btn img {
  width: 28px;
  display: block;
}

.mobil-brand img {
  height: 34px;
  width: auto;
  max-width: none;
  filter: brightness(0) saturate(100%);
}

.sidebar-menu {
  position: fixed;
  top: 0;
  right: 0;
  max-width: 300px;
  width: 85%;
  height: 100vh;
  display: none;
  flex-direction: column;
  background: #ffffff;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99001;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
}

.sidebar-menu.active {
  transform: translateX(0);
}

.sidebar-auth {
  padding: 16px 20px 24px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.sidebar-login-btn {
  display: block;
  text-align: center;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
}

.sidebar-login-btn:hover {
  border-color: #B48350;
  color: #B48350;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180,131,80,0.2);
}

.sidebar-register-btn {
  display: block;
  text-align: center;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #B48350;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
}

.sidebar-register-btn:hover {
  background: #9a6f43;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180,131,80,0.3);
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.menu-wrap {
  padding: 12px 0 0 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-wrap .language-item {
  order: 99;
  padding: 20px 20px 10px;
  margin-top: auto;
  align-self: flex-start;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.close-icon {
  position: relative;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  transition: background 0.2s, transform 0.15s;
}

.close-icon:hover {
  background: rgba(0, 0, 0, 0.15);
}

.close-icon:active {
  background: rgba(0, 0, 0, 0.22);
  transform: scale(0.92);
}

.close-icon i {
  font-size: 20px;
  color: #222;
}

/*==overlay-css==*/
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/*==mobil-css-header==*/
.mobil-header-wrap {
  display: none;
}

.mobil-header-wrap ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 12px;
}

.mobil-header-wrap ul li span {
  display: block;
  width: 1px;
  height: 11px;
  background: rgba(255, 255, 255, 0.30);
}

/* Mobile header — Country button with icon + label */
.mobil-header-wrap ul { column-gap: 8px; flex-wrap: nowrap; }
.mobil-header-wrap ul li { flex-shrink: 0; }
.mobil-header-wrap .mobil-country-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.mobil-header-wrap .mobil-country-btn i { font-size: 13px; color: #B48350; }
.mobil-header-wrap .mobil-country-btn:active { background: rgba(180,131,80,0.2); }

/* Narrow phones — icon-only Country button to free header space */
@media (max-width: 480px) {
  .mobil-header-wrap .mobil-country-btn { padding: 7px 9px; }
  .mobil-header-wrap .mobil-country-btn span { display: none; }
}
@media (max-width: 360px) {
  .header-logo img { height: 22px !important; }
}

/* Burger menu — Login + Register side-by-side */
.menu-wrap .menu-auth-row {
  display: flex;
  gap: 10px;
  padding: 10px 20px 0;
}
.menu-wrap .menu-auth-row .menu-auth-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.15s;
}
.menu-wrap .menu-auth-row .menu-auth-login {
  color: #1B1F3D;
  background: transparent;
  border: 1.5px solid rgba(27,31,61,0.18);
}
.menu-wrap .menu-auth-row .menu-auth-register {
  color: #fff;
  background: #B48350;
  border: 1.5px solid #B48350;
}
.menu-wrap .menu-auth-row .menu-auth-btn:hover { opacity: 0.9; }

/* Logout in burger menu — row matches .menu-item a (padding 13px 20px, margin 2px 12px) */
.menu-wrap .menu-item .menu-logout-form { margin: 2px 12px; padding: 0; display: block; width: auto; }
.menu-wrap .menu-item .menu-logout-btn {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 13px 20px;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transform: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

/* Lang switcher container in burger menu */
.menu-lang-wrap {
  padding: 14px 20px;
  margin: 0;
  display: block;
}
/* When placed at the top of the menu (after menu-header) */
.menu-lang-wrap-top {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 8px;
}
.menu-lang-wrap .lang-switcher { width: 100%; display: block; }
.menu-lang-wrap .lang-switcher-btn { width: 100%; justify-content: flex-start; }
.menu-lang-wrap .lang-switcher-btn,
.menu-lang-wrap .lang-switcher-btn svg { color: #1B1F3D; }
.menu-lang-wrap .lang-switcher-btn:hover { background: rgba(0,0,0,0.04); }
.menu-lang-wrap .lang-switcher-btn span { font-size: 14px; font-weight: 500; }

/*==main-content-wrapper==*/
.main-content-wrapper {
  padding: 20px 0;
}

.main-content-main {
  display: grid;
  grid-template-columns: 290px auto;
  column-gap: 24px;
}

.main-content-left {
  border-radius: 20px;
  background: #ffffff;
  padding: 18px;
  align-self: start;
}

.countri-title h2 {
  font-weight: 700;
  font-size: 15px;
  color: #000000;
}

.profile-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  margin-bottom: 4px;
  background: transparent;
  border: none;
}

.profile-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.profile-nav-back:hover {
  color: #B48350;
}

.profile-nav-arrows {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.profile-nav-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.45);
  text-decoration: none;
  transition: all 0.2s;
}

.profile-nav-arrow:hover {
  background: rgba(180, 131, 80, 0.1);
  color: #B48350;
}

.profile-nav-arrow.disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: default;
}

.ad-banners {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.ad-banner-item {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  max-height: 70px;
}
.ad-banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ad-banner-box {
  margin-top: 10px;
}

.ad-banner-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px dashed rgba(180, 131, 80, 0.4);
  background: rgba(180, 131, 80, 0.06);
  color: #B48350;
  font-family: 'HelveticaNowDisplay', sans-serif;
  font-weight: 500;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  line-height: 1.4;
}

.ad-banner-btn:hover {
  background: rgba(180, 131, 80, 0.14);
  border-color: rgba(180, 131, 80, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180,131,80,0.2);
}

.ad-banner-btn svg {
  flex-shrink: 0;
}

.content-left-box {
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.025);
  padding: 6px 12px;
  margin-top: 4px;
}

.search-countri input {
  font-weight: 400;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.50);
  width: 100%;
  outline: none;
  border: none;
  border-radius: 10px;
  background: #FFF;
  padding: 9px 12px;
}

.search-countri input::placeholder {
   font-family: 'HelveticaNowDisplay';
  font-weight: 400;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.50);
}

.countri-dropdown-wrap {
  margin-top: 6px;
}

.accordion10 {
  width: 100%;
  border-radius: 10px 10px 0 0;
}

.accordion10-wrap + .accordion10-wrap {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.accordion10 .link10 {
  cursor: pointer;
  padding: 8px;
  position: relative;
  border-radius: 10px 10px 0 0;
}

.open10 .link10 {
  background: #ffffff;
}

.accordion10-wrap .link10:hover {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  transition: background 0.2s ease;
}

.link10 ul {
  display: grid;
  grid-template-columns: 26px auto;
  align-items: center;
  column-gap: 7px;
}

.link10 ul li:nth-of-type(1) {
  font-weight: 400;
  font-size: 14px;
  color: #999;
}

.link10 ul li:nth-of-type(2) a {
  color: #333;
  text-decoration: none;
}

.link10 ul li:nth-of-type(2) a:hover {
  color: #b63b4d;
}

.link10 ul li span {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.link10 ul li span img {
  width: 19px;
  height: 14px;
  object-fit: cover;
  display: block;
}

.angle-accordion {
  position: absolute;
  top: 14px;
  left: 12px;
  font-size: 18px;
  color: #595959;
  transition: 0.3s;
}

.angle-accordion {
  right: 12px;
  left: auto;
}

.open10 .angle-accordion {
  transform: rotate(180deg);
  color: #b63b4d;
}

.submenu10 {
  height: 0;
  overflow: hidden;
  background: #ffffff;
  border-radius: 0 0 10px 10px;
}

.open10 .submenu10 {
  height: auto;
  max-height: 1000px;
}

.box {
   padding: 9px 10px 14px 9px;
}

.more {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}

.more.hidden {
  height: 0;
}

.submenu10 ul {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 11px;
}

.submenu10 ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  padding: 3px 5px;
  transition: background 0.2s ease;
  cursor: pointer;
}

.submenu10 ul li a.city-row-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.submenu10 ul li:hover {
  background: rgba(0, 0, 0, 0.04);
}

.submenu10 ul li:hover h4 {
  color: #B48350;
}

.submenu10 ul li h4 {
  font-weight: 400;
  font-size: 16px;
  color: #999;
}

.submenu10 ul li h4 a {
  color: inherit;
  text-decoration: none;
}

.submenu10 ul li:hover h4 a {
  color: #B48350;
}

.submenu10 ul li h3 {
  font-weight: 600;
  font-size: 16px;
  color: #000000;
}

/* a11y: replaced h4/h3 with spans to fix heading order */
.submenu10 ul li:hover .city-row-name {
  color: #B48350;
}
.submenu10 ul li .city-row-name {
  font-weight: 400;
  font-size: 16px;
  color: #999;
}
.submenu10 ul li .city-row-name a {
  color: inherit;
  text-decoration: none;
}
.submenu10 ul li:hover .city-row-name a {
  color: #B48350;
}
.submenu10 ul li .city-row-count {
  font-weight: 600;
  font-size: 16px;
  color: #000000;
}

.sidebar-agency {
  padding-left: 14px;
}
.sidebar-agency div a {
  font-size: 13px;
  color: #B48350;
  text-decoration: none;
  font-weight: 500;
}
.sidebar-agency div a::before {
  content: '\2302';
  margin-right: 5px;
  font-size: 15px;
}
.sidebar-agency div a:hover {
  text-decoration: underline;
}

.sidebar-agencies {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #eee;
}
.sidebar-agency-link {
  display: block;
  padding: 4px 0;
  color: #B48350;
  font-size: 13px;
  text-decoration: none;
}
.sidebar-agency-link:hover {
  text-decoration: underline;
}
.sidebar-agency-link i {
  margin-right: 4px;
  font-size: 11px;
}

.view-btn {
  font-weight: 600;
  font-size: 16px;
  color: #B88A5A;
  cursor: pointer;
  margin-top: 11px;
  display: none;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.stories-item-wrap h2 {
  font-weight: 600;
  font-size: 20px;
  color: #000000;
  text-transform: capitalize;
  margin-top: 12px;
}

@keyframes stories-ring-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes stories-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(180, 131, 80, 0.4); }
  50%      { box-shadow: 0 0 12px 4px rgba(180, 131, 80, 0.15); }
}

.stories-item {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: stories-pulse 3s ease-in-out infinite;
}

/* Animated gradient ring */
.stories-item::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(
    #B48350 0deg,
    #D4A76A 60deg,
    #f5d5a0 120deg,
    #B48350 180deg,
    #8a6235 240deg,
    #D4A76A 300deg,
    #B48350 360deg
  );
  animation: stories-ring-spin 4s linear infinite;
  z-index: -1;
}

/* White inner gap ring */
.stories-item::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: #fff;
  z-index: -1;
}

.stories-item:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 24px rgba(180, 131, 80, 0.4);
  animation: none;
}

.stories-item:hover::before {
  animation: stories-ring-spin 1.5s linear infinite;
}

.stories-item img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: none;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.stories-item:hover img {
  filter: brightness(1.1) saturate(1.1);
  transform: scale(1.04);
}

.stories-flex {
  display: flex;
  align-items: flex-start;
  column-gap: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.stories-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 80px;
}
.stories-user .stories-item {
  margin-bottom: 6px;
}
.stories-name {
  font-family: 'HelveticaNowDisplay', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #1B1F3D;
  text-align: center;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 80px;
}
.stories-city {
  font-family: 'HelveticaNowDisplay', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #999;
  text-align: center;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 80px;
  margin-top: 1px;
}

.profile-detail .stories-item-wrap h2 {
  margin-top: 20px;
}
.profile-detail .stories-flex {
  margin-bottom: 0;
}
.profile-detail.angels-area {
  padding-bottom: 10px;
}

.item-bord {
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1B1F3D;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(33.5px);
  z-index: 2;
  position: absolute;
  bottom: 0;
  right: 0;
}

/* =============================================
   FILTER SECTION — Premium dark-glass aesthetic
   Brand: #1a1a2e navy | #B48350 gold accent
   ============================================= */

.filter-wrap {
  display: flex;
  align-items: center;
  column-gap: 7px;
  margin-top: 14px;
  flex-wrap: wrap;
  row-gap: 7px;
}

.filter-item {
  position: relative;
  flex: 0 1 auto;
}

.filter-dropdown {
  position: relative;
}

.filter-btn {
  font-family: 'HelveticaNowDisplay', Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #1B1F3D;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: #fff;
  padding: 8px 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  column-gap: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-btn:hover,
.filter-dropdown:hover .filter-btn,
.filter-dropdown.active .filter-btn {
  border-color: #B48350;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.filter-btn .arrow {
  display: flex;
  align-items: center;
}

.filter-btn .arrow img {
  width: 11px;
  height: 11px;
}

.filter-dropdown.active .filter-btn .arrow img {
  transform: rotate(180deg);
}

/* Removed nth-child(n+8) right-align override — second row items are left-anchored after wrap */

.filter-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 220px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  padding: 10px;
  display: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  z-index: 10;
}

/* Multi-column for filters with many items */
[data-filter="services"] .filter-menu,
[data-filter="nationality"] .filter-menu {
  width: 560px;
  column-count: 3;
  column-gap: 4px;
  left: auto;
  right: 0;
}

[data-filter="languages"] .filter-menu,
[data-filter="eyes"] .filter-menu {
  width: 340px;
  column-count: 2;
  column-gap: 4px;
}

[data-filter="services"] .filter-menu label,
[data-filter="nationality"] .filter-menu label,
[data-filter="languages"] .filter-menu label,
[data-filter="eyes"] .filter-menu label {
  break-inside: avoid;
}

/* Keep wide dropdowns from overflowing right edge */
[data-filter="services"] .filter-menu {
  right: 0;
  left: auto;
}

[data-filter="nationality"] .filter-menu {
  left: 0;
  right: auto;
  transform: none;
}

[data-filter="languages"] .filter-menu {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

@media (hover: hover) {
  .filter-dropdown:hover .filter-menu {
    display: block;
  }
}

.filter-dropdown.active .filter-menu {
  display: block;
}

.filter-menu label.filter-option-zero {
  opacity: 0.35;
  pointer-events: none;
}

.filter-menu label {
  font-family: 'HelveticaNowDisplay', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #1B1F3D;
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 6px 8px;
  cursor: pointer;
  border-radius: 6px;
}

.filter-menu label:hover {
  background: #f5f5f5;
}

.filter-menu label em {
  font-style: normal;
  color: #999;
}

/* Price range - grouped by hours */
[data-filter="pricerange"] .filter-menu {
  width: 420px;
}

.price-group {
  margin-bottom: 8px;
}

.price-group:last-child {
  margin-bottom: 0;
}

.price-group-title {
  font-family: 'HelveticaNowDisplay', Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #B48350;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 8px 2px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 2px;
}

.price-group .price-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.price-group .price-options label {
  flex: 1 1 33.33%;
  min-width: 110px;
}

/* check-box inside dropdown */
.filter-menu input[type=checkbox] {
  appearance: none;
  height: 16px;
  width: 16px;
  background: #fff;
  border: 1.5px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.filter-menu input[type=checkbox]::after {
  content: "\f00c";
  font-weight: 900;
  font-family: 'Font Awesome 5 Free';
  font-size: 8px;
  color: #fff;
  display: none;
}

.filter-menu input[type=checkbox]:checked {
  background: #B48350;
  border-color: #B48350;
}

.filter-menu input[type=checkbox]:checked::after {
  display: block;
}

.quick-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 7px;
  margin-top: 14px;
  margin-bottom: 6px;
  align-items: center;
}

.quick-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'HelveticaNowDisplay', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #555;
  cursor: pointer;
  user-select: none;
}

.quick-filter input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid #ccc;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin: 0;
}

.quick-filter input[type="checkbox"]::after {
  content: "\f00c";
  font-weight: 900;
  font-family: 'Font Awesome 5 Free';
  font-size: 8px;
  color: #fff;
  display: none;
}

.quick-filter input[type="checkbox"]:checked {
  background: #B48350;
  border-color: #B48350;
}

.quick-filter input[type="checkbox"]:checked::after {
  display: block;
}

.qf-check {
  display: none;
}

.quick-filter em {
  font-style: normal;
  font-weight: 400;
  color: #999;
  font-size: 12px;
}

.best-item-main {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  column-gap: 14px;
  margin-top: 18px;
  row-gap: 14px;
}

.best-img img {
  width: 100%;
  object-fit: cover;
}

a.best-item {
  text-decoration: none;
  color: inherit;
  display: block;
}

.best-item {
  position: relative;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: 12px;
}

.best-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.best-item:hover .best-img img {
  transform: scale(1.04);
}

.best-img {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.best-img img {
  transition: transform 0.35s ease;
}

/* Badge system */
.best-badges {
  position: absolute;
  left: 8px;
  top: 8px;
  display: flex;
  flex-direction: row;
  z-index: 3;
}

.best-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.9);
  margin-right: -6px;
  position: relative;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.best-badge::before {
  font-size: 10px;
}

.best-badge::after {
  content: attr(data-label);
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #1B1F3D;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 10;
}

.best-badge:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.best-badge:hover {
  z-index: 15;
  transform: scale(1.2);
  transition: transform 0.15s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.best-badge--top {
  background: #B48350;
}

.best-badge--top::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f005";
  font-size: 9px;
}

.best-badge--new {
  background: #1B1F3D;
}

.best-badge--new::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f0e7";
  font-size: 10px;
}

.best-badge--real {
  background: #3D6B9E;
}

.best-badge--real::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f030";
  font-size: 9px;
}

.best-badge--verified {
  background: #6B4C8A;
}

.best-badge--verified::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f058";
  font-size: 9px;
}

.best-badge--pornstar {
  background: #C0392B;
}

.best-badge--pornstar::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f521";
  font-size: 9px;
}

.best-badge--independent {
  background: #D4A76A;
}

.best-badge--independent::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f007";
  font-size: 9px;
}

.best-badge--vip {
  background: linear-gradient(135deg, #B48350, #D4A76A);
}

.best-badge--vip::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f521";
  font-size: 9px;
}

.best-badge--video {
  background: #2D314C;
}

.best-badge--video::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f03d";
  font-size: 9px;
}

.best-badge--duo {
  background: #8E5A6E;
}

.best-badge--duo::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f500";
  font-size: 9px;
}

/* Legacy badge hide */
.best-bord {
  display: none;
}

.best-item-cnt {
  position: absolute;
  width: 96%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 7px;
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.78) 100%);
  backdrop-filter: blur(14.55px);
}

.profile-card-head {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.best-item-cnt h2,
.best-item-cnt h3,
.best-item-cnt .profile-card-title {
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  margin: 0;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.profile-card-loc {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}


.profile-card-flag {
  display: inline-block;
  width: 22px;
  height: 20px;
  overflow: hidden;
  flex-shrink: 0;
  clip-path: path('M11 20C5.1 15 0 11.25 0 6.875A6.25 6.25 0 0 1 6.25 0c2 0 3.75 1 5 2.625C12.5 1 14.25 0 16.25 0A6.25 6.25 0 0 1 22.5 6.875C22.5 11.25 16.9 15 11 20z');
}

.profile-card-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
}

@media (max-width: 767px) {
  .profile-card-flag {
    width: 24px;
    height: 22px;
    clip-path: path('M12 22C5.6 16.5 0 12.4 0 7.6A6.875 6.875 0 0 1 6.875 0c2.2 0 4.1 1.1 5.5 2.9C13.75 1.1 15.65 0 17.85 0A6.875 6.875 0 0 1 24.55 7.6C24.55 12.4 18.4 16.5 12 22z');
  }
}

.best-item-cnt p {
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

@media (max-width: 767px) {
  .best-item-cnt p {
    font-size: 11px;
  }
  .best-item-cnt p span {
    padding-left: 3px;
  }
}

.profile-card-sep {
  color: rgba(255, 255, 255, 0.40);
}

.profile-card-nat {
  color: rgba(255, 255, 255, 0.80);
}

.best-item-cnt p span {
  font-weight: 700;
  padding-left: 5px;
}

.best-bord2 {
  display: none;
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
  text-align: center;
  position: absolute;
  width: 120px;
  background: linear-gradient(95deg, #DF0746 0.24%, #CF02BB 67.05%, #C700F5 99.06%);
  padding: 7px 12px;
  position: absolute;
  top: 9px;
  left: -38px;
  transform: rotate(-36deg);
}

.pagination-wrap {
  display: grid;
  grid-template-columns: 30% auto;
  align-items: center;
  margin-top: 54px;
}

.pagination-left h3 {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.30);
}

.pagination-right ul {
  display: flex;
  align-items: center;
  column-gap: 22px;
  justify-content: flex-end;
}

.pagination-right ul li a {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.30);

}

.pagination-right ul li svg {
  opacity: 0.3;
  width: 44px;
  height: 44px;
}

#svg-act {
  opacity: 1;
}

.pagi-act {
  font-weight: 700 !important;
  color: #000000 !important;
}

/* Tailwind paginator template (vendor/pagination/tailwind.blade.php) — generates
   .blog-pg-* classes; same look as blog list pagination so listings match.
   Wrapper styles below center the paginator under the grid (not in the right
   half) and keep the "Showing X to Y" info under the buttons. */
.pagination-wrap:has(> .pagination-right > nav) {
  display: block;
  margin-top: 32px;
  padding: 16px 0;
}
.pagination-right:has(> nav) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.pagination-right nav {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}
.blog-pg-info {
  font-size: 13px;
  color: #888;
  margin: 0;
  text-align: center;
}
.blog-pg-link,
.blog-pg-active,
.blog-pg-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.2s ease;
  padding: 0 12px;
  text-decoration: none;
}
.blog-pg-active {
  background: #1a1a2e;
  color: #fff;
  border-color: #1a1a2e;
  font-weight: 700;
}
.blog-pg-disabled {
  color: #ccc;
  cursor: default;
  background: #fafafa;
}
.blog-pg-link:hover {
  background: #f0f0f0;
  border-color: rgba(0,0,0,0.12);
  color: #1a1a2e;
}
.blog-pg-dots {
  padding: 0 4px;
  color: #999;
  font-size: 14px;
}

/*==footer-area==*/
/* ============================================================
   FOOTER — complete redesign
   ============================================================ */

/* Root */
.ft-root {
  background: #1a1a2e;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent 0%, #B48350 40%, #DF0746 70%, transparent 100%) 1;
}

/* ---- TOP BAND ---- */
.ft-top {
  padding: 48px 0 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ft-top-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.ft-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ft-logo-link {
  display: inline-block;
  transition: opacity 0.2s ease;
}

.ft-logo-link:hover {
  opacity: 0.8;
}

.ft-logo-img {
  max-height: 40px;
  width: auto;
  display: block;
}

.ft-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.03em;
  line-height: 1.5;
  max-width: 240px;
}

/* Nav */
.ft-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
}

.ft-nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  position: relative;
}

.ft-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #B48350, #D4A46A);
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.ft-nav a:hover {
  color: #B48350;
}

.ft-nav a:hover::after {
  width: 100%;
}

/* Social */
.ft-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.ft-social-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.30);
}

.ft-social-icons {
  display: flex;
  gap: 8px;
}

.ft-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.72);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ft-social-btn:hover {
  border-color: rgba(180,131,80,0.5);
  background: rgba(180,131,80,0.08);
  color: #B48350;
}

/* ---- CITIES SECTION ---- */
.ft-cities-section {
  padding: 36px 0 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ft-section-heading {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.60);
  margin-bottom: 20px;
}

.ft-cities-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  line-height: 2;
}

.ft-city-link {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.ft-city-link:hover {
  color: #B48350;
}

.ft-city-sep {
  color: rgba(255,255,255,0.15);
  margin: 0 8px;
  font-size: 12px;
  user-select: none;
}

/* ---- DISCLAIMER ---- */
.ft-disclaimer {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ft-disclaimer p {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

/* ---- BOTTOM BAR ---- */
.ft-bottom {
  padding: 16px 0;
}

.ft-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Copyright + credit */
.ft-copy {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.58);
}

.ft-copy a {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  transition: color 0.2s ease;
}

.ft-copy a:hover {
  color: #B48350;
}

.ft-copy-sep {
  color: rgba(255,255,255,0.18);
}

.ft-credit {
  color: rgba(255,255,255,0.58);
}

.ft-credit a {
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}

/* Lang picker wrapper */
.ft-bottom-center {
  flex-shrink: 0;
}

/* Footer links */
.ft-links {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.ft-links a {
  font-size: 11px;
  color: rgba(255,255,255,0.62);
  transition: color 0.2s ease;
}

.ft-links a:hover {
  color: rgba(255,255,255,0.65);
}

.ft-links-sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.12);
  display: block;
  flex-shrink: 0;
}

/* ---- LANG PICKER (preserved, styled for dark bar) ---- */
.custom-lang-picker {
  position: relative;
  max-width: 160px;
  user-select: none;
}

.custom-lang-picker__selected {
  font-weight: 500;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.14);
  padding: 7px 36px 7px 10px;
  cursor: pointer;
  display: flex;
  column-gap: 8px;
  align-items: center;
  position: relative;
  background: rgba(255,255,255,0.04);
  transition: border-color 0.2s ease;
}

.custom-lang-picker__selected:hover {
  border-color: rgba(180,131,80,0.4);
}

.custom-lang-picker__selected::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  width: 14px;
  height: 8px;
  background: url('images/top-angle.svg') no-repeat center / contain;
  opacity: 0.5;
}

.custom-lang-picker__dropdown {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 6px);
  background: #22223a;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.4);
  max-height: 180px;
  overflow-y: auto;
  display: none;
  z-index: 100;
}

.custom-lang-picker__option {
  font-weight: 500;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  column-gap: 8px;
  transition: background 0.15s ease;
}

.custom-lang-picker__option:hover {
  background: rgba(255,255,255,0.06);
}

.custom-lang-picker__option.active {
  background: linear-gradient(95deg, rgba(223,7,70,0.25) 0%, rgba(199,0,245,0.25) 100%);
  color: #ffffff;
}

.custom-lang-picker__flag {
  width: 18px;
  vertical-align: middle;
}

.custom-lang-picker__arrow {
  border: solid rgba(255,255,255,0.4);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-left: 8px;
}

.custom-lang-picker__arrow.open {
  transform: rotate(-135deg);
}

.vm-btn7 {
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  margin-top: 0;
  order: 1;
  text-decoration: underline;
  text-decoration-thickness: 2px;
 text-underline-offset: 5px;
}

.toggle-dropdown {
  width: 100%;
  overflow: hidden;
}

.toggle-header {
  border-radius: 9px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #FFF;
  cursor: pointer;
  padding: 12px;
  position: relative;
}

.toggle-header ul {
  display: grid;
  grid-template-columns: 60% auto;
  align-items: center;
  justify-content: space-between;
}

.toggle-header ul li:nth-of-type(1) {
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.toggle-header .toggle-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

.toggle-header.open .toggle-arrow {
  transform: translateY(-50%) rotate(180deg);
  color: #b63b4d;
}

.toggle-content {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}

.mobil-filter-wrapper {
  display: none;
}

.mobil-filter-dropdown {
  display: none;
}

.countries-close-btn {
  display: none;
}

.toggle-content-inner > .main-content-left {
  display: none;
}



.splide-slider {
  width:100%;
  overflow:visible;
  /*! padding: 0 10px; */
}

.splide__slide img{
  width:100%;
}

/* arrows */
.custom-arrows{
  display:flex;
  gap:20px;
  margin-top:15px;
  justify-content:center;
  display: none;
}

.custom-arrows button{
  background:#333;
  color:#fff;
  border:none;
  border-radius:50%;
  width:50px;
  height:50px;
  font-size:24px;
  cursor:pointer;
}

.splide__pagination {
  padding: 0;
  position: initial;
  margin-top: 20px;
  column-gap: 10px;
  display: none;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  display: block;
  border-radius: 50%;
  width: 20px !important;
  height: 20px;
  margin: 0;
  opacity: .7;
  padding: 0;
  position: relative;
  transition: transform .2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: red;
  transform: initial;
  z-index: 1;
}

.stories-mobil-slider {
    display: none;
}

/*===detalish-page===*/
.thumbnial-area .container,
.angels-area .container,
.information-area .container,
.review-area .container {
  max-width: 1280px;
}

.thumbnial-area {
  padding: 30px 0 35px 0;
}

.profile-badges {
  position: absolute;
  left: 14px;
  top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.profile-badges .best-badge {
  width: 32px;
  height: 32px;
}

.profile-badges .best-badge::before {
  font-size: 14px;
}

.profile-badges .best-badge::after {
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  margin-left: 8px;
}

.slider-container {
  display: flex;
  flex-direction: row;
  column-gap: 25px;
}

.main-image {
  height: 500px;
  overflow: hidden;
  position: relative;
  flex: 0 0 73%;
  cursor: grab;
  border-radius: 20px;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s ease;
}

.main-image img.slide-left {
  transform: translateX(-100%);
}

.main-image img.slide-right {
  transform: translateX(100%);
}

.main-image img.active {
  transform: translateX(0);
}

.thmp-inner {
  position: relative;
  flex: 0 0 25%;
  height: 500px;
}

.thumbnail-container {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  overflow-y: auto;
  overflow-x: hidden;
  user-select: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
  height: 100%;
}

.thumbnail-container::-webkit-scrollbar {
  display: none;
}

.thumbnail {
  width: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: border 0.3s ease;
  flex-shrink: 0;
  height: 32%;
  border-radius: 15px;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
  transition: opacity 0.3s ease;
  display: none;
}

.prev-button {
  left: 10px;
}

.next-button {
  right: 10px;
}

.thumb-nav-button {
  border: none;
  width: 100%;
  cursor: pointer;
  height: 50px;
  border-radius: 0;
  position: absolute;
  left: 0;
  z-index: 5;
}

.thumb-prev-button {
  top: -1px;
  background: linear-gradient(to bottom, #EEEEF3 40%, rgba(238,238,243,0) 100%);
}

.thumb-next-button {
  bottom: -1px;
  background: linear-gradient(to top, #EEEEF3 40%, rgba(238,238,243,0) 100%);
}

.image-counter {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

.desk-none {
  display: none;
}

/*==angels-section==*/
.angels-area {
  padding-bottom: 30px;
}

.angels-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.angels-content {
  flex: 1;
}

.angels-left h4 {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.80);
}

.angels-left h2 {
  font-weight: 600;
  font-size: 24px;
  color: #000000;
  margin-top: 2px;
}

.angels-agency-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 5px;
  margin-top: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.angels-agency-link:hover .agency-name {
  text-decoration: underline;
}

.angels-agency-link .agency-label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.45);
}

.angels-agency-link .agency-name {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}

.angels-pg {
  margin-top: 20px;
}

.angels-pg p {
  font-weight: 400;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.50);
  margin-top: 12px;
  line-height: 1.6;
}

/* Contact card */
.angels-contact-card {
  flex: 0 0 280px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
}

.angels-booking-btn {
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  border-radius: 12px;
  background: #B48350;
  padding: 14px 0;
  border: none;
  margin-bottom: 16px;
}

.angels-contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.angels-contact-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.03);
  text-decoration: none;
  transition: background 0.2s;
}

.angels-contact-links a:hover {
  background: rgba(180, 131, 80, 0.1);
}

.angels-contact-links a img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.angels-contact-links a span {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.angels-card-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.angels-card-actions button {
  flex: 1;
  font-weight: 500;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  border-radius: 8px;
  background: transparent;
  padding: 8px 0;
  border: 1px solid rgba(0, 0, 0, 0.10);
  transition: background 0.2s;
}

.angels-card-actions button:hover {
  background: rgba(0, 0, 0, 0.04);
}

/*==information-section==*/
.information-area {
  padding-bottom: 35px;
}

.information-main {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 25px;
}

.information-box-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  padding: 18px 25px;
}

.information-box-title h2 {
  font-weight: 600;
  font-size: 22px;
  color: #000000;
}

.information-box {
  border-radius: 20px;
  background: #fff;
}

.information-item-wrap {
  padding: 16px 20px;
}

.information-item-wrap ul,
.information-item-wrap dl {
  display: grid;
  grid-template-columns: 60% auto;
  align-items: center;
  row-gap: 14px;
  margin: 0;
  padding: 0;
}

.information-item-wrap ul li,
.information-item-wrap dl .information-item {
  display: grid;
  grid-template-columns: 45px auto;
  align-items: center;
  column-gap: 12px;
}

.information-img img {
  max-width: 45px;
}

.information-text h4,
.information-text dt {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.50);
  letter-spacing: -0.75px;
}

.information-text h3,
.information-text dd {
  font-weight: 600;
  font-size: 15px;
  color: #000000;
  margin-top: 3px;
  margin-left: 0;
}

.information-text h3 a.profile-location-link,
.information-text dd a.profile-location-link,
a.profile-location-link,
a.profile-location-link:visited {
  color: #B48350;
  font-weight: 600;
  transition: color 0.2s ease;
  text-decoration: none;
}
.information-text h3 a.profile-location-link:hover,
.information-text dd a.profile-location-link:hover,
a.profile-location-link:hover {
  color: #8a6237;
  text-decoration: underline;
}

.information-box2 {
  margin-top: 20px;
}

.information-box2 .information-box-title {
  border-bottom: none;
}

.information-box2 ul {
  display: grid;
  grid-template-columns: 60% auto;
}

.working-hours-wrap {
  padding: 0 20px 20px;
}

/* Calendar nav */
.wh-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.wh-cal-month {
  font-weight: 700;
  font-size: 15px;
  color: #000;
}

.wh-nav-btn {
  background: none;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(0,0,0,0.50);
  transition: all 0.15s;
}

.wh-nav-btn:hover {
  background: rgba(0,0,0,0.04);
  color: #000;
}

/* Calendar grid */
.wh-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.wh-cal-dayname {
  font-weight: 600;
  font-size: 11px;
  color: rgba(0,0,0,0.35);
  text-transform: uppercase;
  padding: 4px 0 8px;
}

.wh-cal-empty {
  padding: 8px 0;
}

.wh-cal-day {
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: #B48350;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
}

.wh-cal-day:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(180,131,80,0.30);
}

.wh-cal-off {
  background: rgba(0,0,0,0.04);
  color: rgba(0,0,0,0.25);
}

.wh-cal-off:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.wh-cal-today {
  background: #1a1a2e;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(26,26,46,0.25);
}

.wh-cal-past {
  background: rgba(180,131,80,0.15);
  color: rgba(180,131,80,0.50);
}

.wh-cal-selected {
  outline: 2px solid #1a1a2e;
  outline-offset: 1px;
  transform: scale(1.1);
}

/* Detail panel */
.wh-detail {
  margin-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 16px;
}

.wh-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.wh-detail-date {
  font-weight: 700;
  font-size: 14px;
  color: #000;
}

.wh-detail-hours {
  font-weight: 500;
  font-size: 13px;
  color: #B48350;
}

.wh-detail-closed {
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.30);
}

/* Time slots */
.wh-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.wh-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 4px;
  border: 1px solid rgba(180,131,80,0.20);
  border-radius: 8px;
  background: rgba(180,131,80,0.04);
}

.wh-slot--past {
  opacity: 0.35;
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.06);
}

.wh-slot-time {
  font-size: 11px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
}

.wh-slot-status {
  font-size: 10px;
  font-weight: 500;
  color: #B48350;
  margin-top: 2px;
}

.wh-slot--past .wh-slot-status {
  color: rgba(0,0,0,0.30);
}

.duration-box-wrap {
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(15.949999809265137px);
  padding: 5px 0;
  margin-top: 18px;
}

.duration-flex {
  display: grid;
  grid-template-columns: 44% 40% auto;
  padding: 0 42px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.duration-flex:last-child {
  border-bottom: 0;
}

.duration-box-wrap2 .duration-flex {
  grid-template-columns: 43% 43% auto;
}

.duration-flex1 {
  border-radius: 27px;
  background: #B48350;
  padding: 0 42px;
}

.duration-item {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.50);
  padding: 12px 0;
}

.duration-item img {
  width: 18px;
}

.duration-flex1 .duration-item {
  color: #ffffff;
}

.review-area {
  padding-bottom: 50px;
}

.reviews-empty {
  color: #999;
  text-align: center;
  padding: 28px 24px;
  margin: 0;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px dashed rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}

.related-profiles-area {
  padding: 30px 0 50px;
}
.related-profiles-area .container {
  max-width: 1280px;
}
.related-profiles-title {
  padding: 18px 25px;
  border-bottom: 1px solid rgba(180, 131, 80, 0.2);
  margin-bottom: 20px;
}
.related-profiles-title h2 {
  font-size: 18px;
  color: #B48350;
  font-weight: 600;
}

.review-title {
  padding: 18px 25px;
}

.review-title h2 {
  font-weight: 700;
  font-size: 22px;
  color: #000000;
}

.review-main {
  border-radius: 20px;
  background: #ffffff;
}

.Reviews-box-wrap {
  border-top: 1px solid rgba(0, 0, 0, 0.10);
  padding: 20px 25px 18px 25px;
}

.Reviews-box-flex {
  display: grid;
  grid-template-columns: 60% auto;
  justify-content: space-between;
}

.Reviews-box-left ul {
  display: grid;
  grid-template-columns: 46px auto;
  align-items: center;
  column-gap: 12px;
}

.Reviews-box-left ul li:nth-of-type(1) img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.Reviews-box-left ul li:nth-of-type(2) h4 {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
}

.Reviews-box-left ul li:nth-of-type(2) img {
  max-width: 118px;
  margin-top: 5px;
}

.time-text h4 {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.35);
}

.reviews-text-btm {
  margin-top: 12px;
}

.service-review {
  margin-top: 12px;
}

.reviews-text-btm h3 {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.35);
}

.reviews-text-btm h4 {
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  margin-top: 4px;
}

.reviews-text-btm p {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.70);
  line-height: 1.5;
}

.review-anon-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.30);
  font-size: 18px;
}

.reviewer-link {
  color: inherit;
  text-decoration: none;
  transition: color .15s;
}
.reviewer-link:hover {
  color: #B48350;
  text-decoration: underline;
}

.review-stars-display {
  display: flex;
  gap: 2px;
  margin-top: 5px;
}

.review-stars-display i {
  font-size: 14px;
  color: #f5a623;
}

.review-helpful {
  display: flex;
  align-items: center;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.review-helpful-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 4px;
  font-size: 13px;
  line-height: 1;
  color: rgba(0,0,0,0.55);
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  transition: color .12s ease;
  -webkit-tap-highlight-color: transparent;
}

.review-helpful-btn i {
  font-size: 15px;
  line-height: 1;
}

.review-helpful-btn:hover {
  color: rgba(0,0,0,0.85);
  background: transparent;
}

.review-helpful-btn.is-voted {
  color: #B48350;
}

.review-helpful-btn.is-voted:hover {
  color: #8c5e34;
}

/* Review Summary */
.review-summary {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 25px;
  border-bottom: 1px solid rgba(0,0,0,0.10);
}
.review-summary-left {
  text-align: center;
  min-width: 100px;
}
.review-summary-avg {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}
.review-summary-left .review-stars-display {
  justify-content: center;
  margin-top: 6px;
}
.review-summary-count {
  font-size: 13px;
  color: rgba(0,0,0,0.45);
  margin-top: 4px;
}
.review-summary-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-bar-label {
  font-size: 13px;
  color: rgba(0,0,0,0.50);
  width: 12px;
  text-align: right;
}
.review-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(0,0,0,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.review-bar-fill {
  height: 100%;
  background: #f5a623;
  border-radius: 4px;
  transition: width 0.3s ease;
}
.review-bar-count {
  font-size: 12px;
  color: rgba(0,0,0,0.35);
  width: 20px;
}

/* Meeting Date */
.review-meeting-date {
  font-size: 12px;
  color: rgba(0,0,0,0.40);
  margin-bottom: 2px;
  text-align: right;
}
.review-meeting-date i {
  margin-right: 4px;
  font-size: 11px;
}

/* Escort Reply */
.review-reply {
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(180,131,80,0.06);
  border-left: 3px solid #B48350;
  border-radius: 0 8px 8px 0;
}
.review-reply-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #B48350;
  margin-bottom: 6px;
}
.review-reply-header i {
  font-size: 12px;
}
.review-reply-time {
  font-weight: 400;
  color: rgba(0,0,0,0.35);
  margin-left: auto;
  font-size: 12px;
}
.review-reply-text {
  font-size: 14px;
  color: rgba(0,0,0,0.70);
  line-height: 1.5;
  margin: 0;
}

.detalish-btm-area {
  background: #ffffff;
  margin-top: 120px;
  padding: 75px 0;
}

.detalish-btm-area {
  margin-top: 40px;
  padding: 38px 0;
}

.modal-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  padding: 32px 36px 28px 36px;
}

.modal-title h2 {
  font-weight: 700;
  font-size: 30px;
  color: #000000;
}

.modal-input-wrap {
  padding: 28px 36px;
}

.modal-input-space {
  margin-top: 23px;
}

.modal-input-flex {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 20px;
}

.modal-input-wrap > * + * {
  margin-top: 18px;
}

.modal-input h4 {
  font-weight: 700;
  font-size: 16px;
  color: #000000;
}

.modal-input h4 span {
  color: rgba(0, 0, 0, 0.50);
}

.modal-input input {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.40);
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.20);
  background: #ffffff;
  padding: 14px 20px;
  margin-top: 8px;
  outline: none;
  width: 100%;
}

.modal-input input::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.40);
}

.modal-input textarea {
  font-family: inherit;
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.40);
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.20);
  background: #ffffff;
  padding: 20px;
  width: 100%;
  margin-top: 8px;
  outline: none;
}

.modal-input textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.40);
}

.modal-submit button {
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  border: none;
  border-radius: 15px;
  background: #B48350;
  padding: 18px 50px;
  margin-top: 27px;
  transition: 0.2s all ease;
  cursor: pointer;
}

.modal-submit button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180,131,80,0.3);
}

.modal-ad {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  z-index: 1100;
  overflow-y: auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}

.modal-ad.active-ad {
  opacity: 1;
  visibility: visible;
}

.modal-box-ad {
  background: #fff;
  max-width: 938px;
  width: 90%;
  margin: auto;
  border-radius: 20px;
  position: relative;
  box-shadow: 12px 12px 24px rgba(0, 0, 0, .25);

  transform: translateY(-60px);
  opacity: 0;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1),
    opacity .45s ease;
}

.modal-ad.active-ad .modal-box-ad {
  transform: translateY(0);
  opacity: 1;
}

.modal-close-ad img {
 max-width: 40px;
 cursor: pointer;
}

.modal-dropzone {
  border: 2px dashed rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
  background: rgba(0, 0, 0, 0.02);
}

.modal-dropzone:hover {
  border-color: rgba(180, 131, 80, 0.4);
  background: rgba(180, 131, 80, 0.04);
}

.modal-dropzone.dragover {
  border-color: #B48350;
  background: rgba(180, 131, 80, 0.08);
}

.modal-dropzone svg {
  color: rgba(0, 0, 0, 0.25);
  margin-bottom: 8px;
}

.modal-dropzone p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
}

.modal-dropzone span {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.35);
}

.modal-dropzone-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.modal-dropzone-preview .preview-item {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-dropzone-preview .preview-item img,
.modal-dropzone-preview .preview-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-dropzone-preview .preview-item .preview-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  padding: 0;
}

/*==agency-page==*/
.agency-page-title {
  margin-bottom: 24px;
}

.agency-page-title h1 {
  font-weight: 700;
  font-size: 28px;
  color: #000;
}

.agency-page-title p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 4px;
}

.agency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.agency-card {
  display: block;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
  text-decoration: none;
  color: #000;
}

.agency-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  text-decoration: none;
  color: #000;
}

.agency-card:visited,
.agency-card:focus,
.agency-card:active { text-decoration: none; color: #000; }
.agency-card h3,
.agency-card span,
.agency-card strong { color: inherit; }
.agency-card .agency-card-btn,
.agency-card .agency-card-btn span,
.agency-card .agency-card-btn strong { color: #fff; }

.agency-card-cover {
  height: 80px;
  background: linear-gradient(135deg, #1B1F3D 0%, #2a3158 100%);
  position: relative;
}

.agency-card-cover--gold {
  background: linear-gradient(135deg, #8B6914 0%, #B48350 100%);
}

.agency-card-cover--dark {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.agency-card-cover--wine {
  background: linear-gradient(135deg, #4a1942 0%, #6b2d5b 100%);
}

.agency-card-body {
  padding: 0 16px 16px;
  position: relative;
}

.agency-card-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: -26px;
  position: relative;
  z-index: 1;
}

.agency-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
}
.agency-card-logo-initials {
  color: #fff;
  font-family: 'HelveticaNowDisplay', sans-serif;
}
.agency-card-logo-initials span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}

.agency-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.agency-card-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(180, 131, 80, 0.1);
  color: #B48350;
  margin-top: -18px;
}

.agency-card-badge--premium {
  background: rgba(180, 131, 80, 0.15);
  color: #96682e;
}

.agency-card-info h3 {
  font-weight: 600;
  font-size: 15px;
  color: #000;
  margin-bottom: 3px;
}

.agency-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 6px 0 14px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.65);
}

.agency-card-meta span { color: rgba(0, 0, 0, 0.65); }

.agency-card-location,
.agency-card-models {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.agency-card-models::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  margin-right: 6px;
  flex-shrink: 0;
}

.agency-card-location svg,
.agency-card-models svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.agency-card-models strong { font-weight: 700; color: #000; }

.agency-card-btn {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: #B48350;
  border-radius: 8px;
  padding: 9px 0;
  text-decoration: none;
  transition: all 0.2s ease;
}

.agency-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180,131,80,0.3);
}
}
/*==agency-detail-page==*/
.agency-detail-hero {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 24px;
}

.agency-detail-cover {
  height: 180px;
  background: linear-gradient(135deg, #1B1F3D 0%, #2a3158 100%);
}

.agency-detail-cover--gold {
  background: linear-gradient(135deg, #8B6914 0%, #B48350 100%);
}

.agency-detail-cover--dark {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.agency-detail-cover--wine {
  background: linear-gradient(135deg, #4a1942 0%, #6b2d5b 100%);
}

.agency-detail-header {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 18px 24px 20px;
  margin-top: -26px;
  position: relative;
  z-index: 1;
}

.agency-detail-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.agency-detail-logo img {
  width: 36px;
  height: 36px;
  opacity: 0.6;
}

.agency-detail-info {
  padding-bottom: 4px;
}

.agency-detail-info h1 {
  font-weight: 700;
  font-size: 24px;
  color: #000;
}

.agency-detail-location {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
}

.agency-detail-location img {
  width: 13px;
  height: 13px;
  opacity: 0.4;
}

.agency-detail-location span {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}

.agency-detail-body {
  margin-bottom: 30px;
}

.agency-detail-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.agency-detail-content {
  flex: 1;
}

.agency-detail-stats {
  display: flex;
  background: #fff;
  border-radius: 14px;
  padding: 18px 0;
  margin-bottom: 20px;
}

.agency-detail-stat {
  flex: 1;
  text-align: center;
}

.agency-detail-stat + .agency-detail-stat {
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.agency-detail-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.agency-detail-stat span {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 4px;
  display: block;
}

.agency-detail-about {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
}

.agency-detail-about h2 {
  font-weight: 700;
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
}

.agency-detail-about p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
}

.agency-detail-website-btn {
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
  text-align: center;
  cursor: pointer;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 12px 0;
  margin-bottom: 16px;
  text-decoration: none;
  transition: all 0.2s;
}

.agency-detail-website-btn:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.agency-detail-models {
  margin-bottom: 30px;
}

.agency-detail-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.agency-detail-section-title h2 {
  font-weight: 700;
  font-size: 20px;
  color: #000;
}

.agency-detail-count {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.4);
}

/*==terms-page==*/
.terms-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 0 60px;
}
.terms-header {
  margin-bottom: 32px;
}
.terms-header h1 {
  font-weight: 700;
  font-size: 32px;
  color: #1B1F3D;
}
.terms-updated {
  font-size: 13px;
  color: #999;
  margin-top: 6px;
}
.terms-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  padding: 18px 20px;
  background: #f8f7f5;
  border-radius: 12px;
}
.terms-nav a {
  font-size: 13px;
  color: #B48350;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.terms-nav a:hover {
  background: rgba(180, 131, 80, 0.1);
  text-decoration: none;
}
.terms-content section {
  margin-bottom: 32px;
  scroll-margin-top: 100px;
}
.terms-content h2 {
  font-family: 'HelveticaNowDisplay', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1B1F3D;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}
.terms-content h3 {
  font-family: 'HelveticaNowDisplay', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #333;
  margin-top: 18px;
  margin-bottom: 8px;
}
.terms-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}
.terms-content ul {
  margin: 8px 0 16px 0;
  padding-left: 20px;
}
.terms-content ul li {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 4px;
}
.terms-content a {
  color: #B48350;
  text-decoration: none;
}
.terms-content a:hover {
  text-decoration: underline;
}
.terms-contact-list {
  list-style: none;
  padding-left: 0;
}
.terms-contact-list li {
  padding: 6px 0;
}
@media (max-width: 680px) {
  .terms-page {
    padding: 24px 0 40px;
  }
  .terms-header h1 {
    font-size: 26px;
  }
  .terms-nav {
    gap: 4px;
    padding: 14px;
  }
  .terms-nav a {
    font-size: 12px;
    padding: 3px 8px;
  }
}

/*==contact-page==*/
.contact-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0 60px;
}

.contact-hero {
  text-align: center;
  margin-bottom: 40px;
}

.contact-hero h1 {
  font-weight: 700;
  font-size: 32px;
  color: #000;
}

.contact-hero p {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-captcha {
}
.contact-captcha h4 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0,0,0,0.55);
}
.contact-captcha h4 i {
  margin-right: 6px;
  color: rgba(0,0,0,0.30);
}
.contact-captcha h4 strong {
  color: #000;
  font-weight: 700;
}
.contact-captcha input {
  max-width: 180px;
}

.contact-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form-wrap h2 {
  font-weight: 700;
  font-size: 20px;
  color: #000;
  margin-bottom: 20px;
}

.contact-info-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-info-wrap h2 {
  font-weight: 700;
  font-size: 20px;
  color: #000;
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-item:last-of-type {
  border-bottom: none;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(180, 131, 80, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #B48350;
  font-size: 16px;
}

.contact-info-item h4 {
  font-weight: 600;
  font-size: 16px;
  color: #000;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 3px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-item a:hover {
  color: #B48350;
}

.contact-social {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-social h4 {
  font-weight: 600;
  font-size: 14px;
  color: #000;
  margin-bottom: 10px;
}

.contact-social-links {
  display: flex;
  gap: 8px;
}

.contact-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.4);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
}

.contact-social-links a:hover {
  background: rgba(180, 131, 80, 0.1);
  color: #B48350;
}

/* Contact Captcha */
.contact-captcha {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(180,131,80,0.04);
  border-radius: 10px;
  border: 1px solid rgba(180,131,80,0.1);
}
.contact-captcha h4 { font-size: 14px; font-weight: 500; color: rgba(0,0,0,0.7); white-space: nowrap; }
.contact-captcha h4 i { color: #B48350; margin-right: 6px; }
.contact-captcha input {
  width: 100px;
  padding: 9px 12px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  text-align: center;
}
.contact-captcha input:focus { border-color: #B48350; }

/* Contact Alerts */
.contact-alert {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-alert-success {
  background: rgba(16,185,129,0.08);
  color: #059669;
  border: 1px solid rgba(16,185,129,0.15);
}
.contact-alert-error {
  background: rgba(239,68,68,0.08);
  color: #dc2626;
  border: 1px solid rgba(239,68,68,0.15);
  flex-wrap: wrap;
}
.contact-disclaimer {
  text-align: center;
  font-size: 13px;
  color: rgba(0,0,0,0.35);
  margin-top: 30px;
}

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-captcha { flex-direction: column; align-items: stretch; }
  .contact-captcha input { width: 100%; }
}

/* Admin: Contact Messages Panel */
.adm-cm-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 12px;
  transition: box-shadow 0.2s;
}
.adm-cm-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.adm-cm-unread {
  border-left: 3px solid #B48350;
  background: rgba(180,131,80,0.02);
}
.adm-cm-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 12px;
}
.adm-cm-sender {
  display: flex;
  align-items: center;
  gap: 10px;
}
.adm-cm-sender i { font-size: 28px; color: rgba(0,0,0,0.15); }
.adm-cm-sender strong { font-size: 14px; display: block; }
.adm-cm-email { font-size: 12px; color: rgba(0,0,0,0.4); }
.adm-cm-meta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.adm-cm-date { font-size: 12px; color: rgba(0,0,0,0.35); }
.adm-cm-status {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
}
.adm-cm-status-new { background: rgba(180,131,80,0.1); color: #B48350; }
.adm-cm-status-read { background: rgba(59,130,246,0.1); color: #3b82f6; }
.adm-cm-status-replied { background: rgba(16,185,129,0.1); color: #059669; }
.adm-cm-status-spam { background: rgba(239,68,68,0.1); color: #dc2626; }
.adm-cm-subject {
  font-size: 14px;
  margin-bottom: 6px;
}
.adm-cm-body {
  font-size: 13px;
  color: rgba(0,0,0,0.5);
  line-height: 1.5;
  margin-bottom: 10px;
}
.adm-cm-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.adm-cm-full-body {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.adm-cm-full-content {
  font-size: 14px;
  color: rgba(0,0,0,0.7);
  line-height: 1.6;
  white-space: pre-wrap;
  margin-bottom: 10px;
}
.adm-cm-full-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: rgba(0,0,0,0.35);
}
.adm-cm-full-meta i { margin-right: 4px; }
.adm-cm-empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(0,0,0,0.25);
}
.adm-cm-empty i { font-size: 40px; margin-bottom: 12px; display: block; }

/* ── Global Search ── */
.tb-search-box {
  padding: 4px 0 10px;
  position: relative;
}
.profile-nav + .tb-search-box {
  margin-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 14px;
}
.tb-search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.tb-search-icon {
  position: absolute;
  left: 12px;
  color: rgba(0,0,0,0.3);
  font-size: 13px;
  pointer-events: none;
}
.tb-search-input {
  width: 100%;
  padding: 10px 34px 10px 36px;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 10px;
  font-size: 13px;
  font-family: 'HelveticaNowDisplay', sans-serif;
  color: rgba(0,0,0,0.75);
  outline: none;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.tb-search-input:focus {
  border-color: #B48350;
  box-shadow: 0 0 0 3px rgba(180,131,80,0.08);
}
.tb-search-input::placeholder { color: rgba(0,0,0,0.3); }
.tb-search-clear {
  display: none;
  position: absolute;
  right: 8px;
  background: none;
  border: none;
  color: rgba(0,0,0,0.3);
  cursor: pointer;
  font-size: 12px;
  padding: 4px;
}
.tb-search-clear:hover { color: rgba(0,0,0,0.6); }
.tb-search-results {
  display: none;
  position: absolute;
  top: 100%;
  left: 16px;
  right: 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.06);
  z-index: 100;
  max-height: 380px;
  overflow-y: auto;
  margin-top: -4px;
}
.tb-search-result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  text-decoration: none;
  color: inherit;
  transition: background 0.12s;
  cursor: pointer;
}
.tb-search-result-item:hover {
  background: rgba(180,131,80,0.04);
}
.tb-search-result-avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.tb-search-result-info {
  flex: 1;
  min-width: 0;
}
.tb-search-result-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #1B1F3D;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tb-search-result-sub {
  font-size: 11.5px;
  color: rgba(0,0,0,0.4);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tb-search-result-type {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 5px;
  flex-shrink: 0;
}
.tb-search-type-profile {
  background: rgba(180,131,80,0.10);
  color: #B48350;
}
.tb-search-type-agency {
  background: rgba(27,31,61,0.10);
  color: #1B1F3D;
}
.tb-search-empty {
  padding: 24px 16px;
  text-align: center;
  color: rgba(0,0,0,0.3);
  font-size: 13px;
}
.tb-search-loading {
  padding: 20px 16px;
  text-align: center;
  color: rgba(0,0,0,0.3);
  font-size: 13px;
}

/* Stories modal – hidden by default, shown via JS */
.sm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  justify-content: center;
  align-items: center;
}
.sm-overlay.sm-open {
  display: flex;
}

/* ─── SEO Content Section ───────────────────────────── */
.seo-content-section {
    padding: 32px 0 32px;
}
.seo-content-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 32px;
}
.seo-content-section .seo-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.seo-content-section .seo-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 16px;
}
.seo-content-section .seo-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2d2d44;
    margin: 20px 0 10px;
}
.seo-content-section .seo-content p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 12px;
}
.seo-content-section .seo-content a,
.seo-content-section .seo-content p a {
    color: #c9a84c !important;
    text-decoration: none !important;
}
.seo-content-section .seo-content a:hover,
.seo-content-section .seo-content p a:hover {
    text-decoration: underline !important;
    color: #c9a84c !important;
}
/* ─── SEO Cities inline list ────────────────────────── */
.seo-cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 0;
    margin-bottom: 12px;
}
.seo-cities-list h3.seo-city-item {
    display: inline;
    font-size: 0.92rem;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
}
.seo-cities-list h3.seo-city-item::after {
    content: ',\00a0';
    color: #6b7280;
}
.seo-cities-list h3.seo-city-item:last-child::after {
    content: '';
}
.seo-cities-list h3.seo-city-item a {
    color: #c9a84c !important;
    text-decoration: none !important;
    font-weight: 400;
}
.seo-cities-list h3.seo-city-item a:hover {
    text-decoration: underline !important;
}
.seo-city-count {
    color: #9ca3af;
}

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-switcher-btn {
  display: flex; align-items: center; gap: 6px;
  background: transparent; border: none; color: #fff; cursor: pointer;
  font-family: 'HelveticaNowDisplay', sans-serif; font-size: 13px; font-weight: 500;
  padding: 4px 8px; border-radius: 6px; transition: background 0.2s;
}
.lang-switcher-btn:hover { background: rgba(255,255,255,0.1); }
.lang-switcher-btn img { border-radius: 2px; }
.lang-switcher-dropdown {
  display: none !important;
  position: absolute; top: calc(100% + 6px); right: 0;
  width: 220px; max-height: 360px; background: #fff; border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15); z-index: 1000; overflow: hidden;
  flex-direction: column;
}
.lang-switcher.open .lang-switcher-dropdown { display: flex !important; }
.lang-switcher-list {
  max-height: 320px; overflow-y: auto; padding: 6px 0;
}
.lang-switcher-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  text-decoration: none; color: #1B1F3D; font-size: 14px;
  font-family: 'HelveticaNowDisplay', sans-serif; transition: background 0.15s;
}
.lang-switcher-item:hover { background: rgba(0,0,0,0.04); }
.lang-switcher-item.active { font-weight: 600; color: #B48350; }
.lang-switcher-item img { border-radius: 2px; flex-shrink: 0; }
.lang-switcher-item svg { margin-left: auto; }
.lang-switcher-item[hidden] { display: none; }

/* Mobile — wider dropdown, taller tap targets */
@media (max-width: 767px) {
  .menu-lang-wrap .lang-switcher-dropdown {
    width: 100%; right: auto; left: 0;
    max-height: 60vh;
  }
  .menu-lang-wrap .lang-switcher-list { max-height: calc(60vh - 12px); padding: 8px 0; }
  .menu-lang-wrap .lang-switcher-item { padding: 13px 16px; font-size: 15px; gap: 12px; }
  .menu-lang-wrap .lang-switcher-item img { width: 24px; height: 18px; }
}

/* Translation indicator */
.translation-indicator {
  font-size: 12px;
  color: rgba(0,0,0,0.38);
  margin-bottom: 8px;
  font-family: 'HelveticaNowDisplay', sans-serif;
}
.translation-dot { margin: 0 4px; }
.translation-toggle {
  color: #B48350;
  text-decoration: none;
  cursor: pointer;
  font-weight: 500;
}
.translation-toggle:hover { text-decoration: underline; }

/* Sort dropdown */
.sort-wrap {
  position: relative;
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Sort info tooltip — explains the premium-first tier-break */
.sort-info {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(0, 0, 0, 0.35);
  cursor: help;
  font-size: 13px;
  outline: none;
}
.sort-info:hover, .sort-info:focus { color: #B48350; }
.sort-info-tooltip {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 240px;
  padding: 10px 12px;
  background: #1B1F3D;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  pointer-events: none;
  z-index: 20;
  white-space: normal;
}
.sort-info-tooltip::after {
  content: '';
  position: absolute;
  right: 10px;
  bottom: 100%;
  border: 5px solid transparent;
  border-bottom-color: #1B1F3D;
}
.sort-info:hover .sort-info-tooltip,
.sort-info:focus .sort-info-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
}

.sort-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: #f5f5f5;
  color: #444;
  font-size: 13px;
  font-family: 'HelveticaNowDisplay', Helvetica, Arial, sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s;
}

.sort-btn:hover { border-color: #B48350; color: #B48350; }
.sort-btn svg { flex-shrink: 0; transition: transform 0.2s; }
.sort-wrap.open .sort-btn svg { transform: rotate(180deg); }

.sort-list {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  min-width: 140px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  padding: 4px 0;
  margin: 0;
  list-style: none;
  z-index: 200;
}

.sort-wrap.open .sort-list { display: block; }

.sort-list a {
  display: block;
  padding: 7px 14px;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.sort-list a:hover { background: #faf6f0; color: #B48350; }
.sort-list a.active { color: #B48350; font-weight: 600; }

/* Quick filters layout fix for sort */
.quick-filters-left {
  display: flex;
  flex-wrap: wrap;
  column-gap: 7px;
  row-gap: 7px;
  align-items: center;
  flex: 1;
  min-width: 0;
}

/* Best-img picture support — fixed height keeps cards compact regardless of source photo dimensions */
.best-img {
  height: 320px;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}
.best-img img,
.best-img picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.best-img picture {
  display: block;
  width: 100%;
  height: 100%;
}
/* Force the cards grid to honour the viewport (some ancestor was leaking desktop sidebar column) */
.best-item-main { width: 100%; max-width: 100%; box-sizing: border-box; }
.best-item { width: 100%; box-sizing: border-box; min-width: 0; }
/* Smaller cards on smaller viewports */
@media (max-width: 1199px) { .best-img { height: 280px; } }
@media (max-width: 991px)  { .best-img { height: 260px; } }
@media (max-width: 767px)  { .best-img { height: 240px; } }
@media (max-width: 480px)  { .best-img { height: 220px; } }

/* Video in gallery */
.mp-video-thumb {
  position: relative;
  width: 100%;
  height: 100%;
}

.mp-video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mp-video-play-icon,
.thumb-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  pointer-events: none;
}

.thumbnail-wrap {
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.thumbnail-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* Main video in gallery */
.main-image video {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

/* === Component refactor: extracted inline styles === */
.tb-breadcrumbs ol{list-style:none;display:flex;flex-wrap:wrap;gap:4px;margin:0;padding:0;}
.tb-breadcrumbs li{display:flex;align-items:center;gap:4px;}
.tb-breadcrumbs a{color:#666;text-decoration:none;}
.tb-breadcrumbs-separator{color:#ccc;}
.tb-breadcrumbs-current{color:#333;}
.review-avatar-fallback{width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:16px;font-weight:700;flex-shrink:0;}
.review-member-badge{display:inline-block;background:linear-gradient(135deg,#B48350,#c99660);color:#fff;font-size:10px;padding:2px 7px;border-radius:8px;margin-left:6px;font-weight:600;vertical-align:middle;}
.review-text-original{display:none;}
.translation-indicator{text-align:right;margin-top:4px;}
.translation-indicator i{font-size:10px;color:rgba(0,0,0,0.25);margin-right:3px;}

/* === Dashboard refactor: extracted inline styles === */
.is-hidden{display:none !important;}
.mt-20{margin-top:20px;}
.mt-12{margin-top:12px;}
/* Referral / invite card body padding */
.dash-card-body-padded{padding:16px 20px;}
/* Referral link hint text */
.dash-referral-hint{color:rgba(0,0,0,0.5);font-size:13px;margin-bottom:12px;}
/* Referral link row (flex row) */
.dash-referral-row{display:flex;gap:8px;align-items:center;}
/* Referral link input overrides */
.dash-referral-input{flex:1;font-size:13px;background:rgba(0,0,0,0.03);border:1px solid rgba(0,0,0,0.08);border-radius:8px;padding:10px 14px;}
/* Disabled date-of-birth input */
.dash-input-disabled{background:#f5f5f5;color:#888;cursor:not-allowed;}
/* Bio translation card subtitle */
.dash-card-subtitle{font-size:13px;color:rgba(0,0,0,0.45);margin-top:4px;}
/* Verification code box */
.dash-verify-code-box{background:#f8f4ff;border:2px dashed #9b59b6;border-radius:10px;padding:14px 20px;margin:10px 0 6px;text-align:center;}
.dash-verify-code-label{font-size:.85rem;color:#666;}
.dash-verify-code-value{font-size:1.5rem;font-weight:700;letter-spacing:2px;color:#9b59b6;}
/* Hidden message (verify call, review reply/report forms) */
.dash-msg-hidden{display:none;margin-top:8px;}
/* Activity modal */
.dash-activity-modal{width:520px;}
.dash-activity-modal-body{max-height:60vh;overflow-y:auto;padding-bottom:8px;}
.dash-activity-empty{text-align:center;padding:24px;color:rgba(0,0,0,0.3);font-size:13px;}
/* Overview empty-bookings block */
.dash-empty-bookings{text-align:center;padding:24px 0;color:rgba(0,0,0,0.35);font-size:13px;}
.dash-empty-bookings-icon{font-size:24px;margin-bottom:8px;display:block;opacity:0.3;}
/* Overview show-more row */
.dash-show-more-row{text-align:center;padding:8px 0 12px;}
.dash-show-more-link{color:#b4834f;font-size:13px;font-weight:600;text-decoration:none;}
/* Country bar empty */
.dash-country-empty{color:rgba(0,0,0,0.35);font-size:13px;text-align:center;padding:20px 0;}
/* Review report submit button */
.dash-btn-report-submit{background:#e74c3c;color:#fff;border-color:#e74c3c;}
/* Review no-reviews text */
.dash-no-reviews{color:#888;text-align:center;padding:1.5rem 0;}
/* Agency empty-profiles block */
.dash-empty-profiles{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  text-align:center;
  padding:48px 24px;
  background:#fafafa;
  border:1px dashed rgba(0,0,0,0.10);
  border-radius:12px;
}
.dash-agency-context-banner{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
  padding:12px 16px;
  background:linear-gradient(90deg, rgba(180,131,80,0.10), rgba(180,131,80,0.04));
  border:1px solid rgba(180,131,80,0.25);
  border-radius:10px;
}
.dash-agency-context-info{
  display:flex;
  align-items:center;
  gap:10px;
  color:#1B1F3D;
  font-size:14px;
  font-weight:600;
}
.dash-agency-context-info i{
  color:#B48350;
  font-size:18px;
}
.dash-modal-hint-text{
  display:block;
  margin-top:6px;
  font-size:12px;
  color:rgba(0,0,0,0.45);
}
.dash-modal-info-box{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-top:18px;
  padding:12px 14px;
  background:rgba(180,131,80,0.08);
  border:1px solid rgba(180,131,80,0.20);
  border-radius:8px;
  color:rgba(0,0,0,0.65);
  font-size:13px;
  line-height:1.45;
}
.dash-modal-info-box i{
  color:#B48350;
  font-size:16px;
  flex-shrink:0;
  margin-top:2px;
}
.dash-photo-drop{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
  padding:24px 16px;
  border:2px dashed #ccc;
  border-radius:10px;
  background:#fafafa;
  cursor:pointer;
  transition:border-color .15s, background .15s;
  text-align:center;
}
.dash-photo-drop:hover,
.dash-photo-drop.is-dragover{
  border-color:#B48350;
  background:#fdf8f3;
}
.dash-photo-drop-icon{
  font-size:26px;
  color:#B48350;
  pointer-events:none;
}
.dash-photo-drop-hint{
  font-size:13px;
  color:#555;
  font-weight:500;
  pointer-events:none;
}
.dash-photo-drop-name{
  font-size:13px;
  color:#B48350;
  font-weight:700;
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  pointer-events:none;
}
.dash-photo-drop-name:empty{display:none;}
.mp-ov-stats-row-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
@media (max-width: 1100px){
  .mp-ov-stats-row-4{grid-template-columns:repeat(2,1fr);}
}
@media (max-width: 480px){
  .mp-ov-stats-row-4{grid-template-columns:1fr;}
}
.dash-girl-switcher{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:18px;
  padding:8px;
  background:#fafafa;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:12px;
}
.dash-girl-tab{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  font-size:13px;
  font-weight:600;
  color:rgba(0,0,0,0.55);
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:999px;
  text-decoration:none;
  transition:all .15s ease;
  white-space:nowrap;
}
.dash-girl-tab:hover{background:rgba(180,131,80,0.06);color:#1B1F3D;}
.dash-girl-tab.is-active{
  background:#B48350;
  color:#fff;
  border-color:#B48350;
}
.dash-girl-tab.is-active .dash-girl-tab-count{
  background:rgba(255,255,255,0.25);
  color:#fff;
}
.dash-girl-tab-avatar{
  width:22px;
  height:22px;
  border-radius:50%;
  object-fit:cover;
}
.dash-girl-tab-count{
  display:inline-block;
  min-width:20px;
  padding:1px 7px;
  font-size:11px;
  font-weight:700;
  text-align:center;
  background:rgba(0,0,0,0.06);
  color:rgba(0,0,0,0.55);
  border-radius:10px;
}
.dash-girl-stat-row{
  display:flex;
  align-items:center;
  gap:20px;
  padding:14px 16px;
  border-bottom:1px solid rgba(0,0,0,0.06);
}
.dash-girl-stat-row:last-child{border-bottom:0;}
.dash-girl-stat-head{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:200px;
  flex:1 1 200px;
}
.dash-girl-stat-name{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
}
.dash-girl-stat-name .mp-booking-name{
  font-weight:600;
  color:#1B1F3D;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.mp-booking-status-inline{
  align-self:flex-start;
  font-size:11px;
  padding:2px 8px;
}
.dash-girl-stat-metrics{
  display:flex;
  gap:24px;
  flex:2 1 auto;
  flex-wrap:wrap;
}
.dash-girl-metric{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  min-width:90px;
  position:relative;
  padding-left:22px;
}
.dash-girl-metric > i{
  position:absolute;
  left:0;
  top:4px;
  color:rgba(180,131,80,0.85);
  font-size:14px;
}
.dash-girl-metric-num{
  font-size:18px;
  font-weight:700;
  color:#1B1F3D;
  line-height:1.1;
}
.dash-girl-metric-label{
  font-size:11px;
  color:rgba(0,0,0,0.50);
  letter-spacing:0.2px;
  margin-top:2px;
}
@media (max-width: 760px){
  .dash-girl-stat-row{flex-direction:column;align-items:flex-start;gap:12px;}
  .dash-girl-stat-metrics{gap:16px;width:100%;}
}
.dash-empty-profiles-icon{
  font-size:2.5rem;
  color:#cfcfcf;
  margin:0;
  display:block;
}
.dash-empty-profiles-text{
  color:rgba(0,0,0,0.55);
  font-size:14px;
  line-height:1.5;
  max-width:380px;
  margin:0;
}
.dash-empty-profiles .mp-btn{
  margin-top:4px;
}
/* Agency logo/cover upload layout */
.dash-upload-row{display:flex;flex-direction:column;gap:24px;}
.dash-upload-item{display:flex;align-items:center;gap:20px;}
.dash-logo-preview-wrap{width:80px;height:80px;border-radius:12px;overflow:hidden;border:2px solid #eee;flex-shrink:0;}
.dash-cover-preview-wrap{
  width:160px;
  height:80px;
  border-radius:12px;
  overflow:hidden;
  border:2px solid #eee;
  flex-shrink:0;
  position:relative;
  background:#fafafa;
}
.dash-cover-preview-wrap.is-empty{
  border:1px dashed rgba(0,0,0,0.15);
  background:#fafafa;
}
.dash-cover-empty{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  width:100%;
  height:100%;
  color:rgba(0,0,0,0.35);
}
.dash-cover-empty i{font-size:1.4rem;color:#cfcfcf;}
.dash-cover-empty span{font-size:11px;letter-spacing:0.3px;}
.dash-preview-img{display:block;width:100%;height:100%;max-width:100%;max-height:100%;object-fit:cover;}
.dash-preview-img[hidden]{display:none;}
.dash-logo-preview-wrap, .dash-cover-preview-wrap{position:relative;}
.dash-upload-spinner{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,0.45);
  color:#fff;
  font-size:1.4rem;
  z-index:2;
  border-radius:inherit;
}
.is-uploading .dash-preview-img{filter:brightness(0.7);}
.dash-upload-label-text{margin-bottom:8px;}
.dash-file-input-btn{cursor:pointer;}
/* Agency info form */
.dash-agency-form{display:flex;flex-direction:column;gap:16px;}
/* Agency modal form group margin */
.dash-modal-form-group{margin-bottom:16px;}
/* Agency empty state text */
.dash-text-muted{color:#aaa;padding:1rem 0;}
/* Admin contact-messages filters */
.dash-cm-filters{display:flex;gap:10px;margin-bottom:20px;flex-wrap:wrap;}
/* Admin log load-more */
.dash-log-load-more{display:none;}
/* Admin referrals muted code */
.dash-ref-code{color:#999;font-size:12px;}
/* Admin referrals empty cell */
.dash-table-center-muted{text-align:center;color:#999;padding:20px;}
/* Favorites empty state */
.dash-fav-empty-icon{font-size:2rem;color:#ddd;margin-bottom:12px;}
.dash-fav-empty-text{color:#999;}
/* Member empty state */
.dash-member-empty{color:#aaa;padding:1rem 0;}


/* ─── Extracted inline-style utility classes (CSP refactor) ─── */
.filter-count { display: none; }
.mp-activity-empty { text-align: center; padding: 24px; color: #999; }
.countries-sidebar-city-item { cursor: pointer; }
.countries-accordion-city-item { cursor: pointer; }
.contact-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.country-page-title { font-size: 22px; font-weight: 700; color: #222; margin-bottom: 4px; }
.scp-sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
