:root{
  --bg:#0b0f14;
  --card:#0f1720;
  --card2:#0b1220;
  --text:#e6edf5;
  --muted:#9aa7b2;
  --line:rgba(255,255,255,.08);
  --primary:#F97316;
  --alt:#2563EB;
  --shadow: 0 12px 35px rgba(0,0,0,.35);
  --radius: 18px;
}

@media (prefers-color-scheme: light){
  :root{
    --bg:#f6f7fb;
    --card:#ffffff;
    --card2:#f2f5fb;
    --text:#111827;
    --muted:#6b7280;
    --line:rgba(17,24,39,.10);
    --shadow: 0 10px 28px rgba(17,24,39,.10);
  }
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
}

a{color:inherit; text-decoration:none}
.container{max-width:980px; margin:0 auto; padding:14px 14px 90px}

.topbar{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 14px;
  background:rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.back{
  width:40px; height:40px;
  display:grid; place-items:center;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.brand{display:flex; align-items:center; gap:10px; font-weight:700}
.brand-dot{
  width:28px; height:28px; border-radius:10px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--primary), #fb923c);
  color:white;
  font-weight:800;
}
.top-actions{display:flex; gap:8px}
.icon-btn{
  width:40px; height:40px;
  display:grid; place-items:center;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}

.card{
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow:hidden;
}

.hero{
  position:relative;
  height:260px;
  background:#111827;
}
.hero img{width:100%; height:100%; object-fit:cover; display:block}
.hero .count{
  position:absolute; right:14px; bottom:14px;
  font-size:12px; padding:6px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.2);
}

.sheet{
  margin-top:-26px;
  padding:16px;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  background:var(--card);
  border:1px solid var(--line);
}

.badges{display:flex; gap:8px; flex-wrap:wrap; margin-bottom:10px}
.badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.badge.primary{background:rgba(249,115,22,.16); border-color:rgba(249,115,22,.35); color:#ffcfad}
.badge.alt{background:rgba(37,99,235,.16); border-color:rgba(37,99,235,.35); color:#cfe0ff}

.h1{font-size:28px; margin:2px 0 6px; letter-spacing:-.2px}
.price{font-size:30px; font-weight:800}
.loc{display:flex; gap:8px; color:var(--muted); margin-top:4px; align-items:center}
.loc small{opacity:.95}

.kpis{display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; margin:14px 0}
.kpi{
  padding:12px;
  border-radius:16px;
  border:1px solid var(--line);
  background:var(--card2);
  text-align:center;
}
.kpi .n{font-weight:800; font-size:18px}
.kpi .t{font-size:12px; color:var(--muted); margin-top:2px}

.section{margin:18px 0 10px}
.section h2{font-size:16px; margin:0 0 10px; display:flex; gap:10px; align-items:center}
.section h2:before{
  content:"";
  width:4px; height:16px; border-radius:2px;
  background:var(--primary);
  display:inline-block;
}

.btnrow{display:flex; gap:10px}
.btn{
  flex:1;
  border-radius:16px;
  padding:12px 14px;
  font-weight:700;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  display:flex; align-items:center; justify-content:center; gap:10px;
  cursor:pointer;
}
.btn.primary{
  background:linear-gradient(135deg, var(--primary), #fb923c);
  border-color:rgba(249,115,22,.35);
  color:#111827;
}
.btn.alt{
  background:linear-gradient(135deg, var(--alt), #60a5fa);
  border-color:rgba(37,99,235,.35);
  color:white;
}
.btn:active{transform:translateY(1px)}

.readmore{color:var(--alt); font-weight:700; cursor:pointer; display:inline-block; margin-top:8px}

.chips{display:flex; gap:10px; flex-wrap:wrap}
.chip{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  padding:10px 12px;
  border-radius:999px;
  font-size:13px;
  display:flex; gap:8px; align-items:center;
}
.chip i{font-style:normal; opacity:.9}

.map{
  width:100%;
  height:220px;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:var(--card2);
}
.map iframe{width:100%; height:100%; border:0}

.form{
  display:grid; gap:12px;
}
.field label{display:block; font-size:12px; color:var(--muted); margin-bottom:6px}
.field input,.field textarea,.field select{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  color:var(--text);
  outline:none;
}
.field textarea{min-height:110px; resize:vertical}

.notice{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(34,197,94,.25);
  background:rgba(34,197,94,.10);
  color:#bbf7d0;
  margin-bottom:12px;
}

.grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
@media (max-width: 720px){
  .grid{grid-template-columns: 1fr;}
  .hero{height:230px}
}

.card-prop{overflow:hidden; border-radius:22px; border:1px solid var(--line); background:var(--card); box-shadow:var(--shadow)}
.card-prop .img{height:190px; position:relative; background:#111827}
.card-prop .img img{width:100%; height:100%; object-fit:cover}
.card-prop .img .fav{position:absolute; right:12px; top:12px; width:38px; height:38px; border-radius:14px; display:grid; place-items:center; background:rgba(0,0,0,.45); border:1px solid rgba(255,255,255,.25)}
.card-prop .body{padding:12px}
.card-prop .body .t{font-weight:800; margin:2px 0}
.card-prop .body .sub{color:var(--muted); font-size:12px}
.card-prop .body .meta{display:flex; gap:10px; flex-wrap:wrap; margin:10px 0 12px; color:var(--muted); font-size:12px}
.card-prop .body .cta{display:flex; gap:10px}
.smallbtn{flex:1; padding:10px 12px; border-radius:14px; border:1px solid var(--line); background:rgba(255,255,255,.03); text-align:center; font-weight:800}
.smallbtn.primary{background:linear-gradient(135deg, var(--primary), #fb923c); color:#111827; border-color:rgba(249,115,22,.35)}

.searchbar{
  display:flex; gap:10px; align-items:center;
  padding:12px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.searchbar input{
  flex:1; border:0; outline:none; background:transparent; color:var(--text);
  font-size:14px;
}
.filters{display:flex; gap:10px; flex-wrap:wrap; margin:10px 0 14px}
select.filter{
  border-radius:999px;
  padding:10px 12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--text);
}

.footer-cta{
  position:fixed; left:0; right:0; bottom:0; z-index:60;
  padding:10px 12px;
  background:rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  border-top:1px solid var(--line);
}
.footer-cta .wrap{max-width:980px; margin:0 auto; display:flex; gap:10px}
