:root {
  --blue: #034EA2;
  --orange: #F37021;
  --green: #51B848;
  --dark-blue: #072D94;
  --ink: #0f172a;
  --muted: #64748b;
  --bg: #f4f6f8;
  --line: #e5e9ef;
  --card: #ffffff;
  --radius: 12px;
  --shadow: 0 8px 28px rgba(15, 23, 42, .08);
  --header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
}

a { color: inherit; }
img { max-width: 100%; }

.mk-topbar {
  background: var(--dark-blue);
  color: rgba(255,255,255,.85);
  font-size: 12.5px;
}
.mk-topbar a { color: #fff; text-decoration: none; }
.mk-topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 8px; padding-bottom: 8px; gap: 12px; flex-wrap: wrap;
}

.mk-header {
  position: sticky; top: 0; z-index: 1030;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(15,23,42,.03);
}
.mk-header-inner {
  display: flex; align-items: center; gap: 20px;
  min-height: var(--header-h);
}
.mk-logo { height: 38px; width: auto; display: block; }
.mk-nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.mk-nav > a,
.mk-nav-item > a {
  text-decoration: none; font-size: 14px; font-weight: 600;
  color: var(--ink); padding: 22px 12px; border-radius: 0;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 2px solid transparent;
}
.mk-nav > a:hover,
.mk-nav-item > a:hover,
.mk-nav > a.active,
.mk-nav-item.active > a {
  color: var(--orange);
  background: transparent;
  border-bottom-color: var(--orange);
}
.mk-nav-caret { font-size: 9px; opacity: .55; }
.mk-nav-item { position: relative; }
.mk-mega {
  display: none;
  position: absolute; top: 100%; left: 0; z-index: 1040;
  min-width: 320px; max-width: 380px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 12px 32px rgba(15,23,42,.12);
  padding: 8px 0;
}
.mk-nav-item:hover .mk-mega { display: block; }
.mk-mega a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 10px 16px; font-size: 13.5px; font-weight: 500;
  color: var(--ink); text-decoration: none; border: 0 !important;
  border-radius: 0 !important; background: transparent !important;
}
.mk-mega a:hover { background: #f7f9fc !important; color: var(--blue) !important; }
.mk-tag-new {
  flex-shrink: 0; font-size: 10px; font-weight: 800;
  color: #fff; background: #e11d48; padding: 2px 6px; border-radius: 4px;
  letter-spacing: .02em; text-transform: uppercase;
}
.mk-header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.mk-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 10px; font-weight: 700; font-size: 13.5px; line-height: 1;
  padding: 10px 16px; border: 1px solid transparent; text-decoration: none;
  transition: .15s;
}
.mk-btn-primary { background: var(--orange); color: #fff; }
.mk-btn-primary:hover { filter: brightness(1.05); color: #fff; }
.mk-btn-outline {
  background: #fff; border-color: var(--line); color: var(--ink);
}
.mk-btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.mk-btn-blue { background: var(--blue); color: #fff; }
.mk-btn-blue:hover { background: var(--dark-blue); color: #fff; }
.mk-btn-lg { padding: 14px 22px; font-size: 15px; }
.mk-btn-sm { padding: 7px 12px; font-size: 12.5px; border-radius: 999px; }
.mk-btn-block { width: 100%; }

.mk-hero-block {
  position: relative;
  margin-bottom: 8px;
}
.mk-hero {
  position: relative;
  min-height: clamp(520px, 68vh, 720px);
  display: flex; align-items: center;
  background:
    linear-gradient(180deg, rgba(7,45,148,.48) 0%, rgba(6,26,74,.78) 70%, rgba(6,26,74,.88) 100%),
    url('/images/login-hero.jpg') center/cover no-repeat;
  color: #fff;
  padding: 72px 0 96px;
}
.mk-hero h1 {
  font-size: clamp(32px, 4.6vw, 48px);
  font-weight: 800; letter-spacing: -.02em; margin: 0 0 12px;
  max-width: 14ch; line-height: 1.12;
}
.mk-hero .lead {
  opacity: .92; max-width: 52ch; margin-bottom: 0; font-size: 16.5px; line-height: 1.55;
}

.mk-search {
  background: #fff; color: var(--ink);
  border-radius: 16px; padding: 14px;
  box-shadow: var(--shadow);
}
.mk-search-tabs { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.mk-search-tabs .tab {
  border: 0; background: #f1f4f8; color: var(--muted);
  font-weight: 700; font-size: 13px; padding: 8px 14px; border-radius: 999px;
}
.mk-search-tabs .tab.active { background: var(--blue); color: #fff; }
.mk-search-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
  gap: 10px;
}
.mk-search-grid .form-select,
.mk-search-grid .form-control {
  border-radius: 10px; border-color: var(--line); min-height: 46px; font-size: 14px;
}

/* ~50% chiều cao card đè lên hero */
.mk-cats {
  --mk-cat-overlap: 68px;
  margin-top: calc(var(--mk-cat-overlap) * -1);
  position: relative;
  z-index: 2;
  padding-bottom: 8px;
}
.mk-cat-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 14px; text-align: center; text-decoration: none; color: var(--ink);
  display: block; height: 100%; min-height: 136px; transition: .15s;
  box-shadow: 0 10px 28px rgba(15,23,42,.10);
}
.mk-cat-card:hover { transform: translateY(-3px); border-color: rgba(3,78,162,.35); box-shadow: var(--shadow); color: var(--blue); }
.mk-cat-card i {
  width: 46px; height: 46px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(3,78,162,.08); color: var(--blue); font-size: 18px; margin-bottom: 10px;
}
.mk-cat-card .label { font-weight: 700; font-size: 13.5px; display: block; }
.mk-cat-card .sub { font-size: 12px; color: var(--muted); }

.mk-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.mk-chip {
  display: inline-flex; align-items: center;
  padding: 7px 12px; border-radius: 999px; font-size: 13px; font-weight: 600;
  text-decoration: none; color: var(--ink); background: #fff;
  border: 1px solid var(--line);
}
.mk-chip:hover { border-color: var(--blue); color: var(--blue); }
.mk-chip.active { background: var(--blue); border-color: var(--blue); color: #fff; }

.mk-section { padding: 42px 0; }
.mk-section-head {
  display: flex; justify-content: space-between; align-items: end; gap: 16px;
  margin-bottom: 18px; flex-wrap: wrap;
}
.mk-section-title { font-size: 24px; font-weight: 800; margin: 0; letter-spacing: -.01em; }
.mk-section-sub { color: var(--muted); margin: 4px 0 0; font-size: 14px; }
.mk-link-more { color: var(--blue); font-weight: 700; text-decoration: none; font-size: 14px; }
.mk-link-more:hover { color: var(--orange); }

.mk-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; height: 100%; display: flex; flex-direction: column;
  transition: .18s; text-decoration: none; color: inherit;
}
.mk-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(3,78,162,.25); color: inherit; }
.mk-card-media {
  position: relative; aspect-ratio: 16/10; background: #dbe3f0; overflow: hidden;
}
.mk-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mk-badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; flex-wrap: wrap; }
.mk-badge {
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 11px; font-weight: 700; line-height: 1;
  padding: 6px 10px; border-radius: 999px;
  background: rgba(15,23,42,.72); color: #fff;
  vertical-align: middle;
}
.mk-badge.sale { background: var(--blue); }
.mk-badge.rent { background: var(--green); }
.mk-badge.hot { background: var(--orange); }
.mk-badge.ok { background: rgba(81,184,72,.95); }
.mk-card-body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.mk-price { color: var(--orange); font-weight: 800; font-size: 18px; }
.mk-price small { font-size: 12px; color: var(--muted); font-weight: 600; margin-left: 6px; }
.mk-card-title {
  font-size: 14.5px; font-weight: 700; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 2.7em;
}
.mk-meta { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 12.5px; }
.mk-meta i { color: var(--blue); margin-right: 4px; }
.mk-loc { font-size: 12.5px; color: var(--muted); margin-top: auto; }
.mk-loc i { margin-right: 4px; }

.mk-project-card .mk-card-media { aspect-ratio: 16/9; }
.mk-project-dev { font-size: 12px; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }

.mk-news-card .mk-card-media { aspect-ratio: 16/9; }
.mk-news-cat { font-size: 11px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .06em; }
.mk-news-title { font-size: 15px; font-weight: 750; line-height: 1.35; }

.mk-stats {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-radius: 20px;
  padding: 36px 22px;
  background:
    linear-gradient(135deg, rgba(7,45,148,.88) 0%, rgba(3,78,162,.78) 45%, rgba(7,45,148,.92) 100%),
    url('/images/login-hero.jpg') center/cover no-repeat;
  box-shadow: 0 16px 40px rgba(7, 45, 148, .28);
}
.mk-stats::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(243,112,33,.28), transparent 42%),
    radial-gradient(circle at 88% 80%, rgba(81,184,72,.18), transparent 40%);
  pointer-events: none;
}
.mk-stats .row { position: relative; z-index: 1; }
.mk-stat {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 8px 6px;
}
.mk-stat-ico {
  width: 48px; height: 48px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  font-size: 18px; color: #fff;
  margin-bottom: 4px;
}
.mk-stat-val {
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.1;
}
.mk-stat-label { opacity: .88; font-size: 13.5px; font-weight: 600; }

.mk-contact-strip {
  position: relative;
  z-index: 1;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.14);
  margin-bottom: 40px;
}
.mk-contact-strip-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px 20px;
  flex-wrap: wrap;
  padding: 22px 0 20px;
}
.mk-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
  flex: 1 1 160px;
}
.mk-contact-item > i {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
}
.mk-contact-item .lbl {
  display: block;
  color: rgba(255,255,255,.78);
  font-size: 12.5px;
  font-weight: 500;
  margin-bottom: 2px;
}
.mk-contact-item .val {
  display: block;
  color: #F37021;
  font-size: 14.5px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.2;
  margin-bottom: 0;
}
.mk-contact-item .val:hover { color: #ff8a3d; }

.mk-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,.82);
  padding: 0 0 28px;
  margin-top: 24px;
  background:
    linear-gradient(160deg, rgba(7,45,148,.92) 0%, rgba(11,27,63,.88) 45%, rgba(3,30,80,.94) 100%),
    url('/images/login-hero.jpg') center/cover no-repeat;
}
.mk-footer::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(243,112,33,.18), transparent 38%),
    radial-gradient(circle at 90% 80%, rgba(81,184,72,.12), transparent 36%);
  pointer-events: none;
}
.mk-footer .container { position: relative; z-index: 1; }
.mk-footer h6 { color: #fff; font-weight: 800; margin-bottom: 14px; }
.mk-footer a { color: rgba(255,255,255,.82); text-decoration: none; font-size: 13.5px; display: block; margin-bottom: 8px; }
.mk-footer a:hover { color: #fff; }
.mk-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14); margin-top: 28px; padding-top: 16px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 12.5px;
  color: rgba(255,255,255,.7);
}
.mk-footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}
.mk-footer-legal a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  display: inline !important;
  margin: 0;
}
.mk-footer-legal a:hover { color: var(--orange); }
.mk-footer .brand-logo { height: 36px; margin-bottom: 12px; }
.mk-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.mk-footer-social a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0 !important;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff !important;
  font-size: 14px;
  transition: background .15s ease, transform .15s ease;
}
.mk-footer-social a:hover {
  background: rgba(255,255,255,.24);
  color: #fff !important;
  transform: translateY(-1px);
}
.mk-footer-bct {
  display: inline-block !important;
  margin-top: 12px;
  margin-bottom: 0 !important;
}
.mk-footer-bct img {
  display: block;
  width: 150px;
  height: auto;
  border-radius: 4px;
}

.mk-cta-post {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  border-radius: 18px; padding: 28px 28px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(7,45,148,.88), rgba(243,112,33,.82)),
    url('/images/login-hero.jpg') center/cover no-repeat;
  box-shadow: 0 14px 34px rgba(7,45,148,.22);
}
.mk-cta-post .eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; opacity: .9; margin-bottom: 6px;
}
.mk-cta-post h2 { font-size: clamp(22px, 3vw, 28px); font-weight: 800; margin: 0 0 8px; }
.mk-cta-post p { margin: 0; max-width: 48ch; opacity: .92; font-size: 14.5px; }
.mk-cta-post .actions { display: flex; gap: 10px; flex-wrap: wrap; }

.mk-btn-ghost {
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.35); color: #fff;
}
.mk-btn-ghost:hover { background: rgba(255,255,255,.24); color: #fff; }

.mk-agent-cta {
  margin: 28px 0 8px;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(7,45,148,.92) 0%, rgba(3,78,162,.88) 42%, rgba(243,112,33,.86) 100%),
    url('/images/login-hero.jpg') center/cover no-repeat;
  box-shadow: 0 16px 40px rgba(7,45,148,.2);
}
.mk-agent-cta-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  padding: 28px;
  align-items: stretch;
}
.mk-agent-cta-copy .eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; opacity: .9; margin-bottom: 8px;
}
.mk-agent-cta-copy h2 {
  font-size: clamp(22px, 3vw, 30px); font-weight: 800;
  margin: 0 0 10px; line-height: 1.25; max-width: 18ch;
}
.mk-agent-cta-copy p {
  margin: 0 0 18px; max-width: 48ch; opacity: .92; font-size: 14.5px; line-height: 1.55;
}
.mk-agent-cta-actions {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px;
}
.mk-agent-cta-meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  font-size: 13px; font-weight: 600; opacity: .9;
}
.mk-agent-cta-meta i { margin-right: 4px; }
.mk-agent-cta-form {
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 28px rgba(15,23,42,.12);
}
.mk-agent-cta-form-title {
  font-size: 15px; font-weight: 800; margin-bottom: 12px; color: var(--ink);
}
.mk-lead-form-cta .form-control {
  border-radius: 10px; min-height: 42px; font-size: 14px;
  border-color: #e5e7eb;
}
.mk-lead-form-cta textarea.form-control { min-height: 72px; }
.mk-agent-cta-note { color: #64748b; }

@media (max-width: 991.98px) {
  .mk-agent-cta-inner { grid-template-columns: 1fr; padding: 22px 18px; }
  .mk-agent-cta-copy h2 { max-width: none; }
}

.mk-auth-page {
  min-height: calc(100vh - 220px);
  display: flex; align-items: center; justify-content: center;
  padding: 36px 16px;
  background:
    linear-gradient(180deg, rgba(244,246,248,.92), rgba(244,246,248,.96)),
    url('/images/login-hero.jpg') center/cover no-repeat;
}
.mk-auth-card {
  width: min(440px, 100%);
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 28px 24px; box-shadow: var(--shadow);
}
.mk-auth-card h1 { font-size: 26px; font-weight: 800; margin: 0 0 6px; }
.mk-auth-card .sub { color: var(--muted); margin-bottom: 18px; font-size: 14px; }
.mk-social-stack { display: grid; gap: 10px; margin-bottom: 16px; }
.mk-social-btn {
  width: 100%; border-radius: 10px; border: 1px solid #e5e7eb; background: #fff;
  height: 46px; font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.mk-social-btn.google:hover { border-color: #ea4335; color: #ea4335; }
.mk-social-btn.facebook { background: #1877f2; border-color: #1877f2; color: #fff; }
.mk-social-btn.facebook:hover { filter: brightness(1.05); color: #fff; }
.mk-auth-or {
  text-align: center; position: relative; margin: 8px 0 16px; color: var(--muted); font-size: 12.5px;
}
.mk-auth-or::before {
  content: ""; position: absolute; left: 0; right: 0; top: 50%; border-top: 1px solid var(--line);
}
.mk-auth-or span { position: relative; background: #fff; padding: 0 10px; }
.mk-auth-form label { display: block; font-size: 12.5px; font-weight: 700; color: var(--muted); margin: 10px 0 4px; }
.mk-auth-form .form-control { border-radius: 10px; min-height: 44px; }
.mk-auth-form .mk-check {
  display: flex; align-items: center; gap: 8px; margin: 12px 0 16px;
  font-size: 13.5px; font-weight: 600; color: var(--ink);
}
.mk-auth-form .mk-btn { margin-top: 4px; }
.mk-auth-foot { text-align: center; margin: 16px 0 0; font-size: 14px; }
.mk-auth-foot a { color: var(--blue); font-weight: 700; text-decoration: none; }
.mk-auth-hint { text-align: center; margin-top: 10px; font-size: 12px; color: var(--muted); }

.mk-post-form .form-label { font-size: 12.5px; font-weight: 700; color: var(--muted); }
.mk-post-form .form-hint { font-size: 12px; color: var(--muted); margin-top: 4px; }
.mk-post-form .mk-check {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--ink);
}
.mk-post-section {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.mk-post-section h2 {
  font-size: 15px; font-weight: 800; margin: 0 0 14px; color: var(--ink);
}
.mk-post-actions {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
}
.mk-my-listing .mk-card { margin-bottom: 0; }

.mk-link-btn {
  background: none; border: 0; padding: 0; color: inherit;
  font: inherit; cursor: pointer; text-decoration: none;
}
.mk-link-btn:hover { color: #fff; text-decoration: underline; }

.mk-manage-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.mk-manage-stats .stat {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 12px; text-align: center;
}
.mk-manage-stats strong { display: block; font-size: 22px; font-weight: 800; color: var(--blue); line-height: 1.1; }
.mk-manage-stats span { font-size: 12px; color: var(--muted); font-weight: 600; }
.mk-manage-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px;
}
.mk-manage-tabs a {
  text-decoration: none; font-size: 13px; font-weight: 700;
  padding: 8px 12px; border-radius: 999px; color: var(--muted);
  background: #fff; border: 1px solid var(--line);
}
.mk-manage-tabs a.is-active,
.mk-manage-tabs a:hover { color: var(--blue); border-color: var(--blue); background: #eff6ff; }
.mk-manage-list { display: grid; gap: 12px; }
.mk-manage-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 14px;
  align-items: stretch;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 12px; box-shadow: var(--shadow-sm, 0 1px 2px rgba(0,0,0,.04));
}
.mk-manage-row .thumb {
  display: block; border-radius: 10px; overflow: hidden; aspect-ratio: 4/3;
  background: #e5e7eb;
}
.mk-manage-row .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mk-manage-row .body { min-width: 0; }
.mk-manage-row .top { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 4px; }
.mk-manage-row .title { font-size: 16px; font-weight: 800; margin: 0 0 6px; line-height: 1.35; }
.mk-manage-row .title a { color: var(--ink); text-decoration: none; }
.mk-manage-row .title a:hover { color: var(--blue); }
.mk-manage-row .meta {
  display: flex; flex-wrap: wrap; gap: 10px 14px;
  font-size: 12.5px; color: var(--muted); margin-bottom: 6px;
}
.mk-manage-row .price { font-size: 15px; font-weight: 800; color: var(--orange, #F37021); }
.mk-manage-row .actions {
  display: flex; flex-direction: column; gap: 8px; justify-content: center; min-width: 118px;
}
.mk-manage-row .actions form { margin: 0; }
.mk-manage-row .actions .mk-btn { width: 100%; justify-content: center; padding: 8px 10px; font-size: 13px; }
.mk-manage-row .actions .mk-btn.danger { color: #b91c1c; border-color: #fecaca; }
.mk-manage-row .actions .mk-btn.danger:hover { background: #fef2f2; }
.mk-status-badge {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 800; padding: 3px 8px; border-radius: 999px;
}
.mk-status-badge.st-active { background: #dcfce7; color: #166534; }
.mk-status-badge.st-draft { background: #f3f4f6; color: #4b5563; }
.mk-status-badge.st-hidden { background: #ffedd5; color: #9a3412; }
.mk-status-badge.st-expired { background: #fee2e2; color: #991b1b; }

@media (max-width: 767.98px) {
  .mk-manage-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mk-manage-row { grid-template-columns: 88px 1fr; }
  .mk-manage-row .actions {
    grid-column: 1 / -1;
    flex-direction: row; flex-wrap: wrap; min-width: 0;
  }
  .mk-manage-row .actions .mk-btn { width: auto; flex: 1 1 auto; }
}

.mk-badge.video { background: #111827; }
.mk-badge i { line-height: 1; display: inline-flex; align-items: center; }

.mk-account-card {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 16px; margin-bottom: 14px;
}
.mk-account-card .avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #1d4ed8);
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.mk-account-card .name { font-size: 17px; font-weight: 800; }
.mk-account-card .sub { font-size: 13px; color: var(--muted); }
.mk-account-card .mk-btn { margin-left: auto; }
.mk-account-pkg {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: linear-gradient(120deg, #eff6ff, #fff7ed);
  border: 1px solid #dbeafe; border-radius: 14px; padding: 14px 16px; margin-bottom: 14px;
}
.mk-account-pkg .lbl { font-size: 12px; font-weight: 700; color: var(--muted); }
.mk-account-pkg .sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.mk-account-quick {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px;
}
.mk-account-quick a {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-decoration: none; color: var(--ink); font-size: 12px; font-weight: 700;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 8px;
}
.mk-account-quick a i { font-size: 18px; color: var(--blue); }
.mk-account-quick a:hover { border-color: var(--blue); color: var(--blue); }
.mk-account-menu {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; margin-bottom: 12px;
}
.mk-account-menu > a,
.mk-account-menu .mk-menu-static {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; text-decoration: none; color: #374151;
  font-size: 15px; font-weight: 600; border-bottom: 1px solid #f1f5f9;
}
.mk-account-menu > a:last-child,
.mk-account-menu .mk-menu-static:last-child { border-bottom: 0; }
.mk-account-menu > a:hover { background: #f8fafc; color: var(--blue); }
.mk-account-menu > a > i:first-child,
.mk-account-menu .mk-menu-static > i:first-child {
  width: 22px; text-align: center; color: #6b7280; font-size: 16px;
}
.mk-account-menu .ico-circle {
  width: 22px; height: 22px; border-radius: 50%; background: #9ca3af;
  color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 11px;
}
.mk-account-menu .chev { margin-left: auto; color: #d1d5db; font-size: 12px; }
.mk-account-menu em {
  margin-left: auto; margin-right: 8px; font-style: normal;
  font-size: 12px; font-weight: 800; color: var(--blue);
  background: #eff6ff; padding: 2px 8px; border-radius: 999px;
}
.mk-account-menu .grow { flex: 1; min-width: 0; }
.mk-account-menu .grow .sub { font-size: 12.5px; color: var(--muted); font-weight: 500; }

.mk-pkg-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 22px 18px; height: 100%;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm, none);
}
.mk-pkg-card.popular { border-color: var(--orange); box-shadow: 0 10px 28px rgba(243,112,33,.12); }
.mk-pkg-card .ribbon {
  position: absolute; top: 12px; right: 12px;
  background: var(--orange); color: #fff; font-size: 11px; font-weight: 800;
  padding: 3px 8px; border-radius: 999px;
}
.mk-pkg-card h3 { font-size: 18px; font-weight: 800; margin: 0 0 4px; }
.mk-pkg-card .tagline { font-size: 13px; color: var(--muted); margin: 0 0 12px; }
.mk-pkg-card .price { font-size: 28px; font-weight: 800; color: var(--blue); line-height: 1; }
.mk-pkg-card .dur { font-size: 12.5px; color: var(--muted); margin: 4px 0 14px; }
.mk-pkg-card ul { list-style: none; padding: 0; margin: 0 0 18px; flex: 1; }
.mk-pkg-card li { font-size: 13.5px; margin-bottom: 8px; color: #374151; }
.mk-pkg-card li i { color: var(--green, #51B848); margin-right: 6px; }
.mk-pkg-mine {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; height: 100%;
}
.mk-pkg-mine.active { border-color: #86efac; background: #f0fdf4; }
.mk-pkg-mine .sub { font-size: 13px; color: var(--muted); }

.mk-tx-list { display: grid; gap: 10px; }
.mk-tx-row {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px;
}
.mk-tx-row .ico {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mk-tx-row .ico.out { background: #fff7ed; color: #ea580c; }
.mk-tx-row .ico.in { background: #ecfdf5; color: #059669; }
.mk-tx-row .body { flex: 1; min-width: 0; }
.mk-tx-row .title { font-weight: 800; font-size: 14.5px; }
.mk-tx-row .sub { font-size: 12.5px; color: var(--muted); }
.mk-tx-row .right { text-align: right; }
.mk-tx-row .amt { font-weight: 800; font-size: 14.5px; margin-bottom: 4px; }
.mk-tx-row .amt.plus { color: #059669; }
.mk-tx-row .amt.minus { color: #c2410c; }

.mk-offer-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px dashed #fdba74; border-radius: 14px; padding: 16px; height: 100%;
}
.mk-offer-card.dim { opacity: .55; border-style: solid; border-color: var(--line); }
.mk-offer-card .pct {
  width: 56px; height: 56px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, #fb923c, #ea580c); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px;
}
.mk-offer-card .sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.mk-offer-card .code { font-size: 13px; margin-top: 6px; }
.mk-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; }

@media (max-width: 575.98px) {
  .mk-account-quick { grid-template-columns: repeat(2, 1fr); }
  .mk-account-card { flex-wrap: wrap; }
  .mk-account-card .mk-btn { width: 100%; margin-left: 0; }
}

.mk-browse { padding: 18px 0 42px; }
.mk-browse-crumb {
  font-size: 13px; color: var(--muted); display: flex; gap: 8px; align-items: center; margin-bottom: 8px;
}
.mk-browse-crumb a { color: var(--muted); text-decoration: none; }
.mk-browse-crumb a:hover { color: var(--blue); }
.mk-browse-title-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 14px; flex-wrap: wrap;
}
.mk-browse-title-row h1 {
  font-size: clamp(22px, 3vw, 28px); font-weight: 800; margin: 0; letter-spacing: -.02em;
}
.mk-save-search {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: 8px 14px; font-size: 13.5px; font-weight: 650; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
}
.mk-save-search:hover { border-color: var(--blue); color: var(--blue); }

.mk-filter-panel {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 16px;
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
}
.mk-pill-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 10px; padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 12px;
}
.mk-pill-group {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px; flex: 1; min-width: 0;
}
.mk-pill {
  border: 1px solid #e5e7eb; background: #fff; color: var(--ink);
  border-radius: 999px; padding: 9px 14px; font-size: 13.5px; font-weight: 650;
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
}
.mk-pill:hover, .mk-pill.is-on { border-color: #cbd5e1; background: #fff; }
.mk-pill-dark {
  background: #1f2937; color: #fff; border-color: #1f2937;
}
.mk-pill-dark:hover { background: #111827; color: #fff; }
.mk-clear-filters {
  flex-shrink: 0; color: var(--blue); font-size: 13.5px; font-weight: 700;
  text-decoration: none; padding: 8px 2px; white-space: nowrap;
}
.mk-clear-filters:hover { color: var(--orange); }

.mk-drop {
  border: 1px solid var(--line); border-radius: 12px; padding: 6px;
  box-shadow: 0 12px 28px rgba(15,23,42,.12); max-height: 360px; overflow: auto;
}
.mk-drop-wide { min-width: 280px; }
.mk-drop .dropdown-item {
  border-radius: 8px; font-size: 13.5px; padding: 9px 12px; cursor: pointer;
}
.mk-drop .dropdown-item.active,
.mk-drop .dropdown-item:active { background: rgba(3,78,162,.08); color: var(--blue); }

.mk-area-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: nowrap;
}
.mk-area-label { font-size: 13.5px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.mk-area-chips {
  display: flex; flex-wrap: wrap; gap: 8px; flex: 1; min-width: 0;
  justify-content: flex-start;
}
.mk-area-chip {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 999px;
  padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--ink);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.mk-area-chip:hover, .mk-area-chip.active {
  border-color: var(--blue); color: var(--blue); background: #fff;
  box-shadow: 0 0 0 1px rgba(3,78,162,.12);
}
.mk-area-chip.mk-near { border-style: dashed; margin-left: auto; }

.mk-quick-types {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px;
  width: 100%; margin-bottom: 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.mk-quick-type {
  background: #f8fafc; border: 1px solid #e5e7eb; border-radius: 12px;
  padding: 14px 8px; text-align: center; text-decoration: none; color: var(--ink);
  transition: .15s; min-width: 0;
}
.mk-quick-type:hover, .mk-quick-type.active {
  border-color: rgba(3,78,162,.4); color: var(--blue); background: #fff;
  box-shadow: 0 4px 14px rgba(15,23,42,.06);
}
.mk-quick-type .ico {
  width: 44px; height: 44px; margin: 0 auto 8px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; color: var(--ink); font-size: 18px;
  border: 1px solid #eef2f7;
}
.mk-quick-type.active .ico { background: rgba(3,78,162,.08); color: var(--blue); border-color: transparent; }
.mk-quick-type .lbl { font-size: 12.5px; font-weight: 650; display: block; line-height: 1.3; }

.mk-subbar {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 0 12px; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap; margin-bottom: 12px; min-height: 52px;
  box-shadow: 0 1px 2px rgba(15,23,42,.03);
}
.mk-sub-tabs { display: flex; gap: 4px; }
.mk-sub-tabs a {
  text-decoration: none; color: var(--muted); font-weight: 700; font-size: 14px;
  padding: 14px 12px; border-bottom: 2px solid transparent;
}
.mk-sub-tabs a.active { color: var(--orange); border-bottom-color: var(--orange); }
.mk-sub-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.mk-switch {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600;
  color: var(--ink); cursor: pointer; margin: 0;
}
.mk-switch input { width: 36px; height: 20px; accent-color: var(--orange); }
.mk-sort-btn {
  border: 0; background: transparent; font-size: 13.5px; font-weight: 650; color: var(--ink);
}
.mk-view-toggle {
  display: inline-flex; border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
}
.mk-view-toggle a {
  width: 36px; height: 32px; display: inline-flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none; background: #fff;
}
.mk-view-toggle a.active { background: #f3f4f6; color: var(--ink); }
.mk-result-meta { font-size: 13.5px; color: var(--muted); margin-bottom: 12px; font-weight: 600; }

.mk-list-view { display: flex; flex-direction: column; gap: 12px; }
.mk-card-list {
  flex-direction: row !important; min-height: 148px;
}
.mk-card-list .mk-card-media {
  width: 220px; flex-shrink: 0; aspect-ratio: auto; min-height: 148px;
}
.mk-card-list .mk-card-title { min-height: 0; -webkit-line-clamp: 2; }

.mk-side-stack { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 88px; }
.mk-side-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
}
.mk-side-head {
  width: 100%; border: 0; background: #fff; padding: 14px 16px;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 800; font-size: 14.5px; cursor: pointer;
}
.mk-side-card.collapsed .mk-side-body { display: none; }
.mk-side-card.collapsed .mk-side-head i { transform: rotate(180deg); }
.mk-side-body a {
  display: block; padding: 12px 16px; text-decoration: none; color: var(--ink);
  border-top: 1px solid #f1f5f9; font-size: 14px; font-weight: 550;
}
.mk-side-body a small { display: block; color: var(--muted); font-size: 12px; font-weight: 500; margin-top: 2px; }
.mk-side-body a:hover, .mk-side-body a.active { background: #f8fafc; color: var(--blue); }
.mk-side-more { border-top: 1px solid #f1f5f9; }
.mk-side-more summary {
  list-style: none; cursor: pointer; text-align: center; padding: 12px;
  color: var(--blue); font-weight: 700; font-size: 13.5px;
}
.mk-side-more summary::-webkit-details-marker { display: none; }
.mk-adv-filter .form-label { font-size: 12.5px; font-weight: 700; color: var(--muted); }

.mk-page-head {
  background: #fff; border-bottom: 1px solid var(--line); padding: 18px 0;
}
.mk-breadcrumb { font-size: 13px; color: var(--muted); }
.mk-breadcrumb a { color: var(--blue); text-decoration: none; }

.mk-filter {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px;
  position: sticky; top: 88px;
}
.mk-filter label { font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 4px; }
.mk-filter .form-control, .mk-filter .form-select { border-radius: 10px; font-size: 13.5px; }

.mk-toolbar {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  margin-bottom: 14px; flex-wrap: wrap;
}
.mk-toolbar .count { font-weight: 700; }

.mk-detail-gallery {
  display: grid; grid-template-columns: 2fr 1fr; gap: 8px; border-radius: 16px; overflow: hidden;
}
.mk-detail-gallery .main,
.mk-detail-gallery .mk-gallery-shot {
  position: relative;
  border: 0; padding: 0; margin: 0;
  display: block; width: 100%;
  background: #dbe3f0; cursor: zoom-in;
  overflow: hidden;
}
.mk-detail-gallery .main { aspect-ratio: 16/10; }
.mk-detail-gallery .side { display: grid; gap: 8px; }
.mk-detail-gallery .side > .mk-gallery-shot { aspect-ratio: 16/10; }
.mk-detail-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.mk-detail-gallery .mk-gallery-shot:hover img { transform: scale(1.03); }
.mk-gallery-more-wrap { position: relative; }
.mk-gallery-more {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(15, 23, 42, .52);
  color: #fff; font-size: 14px; font-weight: 700;
  letter-spacing: .01em; text-align: center; padding: 8px;
  pointer-events: none;
}
.mk-gallery-more strong { font-weight: 800; margin: 0 4px; }
.mk-gallery-video-btn {
  position: absolute; left: 14px; bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(17, 24, 39, .82); color: #fff;
  border-radius: 999px; padding: 8px 14px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  border: 1px solid rgba(255,255,255,.18);
  z-index: 2;
}
.mk-gallery-video-btn i {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--orange, #F37021);
  display: inline-flex; align-items: center; justify-content: center; font-size: 11px;
}
.mk-gallery-video-btn:hover { background: rgba(17, 24, 39, .95); }

body.mk-modal-lock { overflow: hidden; }

.mk-lightbox,
.mk-video-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
}
.mk-lightbox[hidden],
.mk-video-modal[hidden] { display: none !important; }
.mk-lightbox-backdrop,
.mk-video-backdrop {
  position: absolute; inset: 0; background: rgba(2, 6, 23, .88);
}
.mk-lightbox-dialog {
  position: relative; z-index: 1;
  width: min(1100px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  display: flex; flex-direction: column; gap: 10px;
}
.mk-lightbox-stage {
  flex: 1; min-height: 0;
  display: flex; align-items: center; justify-content: center;
  background: #0b1220; border-radius: 12px; overflow: hidden;
  max-height: min(72vh, 820px);
}
.mk-lightbox-stage img {
  max-width: 100%; max-height: min(72vh, 820px);
  object-fit: contain; display: block;
}
.mk-lightbox-close {
  position: absolute; top: -4px; right: -4px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.12); color: #fff;
  font-size: 18px; cursor: pointer;
}
.mk-lightbox-close:hover { background: rgba(255,255,255,.22); }
.mk-lightbox-nav {
  position: absolute; top: 42%; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.12); color: #fff;
  font-size: 18px; cursor: pointer;
  transform: translateY(-50%);
}
.mk-lightbox-nav:hover { background: rgba(255,255,255,.22); }
.mk-lightbox-nav.prev { left: -8px; }
.mk-lightbox-nav.next { right: -8px; }
.mk-lightbox-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  color: rgba(255,255,255,.9); font-size: 14px; font-weight: 700;
  padding: 0 4px;
}
.mk-lightbox-video {
  border: 0; border-radius: 999px; cursor: pointer;
  background: var(--orange, #F37021); color: #fff;
  padding: 8px 14px; font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
}
.mk-lightbox-thumbs {
  display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px;
  scrollbar-width: thin;
}
.mk-lightbox-thumbs .thumb {
  flex: 0 0 auto; width: 72px; height: 52px; padding: 0; border: 2px solid transparent;
  border-radius: 8px; overflow: hidden; background: #1f2937; cursor: pointer;
}
.mk-lightbox-thumbs .thumb.is-active { border-color: #fff; }
.mk-lightbox-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.mk-video-dialog {
  position: relative; z-index: 1;
  width: min(960px, calc(100vw - 24px));
  background: #000; border-radius: 12px; overflow: hidden;
}
.mk-video-dialog video {
  display: block; width: 100%; max-height: min(80vh, 720px); background: #000;
}
.mk-video-dialog .mk-lightbox-close { top: 10px; right: 10px; }

.mk-panel {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px;
}
.mk-panel h2, .mk-panel h3 { font-weight: 800; }
.mk-detail-heading {
  font-size: 18px; font-weight: 800; margin: 0 0 14px; letter-spacing: -.01em;
}
.mk-detail-desc {
  line-height: 1.75; color: #334155; margin: 0; font-size: 14.5px; white-space: pre-line;
}
.mk-specs {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.mk-spec {
  background: #f7f9fc; border-radius: 10px; padding: 12px;
  font-size: 13px;
}
.mk-spec b { display: block; color: var(--muted); font-weight: 600; font-size: 11.5px; margin-bottom: 2px; }

.mk-feat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px;
}
.mk-feat-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center; gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid #eef2f7;
  font-size: 14px;
}
.mk-feat-col .mk-feat-row:last-child { border-bottom: 0; }
.mk-feat-ico {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #374151; font-size: 15px;
}
.mk-feat-label { color: #4b5563; font-weight: 500; min-width: 0; }
.mk-feat-val { color: #111827; font-weight: 700; text-align: right; white-space: nowrap; }

.mk-amenity-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.mk-amenity-tags span {
  display: inline-flex; align-items: center; gap: 6px;
  background: #f1f5f9; border-radius: 999px; padding: 6px 12px;
  font-size: 13px; font-weight: 600; color: #334155;
}
.mk-amenity-tags i { color: var(--green, #51B848); font-size: 11px; }

.mk-nearby-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.mk-nearby-item {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line); border-radius: 12px; padding: 12px;
  background: #fafbfc;
}
.mk-nearby-item .ico {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: #eff6ff; color: var(--blue); font-size: 15px;
}
.mk-nearby-item .cat { font-size: 11.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.mk-nearby-item .name { font-size: 13.5px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.mk-nearby-item .dist { margin-left: auto; font-size: 12.5px; font-weight: 800; color: var(--orange, #F37021); white-space: nowrap; }

.mk-map-address {
  font-size: 13.5px; color: var(--muted); font-weight: 600;
}
.mk-map-address i { color: var(--orange, #F37021); margin-right: 4px; }
.mk-listing-map {
  height: 320px; width: 100%; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line); background: #e2e8f0; z-index: 0;
}

.mk-faq-list { display: grid; gap: 8px; }
.mk-faq-item {
  border: 1px solid var(--line); border-radius: 12px; background: #fff; overflow: hidden;
}
.mk-faq-item summary {
  list-style: none; cursor: pointer; padding: 12px 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.mk-faq-item summary::-webkit-details-marker { display: none; }
.mk-faq-item summary::after {
  content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  float: right; margin-top: -22px; color: #94a3b8; font-size: 12px;
}
.mk-faq-item[open] summary::after { content: "\f077"; }
.mk-faq-item .q { font-size: 14.5px; font-weight: 750; color: var(--ink); padding-right: 24px; }
.mk-faq-item .meta { font-size: 12px; color: var(--muted); }
.mk-faq-item .a {
  padding: 0 14px 14px; font-size: 14px; color: #475569; line-height: 1.6;
  border-top: 1px dashed #e2e8f0; margin-top: 0; padding-top: 12px;
}
.mk-pager {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px; margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--line);
}
.mk-pager-info { font-size: 13.5px; color: var(--muted); }
.mk-pager-info strong { color: var(--ink); font-weight: 800; }
.mk-pager-list {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  list-style: none; margin: 0; padding: 0;
}
.mk-pager-btn {
  min-width: 36px; height: 36px; padding: 0 10px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; border: 1px solid var(--line);
  background: #fff; color: var(--ink); text-decoration: none;
  font-size: 13.5px; font-weight: 700;
}
a.mk-pager-btn:hover { border-color: var(--blue); color: var(--blue); background: #eff6ff; }
.mk-pager-btn.is-active {
  background: var(--blue); border-color: var(--blue); color: #fff; cursor: default;
}
.mk-pager-btn.is-disabled {
  opacity: .4; cursor: not-allowed; background: #f8fafc;
}
.mk-pager-ellipsis {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 24px; color: var(--muted); font-weight: 700;
}

@media (max-width: 575.98px) {
  .mk-pager { justify-content: center; }
  .mk-pager-info { width: 100%; text-align: center; }
}

@media (max-width: 767.98px) {
  .mk-nearby-grid { grid-template-columns: 1fr; }
  .mk-listing-map { height: 260px; }
}

.mk-meta-strip {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px 24px;
  padding: 18px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .03);
}
.mk-meta-item { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.mk-meta-item .lbl { font-size: 13px; color: #94a3b8; font-weight: 500; }
.mk-meta-item .val { font-size: 15px; font-weight: 800; color: #0f172a; }

.mk-agent-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.mk-agent-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: #eef2ff; color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center; font-size: 18px;
}

.mk-agent-page { padding-bottom: 48px; }
.mk-agent-hero {
  height: 220px;
  background: center/cover no-repeat #0b1b3f;
  position: relative;
}
.mk-agent-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,45,148,.25), rgba(7,45,148,.55));
}
.mk-agent-card {
  position: relative; z-index: 2;
  margin-top: -56px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 18px 20px; display: flex; align-items: end; gap: 16px; flex-wrap: wrap;
  box-shadow: 0 10px 28px rgba(15,23,42,.08);
}
.mk-agent-avatar-lg {
  width: 112px; height: 112px; border-radius: 50%; object-fit: cover;
  border: 4px solid #fff; box-shadow: 0 4px 16px rgba(15,23,42,.15);
  margin-top: -48px; background: #e2e8f0;
}
.mk-agent-card-main { flex: 1; min-width: 220px; }
.mk-agent-card-main h1 {
  font-size: clamp(18px, 2.4vw, 24px); font-weight: 800; margin: 0 0 8px; line-height: 1.3;
}
.mk-agent-card-meta {
  display: flex; flex-wrap: wrap; gap: 14px; color: var(--muted); font-size: 13.5px; font-weight: 600;
}
.mk-agent-card-meta i { color: #f59e0b; margin-right: 4px; }
.mk-agent-card-meta .fa-comment-dots { color: var(--blue); }
.mk-agent-card-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-left: auto; }
.mk-agent-card-actions .mk-btn { border-radius: 999px; padding: 10px 18px; }
.mk-agent-card-actions .is-on { background: #ecfdf5; border-color: #6ee7b7; color: #047857; }

.mk-agent-tabs {
  display: flex; gap: 8px; margin: 18px 0 16px;
  border-bottom: 1px solid var(--line);
}
.mk-agent-tabs a {
  text-decoration: none; color: var(--muted); font-weight: 750; font-size: 15px;
  padding: 12px 8px; border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.mk-agent-tabs a.active { color: var(--ink); border-bottom-color: var(--ink); }

.mk-agent-block-title { font-size: 20px; font-weight: 800; margin: 0 0 12px; }
.mk-agent-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.mk-agent-pill {
  appearance: none; border: 1px solid #e5e7eb; background: #f3f4f6; color: var(--ink);
  border-radius: 999px; padding: 8px 14px; font-size: 13px; font-weight: 650;
  min-height: 38px; cursor: pointer;
}

.mk-agent-listing {
  display: block; text-decoration: none; color: inherit; height: 100%;
}
.mk-agent-listing .media {
  position: relative; aspect-ratio: 4/5; border-radius: 14px; overflow: hidden; background: #e2e8f0;
}
.mk-agent-listing .media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mk-agent-listing .heart {
  position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.92); color: #334155;
  display: inline-flex; align-items: center; justify-content: center; pointer-events: none;
}
.mk-agent-listing .time,
.mk-agent-listing .media-count {
  position: absolute; bottom: 10px; color: #fff; font-size: 12px; font-weight: 650;
  text-shadow: 0 1px 4px rgba(0,0,0,.45);
}
.mk-agent-listing .time { left: 10px; }
.mk-agent-listing .media-count { right: 10px; }
.mk-agent-listing .body { padding: 10px 2px 4px; }
.mk-agent-listing .title {
  font-size: 14px; font-weight: 750; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 2.7em; margin-bottom: 4px;
}
.mk-agent-listing .spec { color: var(--muted); font-size: 12.5px; margin-bottom: 4px; }
.mk-agent-listing .price-row { display: flex; gap: 10px; align-items: baseline; margin-bottom: 4px; }
.mk-agent-listing .price { color: #e11d48; font-weight: 800; font-size: 16px; }
.mk-agent-listing .area { color: var(--ink); font-weight: 650; font-size: 13.5px; }
.mk-agent-listing .loc { color: var(--muted); font-size: 12.5px; }
.mk-agent-listing .loc i { margin-right: 4px; }

.mk-agent-about { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.mk-agent-block { padding: 18px 20px; border-bottom: 1px solid #eef2f7; }
.mk-agent-block:last-child { border-bottom: 0; }
.mk-agent-block h2 { font-size: 17px; font-weight: 800; margin: 0 0 12px; }
.mk-agent-line {
  display: flex; align-items: flex-start; gap: 10px;
  color: #475569; font-size: 14px; margin-bottom: 8px;
}
.mk-agent-line i { width: 18px; text-align: center; margin-top: 3px; color: #64748b; }
.mk-agent-intro { color: #64748b; margin: 4px 0 12px; line-height: 1.55; }
.mk-agent-kv { color: #64748b; font-size: 14px; margin-bottom: 6px; }
.mk-agent-kv span { color: #94a3b8; margin-right: 6px; }

.mk-review-summary {
  display: flex; align-items: center; gap: 12px;
  background: #fff4eb; border-radius: 12px; padding: 14px 16px; margin-bottom: 14px;
}
.mk-review-summary .score { font-size: 32px; font-weight: 800; line-height: 1; }
.mk-review-summary .label { font-weight: 800; }
.mk-review-summary .label i { color: #f59e0b; }
.mk-review-summary .sub { color: var(--muted); font-size: 13px; }
.mk-review-list {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-bottom: 14px;
}
.mk-review-card {
  border: 1px solid #e5e7eb; border-radius: 12px; padding: 14px; background: #fff;
}
.mk-review-card .head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.mk-review-card .head img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.mk-review-card .stars { color: #f59e0b; font-size: 12px; margin-bottom: 8px; }
.mk-review-card .when { color: var(--muted); margin-left: 8px; font-weight: 600; }
.mk-review-card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.mk-review-card .tags span {
  background: #f3f4f6; border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 600; color: #475569;
}
.mk-review-card .ref { font-size: 12.5px; color: var(--muted); }
.mk-review-card .ref b { color: #e11d48; margin-left: 4px; }
.mk-review-more { width: 100%; border-radius: 999px; }

.mk-agent {
  position: sticky; top: 88px;
}
.mk-agent .phone {
  font-size: 20px; font-weight: 800; color: var(--blue);
}

.mk-flash {
  border-radius: 10px; padding: 12px 14px; margin-bottom: 14px; font-size: 14px;
}
.mk-flash.ok { background: #e8f8ec; color: #1f7a3a; }
.mk-flash.err { background: #fdeceb; color: #b42318; }

/* ===== Contact page (/lien-he) ===== */
.mk-contact-hero {
  position: relative;
  color: #fff;
  padding: 36px 0 48px;
  overflow: hidden;
}
.mk-contact-hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(125deg, rgba(7,45,148,.92) 0%, rgba(3,78,162,.84) 48%, rgba(6,26,74,.94) 100%),
    url('/images/login-hero.jpg') center/cover no-repeat;
}
.mk-contact-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(243,112,33,.28), transparent 42%),
    radial-gradient(circle at 88% 70%, rgba(81,184,72,.14), transparent 40%);
  pointer-events: none;
}
.mk-contact-hero .container { z-index: 1; }
.mk-contact-hero-crumb {
  color: rgba(255,255,255,.72);
  margin-bottom: 18px;
}
.mk-contact-hero-crumb a { color: #fff; text-decoration: none; }
.mk-contact-hero-crumb a:hover { color: var(--orange); }
.mk-contact-hero-crumb span { margin: 0 6px; opacity: .55; }
.mk-contact-eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}
.mk-contact-title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.mk-contact-lead {
  margin: 0;
  max-width: 42ch;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.88);
}
.mk-contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
@media (min-width: 992px) {
  .mk-contact-hero-actions { justify-content: flex-end; }
}

.mk-contact-page { padding-top: 28px; }
.mk-contact-channels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: -52px 0 36px;
  position: relative;
  z-index: 2;
}
.mk-contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.mk-contact-channel:hover {
  border-color: rgba(3, 78, 162, .28);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: inherit;
}
.mk-contact-channel.is-static { cursor: default; }
.mk-contact-channel.is-static:hover { transform: none; }
.mk-contact-channel-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #e8f0fb, #f3f7fc);
  color: var(--blue);
  font-size: 16px;
  flex-shrink: 0;
}
.mk-contact-channel-body { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.mk-contact-channel-body .lbl {
  font-size: 12px; font-weight: 650; color: var(--muted);
}
.mk-contact-channel-body strong {
  font-size: 15px; font-weight: 800; color: var(--ink);
  word-break: break-word;
}
.mk-contact-channel-body .hint {
  font-size: 12.5px; color: var(--muted);
}

.mk-contact-aside-title {
  font-size: 20px; font-weight: 800; margin: 0 0 16px; letter-spacing: -.01em;
}
.mk-contact-benefits {
  list-style: none; margin: 0 0 28px; padding: 0;
  display: grid; gap: 12px;
}
.mk-contact-benefits li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14.5px; line-height: 1.5; color: #334155;
}
.mk-contact-benefits i {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #e8f8ec; color: var(--green);
  font-size: 11px; margin-top: 2px; flex-shrink: 0;
}
.mk-contact-offices h3 {
  font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted); margin: 0 0 12px;
}
.mk-contact-office {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.mk-contact-office-city {
  font-weight: 800; font-size: 14.5px; margin-bottom: 4px; color: var(--blue);
}
.mk-contact-office p {
  margin: 0 0 8px; font-size: 13.5px; color: var(--muted); line-height: 1.45;
}
.mk-contact-office a {
  font-size: 13.5px; font-weight: 700; color: var(--orange); text-decoration: none;
}
.mk-contact-office a:hover { text-decoration: underline; }
.mk-contact-hours {
  display: flex; gap: 12px; align-items: flex-start;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff7f0;
  border: 1px solid #ffe0c7;
}
.mk-contact-hours > i {
  color: var(--orange); font-size: 18px; margin-top: 2px;
}
.mk-contact-hours strong {
  display: block; font-size: 13.5px; margin-bottom: 2px;
}
.mk-contact-hours span {
  font-size: 13px; color: var(--muted); line-height: 1.4;
}

.mk-contact-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 24px 28px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, .06);
}
.mk-contact-form-head { margin-bottom: 18px; }
.mk-contact-form-head h2 {
  margin: 0 0 6px; font-size: 22px; font-weight: 800; letter-spacing: -.01em;
}
.mk-contact-form-head p {
  margin: 0; color: var(--muted); font-size: 14px;
}
.mk-contact-form .form-label {
  font-size: 13px; font-weight: 700; color: #334155; margin-bottom: 6px;
}
.mk-contact-form .form-label .req { color: var(--orange); }
.mk-contact-form .form-control,
.mk-contact-form .form-select {
  border-radius: 10px;
  border-color: #dbe3ee;
  font-size: 14.5px;
}
.mk-contact-form .form-control:focus,
.mk-contact-form .form-select:focus {
  border-color: rgba(3, 78, 162, .45);
  box-shadow: 0 0 0 .2rem rgba(3, 78, 162, .12);
}
.mk-need-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 18px;
}
.mk-need-pill { margin: 0; cursor: pointer; }
.mk-need-pill input {
  position: absolute; opacity: 0; pointer-events: none;
}
.mk-need-pill span {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f8fafc;
  font-size: 13px; font-weight: 700; color: #475569;
  transition: .15s;
}
.mk-need-pill span i { font-size: 12px; opacity: .8; }
.mk-need-pill input:checked + span {
  background: rgba(3, 78, 162, .08);
  border-color: rgba(3, 78, 162, .35);
  color: var(--blue);
}
.mk-need-pill:hover span { border-color: rgba(3, 78, 162, .3); }
.mk-contact-form-foot {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px;
  padding-top: 4px;
}
.mk-contact-privacy {
  margin: 0;
  font-size: 12.5px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 36ch;
  line-height: 1.4;
}
.mk-contact-privacy i { color: var(--green); }

.mk-contact-faq { margin-top: 52px; }
.mk-contact-accordion {
  width: 100%;
  max-width: none;
  margin: 0;
  border: 0;
}
.mk-contact-accordion .accordion-item {
  background: #fff;
  border: 1px solid var(--line) !important;
  border-radius: 12px !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.mk-contact-accordion .accordion-button {
  font-size: 15px;
  font-weight: 750;
  color: var(--ink);
  background: #fff;
  box-shadow: none !important;
  padding: 16px 18px;
}
.mk-contact-accordion .accordion-button:not(.collapsed) {
  color: var(--blue);
  background: #f7faff;
}
.mk-contact-accordion .accordion-button::after {
  background-size: 14px;
}
.mk-contact-accordion .accordion-body {
  padding: 0 18px 16px;
  font-size: 14.5px;
  line-height: 1.65;
  color: #475569;
}
.mk-contact-accordion .accordion-body a {
  color: var(--blue);
  font-weight: 650;
  text-decoration: none;
}
.mk-contact-accordion .accordion-body a:hover { text-decoration: underline; }

/* ===== About landing ===== */
.mk-about-hero {
  position: relative;
  padding: 48px 0 56px;
  overflow: hidden;
  color: #fff;
}
.mk-about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(3, 78, 162, .94) 0%, rgba(15, 23, 42, .88) 55%, rgba(2, 48, 102, .92) 100%),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80") center/cover;
}
.mk-about-crumb { color: rgba(255,255,255,.72); margin-bottom: 18px; }
.mk-about-crumb a { color: rgba(255,255,255,.9); }
.mk-about-eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #93c5fd;
}
.mk-about-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  max-width: 720px;
  margin: 0 0 14px;
}
.mk-about-lead {
  font-size: 16px;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 0 24px;
  color: rgba(255,255,255,.82);
}
.mk-about-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.mk-about-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
}
.mk-about-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -.02em;
}
.mk-about-stat span {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 650;
}
.mk-about-feature {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px;
}
.mk-about-feature i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 78, 162, .08);
  color: var(--blue);
  margin-bottom: 14px;
}
.mk-about-feature h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 8px;
}
.mk-about-feature p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
}
.mk-about-cta { padding-top: 0; }
.mk-about-cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(120deg, #f0f7ff, #fff);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 28px;
}
.mk-about-cta-inner h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 6px;
}
.mk-about-cta-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* ===== Info / legal pages ===== */
.mk-info-page { padding-top: 24px; }
.mk-info-nav {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 10px;
  position: sticky;
  top: 88px;
}
.mk-info-nav-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 12px 10px;
}
.mk-info-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 650;
}
.mk-info-nav a:hover { background: #f7f9fc; color: var(--blue); }
.mk-info-nav a.active {
  background: rgba(3, 78, 162, .08);
  color: var(--blue);
}
.mk-info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 28px 32px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
}
.mk-info-updated {
  margin: 0 0 18px;
  font-size: 12.5px;
  color: var(--muted);
}
.mk-info-prose .lead {
  font-size: 16px;
  line-height: 1.65;
  color: #334155;
  margin-bottom: 22px;
}
.mk-info-prose h2 {
  font-size: 17px;
  font-weight: 800;
  margin: 26px 0 10px;
  letter-spacing: -.01em;
}
.mk-info-prose p,
.mk-info-prose li {
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}
.mk-info-prose ul,
.mk-info-prose ol {
  padding-left: 1.2rem;
  margin-bottom: 14px;
}
.mk-info-prose a {
  color: var(--blue);
  font-weight: 650;
  text-decoration: none;
}
.mk-info-prose a:hover { text-decoration: underline; }

.mk-empty {
  background: #fff; border: 1px dashed var(--line); border-radius: 14px;
  padding: 48px 20px; text-align: center; color: var(--muted);
}

.mk-mobile-toggle { display: none; border: 0; background: #f1f4f8; width: 42px; height: 42px; border-radius: 10px; }
body.mk-drawer-lock { overflow: hidden; }

.mk-drawer-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 1040;
  background: rgba(15, 23, 42, .45);
}
.mk-drawer-backdrop.is-open { display: block; }

.mk-drawer {
  display: none;
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 1050;
  width: min(360px, 88vw);
  background: #fff;
  box-shadow: 8px 0 32px rgba(15, 23, 42, .16);
  transform: translateX(-105%);
  transition: transform .28s ease;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.mk-drawer.is-open { transform: translateX(0); }

.mk-drawer-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: #fff; z-index: 1;
}
.mk-drawer-brand img { height: 32px; width: auto; display: block; }
.mk-drawer-close {
  width: 40px; height: 40px; border: 0; border-radius: 10px;
  background: #f3f4f6; color: var(--ink); font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
}

.mk-drawer-auth {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 16px 16px 10px;
}
.mk-drawer-btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; border-radius: 10px; font-weight: 700; font-size: 14.5px;
  text-decoration: none; color: var(--ink);
  border: 1px solid #d1d5db; background: #fff;
}
.mk-drawer-btn-accent {
  background: var(--orange); border-color: var(--orange); color: #fff;
}
.mk-drawer-post {
  display: flex; align-items: center; justify-content: center;
  margin: 0 16px 12px; height: 44px; border-radius: 10px;
  border: 1px solid #d1d5db; background: #fff;
  color: var(--ink); font-weight: 700; font-size: 14.5px; text-decoration: none;
}
.mk-drawer-post:hover { border-color: var(--blue); color: var(--blue); }

.mk-drawer-nav { padding: 4px 0 28px; }
.mk-drawer-link,
.mk-drawer-toggle {
  width: 100%; border: 0; background: transparent;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 14px 18px; text-align: left;
  font-size: 15.5px; font-weight: 650; color: #111827;
  text-decoration: none; position: relative;
}
.mk-drawer-left {
  display: inline-flex; align-items: center; gap: 14px; min-width: 0;
}
.mk-drawer-link i,
.mk-drawer-left i {
  width: 22px; text-align: center; font-size: 17px; color: #374151;
}
.mk-drawer-chevron {
  font-size: 12px; color: #9ca3af; transition: transform .2s ease;
}
.mk-drawer-group.is-open .mk-drawer-chevron { transform: rotate(180deg); }

.mk-drawer-link.is-active,
.mk-drawer-group.is-active > .mk-drawer-toggle {
  background: #f3f4f6;
}
.mk-drawer-link.is-active::before,
.mk-drawer-group.is-active > .mk-drawer-toggle::before {
  content: "";
  position: absolute; left: 0; top: 8px; bottom: 8px; width: 3px;
  border-radius: 0 3px 3px 0; background: var(--orange);
}

.mk-drawer-app,
.mk-drawer-app i { color: #0d9488 !important; }

.mk-drawer-sub {
  display: none;
  padding: 0 12px 10px 52px;
}
.mk-drawer-group.is-open .mk-drawer-sub { display: block; }
.mk-drawer-sub a {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 10px 8px; font-size: 14px; font-weight: 550;
  color: #4b5563; text-decoration: none; border-radius: 8px;
}
.mk-drawer-sub a:hover { background: #f8fafc; color: var(--blue); }

@media (max-width: 991.98px) {
  .mk-search-grid { grid-template-columns: 1fr 1fr; }
  .mk-search-grid .mk-search-submit { grid-column: 1 / -1; }
  .mk-nav { display: none !important; }
  .mk-drawer { display: block; }
  .mk-mobile-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .mk-header-inner { position: relative; flex-wrap: nowrap; }
  .mk-detail-gallery { grid-template-columns: 1fr; }
  .mk-detail-gallery .side { grid-template-columns: 1fr 1fr; }
  .mk-lightbox-nav.prev { left: 4px; }
  .mk-lightbox-nav.next { right: 4px; }
  .mk-lightbox-dialog { width: calc(100vw - 12px); }
  .mk-filter { position: static; margin-bottom: 16px; }
  .mk-agent { position: static; }
  .mk-hero {
    min-height: clamp(440px, 58vh, 560px);
    align-items: center;
    padding: 48px 0 72px;
  }
  .mk-hero h1 { max-width: none; }
  .mk-cats { --mk-cat-overlap: 56px; }
  .mk-agent-card { align-items: flex-start; }
  .mk-agent-card-actions { width: 100%; margin-left: 0; }
  .mk-agent-card-actions .mk-btn { flex: 1; justify-content: center; }
  .mk-review-list { grid-template-columns: 1fr; }
  .mk-agent-avatar-lg { width: 88px; height: 88px; margin-top: -36px; }
  .mk-agent-hero { height: 160px; }
  .mk-area-row { flex-wrap: wrap; }
  .mk-area-chip.mk-near { margin-left: 0; }
  .mk-pill-row { align-items: flex-start; }
  .mk-clear-filters { width: 100%; text-align: right; }
  .mk-side-stack { position: static; }
  .mk-card-list { flex-direction: column !important; }
  .mk-card-list .mk-card-media { width: 100%; aspect-ratio: 16/10; min-height: 0; }
  .mk-clear-filters { margin-left: 0; }
  .mk-contact-strip-inner { gap: 14px; }
  .mk-contact-item { flex: 1 1 calc(50% - 10px); min-width: 0; }
  .mk-contact-channels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -36px;
  }
  .mk-contact-form-card { padding: 20px 16px 22px; }
  .mk-contact-hero { padding: 28px 0 56px; }
  .mk-contact-hero-actions .mk-btn { flex: 1 1 auto; justify-content: center; }
  .mk-info-nav { position: static; }
  .mk-info-card { padding: 20px 16px 24px; }
}

@media (max-width: 575.98px) {
  .mk-search-grid { grid-template-columns: 1fr; }
  .mk-specs { grid-template-columns: 1fr; }
  .mk-feat-grid { grid-template-columns: 1fr; gap: 0; }
  .mk-feat-col + .mk-feat-col .mk-feat-row:first-child { border-top: 1px solid #eef2f7; }
  .mk-meta-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 12px; }
  .mk-feat-val { white-space: normal; }
  .mk-card-body { padding: 10px; gap: 4px; }
  .mk-price { font-size: 15px; }
  .mk-card-title { font-size: 13px; min-height: 2.6em; }
  .mk-meta { gap: 6px; font-size: 11.5px; }
  .mk-loc { font-size: 11.5px; }
  .mk-badge { font-size: 10px; padding: 5px 8px; }
  .mk-contact-channels { grid-template-columns: 1fr; margin-top: -28px; }
  .mk-need-pill span { font-size: 12.5px; padding: 8px 10px; }
  .mk-contact-form-foot { flex-direction: column; align-items: stretch; }
  .mk-contact-form-foot .mk-btn { width: 100%; }
}
