/* =========================================================
   MODERN LISTING UI
   Primary: #d81159
   Clean / Premium / Responsive
========================================================= */

/* =========================================================
   01. DESIGN TOKENS
========================================================= */

:root {
  --primary: #d81159;
  --primary-hover: #b90e4d;
  --primary-dark: #980a3e;
  --primary-light: #fff1f6;
  --primary-soft: #fde3ed;

  --accent-orange: #faa307;
  --success: #16a34a;
  --danger: #dc2626;
  --info: #2563eb;

  --page-bg: #faf8f9;
  --surface: #ffffff;
  --surface-soft: #fdfbfc;

  --text: #241b20;
  --text-secondary: #62555b;
  --text-muted: #91858b;
  --text-light: #ffffff;

  --border: #eee3e8;
  --border-hover: #dfcbd4;

  --shadow-xs: 0 2px 8px rgba(45, 20, 32, 0.04);
  --shadow-sm: 0 5px 18px rgba(45, 20, 32, 0.06);
  --shadow-md: 0 12px 32px rgba(45, 20, 32, 0.08);
  --shadow-lg: 0 20px 55px rgba(45, 20, 32, 0.11);

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-pill: 999px;

  --container: 1180px;

  --transition: 0.22s ease;

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}


/* =========================================================
   02. RESET
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

strong {
  font-weight: 750;
}


/* =========================================================
   03. GLOBAL LAYOUT
========================================================= */

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

section {
  padding: 64px 20px;
}

.wc {
  color: var(--primary);
}

.muted {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-style: italic;
}


/* =========================================================
   04. TOPBAR
========================================================= */

#topbar {
  --notice-color: #a80d4c;
  --notice-dark: #85083d;

  position: relative;
  width: 100%;
  overflow: hidden;

  color: #fff;

  background:
    linear-gradient(
      120deg,
      var(--notice-dark),
      var(--notice-color),
      #c2185b
    );

  box-shadow: 0 3px 14px rgba(160, 13, 75, 0.18);

  animation: noticeEnter 0.5s cubic-bezier(.22, 1, .36, 1);
}

.topbar-content {
  position: relative;
  z-index: 2;

  width: min(var(--container), calc(100% - 40px));
  min-height: 44px;

  margin-inline: auto;
  padding: 8px 48px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  text-align: center;
}

.notice-icon {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;

  display: grid;
  place-items: center;

  color: #fff;

  animation: iconPulse 2.5s ease-in-out infinite;
}

.notice-icon svg {
  width: 21px;
  height: 21px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.notice-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 6px;

  color: rgba(255,255,255,.94);

  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.notice-text strong {
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.close-btn {
  position: absolute;
  top: 50%;
  right: 10px;

  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;

  color: #fff;
  background: rgba(255,255,255,.08);

  transform: translateY(-50%);

  transition:
    background var(--transition),
    transform var(--transition),
    border-color var(--transition);
}

.close-btn svg {
  width: 14px;
  height: 14px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.close-btn:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.35);
  transform: translateY(-50%) rotate(90deg);
}

.close-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.shine {
  position: absolute;
  top: 0;
  left: -35%;

  width: 25%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.14),
    transparent
  );

  transform: skewX(-20deg);
  animation: shineMove 5s ease-in-out infinite;
  pointer-events: none;
}

#topbar.closing {
  animation: noticeExit .4s cubic-bezier(.4,0,.2,1) forwards;
}


/* =========================================================
   05. HEADER
========================================================= */

/* =========================================================
   HEADER
========================================================= */

#header {
  position: relative;
  z-index: 100;

  background: #d81159;
}

.header {
  min-height: 78px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 10px 0;
}


/* =========================================================
   LOGO + LOCATION
========================================================= */

.logo {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 2px;

  min-width: 0;

  color: #fff !important;

  text-decoration: none !important;
}


.logo img {
  display: block;

  width: 150px;
  height: 44px;

  object-fit: contain;

  object-position: left center;
}


/* Location line */

.logo-location {
  display: inline-flex;

  align-items: center;

  gap: 5px;

  margin-left: 2px;

  color: rgba(255,255,255,.92);

  font-size: 10px;

  line-height: 1;

  font-weight: 500;

  letter-spacing: .04em;

  white-space: nowrap;
}


.logo-location b {
  color: #fff;

  font-size: 10px;

  font-weight: 750;
}


.logo-location > span:last-child {
  color: rgba(255,255,255,.88);

  font-weight: 500;

  text-transform: capitalize;
}


/* Map */

.location-pin {
  width: 12px;
  height: 12px;

  flex: 0 0 12px;

  color: #fff;
}


.location-separator {
  color: rgba(255,255,255,.55);

  font-size: 9px;

  margin: 0 1px;
}


/* =========================================================
   MENU
========================================================= */

.men {
  display: flex;

  align-items: center;

  gap: 12px;
}


/* Search */

.search-toggle {
  display: none;

  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  padding: 0;

  color: #d81159;

  background: #fff;

  border: 1px solid #fff;

  border-radius: 12px;

  cursor: pointer;

  transition: .2s ease;
}


.search-toggle:hover {
  transform: translateY(-2px);

  box-shadow:
    0 6px 15px rgba(0,0,0,.12);
}


/* Post */

.post-btn {
  min-height: 44px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 0 18px;

  color: #d81159 !important;

  background: #fff;

  border: 1px solid #fff;

  border-radius: 999px;

  text-decoration: none !important;

  font-size: 14px;

  font-weight: 700;

  box-shadow:
    0 7px 18px rgba(0,0,0,.12);

  transition: .2s ease;
}


.post-btn:hover {
  color: #d81159 !important;

  background: #fff;

  transform: translateY(-2px);

  box-shadow:
    0 10px 25px rgba(0,0,0,.18);
}


.post-btn svg {
  width: 18px;
  height: 18px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  #header {
    width: 100%;
  }


  .header {
    min-height: 70px;

    width: 100%;

    padding: 8px 12px;

    gap: 8px;
  }


  /* Logo remains column */

  .logo {
    flex: 1 1 auto;

    align-items: flex-start;

    min-width: 0;

    gap: 1px;
  }


  .logo img {
    width: 125px;
    height: 36px;
  }


  /* IMPORTANT:
     Location visible on mobile */

  .logo-location {
    display: inline-flex !important;

    align-items: center;

    gap: 4px;

    max-width: 100%;

    margin-left: 14px;

    overflow: hidden;

    font-size: 9px;

    line-height: 13px;

    letter-spacing: .035em;
  }


  .logo-location b {
    flex-shrink: 0;

    font-size: 9px;
  }


  .logo-location > span:last-child {
    display: block;

    max-width: 100px;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    font-size: 9px;
  }


  /* Map icon */

  .location-pin {
    width: 11px;
    height: 11px;

    flex: 0 0 11px;
  }


  .location-separator {
    flex-shrink: 0;

    font-size: 8px;
  }


  /* Right side */

  .men {
    flex: 0 0 auto;

    display: flex;

    align-items: center;

    gap: 6px;
  }


  /* Search visible */

  .search-toggle {
    display: flex;

    width: 38px;
    height: 38px;

    border-radius: 10px;
  }


  .search-toggle svg {
    width: 18px;
    height: 18px;
  }


  /* Post button */

  .post-btn {
    min-height: 38px;

    padding: 0 11px;

    gap: 5px;

    border-radius: 10px;

    font-size: 11px;
  }


  .post-btn svg {
    width: 15px;
    height: 15px;
  }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 400px) {

  .header {
    padding-left: 10px;
    padding-right: 10px;

    gap: 5px;
  }


  .logo img {
    width: 112px;
    height: 34px;
  }


  .logo-location {
    font-size: 8px;
  }


  .logo-location b {
    font-size: 8px;
  }


  .logo-location > span:last-child {
    max-width: 75px;

    font-size: 8px;
  }


  .location-pin {
    width: 10px;
    height: 10px;

    flex-basis: 10px;
  }


  .search-toggle {
    width: 35px;
    height: 35px;
  }


  .post-btn {
    min-height: 35px;

    padding: 0 8px;

    font-size: 10px;
  }


  .post-btn svg {
    width: 14px;
    height: 14px;
  }

}


/* =========================================================
   EXTRA SMALL PHONES
========================================================= */

@media (max-width: 340px) {

  .logo img {
    width: 100px;
  }


  .logo-location > span:last-child {
    max-width: 60px;
  }


  .post-btn {
    padding: 0 7px;

    font-size: 9px;
  }

}


/* =========================================================
   06. BREADCRUMBS
========================================================= */

.breadcrumbs {
  padding: 12px 20px;

  color: var(--text-muted);
  background: var(--surface);

  border-bottom: 1px solid var(--border);

  font-size: 12px;
}

.breadcrumbs a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}


/* =========================================================
   07. HERO
========================================================= */

.hero-section {
  position: relative;
  overflow: visible;

  padding: 8px 99px 31px;

  background:
    radial-gradient(
      circle at 50% -10%,
      rgba(216,17,89,.09),
      transparent 42%
    ),
    var(--page-bg);

  border-bottom: 1px solid var(--border);
}

.hero-section::before {
  content: "";

  position: absolute;
  top: 10px;
  right: 8%;

  width: 300px;
  height: 300px;

  background: rgba(216,17,89,.045);
  border-radius: 50%;

  filter: blur(80px);

  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 2;

  width: min(1180px, 100%);
  margin-inline: auto;
}

.hero-top {
  max-width: 760px;

  margin: 0 auto 38px;

  text-align: center;
}

.hero-top > span {
  display: inline-flex;
  align-items: center;

  margin-bottom: 18px;
  padding: 8px 15px;

  color: var(--primary);
  background: var(--primary-light);

  border: 1px solid #f3cfdd;
  border-radius: var(--radius-pill);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-top > span::before {
  content: "";

  width: 6px;
  height: 6px;

  margin-right: 8px;

  background: var(--primary);
  border-radius: 50%;

  box-shadow: 0 0 0 4px rgba(216,17,89,.09);
}

.hero-top .lead {
  max-width: 700px;
  margin-inline: auto;

  color: var(--text-secondary);

  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.7;
}

.hero-top h1 {
  margin-bottom: 10px;

  color: var(--text);

  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.035em;
}


/* =========================================================
   08. SEARCH
========================================================= */

.search-bar {
  position: relative;
  z-index: 50;

  width: 100%;

  display: grid;
  grid-template-columns:
    minmax(180px, 1fr)
    minmax(180px, 1fr)
    minmax(180px, 1fr)
    auto;

  gap: 10px;

  padding: 10px;

  background: rgba(255,255,255,.96);

  border: 1px solid var(--border);
  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-lg);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.custom-select {
  position: relative;
  min-width: 0;
}

.select-input {
  width: 100%;
  height: 54px;

  padding: 0 45px 0 16px;

  color: var(--text);
  background: var(--surface-soft);

  border: 1px solid var(--border);
  border-radius: 13px;

  outline: none;

  font-size: 15px;
  font-weight: 500;

  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.select-input:hover {
  background: #fff;
  border-color: var(--border-hover);
}

.select-input:focus {
  background: #fff;
  border-color: #e69ab7;

  box-shadow: 0 0 0 4px rgba(216,17,89,.08);
}

.select-input::placeholder {
  color: #9a8d94;
}

.custom-select::after {
  content: "";

  position: absolute;
  top: 50%;
  right: 18px;

  width: 7px;
  height: 7px;

  border-right: 1.5px solid #8b7d84;
  border-bottom: 1.5px solid #8b7d84;

  transform: translateY(-70%) rotate(45deg);

  pointer-events: none;

  transition: transform var(--transition);
}

.custom-select.open::after,
.custom-select.active::after {
  border-color: var(--primary);
  transform: translateY(-25%) rotate(225deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;

  z-index: 9999;

  display: none;

  max-height: 280px;
  overflow-y: auto;

  padding: 6px;

  background: #fff;

  border: 1px solid var(--border);
  border-radius: 14px;

  box-shadow:
    0 20px 45px rgba(60,25,40,.12),
    0 5px 15px rgba(60,25,40,.05);
}

.dropdown.open,
.custom-select.open .dropdown,
.custom-select.active .dropdown {
  display: block;
}

.dropdown > *,
.dropdown-item {
  width: 100%;
  min-height: 42px;

  display: flex;
  align-items: center;

  padding: 9px 12px;

  color: var(--text-secondary);
  background: transparent;

  border: 0;
  border-radius: 9px;

  text-align: left;
  text-transform: capitalize;

  font-size: 14px;
  font-weight: 500;

  cursor: pointer;

  transition:
    color var(--transition),
    background var(--transition),
    padding var(--transition);
}

.dropdown > *:hover,
.dropdown-item:hover {
  padding-left: 15px;

  color: var(--primary);
  background: var(--primary-light);
}

.dropdown > *.selected,
.dropdown-item.selected {
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 700;
}

.dropdown::-webkit-scrollbar {
  width: 5px;
}

.dropdown::-webkit-scrollbar-thumb {
  background: #decbd3;
  border-radius: 999px;
}

.search-btn {
  height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 120px;

  padding: 0 26px;

  color: #fff;
  background: var(--primary);

  border: 1px solid var(--primary);
  border-radius: 13px;

  font-size: 15px;
  font-weight: 750;

  box-shadow: 0 7px 18px rgba(216,17,89,.20);

  transition:
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.search-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(216,17,89,.27);
}

.search-btn:active {
  transform: translateY(0);
}

.search-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(216,17,89,.11),
    0 7px 18px rgba(216,17,89,.20);
}

#searchError {
  display: block;

  margin: 12px auto 0;
  padding-left: 5px;

  color: var(--danger) !important;

  font-size: 13px;
  font-weight: 600;
}


/* =========================================================
   09. MAIN ADS LAYOUT
========================================================= */

.ads-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(280px, 1fr);

  gap: 28px;

  align-items: start;
}

#adsListing,
.ads-listing {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ads-listing > h1,
.ads-listing > h2 {
  margin-bottom: 4px;

  color: var(--text);

  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: capitalize;
}


/* =========================================================
   10. AD CARD
========================================================= */

.ad-card {
  position: relative;

  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);

  min-height: 255px;

  overflow: hidden;

  background: var(--surface);

  border: 1px solid var(--border);
  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-sm);

  cursor: pointer;

  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.ad-card:hover {
  border-color: #e5cbd6;

  transform: translateY(-3px);

  box-shadow: var(--shadow-md);
}

.ad-image {
  position: relative;

  width: 100%;
  height: 100%;
  min-height: 255px;

  overflow: hidden;

  background: #f3edf0;
}

.ad-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform .45s ease, filter .3s ease;
}

.ad-card:hover .ad-image img {
  transform: scale(1.035);
}

.blur {
  filter: blur(15px);
}

.loaded {
  filter: blur(0);
}

.ad-right {
  min-width: 0;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  gap: 18px;

  padding: 24px;
}

.ad-titl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 8px;

  color: var(--text);

  font-size: 18px;
  font-weight: 750;
  line-height: 1.35;

  text-transform: capitalize;
}

.ad-titl .verified {
  display: inline-flex;
  align-items: center;

  gap: 4px;

  color: var(--success);

  font-size: 12px;
  font-weight: 700;
}

.ad-description {
  max-width: 680px;

  margin: 8px 0 0;

  color: var(--text-secondary);

  font-size: 14px;
  line-height: 1.65;
}

.ad-meta {
  display: flex;
  flex-direction: column;

  gap: 8px;

  color: var(--text-muted);

  font-size: 13px;
}

.ad-line {
  display: flex;
  align-items: center;

  gap: 8px;

  font-size: 13px;
}

.ad-meta .ad-line-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 12px;
}

.ad-contact {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ad-contact a {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--primary);
  background: var(--primary-light);

  border: 1px solid var(--primary-soft);
  border-radius: 50%;

  text-decoration: none;

  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.ad-contact a:hover {
  color: #fff;
  background: var(--primary);
  transform: translateY(-2px);
}

.pro-badge {
  position: absolute;
  top: 12px;
  right: 12px;

  z-index: 20;

  display: inline-flex;
  align-items: center;

  padding: 7px 11px;

  color: #fff;

  background: linear-gradient(
    135deg,
    var(--primary),
    #ff4f91
  );

  border-radius: var(--radius-pill);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1;
  text-transform: uppercase;

  box-shadow: 0 5px 14px rgba(216,17,89,.25);
}

.tag-span {
  position: absolute;
  top: 12px;
  left: 12px;

  z-index: 20;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px 10px;

  color: #fff;
  background: rgba(36,27,32,.82);

  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-pill);

  font-size: 11px;
  font-weight: 700;
  text-transform: capitalize;

  backdrop-filter: blur(8px);
}


/* =========================================================
   11. SIDEBAR
========================================================= */

.ads-sidebar,
.sidebar {
  background: var(--surface);

  border: 1px solid var(--border);
  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-sm);

  overflow: hidden;
}

.ads-sidebar h2 {
  margin: 0;
  padding: 17px 18px;

  color: #fff;
  background: var(--primary);

  font-size: 16px;
  font-weight: 750;
  line-height: 1.3;
}

.area-links {
  max-height: 410px;

  overflow: hidden;

  display: flex;
  flex-direction: column;

  margin: 0;
  padding: 8px;

  list-style: none;

  background: var(--surface);
}

.area-links li {
  display: none;
}

.area-links li:nth-child(-n+8),
.area-links li.toggle-item {
  display: block;
}

.area-links.expanded li {
  display: block;
}

.area-links a {
  display: flex;
  align-items: center;

  min-height: 40px;

  padding: 8px 11px;

  color: var(--text-secondary);

  border-radius: 9px;

  text-decoration: none;
  text-transform: capitalize;

  font-size: 13px;
  font-weight: 550;

  transition:
    color var(--transition),
    background var(--transition),
    padding var(--transition);
}

.area-links a:hover {
  padding-left: 15px;

  color: var(--primary);
  background: var(--primary-light);
}

.toggle-item {
  padding: 8px 0 !important;
}

.toggle-btn,
.all-reviews-btn {
  width: calc(100% - 20px);

  margin: 10px;

  padding: 10px;

  color: var(--primary);
  background: transparent;

  border: 1px solid var(--primary);
  border-radius: 10px;

  font-size: 13px;
  font-weight: 700;

  transition:
    color var(--transition),
    background var(--transition);
}

.toggle-btn:hover,
.all-reviews-btn:hover {
  color: #fff;
  background: var(--primary);
}


/* =========================================================
   12. FEATURED PROFILES
========================================================= */
.featured-profiles {
    padding: 24px 25px;
}


/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.featured-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 16px;
    padding: 0 2px;
}

.featured-eyebrow {
    display: block;

    margin-bottom: 3px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .1em;
    text-transform: uppercase;
}

.featured-profiles h3 {
    margin: 0;

    color: var(--text-primary);

    font-size: 18px;
    line-height: 1.3;
    font-weight: 750;

    letter-spacing: -.02em;
}


/* Number badge */

.featured-count {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 28px;
    height: 28px;

    padding: 0 8px;

    color: var(--primary);

    background:
        color-mix(
            in srgb,
            var(--primary) 9%,
            transparent
        );

    border: 1px solid
        color-mix(
            in srgb,
            var(--primary) 15%,
            var(--border)
        );

    border-radius: 999px;

    font-size: 11px;
    font-weight: 750;
}


/* ---------------------------------------------------------
   LIST
--------------------------------------------------------- */

.featured-list {
    display: flex;
    flex-direction: column;

    gap: 10px;
}


/* ---------------------------------------------------------
   PROFILE CARD
--------------------------------------------------------- */

.featured-profile-card {

    position: relative;

    display: flex;
    align-items: center;

    width: 100%;

    padding: 9px;

    color: inherit;
    background: var(--surface);

    border: 1px solid var(--border);
    border-radius: 15px;

    text-decoration: none;

    box-shadow:
        0 1px 2px rgba(0, 0, 0, .025);

    overflow: hidden;

    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease,
        background .22s ease;
}


/* Card hover */

.featured-profile-card:hover {

    color: inherit;

    background:
        linear-gradient(
            135deg,
            var(--surface),
            color-mix(
                in srgb,
                var(--primary) 3%,
                var(--surface)
            )
        );

    border-color:
        color-mix(
            in srgb,
            var(--primary) 30%,
            var(--border)
        );

    transform: translateY(-2px);

    box-shadow:
        0 8px 22px rgba(0, 0, 0, .07),
        0 0 0 1px
        color-mix(
            in srgb,
            var(--primary) 4%,
            transparent
        );
}


/* ---------------------------------------------------------
   PROFILE IMAGE
--------------------------------------------------------- */

.profile-image-wrap {

    position: relative;

    flex: 0 0 76px;

    width: 76px;
    height: 82px;

    overflow: hidden;

    border-radius: 11px;

    background:
        color-mix(
            in srgb,
            var(--border) 50%,
            transparent
        );
}

.profile-image-wrap img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .35s ease,
        filter .35s ease;
}

.featured-profile-card:hover
.profile-image-wrap img {

    transform: scale(1.06);

    filter: brightness(.95);
}


/* ---------------------------------------------------------
   NEW BADGE
--------------------------------------------------------- */

.ad-new-tag {

    position: absolute;

    top: 6px;
    left: 6px;

    display: inline-flex;
    align-items: center;

    height: 19px;

    padding: 0 6px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            color-mix(
                in srgb,
                var(--primary) 75%,
                #000
            )
        );

    border-radius: 5px;

    font-size: 8px;
    line-height: 1;
    font-weight: 800;

    letter-spacing: .04em;

    box-shadow:
        0 3px 8px
        color-mix(
            in srgb,
            var(--primary) 25%,
            transparent
        );
}


/* ---------------------------------------------------------
   INFO
--------------------------------------------------------- */

.profile-info {

    min-width: 0;
    flex: 1;

    margin-left: 12px;

    padding-right: 2px;
}


/* Name row */

.profile-name-row {

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 6px;
}

.profile-name {

    min-width: 0;

    margin: 0;

    color: var(--text-primary);

    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-name span {
    color: var(--text-secondary);
    font-weight: 600;
}


/* Arrow */

.profile-arrow {

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 24px;

    width: 24px;
    height: 24px;

    color: var(--text-secondary);

    background:
        color-mix(
            in srgb,
            var(--text-secondary) 6%,
            transparent
        );

    border-radius: 50%;

    transition:
        color .22s ease,
        background .22s ease,
        transform .22s ease;
}

.profile-arrow svg {

    width: 13px;
    height: 13px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.featured-profile-card:hover
.profile-arrow {

    color: var(--primary);

    background:
        color-mix(
            in srgb,
            var(--primary) 10%,
            transparent
        );

    transform: translateX(2px);
}


/* ---------------------------------------------------------
   LOCATION
--------------------------------------------------------- */

.profile-location {

    display: flex;
    align-items: center;

    gap: 5px;

    margin-top: 5px;

    color: var(--text-secondary);

    font-size: 11px;
    line-height: 1.3;
}

.profile-location svg {

    flex: 0 0 auto;

    width: 13px;
    height: 13px;

    fill: none;

    stroke: var(--primary);

    stroke-width: 1.6;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ---------------------------------------------------------
   PRICE
--------------------------------------------------------- */

.profile-bottom {

    display: flex;
    align-items: center;

    margin-top: 8px;
}

.profile-price {

    color: var(--primary);

    font-size: 13px;
    line-height: 1;

    font-weight: 800;
}

.profile-price small {

    color: var(--text-secondary);

    font-size: 10px;
    font-weight: 600;
}


/* ---------------------------------------------------------
   FOCUS
--------------------------------------------------------- */

.featured-profile-card:focus-visible {

    outline: 3px solid
        color-mix(
            in srgb,
            var(--primary) 25%,
            transparent
        );

    outline-offset: 2px;

    border-color: var(--primary);
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 576px) {

    .featured-profiles {
        padding: 20px 25px;
    }

    .featured-profiles h3 {
        font-size: 16px;
    }

    .featured-list {
        gap: 8px;
    }

    .featured-profile-card {
        padding: 8px;

        border-radius: 13px;
    }

    .profile-image-wrap {
        flex-basis: 68px;

        width: 68px;
        height: 74px;

        border-radius: 10px;
    }

    .profile-info {
        margin-left: 10px;
    }

    .profile-name {
        font-size: 13px;
    }

    .profile-location {
        font-size: 10.5px;
    }

    .profile-price {
        font-size: 12px;
    }

    .profile-arrow {
        width: 22px;
        height: 22px;
    }

    .ad-new-tag {
        top: 5px;
        left: 5px;

        height: 17px;

        padding: 0 5px;

        font-size: 7px;
    }
}


/* ---------------------------------------------------------
   REDUCED MOTION
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .featured-profile-card,
    .profile-image-wrap img,
    .profile-arrow {

        transition: none;
    }
}


/* =========================================================
   13. REVIEW SIDEBAR
========================================================= */

.service-review-sidebar {
  margin-top: 20px;

  overflow: hidden;

  background: var(--surface);

  border: 1px solid var(--border);
  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-sm);
}

.sidebar-review-header {
  padding: 20px;

  color: #fff;
  background:
    linear-gradient(
      135deg,
      var(--primary),
      #b20e4d
    );
}

.sidebar-review-header > span {
  color: rgba(255,255,255,.8);

  font-size: 11px;
  font-weight: 600;
}

.sidebar-review-header h3 {
  margin: 4px 0 10px;

  font-size: 18px;
  line-height: 1.3;
}

.sidebar-rating {
  display: flex;
  align-items: center;

  gap: 8px;
}

.sidebar-rating strong {
  font-size: 24px;
}

.sidebar-rating span,
.review-stars {
  color: var(--accent-orange);
  letter-spacing: 1px;
}

.sidebar-review-list {
  padding: 10px 25px;
}

.sidebar-review {
  padding: 14px 2px;

  border-bottom: 1px solid var(--border);
}

.sidebar-review:last-child {
  border-bottom: 0;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 9px;
}

.review-avatar {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 36px;

  color: #fff;
  background: var(--primary);

  border-radius: 50%;

  font-size: 13px;
  font-weight: 700;
}

.review-user strong {
  display: block;

  color: var(--text);

  font-size: 13px;
}

.review-user small {
  display: block;

  color: var(--text-muted);

  font-size: 11px;
}

.review-stars {
  margin: 6px 0;

  font-size: 12px;
}

.sidebar-review p {
  color: var(--text-secondary);

  font-size: 12px;
  line-height: 1.55;
}


/* =========================================================
   14. POPULAR LOCATIONS
========================================================= */

.popular-locations {
  padding: 28px 0;
}

.location-buttons,
.area-buttons {
  display: flex;
  flex-wrap: wrap;

  gap: 9px;
}

.location-buttons {
  margin-top: 15px;
}

.location-buttons .btn,
.sidebar-section.popular-locations .location-buttons a {
  display: inline-flex;
  align-items: center;

  padding: 8px 14px;

  color: var(--text-secondary);
  background: var(--surface);

  border: 1px solid var(--border);
  border-radius: var(--radius-pill);

  text-decoration: none;
  text-transform: capitalize;

  font-size: 13px;
  font-weight: 600;

  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.location-buttons .btn:hover,
.sidebar-section.popular-locations .location-buttons a:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);

  transform: translateY(-2px);
}
/* =========================================================
   PREMIUM METRO CITIES
========================================================= */

.popular-locations {
  position: relative;
  padding: 28px 10px 30px;
}


/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.locations-header {
  margin-bottom: 8px;
}

.locations-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}


/* Gradient location icon */

.locations-icon {
  flex: 0 0 42px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  color: var(--primary);

  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--primary) 14%, transparent),
      color-mix(in srgb, var(--primary) 5%, transparent)
    );

  border: 1px solid
    color-mix(in srgb, var(--primary) 14%, var(--border));

  box-shadow:
    0 4px 14px
    color-mix(in srgb, var(--primary) 8%, transparent);
}

.locations-icon svg {
  width: 21px;
  height: 21px;

  fill: none;
  stroke: currentColor;

  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* Small eyebrow */

.locations-eyebrow {
  display: block;

  margin-bottom: 3px;

  color: var(--primary);

  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;

  letter-spacing: .1em;
  text-transform: uppercase;
}


/* Heading */

.popular-locations h3 {
  margin: 0;

  color: var(--text-primary);

  font-size: 18px;
  line-height: 1.3;

  font-weight: 750;

  letter-spacing: -.02em;
}


/* Description */

.locations-description {
  max-width: 470px;

  margin: 10px 0 18px;

  color: var(--text-secondary);

  font-size: 12.5px;
  line-height: 1.55;
}


/* ---------------------------------------------------------
   CITY BUTTONS
--------------------------------------------------------- */

.location-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  gap: 9px;
}


/* City pill */

.sidebar-section.popular-locations
.location-buttons a {

  position: relative;

  display: inline-flex;
  align-items: center;

  min-height: 39px;

  padding: 7px 10px 7px 9px;

  color: var(--text-secondary);

  background:
    linear-gradient(
      180deg,
      var(--surface),
      color-mix(in srgb, var(--surface) 92%, var(--border))
    );

  border: 1px solid var(--border);

  border-radius: 999px;

  text-decoration: none;
  text-transform: capitalize;

  font-size: 12.5px;
  line-height: 1;
  font-weight: 650;

  box-shadow:
    0 1px 2px rgba(0, 0, 0, .025),
    0 5px 14px rgba(0, 0, 0, .025);

  overflow: hidden;

  transition:
    color .22s ease,
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    transform .22s ease;
}


/* Subtle shine */

.sidebar-section.popular-locations
.location-buttons a::before {

  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 80%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.22),
    transparent
  );

  transform: skewX(-20deg);

  transition: left .55s ease;

  pointer-events: none;
}


/* ---------------------------------------------------------
   CITY ICON
--------------------------------------------------------- */

.city-pin {

  display: flex;
  align-items: center;
  justify-content: center;

  width: 24px;
  height: 24px;

  margin-right: 7px;

  color: var(--primary);

  background:
    color-mix(
      in srgb,
      var(--primary) 9%,
      transparent
    );

  border-radius: 50%;

  transition:
    color .22s ease,
    background .22s ease,
    transform .22s ease;
}

.city-pin svg {

  width: 13px;
  height: 13px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.7;

  stroke-linecap: round;
  stroke-linejoin: round;
}


/* City name */

.city-name {
  position: relative;

  padding: 0 2px;

  white-space: nowrap;
}


/* ---------------------------------------------------------
   ARROW
--------------------------------------------------------- */

.city-arrow {

  display: flex;
  align-items: center;
  justify-content: center;

  width: 23px;
  height: 23px;

  margin-left: 7px;

  color: var(--text-secondary);

  background:
    color-mix(
      in srgb,
      var(--text-secondary) 6%,
      transparent
    );

  border-radius: 50%;

  transition:
    color .22s ease,
    background .22s ease,
    transform .22s ease;
}

.city-arrow svg {

  width: 13px;
  height: 13px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ---------------------------------------------------------
   HOVER
--------------------------------------------------------- */

.sidebar-section.popular-locations
.location-buttons a:hover {

  color: #fff;

  background:
    linear-gradient(
      135deg,
      var(--primary),
      color-mix(
        in srgb,
        var(--primary) 78%,
        #000
      )
    );

  border-color: var(--primary);

  transform: translateY(-3px);

  box-shadow:
    0 8px 20px
    color-mix(
      in srgb,
      var(--primary) 24%,
      transparent
    );
}


/* Shine animation */

.sidebar-section.popular-locations
.location-buttons a:hover::before {
  left: 140%;
}


/* Icon hover */

.location-buttons a:hover .city-pin {

  color: var(--primary);

  background: rgba(255,255,255,.92);

  transform: scale(1.06);
}


/* Arrow hover */

.location-buttons a:hover .city-arrow {

  color: var(--primary);

  background: rgba(255,255,255,.92);

  transform: translateX(2px);
}


/* ---------------------------------------------------------
   ACTIVE
--------------------------------------------------------- */

.sidebar-section.popular-locations
.location-buttons a:active {

  transform: translateY(-1px);

  box-shadow:
    0 4px 10px
    color-mix(
      in srgb,
      var(--primary) 18%,
      transparent
    );
}


/* ---------------------------------------------------------
   KEYBOARD ACCESSIBILITY
--------------------------------------------------------- */

.sidebar-section.popular-locations
.location-buttons a:focus-visible {

  outline: 3px solid
    color-mix(
      in srgb,
      var(--primary) 28%,
      transparent
    );

  outline-offset: 3px;

  border-color: var(--primary);
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 576px) {

  .popular-locations {
    padding: 22px 25px 25px;
  }

  .locations-icon {
    width: 38px;
    height: 38px;

    flex-basis: 38px;

    border-radius: 11px;
  }

  .locations-icon svg {
    width: 19px;
    height: 19px;
  }

  .popular-locations h3 {
    font-size: 16px;
  }

  .locations-eyebrow {
    font-size: 9px;
  }

  .locations-description {
    margin-top: 9px;
    margin-bottom: 15px;

    font-size: 12px;
  }

  .location-buttons {
    gap: 8px;
  }

  .sidebar-section.popular-locations
  .location-buttons a {

    min-height: 36px;

    padding: 6px 8px 6px 7px;

    font-size: 12px;
  }

  .city-pin {
    width: 22px;
    height: 22px;

    margin-right: 6px;
  }

  .city-pin svg {
    width: 12px;
    height: 12px;
  }

  .city-arrow {
    width: 21px;
    height: 21px;

    margin-left: 6px;
  }

  .city-arrow svg {
    width: 12px;
    height: 12px;
  }
}


/* ---------------------------------------------------------
   REDUCED MOTION
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

  .sidebar-section.popular-locations
  .location-buttons a,
  .location-buttons a::before,
  .city-pin,
  .city-arrow {

    transition: none;
  }
}


/* =========================================================
   15. POPULAR AREAS
========================================================= */

.popular-areas {
  width: min(1100px, calc(100% - 40px));

  margin: 32px auto;

  padding: 28px;

  background: var(--surface);

  border: 1px solid var(--border);
  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-sm);

  text-align: center;
}

.popular-areas h2 {
  margin-bottom: 20px;

  color: var(--text);

  font-size: 22px;
  font-weight: 800;
}

.area-buttons {
  justify-content: center;

  max-height: 125px;
  overflow: hidden;

  transition: max-height .35s ease;
}

.area-buttons.expanded {
  max-height: 1200px;
}

.area-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 9px 16px;

  color: var(--text-secondary);
  background: var(--surface-soft);

  border: 1px solid var(--border);
  border-radius: var(--radius-pill);

  text-decoration: none;

  font-size: 13px;
  font-weight: 600;

  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.area-buttons a:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);

  transform: translateY(-2px);
}


/* =========================================================
   16. SECTION TITLES
========================================================= */

.sec-title {
  position: relative;

  margin: 28px 0 15px;
  padding-left: 14px;

  color: var(--text);

  border-left: 4px solid var(--primary);

  font-size: 23px;
  font-weight: 800;
  line-height: 1.35;
}

.nearby-cities-header {
  margin-bottom: 18px;
}

.nearby-cities-header h2 {
  margin-bottom: 5px;

  color: var(--text);

  font-size: 22px;
  font-weight: 800;
}

.nearby-cities-header p {
  color: var(--text-muted);
  font-size: 14px;
}


/* =========================================================
   17. RELATED CATEGORIES
========================================================= */

.related-cats {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(190px, 1fr));

  gap: 12px;
}

.related-cat {
  display: block;

  padding: 17px;

  background: var(--surface);

  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: 12px;

  text-decoration: none;

  box-shadow: var(--shadow-xs);

  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.related-cat:hover {
  border-color: var(--primary);

  transform: translateY(-3px);

  box-shadow: var(--shadow-sm);
}

.related-cat .rc-name {
  display: block;

  margin-bottom: 5px;

  color: var(--text);

  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.related-cat .rc-meta {
  display: block;

  color: var(--text-muted);

  font-size: 12px;
  line-height: 1.4;
}


/* =========================================================
   18. CONTENT SECTION
========================================================= */

.content-section {
  padding: 55px 20px;
}

.content-section h2 {
  margin: 30px 0 14px;

  color: var(--text);

  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
}

.content-section h3 {
  margin: 20px 0 8px;

  color: var(--text);

  font-size: 19px;
  font-weight: 750;
}

.content-section p {
  margin-bottom: 12px;

  color: var(--text-secondary);

  font-size: 15px;
  line-height: 1.75;
}

.content-section ul {
  margin-bottom: 18px;
  padding-left: 20px;
}

.content-section li {
  margin-bottom: 7px;

  color: var(--text-secondary);

  list-style: disc;
}


/* =========================================================
   19. SHOW MORE CONTENT
========================================================= */

.show-more-box {
  width: min(1100px, calc(100% - 40px));

  margin: 32px auto;

  color: var(--text-secondary);
}

.show-more-content {
  position: relative;

  max-height: 600px;

  overflow: hidden;

  transition: max-height .35s ease;
}

.show-more-content::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 90px;

  background:
    linear-gradient(
      to bottom,
      rgba(250,248,249,0),
      var(--page-bg)
    );

  pointer-events: none;
}

.show-more-content.open {
  max-height: 5000px;
}

.show-more-content.open::after {
  display: none;
}

.show-more-content h2 {
  margin-bottom: 14px;

  color: var(--text);

  font-size: 25px;
  font-weight: 800;
}

.show-more-content h3 {
  margin: 22px 0 8px;

  color: var(--text);

  font-size: 19px;
}

.show-more-content p {
  margin-bottom: 12px;

  color: var(--text-secondary);

  font-size: 15px;
  line-height: 1.75;
}

.show-more-text {
  width: fit-content;

  display: block;

  margin: 16px auto 0;

  color: var(--primary);

  font-size: 14px;
  font-weight: 700;

  cursor: pointer;
  user-select: none;
}

.show-more-text:hover {
  text-decoration: underline;
}


/* =========================================================
   20. FAQ
========================================================= */

.faq h2 {
  margin-bottom: 20px;

  color: var(--text);

  font-size: 25px;
  font-weight: 800;
}

.faq-item {
  margin-bottom: 10px;

  overflow: hidden;

  background: var(--surface);

  border: 1px solid var(--border);
  border-radius: 14px;

  box-shadow: var(--shadow-xs);
}

.faq-question {
  width: 100%;

  min-height: 58px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 15px 18px;

  color: var(--text);

  background: var(--surface);

  border: 0;

  text-align: left;

  font-size: 15px;
  font-weight: 700;

  transition:
    color var(--transition),
    background var(--transition);
}

.faq-question:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.faq-question .icon {
  flex: 0 0 auto;

  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  color: var(--primary);
  background: var(--primary-light);

  border-radius: 50%;

  font-size: 17px;

  transition: transform .3s ease;
}

.faq-question.active {
  color: var(--primary);
}

.faq-question.active .icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;

  overflow: hidden;

  padding: 0 18px;

  color: var(--text-secondary);
  background: var(--surface);

  font-size: 14px;
  line-height: 1.7;

  transition:
    max-height .4s ease,
    padding .3s ease;
}

.faq-answer.open,
.faq-answer[style*="max-height"] {
  padding: 0 18px 18px;
}


/* =========================================================
   21. SEARCH TAGS
========================================================= */

.search-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 9px;
}

.tag {
  display: inline-flex;
  align-items: center;

  padding: 8px 15px;

  color: var(--text-secondary);
  background: var(--surface);

  border: 1px solid var(--border);
  border-radius: var(--radius-pill);

  text-decoration: none;

  font-size: 13px;
  font-weight: 600;

  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.tag:hover,
.tag.active {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}


/* =========================================================
   22. PAGINATION
========================================================= */

.pagination-container {
  margin: 30px 0 0;

  text-align: center;
}

.pagination ul {
  display: inline-flex;
  align-items: center;

  gap: 6px;

  list-style: none;
}

.pagination a {
  min-width: 40px;
  height: 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 12px;

  color: var(--text-secondary);
  background: var(--surface);

  border: 1px solid var(--border);
  border-radius: 10px;

  text-decoration: none;

  font-size: 13px;
  font-weight: 650;

  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.pagination a:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);

  transform: translateY(-2px);
}

.pagination a.active {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);

  pointer-events: none;
}

.pagination a.prev,
.pagination a.next {
  font-weight: 750;
}


/* =========================================================
   23. MODAL
========================================================= */

.modal {
  position: fixed;
  inset: 0;

  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  background: rgba(20,10,15,.68);

  backdrop-filter: blur(5px);
}

.modal.hidden {
  display: none;
}

.modal-content {
  width: min(500px, 100%);

  padding: 34px 28px;

  background: var(--surface);

  border: 1px solid var(--border);
  border-radius: var(--radius-xl);

  text-align: center;

  box-shadow: 0 30px 80px rgba(0,0,0,.2);

  animation: modalShow .25s ease;
}

.icon-wrapper {
  position: relative;

  width: 78px;

  margin: 0 auto 20px;
}

.modal-content .icon {
  width: 78px;
  height: 78px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--primary);
  background: var(--primary-light);

  border: 1px solid var(--primary-soft);
  border-radius: 50%;

  font-size: 34px;
}

.badge {
  position: absolute;
  top: -2px;
  right: -4px;

  min-width: 25px;
  height: 25px;

  display: grid;
  place-items: center;

  color: #fff;
  background: var(--danger);

  border-radius: 50%;

  font-size: 11px;
  font-weight: 800;
}

.modal-content h2 {
  margin-bottom: 14px;

  color: var(--text);

  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
}

.modal-content p {
  margin-bottom: 18px;

  color: var(--text-secondary);

  line-height: 1.7;
}

.modal-content a {
  color: var(--primary);
  text-decoration: none;
}

#acceptBtn {
  width: 100%;

  min-height: 48px;

  margin-top: 8px;

  color: #fff;
  background: var(--primary);

  border: 0;
  border-radius: 12px;

  font-size: 15px;
  font-weight: 750;

  transition:
    background var(--transition),
    transform var(--transition);
}

#acceptBtn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.decline {
  display: block;

  margin: 14px auto 0;

  color: var(--text-muted);
  background: none;

  border: 0;

  font-size: 14px;
}

.decline:hover {
  color: var(--danger);
}


/* =========================================================
   24. POPUP
========================================================= */

.popup-overlay {
  position: fixed;
  inset: 0;

  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  background: rgba(20,10,15,.72);

  backdrop-filter: blur(6px);
}

.popup-box {
  width: min(420px, 100%);

  padding: 28px;

  background:
    linear-gradient(
      145deg,
      var(--primary),
      #a90b43
    );

  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);

  text-align: center;

  box-shadow: 0 30px 80px rgba(0,0,0,.25);

  animation: modalShow .25s ease;
}

.pop-logo {
  margin-bottom: 18px;
  justify-content: center;
}

.popup-box h2,
.popup-box h3 {
  margin-bottom: 10px;

  color: #fff;

  font-weight: 800;
}

.popup-box p {
  margin-bottom: 18px;

  color: rgba(255,255,255,.9);

  font-size: 14px;
  line-height: 1.6;
}

.popup-box button,
.popup-box a {
  width: 100%;

  min-height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 10px;
  padding: 10px 14px;

  border: 0;
  border-radius: 11px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 700;

  transition:
    transform var(--transition),
    opacity var(--transition);
}

.popup-box button:hover,
.popup-box a:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: rgba(0,0,0,.25);
}

.btn-secondary {
  color: var(--text);
  background: #eee;
}

.popup-link {
  color: var(--text) !important;
  background: #fff !important;
}


/* =========================================================
   25. ADULT RESTRICTED BUTTON
========================================================= */

.adult-restricted-btn {
  min-height: 46px;

  display: inline-flex;
  align-items: center;

  gap: 10px;

  padding: 6px 16px 6px 6px;

  color: var(--text);
  background: #fff;

  border: 1px solid #ead5de;
  border-radius: var(--radius-pill);

  text-decoration: none;

  box-shadow: 0 4px 16px rgba(216,17,89,.07);

  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.adult-restricted-btn:hover {
  background: #fff8fa;
  border-color: var(--primary);

  transform: translateY(-2px);

  box-shadow: 0 8px 24px rgba(216,17,89,.13);
}

.adult-icon {
  width: 32px;
  height: 32px;

  flex: 0 0 32px;

  display: grid;
  place-items: center;

  color: #fff;
  background: var(--primary);

  border-radius: 50%;

  font-size: 10px;
  font-weight: 900;
}

.adult-label {
  display: flex;
  align-items: center;
  gap: 7px;

  font-size: 11px;
  line-height: 1;
}

.adult-label strong {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.adult-label > span {
  color: var(--text-secondary);
  font-weight: 700;
}

.adult-restricted-btn:focus-visible {
  outline: 3px solid rgba(216,17,89,.15);
  outline-offset: 3px;
}

.adult-restricted-btn:active {
  transform: scale(.98);
}


/* =========================================================
   26. DISCOUNT / DISC
========================================================= */

.disc {
  padding: 28px;

  background: var(--surface);

  border: 1px solid var(--primary-soft);
  border-radius: var(--radius-xl);

  box-shadow: var(--shadow-sm);
}


/* =========================================================
   27. FLOATING CONTACT
========================================================= */

.floating-contact {
  position: fixed;

  right: 20px;
  bottom: 20px;

  z-index: 1000;

  display: flex;
  flex-direction: column;

  gap: 10px;
}

.floating-contact a {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  background: #25d366;

  border-radius: 50%;

  text-decoration: none;

  box-shadow: 0 7px 20px rgba(0,0,0,.16);

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.floating-contact a.call {
  background: #2196f3;
}

.floating-contact a:hover {
  transform: translateY(-3px) scale(1.05);

  box-shadow: 0 12px 26px rgba(0,0,0,.2);
}


/* =========================================================
   28. FOOTER
========================================================= */

.site-footer {
  position: relative;

  margin-top: 50px;

  padding: 70px 20px 25px;

  color: #fff;

  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(255,255,255,.09),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #85083d,
      #a80d4c 45%,
      #493878
    );
}

.footer-grid {
  width: min(var(--container), 100%);

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    1.5fr
    1fr
    1fr
    1fr;

  gap: 40px;
}

.footer-logo {
  margin-bottom: 10px;

  color: #fff;

  font-size: 21px;
  font-weight: 800;
}

.footer-brand p {
  max-width: 340px;

  margin: 12px 0;

  color: rgba(255,255,255,.78);

  font-size: 14px;
  line-height: 1.7;
}

.footer-cta {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  margin-top: 8px;
  padding: 10px 16px;

  color: var(--primary);
  background: #fff;

  border-radius: var(--radius-pill);

  text-decoration: none;

  font-size: 13px;
  font-weight: 750;

  transition:
    transform var(--transition),
    background var(--transition);
}

.footer-cta:hover {
  background: #fff4f8;
  transform: translateY(-2px);
}

.footer-links h4,
.footer-legal h4,
.footer-social h4 {
  margin-bottom: 14px;

  color: #fff;

  font-size: 14px;
  font-weight: 750;
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
}

.footer-links li,
.footer-legal li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-legal a {
  color: rgba(255,255,255,.72);

  text-decoration: none;

  font-size: 13px;

  transition:
    color var(--transition),
    padding var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
  padding-left: 3px;

  color: #fff;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;
}

.social-icons a {
  width: 38px;
  height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  background: rgba(255,255,255,.08);

  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;

  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.social-icons a:hover {
  color: var(--primary);
  background: #fff;

  transform: translateY(-3px);
}

.footer-bottom {
  width: min(var(--container), 100%);

  margin: 42px auto 0;
  padding-top: 20px;

  color: rgba(255,255,255,.65);

  border-top: 1px solid rgba(255,255,255,.12);

  text-align: center;

  font-size: 12px;
}


/* =========================================================
   29. BACK TO TOP
========================================================= */

.back-to-top {
  position: absolute;

  top: 20px;
  right: max(20px, calc((100% - var(--container)) / 2));

  min-height: 38px;

  display: inline-flex;
  align-items: center;

  gap: 7px;

  padding: 8px 13px;

  color: #fff;
  background: rgba(255,255,255,.10);

  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-pill);

  font-size: 12px;
  font-weight: 650;

  backdrop-filter: blur(8px);

  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.back-to-top svg {
  width: 16px;
  height: 16px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.back-to-top:hover {
  color: var(--primary);
  background: #fff;

  transform: translateY(-2px);
}

.back-to-top:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}


/* =========================================================
   30. ANIMATIONS
========================================================= */

@keyframes noticeEnter {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes noticeExit {
  from {
    opacity: 1;
    max-height: 100px;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    max-height: 0;
    transform: translateY(-100%);
  }
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes shineMove {
  0% {
    left: -35%;
  }

  45%,
  100% {
    left: 120%;
  }
}

@keyframes modalShow {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* =========================================================
   31. TABLET
========================================================= */

@media (max-width: 1000px) {

  .ads-grid {
    grid-template-columns: 1fr;
  }

  .ads-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

    background: transparent;
    border: 0;
    box-shadow: none;

    overflow: visible;
  }

  .ads-sidebar > * {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .search-bar {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .search-btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =========================================================
   32. TABLET / MOBILE
========================================================= */

@media (max-width: 768px) {

  .container {
    width: min(100% - 28px, var(--container));
  }

  section {
    padding: 45px 14px;
  }

  .header {
    min-height: 68px;
  }

  .logo img {
    width: 125px;
    height: 40px;
  }

  .logo span {
    display: none;
  }

  .post-btn {
    min-height: 40px;
    padding: 0 14px;

    font-size: 12px;
  }

  .search-toggle {
    display: grid;
  }

  .hero-section {
    display: none;

    max-height: 0;

    padding: 0;

    opacity: 0;
    overflow: hidden;

    transform: translateY(-15px);

    transition:
      max-height .45s ease,
      opacity .3s ease,
      transform .3s ease;
  }

  .hero-section.active {
    display: block;

    max-height: 800px;

    padding: 55px 14px 65px;

    opacity: 1;

    transform: translateY(0);
  }

  .hero-top {
    margin-bottom: 28px;
  }

  .hero-top h1 {
    font-size: 28px;
  }

  .hero-top .lead {
    font-size: 15px;
  }

  .search-bar {
    grid-template-columns: 1fr;

    padding: 8px;

    border-radius: 17px;
  }

  .select-input,
  .search-btn {
    height: 52px;
  }

  .search-btn {
    min-width: 0;
  }

  .ad-card {
    grid-template-columns: 1fr;
  }

  .ad-image {
    height: 330px;
    min-height: 330px;
  }

  .ad-right {
    padding: 20px;
  }

  .ad-titl {
    font-size: 17px;
  }

  .ad-meta .ad-line-flex {
    align-items: flex-start;
    flex-direction: column;
  }

  .ads-sidebar {
    grid-template-columns: 1fr;
  }

  .popular-areas,
  .show-more-box {
    width: calc(100% - 28px);
  }

  .popular-areas {
    padding: 20px 14px;
  }

  .sec-title {
    font-size: 20px;
  }

  .content-section {
    padding: 40px 14px;
  }

  .content-section h2 {
    font-size: 23px;
  }

  .related-cats {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .back-to-top {
    top: 15px;
    right: 15px;

    width: 40px;
    height: 40px;

    justify-content: center;
    padding: 0;
  }

  .back-to-top span {
    display: none;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
  }

  .floating-contact a {
    width: 48px;
    height: 48px;
  }
}


/* =========================================================
   33. MOBILE
========================================================= */

@media (max-width: 600px) {

  .topbar-content {
    width: 100%;

    min-height: 50px;

    padding: 9px 42px 9px 14px;

    justify-content: flex-start;

    text-align: left;

    gap: 9px;
  }

  .notice-icon {
    width: 23px;
    height: 23px;
    flex-basis: 23px;
  }

  .notice-text {
    display: block;

    font-size: 12px;
    line-height: 1.4;
  }

  .notice-text strong {
    margin-right: 3px;
  }

  .close-btn {
    right: 8px;

    width: 27px;
    height: 27px;
  }

  .breadcrumbs {
    padding: 10px 14px;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .header {
    padding: 10px 14px;
  }

  .logo img {
    width: 110px;
    height: 36px;
  }

  .men {
    gap: 7px;
  }

  .post-btn {
    min-height: 38px;

    padding: 0 12px;

    font-size: 11px;
  }

  .post-btn svg {
    width: 15px;
    height: 15px;
  }

  .hero-section.active {
    padding: 45px 10px 55px;
  }

  .hero-top > span {
    padding: 7px 12px;
    font-size: 9px;
  }

  .hero-top h1 {
    font-size: 25px;
  }

  .hero-top .lead {
    font-size: 14px;
    line-height: 1.6;
  }

  .search-bar {
    gap: 8px;
  }

  .select-input,
  .search-btn {
    height: 51px;
  }

  .ad-image {
    height: 300px;
    min-height: 300px;
  }

  .ad-right {
    gap: 15px;

    padding: 17px;
  }

  .ad-description {
    font-size: 13px;
  }

  .ad-meta {
    font-size: 12px;
  }

  .ad-contact a {
    width: 38px;
    height: 38px;
  }

  .pro-badge {
    top: 9px;
    right: 9px;
  }

  .tag-span {
    top: 9px;
    left: 9px;
  }

  .popular-areas,
  .show-more-box {
    width: calc(100% - 20px);
  }

  .popular-areas {
    margin: 20px auto;
    padding: 18px 11px;
  }

  .popular-areas h2 {
    font-size: 18px;
  }

  .area-buttons {
    gap: 7px;
  }

  .area-buttons a {
    padding: 8px 11px;

    font-size: 12px;
  }

  .related-cats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .related-cat {
    padding: 13px;
  }

  .related-cat .rc-name {
    font-size: 14px;
  }

  .related-cat .rc-meta {
    font-size: 11px;
  }

  .faq-question {
    min-height: 54px;

    padding: 13px 14px;

    font-size: 14px;
  }

  .faq-answer {
    font-size: 13px;
  }

  .content-section h2 {
    font-size: 21px;
  }

  .content-section h3 {
    font-size: 17px;
  }

  .content-section p {
    font-size: 14px;
  }

  .adult-restricted-btn {
    min-height: 42px;

    padding-right: 12px;

    gap: 8px;
  }

  .adult-icon {
    width: 29px;
    height: 29px;
    flex-basis: 29px;
  }

  .adult-label {
    font-size: 10px;
  }

  .adult-label strong {
    font-size: 11px;
  }

  .disc {
    padding: 20px;
    border-radius: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .site-footer {
    padding: 65px 16px 22px;
  }

  .footer-brand p {
    max-width: none;
  }
}


/* =========================================================
   34. SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

  .logo img {
    width: 100px;
  }

  .post-btn {
    padding: 0 10px;
  }

  .hero-top h1 {
    font-size: 23px;
  }

  .related-cats {
    grid-template-columns: 1fr;
  }

  .floating-contact {
    right: 10px;
    bottom: 10px;
  }

  .floating-contact a {
    width: 44px;
    height: 44px;
  }
}


/* =========================================================
   35. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
