/* =====================================================================
   chat.css — Overrides for the public-facing /prinia chat page
   ===================================================================== */

/* ── Property Sidebar ───────────────────────────────────────────────── */
.property-sidebar {
    width: var(--sidebar-w);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 0;
    background: var(--bg-card);
    border-right: 1px solid var(--border);
}

.property-hero-wrap {
    position: relative;
    width: 100%;
    flex-shrink: 0;
}

.property-hero-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.hero-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(45, 62, 29, .7);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .06em;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

/* Property info block */
.property-info {
    padding: 12px 20px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.property-tagline-wrap {
    border-left: 3px solid var(--accent-gold);
    padding-left: 12px;
}

.property-tagline {
    font-family: var(--font-serif);
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.65;
    font-style: italic;
}

/* Highlight pills row */
.property-highlights {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.highlight-pill {
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--bg-sage);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: 12px;
    color: var(--text-mid);
    font-weight: 500;
}

.pill-icon {
    font-size: 14px;
    flex-shrink: 0;
}

/* Contact block */
.contact-block {
    border-top: 1px solid var(--border);
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-row>div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-row strong {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.contact-row p {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.5;
    margin: 0;
}

.contact-link {
    color: var(--accent-green);
    text-decoration: none;
    font-size: 12px;
}

.contact-link:hover {
    text-decoration: underline;
}

.rera-note {
    font-size: 10px;
    color: var(--text-light);
    letter-spacing: .04em;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

/* ── Welcome override for /prinia ───────────────────────────────────── */
.chat-welcome-prinia {
    text-align: center;
    padding: 36px 20px;
    max-width: 440px;
    margin: auto;
}

.chat-welcome-prinia .welcome-icon {
    font-size: 42px;
    margin-bottom: 14px;
}

.chat-welcome-prinia h2 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.chat-welcome-prinia p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

.suggested-qs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
}

.suggested-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    color: var(--text-mid);
    cursor: pointer;
    font-family: var(--font-sans);
    transition: border-color .2s, background .2s;
}

.suggested-btn:hover {
    border-color: var(--accent-green);
    background: var(--bg-sage);
    color: var(--text-dark);
}

/* ── Receptionist avatar colour tweak ─────────────────────────────── */
.avatar.bot-av {
    background: var(--accent-gold);
}

/* ── Responsive for chat page ───────────────────────────────────────── */
@media (max-width: 768px) {
    .property-hero-img {
        height: 220px;
    }

    .property-info {
        padding: 14px 16px 18px;
        gap: 8px;
    }

    .contact-row p {
        font-size: 11.5px;
    }
}