/* ============================================================================
   AMMAYA PROPERTIES — Public Site Stylesheet
   ============================================================================ */
:root {
  --bg: #F5F5F5;
  --card: #FFFFFF;
  --line: #E0E0E0;
  --line-2: #EEEEEE;
  --ink: #212121;
  --ink-2: #424242;
  --ink-3: #757575;
  --ink-4: #9E9E9E;
  --primary: #0D6FB8;
  --primary-dark: #095A95;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --price: #DA3743;
  --green: #2E7D32;
  --hot: #FF6B35;
  --warn-bg: #FFF3E0;
  --warn-text: #E65100;
  --success-bg: #E8F5E9;
  --success-text: #2E7D32;
  --info-bg: #E3F2FD;
  --info-text: #0D47A1;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-card: 0 1px 4px rgba(0,0,0,0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); }
body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
body[lang="hi"], [lang="hi"] {
  font-family: 'Noto Sans Devanagari', 'Open Sans', sans-serif;
}
a { color: var(--primary); }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ===== TOPBAR ===== */
.topbar {
  background: #FFF;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-card);
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.brand {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.5px;
}
.brand .dot { color: var(--primary); }
.topbar nav {
  display: flex;
  gap: 28px;
  flex: 1;
}
.topbar nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 0;
}
.topbar nav a:hover { color: var(--primary); }
.login-link {
  color: var(--ink-3);
  font-size: 13px;
  text-decoration: none;
}
.post-btn {
  background: var(--primary);
  color: #FFF;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
}
.post-btn:hover { background: var(--primary-dark); }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: #FFF;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 32px;
  font-size: 12px;
  color: var(--ink-3);
}
.trust-item::before { content: "✓ "; color: var(--green); font-weight: 700; }

/* ===== BREADCRUMB ===== */
.crumb {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-size: 12px;
}
.crumb > div { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.crumb a { color: var(--ink-3); text-decoration: none; }
.crumb a:hover { color: var(--primary); }
.crumb .sep { color: var(--ink-4); margin: 0 6px; }

/* ===== LISTINGS LAYOUT ===== */
.main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px 60px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 16px;
}
.sidebar {
  background: #FFF;
  border-radius: 4px;
  padding: 0;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  height: fit-content;
}
.sidebar h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.clear-link {
  font-size: 11px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.filter-group { padding: 12px 16px; border-bottom: 1px solid var(--line-2); }
.filter-group h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.filter-row {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--ink-2);
}
.filter-row label { display: flex; align-items: center; gap: 6px; cursor: pointer; }

.sell-promo {
  padding: 14px 16px;
  background: var(--success-bg);
  border-top: 2px solid var(--green);
  margin: 0;
}
.sell-promo h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}
.sell-promo p { font-size: 11px; color: var(--ink-3); margin-bottom: 8px; }

/* ===== RESULTS ===== */
.results-head {
  background: #FFF;
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.results-count { font-size: 14px; font-weight: 700; color: var(--ink); }
.results-count small { color: var(--ink-3); font-weight: 400; }
.sort-control { font-size: 12px; color: var(--ink-3); display: flex; align-items: center; gap: 6px; }
.sort-control select {
  padding: 5px 8px; border: 1px solid var(--line); border-radius: 4px;
  font-size: 12px; background: #FFF; color: var(--ink-2); cursor: pointer;
}

/* ===== LISTING CARD ===== */
.listing {
  background: #FFF;
  border-radius: 4px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  margin-bottom: 14px;
  overflow: hidden;
}
.img-block {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #F5F5F5;
}
.resale-pill {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--hot);
  color: #FFF;
}
.card-body {
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 18px;
}
.listing-loc { font-size: 12px; color: var(--ink-3); margin-bottom: 4px; }
.listing-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 10px;
}
.listing-title a { color: inherit; text-decoration: none; }
.listing-title a:hover { color: var(--primary); }

.price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.price-big { font-size: 22px; font-weight: 700; color: var(--price); }
.price-rate { font-size: 12px; color: var(--ink-3); }
.price-rate b { color: var(--ink); font-weight: 700; font-size: 13px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 10px;
}
.stat-val { font-size: 13px; font-weight: 700; color: var(--ink); }
.stat-val small { font-weight: 400; font-size: 11px; color: var(--ink-3); display: block; }
.stat-key { font-size: 11px; color: var(--ink-3); margin-top: 2px; }

.listing-desc { font-size: 13px; color: var(--ink-2); line-height: 1.6; margin-bottom: 10px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.tag {
  display: inline-block;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 3px;
}
.tag-success { background: var(--success-bg); color: var(--success-text); }
.tag-info    { background: var(--info-bg);    color: var(--info-text); }
.tag-warn    { background: var(--warn-bg);    color: var(--warn-text); }
.tag-default { background: #F5F5F5; color: var(--ink-2); }

.posted-line {
  font-size: 11px;
  color: var(--ink-3);
  display: flex;
  justify-content: space-between;
}
.updated { color: var(--green); font-weight: 600; }

.card-side {
  border-left: 1px solid var(--line-2);
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.verified-block {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-2);
}
.rera-badge {
  background: var(--green);
  color: #FFF;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 6px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.verified-text { font-size: 11px; color: var(--ink-3); line-height: 1.4; }
.seller-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.seller-meta { font-size: 11px; color: var(--ink-3); margin-bottom: 6px; }

.btn {
  display: inline-block;
  padding: 9px 16px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.btn-primary { background: var(--primary); color: #FFF; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-whatsapp { background: var(--whatsapp); color: #FFF; }
.btn-whatsapp::before { content: "💬 "; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }

/* ===== HERO (detail page) ===== */
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 700px 1fr;
  gap: 24px;
}
.gallery {
  background: #FFF;
  border-radius: 4px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.gallery-main { position: relative; height: 460px; overflow: hidden; }
.pill-row {
  position: absolute;
  bottom: 14px; left: 14px;
  display: flex; gap: 8px;
}
.pill {
  background: var(--hot);
  color: #FFF;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.pill.green { background: var(--green); }

.hero-info {
  background: #FFF;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.listing-id-tag {
  font-size: 11px;
  color: var(--ink-3);
  margin-bottom: 8px;
  font-family: monospace;
}
.hero-title { font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.hero-loc { font-size: 13px; color: var(--ink-3); margin-bottom: 18px; }
.hero-price-block {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.hero-price { font-size: 32px; font-weight: 700; color: var(--price); margin-bottom: 4px; }
.hero-rate { font-size: 13px; color: var(--ink-3); }
.hero-rate b { color: var(--ink); font-size: 14px; }
.hero-emi { font-size: 12px; color: var(--ink-3); margin-top: 6px; }
.hero-emi b { color: var(--primary); }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.hero-stat { text-align: center; }
.hs-val { font-size: 14px; font-weight: 700; color: var(--ink); }
.hs-val small { display: block; font-weight: 400; font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.hs-key { font-size: 11px; color: var(--ink-3); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.05em; }

.verified-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.verified-pill { background: var(--success-bg); color: var(--success-text); padding: 4px 10px; border-radius: 3px; font-size: 11px; font-weight: 600; }

.hero-cta { display: flex; gap: 10px; }
.hero-cta .btn { flex: 1; }

.social-proof { font-size: 11px; color: var(--ink-3); margin-top: 12px; text-align: center; padding-top: 12px; border-top: 1px dashed var(--line); }

/* ===== CONTENT LAYOUT (detail page) ===== */
.layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
}
.content { display: flex; flex-direction: column; gap: 16px; }
.content section {
  background: #FFF;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.section-title { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 18px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }

.details-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.detail-row {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 13px;
}
.detail-row:nth-child(odd) { padding-right: 16px; }
.detail-row:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line-2); }
.detail-label { color: var(--ink-3); width: 45%; }
.detail-value { color: var(--ink); font-weight: 600; flex: 1; }

.highlights-list { list-style: none; padding: 0; }
.highlights-list li { padding: 8px 0; padding-left: 24px; position: relative; font-size: 13px; color: var(--ink-2); border-bottom: 1px solid var(--line-2); }
.highlights-list li::before { content: "✓"; color: var(--green); position: absolute; left: 0; font-weight: 700; }
.highlights-list li:last-child { border: none; }

.lang-tabs { display: flex; gap: 4px; margin-bottom: 14px; border-bottom: 1px solid var(--line); }
.lang-tabs button {
  padding: 8px 16px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  cursor: pointer;
}
.lang-tabs button.active { color: var(--primary); border-bottom-color: var(--primary); }
.desc-content { display: none; }
.desc-content.active { display: block; }
.desc-content p { font-size: 14px; color: var(--ink-2); line-height: 1.7; margin-bottom: 12px; }
.desc-content.hi { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 15px; }

/* ===== EMI CALCULATOR ===== */
.emi-calc { display: grid; grid-template-columns: 1fr 280px; gap: 24px; }
.emi-input { margin-bottom: 16px; }
.emi-input-head { display: flex; justify-content: space-between; margin-bottom: 6px; }
.emi-input-label { font-size: 12px; color: var(--ink-3); }
.emi-input-val { font-size: 13px; font-weight: 700; color: var(--ink); }
.emi-input-val small { font-weight: 400; color: var(--ink-3); }
.emi-input input[type="range"] { width: 100%; height: 4px; background: var(--line); border-radius: 2px; outline: none; -webkit-appearance: none; }
.emi-input input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 16px; height: 16px; background: var(--primary); border-radius: 50%; cursor: pointer; }
.emi-output { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #FFF; padding: 24px; border-radius: 6px; }
.emi-monthly { font-size: 12px; opacity: 0.9; }
.emi-amount { font-size: 28px; font-weight: 700; margin: 8px 0 14px; }
.emi-amount small { font-size: 14px; font-weight: 400; opacity: 0.85; }
.emi-breakdown { font-size: 11px; opacity: 0.95; }
.emi-breakdown div { display: flex; justify-content: space-between; padding: 4px 0; border-top: 1px solid rgba(255,255,255,0.2); }
.emi-breakdown b { font-weight: 700; }

/* ===== SIMILAR ===== */
.similar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.similar-card { background: #FFF; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-card); }
.similar-card:hover { box-shadow: var(--shadow); }
.similar-img { position: relative; height: 130px; }
.similar-pill { position: absolute; top: 8px; left: 8px; padding: 3px 6px; background: var(--hot); color: #FFF; font-size: 9px; font-weight: 700; border-radius: 2px; }
.similar-body { padding: 12px; }
.similar-title { font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.similar-price { font-size: 14px; font-weight: 700; color: var(--price); }
.similar-rate { font-size: 11px; color: var(--ink-3); margin-top: 2px; }

/* ===== ENQUIRY SIDEBAR ===== */
.sidebar-card { background: #FFF; padding: 18px; border-radius: 4px; border: 1px solid var(--line); box-shadow: var(--shadow-card); position: sticky; top: 80px; }
.seller-block { padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.seller-logo { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: #FFF; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.seller-rating { font-size: 12px; color: var(--ink-3); margin-top: 2px; }

.enquiry-form .form-row { margin-bottom: 12px; position: relative; }
.enquiry-form label { display: block; font-size: 11px; color: var(--ink-3); margin-bottom: 4px; font-weight: 600; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  width: 100%; padding: 8px 10px; border: 1px solid var(--line); border-radius: 4px;
  font-size: 13px; font-family: inherit; background: #FAFAFA;
}
.enquiry-form textarea { resize: vertical; min-height: 60px; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus {
  outline: none; border-color: var(--primary); background: #FFF;
}
.form-with-prefix .prefix {
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  font-size: 13px; color: var(--ink-3); pointer-events: none;
  margin-top: 8px;
}
.form-with-prefix input { padding-left: 36px; }
/* Sell form prefix fix */
.sell-form .form-with-prefix {
  position: relative;
}
.sell-form .form-with-prefix .prefix {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--ink-3);
  pointer-events: none;
  margin-top: 2px;
}
.sell-form .form-with-prefix input {
  padding-left: 36px;
}

/* ===== SELL PAGE ===== */
.sell-page { background: var(--bg); min-height: calc(100vh - 200px); padding: 30px 0 60px; }
.sell-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.sell-hero { text-align: center; margin-bottom: 30px; }
.sell-hero h1 { font-size: 32px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.sell-hero h1 em { color: var(--green); font-style: normal; }
.sell-hero p { font-size: 15px; color: var(--ink-3); max-width: 700px; margin: 0 auto; }

.sell-grid { display: grid; grid-template-columns: 1fr 320px; gap: 30px; }
.sell-form-wrap { background: #FFF; padding: 28px; border-radius: 6px; border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.sell-form .form-row { margin-bottom: 18px; }
.sell-form label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.sell-form .req { color: var(--price); }
.sell-form input, .sell-form select { width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 4px; font-size: 14px; font-family: inherit; background: #FFF; }
.sell-form input:focus, .sell-form select:focus { outline: none; border-color: var(--primary); }
.sell-form .hint { font-size: 11px; color: var(--ink-3); margin-top: 4px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.submit-btn { width: 100%; padding: 14px; background: var(--green); color: #FFF; border: none; border-radius: 4px; font-size: 15px; font-weight: 700; margin-top: 8px; cursor: pointer; }
.submit-btn:hover { background: #1B5E20; }
.privacy-note { font-size: 11px; color: var(--ink-3); margin-top: 14px; line-height: 1.6; text-align: center; }

.benefits-list { list-style: none; padding: 0; }
.benefits-list li { padding: 6px 0; font-size: 13px; color: var(--ink-2); }
.benefits-list li b { color: var(--ink); }

.form-success-banner { background: #FFF; padding: 50px 30px; border-radius: 8px; text-align: center; border: 2px solid var(--green); }
.check-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--green); color: #FFF; display: flex; align-items: center; justify-content: center; font-size: 30px; font-weight: 700; margin: 0 auto 16px; }
.form-success-banner h2 { font-size: 24px; color: var(--ink); margin-bottom: 8px; }
.form-success-banner p { color: var(--ink-3); margin-bottom: 6px; }

/* ===== PAGINATION ===== */
.pagination { display: flex; gap: 6px; align-items: center; margin-top: 20px; padding: 16px; background: #FFF; border-radius: 4px; border: 1px solid var(--line); justify-content: center; flex-wrap: wrap; }
.pagination .info { margin-right: auto; font-size: 12px; color: var(--ink-3); }
.pagination a { padding: 6px 10px; background: #F5F5F5; color: var(--ink-2); text-decoration: none; border-radius: 3px; font-size: 13px; }
.pagination a.active { background: var(--primary); color: #FFF; font-weight: 700; }
.pagination a:hover:not(.active) { background: var(--primary); color: #FFF; }

/* ===== FLASH MESSAGES ===== */
.flash-container { max-width: 1280px; margin: 12px auto 0; padding: 0 24px; display: flex; flex-direction: column; gap: 8px; }
.flash { padding: 10px 14px; border-radius: 4px; font-size: 13px; border-left: 4px solid; }
.flash-success { background: var(--success-bg); border-color: var(--green); color: var(--success-text); }
.flash-error   { background: #FFEBEE; border-color: var(--price); color: #C62828; }
.flash-warning { background: var(--warn-bg); border-color: var(--hot); color: var(--warn-text); }
.flash-info    { background: var(--info-bg); border-color: var(--primary); color: var(--info-text); }

/* ===== FOOTER ===== */
footer { background: #212121; color: #BBB; padding: 40px 0 20px; margin-top: 40px; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; }
.footer-brand-block { font-size: 22px; font-weight: 700; color: #FFF; margin-bottom: 8px; }
.footer-tagline { font-size: 13px; color: #999; }
footer h4 { font-size: 13px; color: #FFF; margin-bottom: 12px; }
footer ul { list-style: none; padding: 0; }
footer li { padding: 4px 0; font-size: 12px; }
footer a { color: #BBB; text-decoration: none; }
footer a:hover { color: #FFF; }
.footer-bottom { max-width: 1280px; margin: 30px auto 0; padding: 16px 24px 0; border-top: 1px solid #333; display: flex; justify-content: space-between; font-size: 12px; color: #888; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .main { grid-template-columns: 1fr; }
  .hero { grid-template-columns: 1fr; }
  .layout { grid-template-columns: 1fr; }
  .similar-grid { grid-template-columns: 1fr 1fr; }
  .sell-grid { grid-template-columns: 1fr; }
  .topbar nav { display: none; }
  .card-body { grid-template-columns: 1fr; }
  .card-side { border-left: none; padding-left: 0; padding-top: 14px; border-top: 1px solid var(--line-2); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .emi-calc { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .similar-grid, .form-grid-2 { grid-template-columns: 1fr; }
  .stats-grid, .hero-stats { grid-template-columns: 1fr 1fr; }
  .details-grid { grid-template-columns: 1fr; }
  .detail-row { padding: 10px 0 !important; border-left: none !important; }
  .footer-inner { grid-template-columns: 1fr; }
  .topbar-inner { flex-wrap: wrap; gap: 12px; }
  .post-btn { width: 100%; text-align: center; }
}
