/**
 * JiraniHomes Homepage v2 — 4 Tabs
 * BnB | Monthly Rentals | Marketplace | Services
 */

:root {
  --jh-navy:       #2D3A5C;
  --jh-navy2:      #1e2940;
  --jh-gold:       #F5A623;
  --jh-gold2:      #d4891a;
  --jh-green:      #25D366;
  --jh-text:       #111827;
  --jh-muted:      #6b7280;
  --jh-bg:         #f8f9fb;
  --jh-white:      #ffffff;
  --jh-border:     #e5e7eb;
  --jh-shadow:     0 2px 12px rgba(0,0,0,.07);
  --jh-shadow-lg:  0 8px 32px rgba(0,0,0,.1);
  --jh-r:          12px;
  --jh-rs:         8px;
  --jh-font:       -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  --jh-trans:      all .2s ease;
}

@media (prefers-color-scheme: dark) {
  :root {
    --jh-text:   #f9fafb;
    --jh-muted:  #9ca3af;
    --jh-bg:     #0f1117;
    --jh-white:  #161b22;
    --jh-border: #2d3748;
  }
}

/* ─ Reset ──────────────────────────────────────────────────── */
.jhh-wrap *, .jhh-wrap *::before, .jhh-wrap *::after { box-sizing: border-box; }
.jhh-wrap { font-family: var(--jh-font); color: var(--jh-text); background: var(--jh-bg); }
.jhh-wrap a { text-decoration: none; color: inherit; }
.jhh-wrap ul { list-style: none; padding: 0; margin: 0; }
.jhh-wrap button { font-family: var(--jh-font); cursor: pointer; }
.jhh-wrap img { max-width: 100%; display: block; }

/* ─ Shared Buttons ─────────────────────────────────────────── */
.jhh-btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; background: var(--jh-navy); color: #fff;
  border: none; border-radius: var(--jh-rs);
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: var(--jh-trans); text-decoration: none;
}
.jhh-btn-primary:hover { background: var(--jh-navy2); }

.jhh-btn-gold {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; background: var(--jh-gold); color: #000;
  border: none; border-radius: var(--jh-rs);
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: var(--jh-trans); text-decoration: none;
}
.jhh-btn-gold:hover { background: var(--jh-gold2); color: #fff; }

.jhh-btn-outline {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; background: transparent; color: var(--jh-navy);
  border: 1.5px solid var(--jh-border); border-radius: var(--jh-rs);
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: var(--jh-trans); text-decoration: none;
}
.jhh-btn-outline:hover { border-color: var(--jh-navy); }

/* ─ Nav ────────────────────────────────────────────────────── */
.jhh-nav {
  background: var(--jh-white);
  border-bottom: 1px solid var(--jh-border);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.jhh-nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 64px; padding: 0 24px;
  display: flex; align-items: center; gap: 28px;
}

/* Logo */
.jhh-logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.jhh-logo-mark { display: flex; flex-direction: column; align-items: center; }
.jhh-logo-houses { display: flex; gap: 3px; align-items: flex-end; }
.jhh-logo-houses .h-a,
.jhh-logo-houses .h-b,
.jhh-logo-houses .h-c { background: var(--jh-navy); border-radius: 2px 2px 0 0; display: block; }
.jhh-logo-houses .h-a { width: 10px; height: 14px; }
.jhh-logo-houses .h-b { width: 10px; height: 18px; }
.jhh-logo-houses .h-c { width: 10px; height: 12px; }
.jhh-logo-arc { width: 38px; height: 8px; border-bottom: 2.5px solid var(--jh-gold); border-radius: 0 0 50px 50px; margin-top: 2px; }
.jhh-logo-text { font-size: 19px; font-weight: 600; color: var(--jh-navy); letter-spacing: -.2px; }
.jhh-dot { color: var(--jh-gold); }

.jhh-nav-links { display: flex; gap: 2px; flex: 1; }
.jhh-nav-links a { padding: 7px 13px; font-size: 14px; color: var(--jh-muted); border-radius: var(--jh-rs); transition: var(--jh-trans); font-weight: 500; }
.jhh-nav-links a:hover { color: var(--jh-navy); background: rgba(45,58,92,.06); }

.jhh-nav-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.jhh-mobile-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.jhh-mobile-btn span { display: block; width: 22px; height: 2px; background: var(--jh-navy); border-radius: 2px; transition: var(--jh-trans); }

/* ─ Hero ───────────────────────────────────────────────────── */
.jhh-hero {
  background: var(--jh-navy);
  padding: 60px 24px 52px;
  position: relative;
  overflow: hidden;
}
.jhh-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 40%, rgba(245,166,35,.12) 0%, transparent 65%);
  pointer-events: none;
}
.jhh-hero-inner {
  max-width: 860px; margin: 0 auto;
  text-align: center; position: relative; z-index: 1;
}
.jhh-eyebrow {
  display: inline-block;
  background: rgba(245,166,35,.15); color: var(--jh-gold);
  font-size: 11px; font-weight: 600; padding: 5px 16px;
  border-radius: 50px; border: 1px solid rgba(245,166,35,.2);
  margin-bottom: 20px; letter-spacing: .7px; text-transform: uppercase;
}
.jhh-h1 {
  font-size: clamp(26px, 4vw, 42px); font-weight: 700;
  color: #fff; line-height: 1.2; margin: 0 0 14px; letter-spacing: -.4px;
}
.jhh-gold { color: var(--jh-gold); }
.jhh-sub { font-size: 16px; color: rgba(255,255,255,.65); max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }

/* ─ Search Box ─────────────────────────────────────────────── */
.jhh-search-box {
  background: var(--jh-white); border-radius: 16px; overflow: hidden;
  box-shadow: var(--jh-shadow-lg); max-width: 900px; margin: 0 auto;
}
.jhh-search-tabs {
  display: flex; border-bottom: 1px solid var(--jh-border); padding: 0 4px;
  overflow-x: auto; scrollbar-width: none;
}
.jhh-search-tabs::-webkit-scrollbar { display: none; }
.jhh-stab {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 20px; font-size: 13px; font-weight: 600;
  color: var(--jh-muted); background: none; border: none;
  border-bottom: 2.5px solid transparent; cursor: pointer;
  transition: var(--jh-trans); white-space: nowrap; margin-bottom: -1px;
}
.jhh-stab:hover { color: var(--jh-navy); }
.jhh-stab.active { color: var(--jh-navy); border-color: var(--jh-navy); }

.jhh-sform { display: none; padding: 20px 20px 16px; }
.jhh-sform.active { display: block; }

.jhh-srow { display: grid; gap: 12px; align-items: end; }
.jhh-srow-4 { grid-template-columns: 2fr 1fr 1fr 1fr auto; }
.jhh-srow-5 { grid-template-columns: 2fr 1fr 1fr 1fr 1fr auto; }

.jhh-sf { display: flex; flex-direction: column; gap: 5px; }
.jhh-sf label { font-size: 11px; font-weight: 700; color: var(--jh-muted); text-transform: uppercase; letter-spacing: .5px; }
.jhh-sf input, .jhh-sf select {
  padding: 10px 12px; border: 1.5px solid var(--jh-border);
  border-radius: var(--jh-rs); font-size: 13px; color: var(--jh-text);
  background: var(--jh-white); font-family: var(--jh-font);
  width: 100%; transition: var(--jh-trans); appearance: none;
}
.jhh-sf input:focus, .jhh-sf select:focus { outline: none; border-color: var(--jh-navy); box-shadow: 0 0 0 3px rgba(45,58,92,.1); }
.jhh-input-icon { position: relative; }
.jhh-input-icon svg { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); color: var(--jh-muted); pointer-events: none; }
.jhh-input-icon input { padding-left: 36px; }

.jhh-sbtn {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 22px; background: var(--jh-gold); color: #fff;
  border: none; border-radius: var(--jh-rs);
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: var(--jh-trans); white-space: nowrap;
}
.jhh-sbtn:hover { background: var(--jh-gold2); }

/* ─ Stats ──────────────────────────────────────────────────── */
.jhh-stats { display: flex; justify-content: center; gap: 44px; margin-top: 40px; flex-wrap: wrap; }
.jhh-stat strong { display: block; font-size: 26px; font-weight: 700; color: #fff; }
.jhh-stat span   { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 2px; display: block; }

/* ─ Tabs Bar ───────────────────────────────────────────────── */
.jhh-tabsbar {
  background: var(--jh-white); border-bottom: 1px solid var(--jh-border);
  position: sticky; top: 64px; z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.jhh-tabsbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; gap: 0; overflow-x: auto; scrollbar-width: none;
}
.jhh-tabsbar-inner::-webkit-scrollbar { display: none; }
.jhh-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 26px; font-size: 14px; font-weight: 600;
  color: var(--jh-muted); background: none; border: none;
  border-bottom: 3px solid transparent; cursor: pointer;
  transition: var(--jh-trans); white-space: nowrap; margin-bottom: -1px;
}
.jhh-tab:hover { color: var(--jh-navy); }
.jhh-tab.active { color: var(--jh-navy); border-color: var(--jh-navy); }
.jhh-tab-hot {
  background: var(--jh-gold); color: #000;
  font-size: 10px; font-weight: 700; padding: 2px 7px;
  border-radius: 50px; text-transform: uppercase; letter-spacing: .3px;
}

/* ─ Panels ─────────────────────────────────────────────────── */
.jhh-panel { display: none; }
.jhh-panel.active { display: block; }
.jhh-panel-inner {
  max-width: 1200px; margin: 0 auto; padding: 36px 24px 56px;
}
.jhh-plugin-panel { padding: 0 24px; }

/* Panel header */
.jhh-ph { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; flex-wrap: wrap; gap: 14px; }
.jhh-ph h2 { font-size: 20px; font-weight: 700; margin: 0 0 4px; }
.jhh-ph p  { font-size: 14px; color: var(--jh-muted); margin: 0; }
.jhh-viewall { font-size: 14px; font-weight: 600; color: var(--jh-navy); display: flex; align-items: center; gap: 5px; }
.jhh-viewall:hover { text-decoration: underline; }

/* Area chips */
.jhh-area-strip { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; margin-bottom: 24px; scrollbar-width: none; }
.jhh-area-strip::-webkit-scrollbar { display: none; }
.jhh-chip {
  padding: 7px 16px; border: 1.5px solid var(--jh-border);
  border-radius: 50px; font-size: 13px; white-space: nowrap;
  cursor: pointer; color: var(--jh-muted); background: var(--jh-white);
  flex-shrink: 0; font-family: var(--jh-font); transition: var(--jh-trans);
}
.jhh-chip:hover, .jhh-chip.active { background: rgba(45,58,92,.08); color: var(--jh-navy); border-color: var(--jh-navy); }

/* Quick filters */
.jhh-qfilters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.jhh-qf {
  padding: 7px 16px; border: 1.5px solid var(--jh-border); border-radius: 50px;
  font-size: 13px; font-weight: 500; color: var(--jh-muted);
  background: var(--jh-white); cursor: pointer; transition: var(--jh-trans); font-family: var(--jh-font);
}
.jhh-qf:hover, .jhh-qf.active { background: var(--jh-navy); color: #fff; border-color: var(--jh-navy); }
.jhh-qf-gold:hover, .jhh-qf-gold.active { background: var(--jh-gold); border-color: var(--jh-gold); color: #000; }

/* ─ Property Grid ──────────────────────────────────────────── */
.jhh-props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* ─ Property Card ──────────────────────────────────────────── */
.jhh-prop-card {
  background: var(--jh-white); border: 1px solid var(--jh-border);
  border-radius: var(--jh-r); overflow: hidden;
  display: flex; flex-direction: column; transition: var(--jh-trans);
}
.jhh-prop-card:hover { box-shadow: var(--jh-shadow); transform: translateY(-2px); border-color: rgba(45,58,92,.18); }

.jhh-card-img-wrap {
  display: block; position: relative;
  aspect-ratio: 16/10; overflow: hidden; background: rgba(45,58,92,.06);
}
.jhh-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.jhh-prop-card:hover .jhh-card-img-wrap img { transform: scale(1.04); }
.jhh-card-img-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--jh-navy); opacity: .25; }

.jhh-badge { position: absolute; top: 9px; left: 9px; padding: 3px 9px; border-radius: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; }
.jhh-badge-navy { background: var(--jh-navy); color: #fff; }
.jhh-badge-gold { background: var(--jh-gold); color: #000; }
.jhh-badge-green { background: #d1fae5; color: #065f46; }
.jhh-badge-blue  { background: #dbeafe; color: #1e40af; }

.jhh-wishlist {
  position: absolute; top: 9px; right: 9px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--jh-muted); cursor: pointer; transition: var(--jh-trans);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.jhh-wishlist:hover { color: #e53e3e; transform: scale(1.1); }
.jhh-wishlist.saved { color: #e53e3e; }
.jhh-wishlist.saved svg { fill: #e53e3e; }

.jhh-card-body { padding: 13px 15px; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.jhh-card-price { font-size: 19px; font-weight: 700; color: var(--jh-navy); }
.jhh-card-price span { font-size: 12px; font-weight: 400; color: var(--jh-muted); }
.jhh-card-name { font-size: 13px; font-weight: 500; line-height: 1.4; }
.jhh-card-name a { color: var(--jh-text); }
.jhh-card-name a:hover { color: var(--jh-navy); }
.jhh-card-loc { font-size: 12px; color: var(--jh-muted); display: flex; align-items: center; gap: 4px; }
.jhh-card-meta { display: flex; gap: 12px; flex-wrap: wrap; padding-top: 9px; margin-top: auto; border-top: 1px solid var(--jh-border); }
.jhh-card-meta span { font-size: 12px; color: var(--jh-muted); }

.jhh-card-foot { padding: 9px 14px; border-top: 1px solid var(--jh-border); }
.jhh-btn-view {
  display: block; width: 100%; padding: 9px; text-align: center;
  font-size: 13px; font-weight: 600; color: var(--jh-navy);
  border: 1.5px solid var(--jh-navy); border-radius: var(--jh-rs);
  background: none; cursor: pointer; transition: var(--jh-trans); font-family: var(--jh-font);
}
.jhh-btn-view:hover { background: var(--jh-navy); color: #fff; }

/* ─ Empty State ────────────────────────────────────────────── */
.jhh-empty { text-align: center; padding: 56px 20px; color: var(--jh-muted); }
.jhh-empty svg { margin: 0 auto 16px; opacity: .3; }
.jhh-empty h3 { font-size: 18px; color: var(--jh-text); margin-bottom: 8px; }
.jhh-empty p  { font-size: 14px; margin-bottom: 20px; }

/* ─ Plugin Notice ──────────────────────────────────────────── */
.jhh-plugin-notice {
  text-align: center; padding: 64px 24px;
  background: rgba(45,58,92,.04); border-radius: var(--jh-r);
  margin: 32px 0; color: var(--jh-muted);
}
.jhh-plugin-notice svg { margin: 0 auto 16px; opacity: .3; }
.jhh-plugin-notice h3 { font-size: 18px; color: var(--jh-navy); margin-bottom: 8px; }
.jhh-plugin-notice p  { font-size: 14px; max-width: 380px; margin: 0 auto 24px; }

/* ─ CTA Banner ─────────────────────────────────────────────── */
.jhh-cta-banner {
  background: var(--jh-navy); border-radius: var(--jh-r);
  padding: 30px 36px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.jhh-cta-text h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.jhh-cta-text p  { font-size: 14px; color: rgba(255,255,255,.6); margin: 0; max-width: 460px; }

/* ─ Footer ─────────────────────────────────────────────────── */
.jhh-footer { background: var(--jh-navy2); color: rgba(255,255,255,.65); }
.jhh-footer-top {
  max-width: 1200px; margin: 0 auto; padding: 56px 24px 40px;
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr 1.2fr; gap: 40px;
}
.jhh-footer h4 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .7px; color: rgba(255,255,255,.4); margin-bottom: 16px;
}
.jhh-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.jhh-footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.55); transition: var(--jh-trans); }
.jhh-footer-col ul li a:hover { color: #fff; }
.jhh-footer-logo { filter: brightness(0) invert(1); opacity: .88; margin-bottom: 14px; }
.jhh-footer-logo-text { font-size: 21px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.jhh-footer-logo-text span { color: var(--jh-gold); }
.jhh-footer-tagline { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; margin-bottom: 20px; max-width: 240px; }
.jhh-social { display: flex; gap: 9px; }
.jhh-social a {
  width: 34px; height: 34px; border-radius: var(--jh-rs);
  background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); transition: var(--jh-trans);
}
.jhh-social a:hover { background: var(--jh-gold); color: #000; }

.jhh-footer-contact { display: flex; flex-direction: column; gap: 11px; }
.jhh-footer-contact li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: rgba(255,255,255,.55); }
.jhh-footer-contact li svg { flex-shrink: 0; margin-top: 1px; }
.jhh-footer-contact li a { color: rgba(255,255,255,.55); }
.jhh-footer-contact li a:hover { color: #fff; }

.jhh-newsletter { margin-top: 20px; }
.jhh-newsletter p { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.jhh-newsletter-form { display: flex; gap: 6px; }
.jhh-newsletter-form input {
  flex: 1; padding: 8px 12px; border-radius: var(--jh-rs);
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.07);
  color: #fff; font-size: 13px; outline: none; font-family: var(--jh-font);
}
.jhh-newsletter-form input::placeholder { color: rgba(255,255,255,.3); }
.jhh-newsletter-form button {
  padding: 8px 14px; background: var(--jh-gold); color: #000;
  border: none; border-radius: var(--jh-rs); font-size: 13px; font-weight: 700; cursor: pointer;
  white-space: nowrap; font-family: var(--jh-font);
}
.jhh-footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 18px 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.jhh-footer-bottom p { font-size: 12px; color: rgba(255,255,255,.28); }
.jhh-footer-bottom p a { color: rgba(255,255,255,.28); }
.jhh-footer-legal { display: flex; gap: 18px; }
.jhh-footer-legal a { font-size: 12px; color: rgba(255,255,255,.28); transition: var(--jh-trans); }
.jhh-footer-legal a:hover { color: #fff; }

/* ─ WhatsApp Float ─────────────────────────────────────────── */
.jhh-float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 56px; height: 56px; background: var(--jh-green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5); transition: var(--jh-trans);
  animation: jhh-wa-pulse 2.5s infinite;
}
.jhh-float-wa:hover { transform: scale(1.1); }
@keyframes jhh-wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,.8), 0 0 0 8px rgba(37,211,102,.1); }
}

/* ─ Plugin panel adjustments ───────────────────────────────── */
#jhh-panel-market .jhh-plugin-panel > *,
#jhh-panel-services .jhh-plugin-panel > * { padding-left: 0; padding-right: 0; }
#jhh-panel-market .nm-marketplace-wrap,
#jhh-panel-services .lsd-directory-outer { max-width: 1200px; margin: 0 auto; padding: 32px 24px 48px; }
#jhh-panel-market .nm-filters-wrap,
#jhh-panel-services .lsd-hero { border-radius: 0; }

/* ─ Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .jhh-srow-5 { grid-template-columns: 1fr 1fr 1fr; }
  .jhh-srow-5 > .jhh-sf:first-child { grid-column: 1 / -1; }
  .jhh-srow-5 > .jhh-sbtn { grid-column: 1 / -1; }
  .jhh-srow-4 { grid-template-columns: 1fr 1fr; }
  .jhh-srow-4 > .jhh-sf:first-child { grid-column: 1 / -1; }
  .jhh-srow-4 > .jhh-sbtn { grid-column: 1 / -1; }
  .jhh-footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .jhh-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .jhh-nav-links, .jhh-nav-actions { display: none; }
  .jhh-mobile-btn { display: flex; margin-left: auto; }
  .jhh-nav-inner.open .jhh-nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--jh-white); border-bottom: 1px solid var(--jh-border);
    padding: 16px 24px 24px; z-index: 199; box-shadow: var(--jh-shadow);
  }
  .jhh-nav-inner.open .jhh-nav-links a { padding: 10px 0; border-bottom: 1px solid var(--jh-border); border-radius: 0; }
  .jhh-hero { padding: 48px 16px 40px; }
  .jhh-h1 { font-size: 26px; }
  .jhh-stats { gap: 20px; }
  .jhh-stat strong { font-size: 22px; }
  .jhh-tab { padding: 13px 16px; font-size: 13px; gap: 6px; }
  .jhh-tab svg { display: none; }
  .jhh-panel-inner { padding: 24px 16px 40px; }
  .jhh-props-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .jhh-cta-banner { padding: 24px; flex-direction: column; text-align: center; }
  .jhh-footer-top { grid-template-columns: 1fr 1fr; gap: 28px; padding: 40px 16px 32px; }
  .jhh-footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .jhh-props-grid { grid-template-columns: 1fr; }
  .jhh-footer-top { grid-template-columns: 1fr; }
  .jhh-tab-hot { display: none; }
}

/* ─ Full-width page template ───────────────────────────────── */
.page-template-jiranihomes-full .site-header,
.page-template-jiranihomes-full .site-footer,
.page-template-jiranihomes-full .page-title,
.page-template-jiranihomes-full .breadcrumb { display: none !important; }
.page-template-jiranihomes-full .entry-content,
.page-template-jiranihomes-full .site-content { padding: 0 !important; max-width: 100% !important; }
