:root {
  --theme-dark: #1a1a2e;
  --theme-accent: #c2185b;
  --theme-gradient: linear-gradient(135deg, #1a1a2e 0%, #c2185b 100%);
  --gold: #c2185b;
  --gold-hover: #a0144a;
  --text: #222;
  --bg: #ffffff;
  --gray: #f5f4f8;
  --border: #e8e4ec;
  --radius: 12px;
  --shadow: 0 4px 14px rgba(26, 26, 46, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--gray);
  color: var(--text);
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--bg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border-bottom: 2px solid var(--gold);
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  letter-spacing: 0.4px;
}

.brand span { color: var(--gold); }

.nav-links { display: flex; gap: 24px; }

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 10px; }

.btn-nav {
  background: var(--theme-gradient);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
  display: inline-block;
}

.btn-nav:hover {
  background: linear-gradient(135deg, #252545 0%, #a0144a 100%);
  box-shadow: 0 4px 12px rgba(194, 24, 91, 0.35);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 20px;
    box-shadow: var(--shadow);
  }
  .hamburger { display: flex; }
}

/* SEARCH */
.search-section {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.he-search-hint {
  width: min(95%, 1100px);
  margin: 0;
  text-align: center;
  color: #888;
  font-size: 13px;
  line-height: 1.4;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  padding: 16px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: min(95%, 1100px);
  flex-wrap: wrap;
}

.search-bar select {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  min-width: 140px;
  flex: 1;
}

#searchCategory {
  min-width: 150px;
  font-weight: 600;
}

.search-btn {
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius);
  background: var(--theme-gradient);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 768px) {
  .search-bar { flex-direction: column; align-items: stretch; }
  .search-bar select, .search-btn { width: 100%; }
}

/* BREADCRUMB — unified (category, city, detail, all listing pages) */
.breadcrumb-with-dropdown,
.lf-breadcrumb {
  width: 100%;
  margin: 0 auto 18px;
  font-family: 'Poppins', system-ui, sans-serif;
}

.breadcrumbs-container,
.lf-breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.breadcrumb.breadcrumbs-list,
.lf-breadcrumb-inner {
  list-style: none;
  margin: 0;
  padding: 12px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
}

.breadcrumb.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.lf-bc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumb-item,
.lf-bc-item {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
}

.breadcrumb-item + .breadcrumb-item::before,
.lf-bc-item + .lf-bc-item::before {
  content: "/";
  padding: 0 10px;
  color: #94a3b8;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  align-self: center;
}

.breadcrumb-item a,
.lf-bc-item a,
.breadcrumb-item .dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.5;
  vertical-align: middle;
  color: var(--theme-accent);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  font-family: inherit;
}

.breadcrumb-item a:hover,
.lf-bc-item a:hover,
.breadcrumb-item .dropdown > a:hover {
  color: var(--theme-dark);
}

.breadcrumb-item a div[itemprop="name"],
.breadcrumb-item .dropdown a div[itemprop="name"] {
  display: inline;
  line-height: 1.5;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
}

.breadcrumb-item-current div[itemprop="name"],
.lf-bc-item > div[itemprop="name"] {
  display: inline;
  line-height: 1.5;
  color: var(--theme-dark);
  font-weight: 600;
  font-size: 14px;
}

.breadcrumb-item .dropdown {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  line-height: 1.5;
  position: relative;
}

.breadcrumb-item .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0;
  vertical-align: middle;
  flex-shrink: 0;
  content: "";
  border-top: 0.35em solid var(--theme-accent);
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  transform: translateY(1px);
}

.breadcrumb-item .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 200;
  min-width: 220px;
  max-height: 320px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.12);
  padding: 6px 0;
  margin-top: 4px;
  font-family: 'Poppins', system-ui, sans-serif;
}

.breadcrumb-item .dropdown-menu.show {
  display: block;
}

.breadcrumb-item .dropdown-item {
  display: block;
  padding: 8px 16px;
  color: var(--theme-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
}

.breadcrumb-item .dropdown-item:hover {
  background: #fdf2f7;
  color: var(--theme-accent);
}

.dropdown-backdrop {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: transparent;
}

.dropdown-backdrop.d-none {
  display: none;
}

@media (max-width: 768px) {
  .breadcrumb.breadcrumbs-list,
  .lf-breadcrumb-inner {
    padding: 10px 14px;
    font-size: 13px;
  }

  .breadcrumb-item,
  .lf-bc-item,
  .breadcrumb-item a,
  .lf-bc-item a,
  .breadcrumb-item-current div[itemprop="name"],
  .lf-bc-item > div[itemprop="name"] {
    font-size: 13px;
  }

  .breadcrumb-item + .breadcrumb-item::before,
  .lf-bc-item + .lf-bc-item::before {
    padding: 0 8px;
    font-size: 13px;
  }
}

.bc-arrow { color: #94a3b8; font-weight: 500; }

/* BRAND HEADER (main site header) */
.he-brand-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  background: var(--theme-gradient);
  border-bottom: none;
  box-shadow: 0 4px 20px rgba(26, 26, 46, 0.25);
}
.he-brand-bar-inner {
  width: 100%;
  max-width: 1100px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: none;
}
.he-brand-bar-left { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.he-brand-bar-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.he-brand-name {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.5px;
}
.he-logo-a { color: #fff; }
.he-logo-b { color: #ffd6e8; }
.he-brand-location {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}
.he-brand-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.he-brand-notif {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  text-decoration: none;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
}
.he-brand-notif:hover { color: #fff; background: rgba(255, 255, 255, 0.15); }
.he-brand-notif-count {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #fff;
  color: var(--theme-accent);
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}
.he-brand-user {
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 6px;
  border-radius: 50%;
  transition: color .2s ease, background .2s ease;
}
.he-brand-user:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}
.he-brand-post-btn {
  background: #fff;
  color: var(--theme-dark) !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.4px;
  padding: 12px 22px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}
.he-brand-post-btn:hover {
  background: #ffd6e8;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
@media (max-width: 600px) {
  .he-brand-bar-inner { flex-wrap: wrap; padding: 12px 14px; }
  .he-brand-name { font-size: 22px; }
  .he-brand-location { margin-left: 0; font-size: 12px; }
  .he-brand-bar-right { width: 100%; justify-content: flex-end; }
  .he-brand-post-btn { padding: 10px 16px; font-size: 12px; }
}

/* TRENDING */
.trend-section { max-width: 1200px; margin: 40px auto; padding: 0 16px; }
.trend-title { font-size: 26px; font-weight: 700; color: var(--theme-dark); margin-bottom: 22px; }
.trend-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trend-card { text-decoration: none; }
.trend-img { position: relative; border-radius: 16px; overflow: hidden; background: #eee; box-shadow: 0 6px 18px rgba(0,0,0,.1); }
.trend-img img { width: 100%; height: 355px; object-fit: cover; display: block; transition: transform .5s; }
.trend-card:hover img { transform: scale(1.05); }
.trend-badge { position: absolute; top: 10px; left: 10px; padding: 5px 12px; font-size: 11px; font-weight: 600; color: #fff; background: rgba(0,0,0,.65); border-radius: 999px; }
.trend-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 14px; background: linear-gradient(to top, rgba(0,0,0,.65), transparent); display: flex; justify-content: space-between; }
.trend-info strong { color: #fff; font-size: 15px; }
.trend-info span { color: rgba(255,255,255,.8); font-size: 13px; }

@media (max-width: 992px) { .trend-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .trend-grid { grid-template-columns: repeat(2, 1fr); } .trend-img img { height: 295px; } }

/* LOCATIONS */
.popular-locations { padding: 15px 20px; background: #f8f8f8; text-align: center; }
.section-title { font-size: 28px; font-weight: 700; color: #222; margin-bottom: 40px; }
.section-sub { color: #666; font-size: 16px; margin-bottom: 50px; }
.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.location-card { position: relative; height: 260px; border-radius: 16px; background-size: cover; background-position: center; overflow: hidden; text-decoration: none; box-shadow: 0 4px 18px rgba(0,0,0,.15); transition: .3s; }
.location-card .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.1)); }
.location-card h3 { position: absolute; bottom: 24px; left: 24px; color: #fff; font-size: 22px; z-index: 2; margin: 0; transition: .3s; }
.view-btn { position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%); background: var(--theme-gradient); color: #fff; font-weight: 600; border-radius: 12px; padding: 10px 22px; font-size: 14px; opacity: 0; transition: .35s; white-space: nowrap; }
.location-card:hover { transform: translateY(-5px); }
.location-card:hover h3 { bottom: 64px; }
.location-card:hover .view-btn { bottom: 20px; opacity: 1; }

@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .location-grid { grid-template-columns: 1fr; } }

/* CATEGORIES */
.categories { background: #f8f8f8; padding: 70px 20px; text-align: center; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.category-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 3px 14px rgba(0,0,0,.08); text-decoration: none; transition: .3s; border-top: 3px solid transparent; }
.category-card:hover { transform: translateY(-5px); border-top-color: var(--theme-accent); }
.category-card img { width: 100%; height: 210px; object-fit: cover; display: block; }
.category-card h3 { font-size: 17px; color: #222; font-weight: 600; margin: 14px 0; }

@media (max-width: 1024px) { .category-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }

/* PROMOTE */
.promote-elite { background: linear-gradient(120deg, #fff 0%, #fdf5f8 40%, #f8eef2 100%); padding: 90px 20px; }
.promote-wrapper { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.promote-content h2 { font-size: 42px; font-weight: 800; line-height: 1.2; }
.subline { color: var(--theme-accent); text-transform: uppercase; font-weight: 600; font-size: 15px; }
.desc { color: #555; line-height: 1.7; }
.gold-btn { display: inline-flex; background: var(--theme-gradient); color: #fff; font-weight: 600; border-radius: 10px; padding: 14px 32px; text-decoration: none; margin-top: 10px; }
.promote-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  min-height: 280px;
  height: auto;
  padding: 10px 0;
}
.promote-gallery .photo-box {
  position: relative;
  width: clamp(110px, 22vw, 190px);
  height: clamp(150px, 30vw, 250px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
  flex-shrink: 0;
}
.promote-gallery .photo-box:nth-child(4n+1) { transform: rotate(-8deg); }
.promote-gallery .photo-box:nth-child(4n+2) { transform: rotate(5deg); }
.promote-gallery .photo-box:nth-child(4n+3) { transform: rotate(-5deg); }
.promote-gallery .photo-box:nth-child(4n) { transform: rotate(7deg); }
.promote-gallery .photo-box img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 950px) {
  .promote-wrapper { grid-template-columns: 1fr; text-align: center; }
  .promote-gallery { margin-top: 40px; min-height: 220px; }
}

/* FOOTER */
.lfxx-footer {
  background: radial-gradient(1200px at top, rgba(194, 24, 91, 0.18), transparent 60%), linear-gradient(180deg, var(--theme-dark), #0f0f1a);
  color: #cfcfcf;
}
.lfxx-glow-line { height: 2px; background: linear-gradient(90deg, transparent, var(--theme-accent), transparent); }
.lfxx-wrap { max-width: 1200px; margin: auto; padding: 25px 20px 40px; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 50px; }
.lfxx-brand h4 { font-size: 30px; color: #fff; font-weight: 700; margin: 0 0 14px; }
.lfxx-brand h4 .he-logo-a { color: #fff; }
.lfxx-brand h4 .he-logo-b { color: #ffd6e8; }
.lfxx-brand h4 span, .lfxx-brand .brand span { color: #ffd6e8; }
.lfxx-brand p { font-size: 15px; line-height: 1.8; color: #b5b5b5; margin: 0; max-width: 420px; }
.lfxx-links span { display: block; color: #fff; font-weight: 600; margin-bottom: 16px; }
.lfxx-links a { display: block; color: #bcbcbc; text-decoration: none; margin-bottom: 11px; font-size: 15px; }
.lfxx-links a:hover { color: var(--theme-accent); }
.highlight-link { font-weight: 600; color: #fff !important; }
.lfxx-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px; text-align: center; }
.lfxx-copy { font-size: 14px; color: #8f8f8f; }
.lfxx-trust { font-size: 13px; color: #a8a8a8; margin-top: 8px; }

@media (max-width: 900px) { .lfxx-wrap { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .lfxx-wrap { grid-template-columns: 1fr; text-align: center; } }

/* AGE GATE + COOKIE */
.age-gate { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.age-overlay { position: absolute; inset: 0; backdrop-filter: blur(10px); background: rgba(246,242,234,.55); }
.age-card { position: relative; max-width: 520px; background: #fff; padding: 42px 44px; border-radius: 20px; text-align: center; box-shadow: 0 40px 100px rgba(0,0,0,.18); z-index: 1; }
.age-card h2 { font-size: 28px; margin-bottom: 14px; }
.age-card h2 span { color: var(--theme-accent); }
.subtitle { font-size: 15px; color: #444; margin-bottom: 18px; }
.desc { font-size: 14px; color: #666; line-height: 1.6; }
.age-actions { margin-top: 30px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.age-actions button { background: var(--theme-gradient); color: #fff; border: none; padding: 12px 30px; border-radius: 999px; cursor: pointer; font-size: 15px; }
.age-actions .exit { color: #777; text-decoration: none; align-self: center; }
.trust { margin-top: 20px; font-size: 12px; color: #888; }
.pe-cookie { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: #fff; padding: 14px 18px; border-radius: 16px; display: none; align-items: center; gap: 16px; max-width: 92%; box-shadow: 0 18px 45px rgba(0,0,0,.15); z-index: 9998; }
.pe-cookie button { background: var(--theme-gradient); border: none; color: #fff; padding: 8px 18px; border-radius: 999px; cursor: pointer; }

/* PROFILE PAGE */
.profile-page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px 40px;
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: start;
  margin: 20px auto 28px;
}

.profile-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.main-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 620px;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  cursor: zoom-in;
}

.main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.main-photo:hover img {
  transform: scale(1.02);
}

.he-gallery-zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  pointer-events: none;
}

.profile-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.profile-thumb-btn {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  background: #eee;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.profile-thumb-btn:hover,
.profile-thumb-btn.active-thumb {
  border-color: var(--theme-accent);
}

.profile-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-info-col {
  background: #fff;
  border: 1px solid #e8d4df;
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 10px 30px rgba(26, 26, 46, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.profile-info-col .profile-block {
  margin-top: 0;
  padding-top: 16px;
  border-top: 1px solid #f1e8ed;
  background: transparent;
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-radius: 0;
  box-shadow: none;
}

.profile-info-col .profile-meta {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.profile-title {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--theme-dark);
  line-height: 1.25;
}

.profile-title span {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  font-weight: 600;
  color: #64748b;
}

.profile-meta {
  margin-bottom: 0;
  color: var(--theme-accent);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.profile-meta .dot { color: #cbd5e1; font-weight: 400; }

.profile-meta .city i {
  margin-right: 4px;
  font-size: 0.9em;
}

.profile-block {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #f1e8ed;
}

.profile-block-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.profile-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-tag-pill,
.profile-service-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.profile-tag-pill {
  background: #fdf2f7;
  color: var(--theme-accent);
  border: 1px solid #f8c8dc;
}

.profile-service-pill {
  background: var(--theme-gradient);
  color: #fff;
}

.profile-about-list {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}

.profile-about-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.profile-about-row dt {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.profile-about-row dd {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
}

.profile-block {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #f1e8ed;
}

.profile-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.2s ease;
}

.profile-contact-btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.profile-contact-btn.call-btn { background: #c62828; }
.profile-contact-btn.wa-btn { background: #25D366; }
.profile-contact-btn.tg-btn { background: #0088cc; }

.profile-details-panel {
  width: 100%;
  margin: 0 auto 20px;
  background: #fff;
  padding: 24px 22px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.06);
  border: 1px solid #e8d4df;
  display: grid;
  gap: 24px;
}

.profile-details-section + .profile-details-section {
  padding-top: 22px;
  border-top: 1px solid #f1e8ed;
}

.profile-details-heading {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
  color: var(--theme-dark);
}

.profile-tag-list-full {
  gap: 10px;
}

.profile-tag-link {
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.profile-tag-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(194, 24, 91, 0.2);
}

.profile-about-list-full {
  grid-template-columns: repeat(3, 1fr);
}

.profile-block-compact {
  margin-top: 12px;
  padding-top: 12px;
}

.about-profile {
  width: 100%;
  margin: 0 auto 25px;
  background: #fff;
  padding: 24px 22px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.06);
  border: 1px solid #e8d4df;
}

.about-profile h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--theme-dark);
}

.about-text {
  font-size: 15px;
  line-height: 1.9;
  color: #334155;
}

/* Lightbox */
.he-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.he-lightbox[hidden] {
  display: none !important;
}

.he-lightbox-stage {
  max-width: min(92vw, 900px);
  max-height: 85vh;
}

.he-lightbox-stage img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.he-lightbox-close,
.he-lightbox-prev,
.he-lightbox-next {
  position: absolute;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.he-lightbox-close:hover,
.he-lightbox-prev:hover,
.he-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
}

.he-lightbox-close {
  top: 18px;
  right: 18px;
}

.he-lightbox-prev {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.he-lightbox-next {
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

body.he-lightbox-open {
  overflow: hidden;
}

.profile-box,
.thumb-list,
.mobile-thumbs,
.profile-summary,
.contact-card {
  display: none !important;
}

.related-box {
  max-width: 1100px;
  margin: 30px auto;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.related-box h2 {
  margin: 0 0 15px;
  font-size: 22px;
}

.related-slider {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.related-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #111;
  transition: 0.3s ease;
}

.related-card:hover { transform: translateY(-4px); }

/* PROFILE SAFETY & REPORTING */
.he-safety-report {
  max-width: 1100px;
  margin: 28px auto;
  padding: 0 5px;
}
.he-safety-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  background: #fff5f5;
  border: 1px solid #f5c2c2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(178, 34, 34, 0.08);
}
.he-safety-left {
  padding: 28px 26px;
  border-right: 1px solid #f5c2c2;
}
.he-safety-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px 14px;
  align-items: start;
  margin-bottom: 20px;
}
.he-safety-icon { font-size: 28px; line-height: 1; }
.he-safety-head h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #8b1a1a;
  line-height: 1.2;
}
.he-safety-head p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #7a6a6a;
  grid-column: 2;
}
.he-safety-badge {
  background: #b22222;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.he-safety-issues {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.he-safety-issues li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 500;
}
.he-issue-icon { font-size: 16px; width: 22px; text-align: center; }
.he-safety-note {
  font-size: 12px;
  color: #888;
  margin: 0 0 18px;
  line-height: 1.5;
}
.he-check-complaint-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1e5aa8;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 10px;
  transition: background 0.2s;
}
.he-check-complaint-btn:hover { background: #164a8c; }

.he-safety-form-col {
  padding: 28px 26px;
  background: #fff;
}
.he-report-form select,
.he-report-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  margin-bottom: 12px;
  background: #fff;
}
.he-report-form textarea { min-height: 120px; resize: vertical; }
.he-char-count { display: block; font-size: 12px; color: #888; margin: -6px 0 12px; }
.he-upload-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 10px;
}
.he-upload-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.he-upload-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  border: 2px dashed #ccc;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  font-size: 13px;
  color: #666;
  padding: 12px;
  position: relative;
  background: #fafafa;
}
.he-upload-box input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.he-upload-box.has-file { border-color: #b22222; color: #b22222; background: #fff8f8; }
.he-report-submit {
  width: 100%;
  padding: 14px;
  background: #b22222;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.he-report-submit:hover { background: #8b1a1a; }
.he-report-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.he-report-feedback {
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.6;
}
.he-report-feedback.is-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.he-report-feedback.is-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.he-complaint-id {
  display: inline-block;
  background: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 16px;
  color: #b22222;
  margin: 6px 0;
}
.he-check-link { font-weight: 700; color: #1e5aa8 !important; }

/* CHECK COMPLAINT PAGE */
.he-check-complaint-hero {
  text-align: center;
  padding: 36px 20px 20px;
}
.he-check-complaint-hero h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: #0f2744;
}
.he-check-complaint-hero p { color: #64748b; margin-top: 10px; }
.he-check-complaint-wrap {
  max-width: 640px;
  margin: 0 auto 60px;
  padding: 0 20px;
}
.he-check-complaint-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #334155;
}
.he-check-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.he-check-row input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 15px;
  text-transform: uppercase;
}
.he-check-row button {
  padding: 14px 24px;
  background: var(--theme-accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.he-check-row button:hover { background: var(--gold-hover); }
.he-check-feedback {
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 14px;
}
.he-check-feedback.is-error { background: #fee2e2; color: #991b1b; }
.he-check-hint { text-align: center; font-size: 13px; color: #94a3b8; margin-top: 24px; }
.he-result-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 6px 20px rgba(0,0,0,.05);
}
.he-result-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
}
.he-result-row span:first-child { color: #64748b; font-weight: 600; }
.he-result-card h3 { margin: 18px 0 12px; font-size: 16px; }
.he-result-messages { display: flex; flex-direction: column; gap: 10px; }
.he-result-msg {
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
}
.he-result-msg-user { background: #f8fafc; }
.he-result-msg-admin { background: #ecfdf5; border: 1px solid #a7f3d0; }
.he-result-msg-head {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 6px;
  color: #64748b;
}
.he-status-pending { color: #d97706; }
.he-status-reviewing { color: var(--theme-accent); }
.he-status-resolved { color: #059669; }
.he-status-rejected { color: #dc2626; }

@media (max-width: 860px) {
  .he-safety-inner { grid-template-columns: 1fr; }
  .he-safety-left { border-right: none; border-bottom: 1px solid #f5c2c2; }
  .he-safety-head { grid-template-columns: auto 1fr; }
  .he-safety-badge { grid-column: 1 / -1; justify-self: start; }
  .he-upload-grid { grid-template-columns: 1fr; }
  .he-check-row { flex-direction: column; }
}

.related-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 12px 12px 0 0;
}

.related-card strong {
  display: block;
  padding: 8px 8px 4px;
  font-size: 14px;
}

.related-card span {
  display: block;
  padding: 0 8px 10px;
  font-size: 13px;
  color: #666;
}

@media (min-width: 600px) {
  .related-slider { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 992px) {
  .related-slider { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 850px) {
  .profile-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .main-photo {
    max-height: none;
  }

  .profile-info-col {
    padding: 20px 18px;
  }

  .profile-about-list-full {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .profile-about-list-full {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .profile-title { font-size: 22px; }
  .profile-title span { font-size: 15px; }
  .profile-meta { font-size: 14px; }
}

@media (max-width: 420px) {
  .profile-title { font-size: 20px; }
  .profile-meta { font-size: 13px; }
  .profile-thumb-btn {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
  }
}

/* LOCATIONS PAGE */
.he-locations-hero { text-align: center; padding: 30px 20px; }
.he-locations-hero h1 { font-size: 36px; }
.state-card { background: linear-gradient(135deg,#f5f0f4,#fdf2f7); border-radius: 20px; padding: 26px 30px; margin-bottom: 20px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.state-header { display: flex; justify-content: space-between; cursor: pointer; }
.cities { display: none; margin-top: 22px; flex-wrap: wrap; gap: 14px; }
.cities.open { display: flex; }
.city-pill { padding: 10px 18px; border-radius: 26px; background: #fff; border: 1px solid #e8d4df; text-decoration: none; color: var(--theme-dark); font-size: 14px; }
.city-pill:hover { background: var(--theme-gradient); color: #fff; }

/* INFO PAGES (about, contact, legal) */
.he-info-hero {
  text-align: center;
  padding: 36px 20px 24px;
  max-width: 900px;
  margin: 0 auto;
}
.he-info-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--theme-accent);
  margin-bottom: 12px;
}
.he-info-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #0f2744;
  margin: 0;
  line-height: 1.2;
}
.he-info-wrap {
  max-width: 860px;
  margin: 0 auto 60px;
  padding: 0 20px 40px;
}
.he-info-content {
  background: #fff;
  border-radius: 18px;
  padding: 32px 36px;
  box-shadow: 0 8px 32px rgba(15, 39, 68, 0.06);
  border: 1px solid #e8f0f8;
  line-height: 1.75;
  color: #334155;
  font-size: 15px;
}
.he-info-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0f2744;
  margin: 28px 0 12px;
}
.he-info-content h2:first-child { margin-top: 0; }
.he-info-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1e3a5f;
  margin: 22px 0 8px;
}
.he-info-content ul { padding-left: 22px; margin: 12px 0; }
.he-info-content li { margin-bottom: 8px; }
.he-info-content a { color: var(--theme-accent); text-decoration: underline; }
.he-info-content p { margin: 0 0 14px; }

.he-contact-form-wrap {
  margin-top: 28px;
  background: linear-gradient(135deg, #f8f2f5, #fdf2f7);
  border-radius: 18px;
  padding: 28px 32px;
  border: 1px solid #e8d4df;
}
.he-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.he-contact-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}
.he-contact-field input,
.he-contact-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
}
.he-contact-field-full { margin-top: 16px; }
.he-contact-submit {
  margin-top: 18px;
  padding: 12px 28px;
  background: var(--theme-gradient);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.he-contact-submit:hover { opacity: 0.92; }
.he-contact-notice {
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 14px;
}
.he-contact-success { background: #d1fae5; color: #065f46; }
.he-contact-error { background: #fee2e2; color: #991b1b; }

@media (max-width: 640px) {
  .he-info-content { padding: 22px 20px; }
  .he-contact-grid { grid-template-columns: 1fr; }
  .he-contact-form-wrap { padding: 20px; }
}

html { scroll-behavior: smooth; }

/* HOMEPAGE CATEGORY GRID */
.he-home-categories {
  max-width: 1180px;
  margin: 36px auto 48px;
  padding: 0 20px;
}

.he-home-cat-header {
  text-align: center;
  margin-bottom: 36px;
}

.he-home-cat-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--theme-dark);
  margin: 0 0 10px;
  line-height: 1.3;
}

.he-home-cat-subtitle {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
}

.he-home-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}

.he-home-cat-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.he-home-cat-visual {
  position: relative;
  display: block;
  height: 190px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  border-radius: 14px 14px 0 0;
}

.he-home-cat-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.72) 100%);
}

.he-home-cat-label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.he-home-cat-label i {
  font-size: 20px;
  opacity: 0.95;
}

.he-home-cat-desc {
  margin: 0;
  padding: 18px 18px 14px;
  font-size: 14px;
  line-height: 1.65;
  color: #4b5563;
  text-align: justify;
  flex: 1;
}

.he-home-cat-cities {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 18px 18px;
}

.he-home-cat-city-link {
  display: block;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  text-decoration: none;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.he-home-cat-city-link:hover {
  border-color: var(--theme-accent);
  box-shadow: 0 2px 8px rgba(194, 24, 91, 0.12);
}

.he-home-cat-city-label {
  display: block;
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 4px;
}

.he-home-cat-city-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--theme-accent);
}

.he-home-cat-seo {
  margin-top: 40px;
  padding-top: 8px;
}

.he-home-cat-seo p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #6b7280;
  text-align: justify;
}

@media (max-width: 992px) {
  .he-home-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .he-home-categories {
    margin-top: 24px;
    padding: 0 14px;
  }

  .he-home-cat-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .he-home-cat-visual {
    height: 170px;
  }

  .he-home-cat-label {
    font-size: 20px;
  }
}

/* 404 PAGE */
.he-404-page {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 72px;
  background: linear-gradient(180deg, #f5f4f8 0%, #fdf2f7 100%);
}

.he-404-inner {
  max-width: 560px;
  width: 100%;
  text-align: center;
  background: #fff;
  border-radius: 24px;
  padding: 48px 32px 40px;
  box-shadow: 0 20px 50px rgba(26, 26, 46, 0.1);
  border: 1px solid #e8d4df;
}

.he-country-picker-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px 64px;
}

.he-country-picker {
  width: 100%;
  max-width: 720px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 32px 24px 28px;
  text-align: center;
}

.he-country-picker-welcome {
  margin: 0 0 12px;
  font-size: clamp(32px, 6vw, 42px);
  font-weight: 800;
  color: var(--theme-dark);
}

.he-country-picker-tagline {
  margin: 0 0 28px;
  color: #475569;
  font-size: clamp(15px, 2.5vw, 18px);
  line-height: 1.5;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.he-brand-bar--picker .he-brand-bar-inner {
  justify-content: center;
}

.he-brand-bar--picker .he-brand-bar-left {
  justify-content: center;
  text-align: center;
}

.he-country-picker-title {
  margin: 0 0 10px;
  font-size: clamp(28px, 5vw, 36px);
}

.he-country-picker-lead {
  margin: 0 0 24px;
  color: #64748b;
  font-size: 15px;
}

.he-country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.he-country-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  color: var(--theme-dark);
  font-weight: 600;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.he-country-card:hover {
  border-color: var(--theme-accent);
  box-shadow: 0 8px 24px rgba(194, 24, 91, 0.12);
  transform: translateY(-2px);
  color: var(--theme-accent);
}

.he-country-flag {
  font-size: 28px;
  line-height: 1;
}

.he-country-name {
  font-size: 14px;
}

.he-404-code {
  margin: 0 0 12px;
  font-size: clamp(72px, 16vw, 110px);
  font-weight: 900;
  line-height: 1;
  background: var(--theme-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.he-404-page h1 {
  margin: 0 0 14px;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  color: var(--theme-dark);
}

.he-404-desc {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.65;
  color: #64748b;
}

.he-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 22px;
}

.he-404-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.he-404-btn:hover {
  transform: translateY(-1px);
}

.he-404-btn-primary {
  background: var(--theme-gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(194, 24, 91, 0.25);
}

.he-404-btn-secondary {
  background: #fff;
  color: var(--theme-dark);
  border: 1px solid #e8d4df;
}

.he-404-btn-secondary:hover {
  border-color: var(--theme-accent);
  color: var(--theme-accent);
}

.he-404-help {
  margin: 0;
  font-size: 14px;
  color: #94a3b8;
}

.he-404-help a {
  color: var(--theme-accent);
  font-weight: 600;
  text-decoration: none;
}

.he-404-help a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .he-404-inner {
    padding: 36px 22px 32px;
  }

  .he-404-actions {
    flex-direction: column;
  }

  .he-404-btn {
    width: 100%;
  }
}
