/* Homevora CSS */
.hv-hero{background:linear-gradient(135deg,#006D77,#0B6E4F);border-radius:20px;padding:22px 20px;display:flex;align-items:center;justify-content:space-between;color:white;margin-bottom:16px;box-shadow:0 10px 28px rgba(0,109,119,0.3);}
.hv-hero-text h2{font-size:20px;font-weight:800;margin-bottom:4px;}
.hv-hero-text h2 span{color:var(--accent);}
.hv-hero-text p{font-size:13px;opacity:.85;}
.hv-hero-icon{font-size:52px;opacity:.7;}
.hv-search{margin-bottom:4px;}
.prop-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:16px;}
.prop-card{background:var(--white);border-radius:16px;overflow:hidden;border:1px solid var(--border);box-shadow:0 4px 16px rgba(0,0,0,0.06);transition:var(--transition);}
.prop-card:active{transform:scale(0.97);}
.prop-img{height:120px;position:relative;overflow:hidden;}
.prop-img img{width:100%;height:100%;object-fit:cover;}
.prop-badge{position:absolute;top:8px;left:8px;background:rgba(0,0,0,0.55);backdrop-filter:blur(4px);color:white;padding:3px 8px;border-radius:50px;font-size:10px;font-weight:700;}
.prop-body{padding:12px;}
.prop-title{font-size:13px;font-weight:700;color:var(--text);margin-bottom:5px;line-height:1.3;}
.prop-location{font-size:11px;color:var(--text2);display:flex;align-items:center;gap:3px;margin-bottom:7px;}
.prop-features{display:flex;gap:8px;margin-bottom:7px;}
.prop-features span{font-size:11px;color:var(--text2);display:flex;align-items:center;gap:3px;}
.prop-footer{display:flex;align-items:center;justify-content:space-between;gap:6px;}
.prop-price{font-size:13px;font-weight:800;color:var(--primary);}
.prop-price small{font-size:10px;font-weight:500;color:var(--text2);}
/* Chat */
.chat-box{min-height:120px;max-height:250px;overflow-y:auto;background:var(--bg);border-radius:12px;padding:14px;margin-bottom:12px;display:flex;flex-direction:column;gap:8px;}
.chat-msg{display:flex;}
.chat-msg.sent{justify-content:flex-end;}
.chat-bubble{max-width:80%;padding:10px 14px;border-radius:16px;font-size:14px;}
.chat-msg.received .chat-bubble{background:white;border:1px solid var(--border);color:var(--text);border-bottom-left-radius:4px;}
.chat-msg.sent .chat-bubble{background:var(--primary);color:white;border-bottom-right-radius:4px;}
.chat-input-row{display:flex;gap:8px;align-items:center;}
.send-btn{width:44px;height:44px;border-radius:50%;background:var(--primary);color:white;border:none;display:flex;align-items:center;justify-content:center;font-size:18px;cursor:pointer;flex-shrink:0;}
