.crm-agent-card{
    display:flex;gap:20px;align-items:flex-start;
    font-family:'Figtree',sans-serif;
    padding:24px 0;
}
.crm-agent-avatar{
    flex-shrink:0;width:80px;height:80px;border-radius:50%;
    overflow:hidden;background:#dde3ec;
    display:flex;align-items:center;justify-content:center;
    font-size:28px;font-weight:700;color:#11325C;
}
.crm-agent-avatar img{width:100%;height:100%;object-fit:cover;display:block;}
.crm-agent-info{flex:1;min-width:0;}
.crm-agent-name{font-size:18px;font-weight:700;color:#1a1a2e;margin:0 0 2px;}
.crm-agent-name a{color:inherit;text-decoration:none;}
.crm-agent-name a:hover{color:#11325C;}
.crm-agent-meta{font-size:13px;color:#6b7280;margin:0 0 8px;display:flex;flex-wrap:wrap;gap:6px 14px;}
.crm-agent-bio{font-size:14px;color:#444;line-height:1.6;margin:0 0 12px;}
.crm-agent-contacts{display:flex;flex-wrap:wrap;gap:8px;align-items:center;}
.crm-agent-contact-btn{
    display:inline-flex;align-items:center;gap:6px;
    background:#11325C;color:#fff;
    font-size:13px;font-weight:600;
    padding:7px 14px;border-radius:6px;
    text-decoration:none;transition:background .2s;
    font-family:'Figtree',sans-serif;
}
.crm-agent-contact-btn:hover{background:#1a4a87;color:#fff;}
.crm-agent-contact-btn.secondary{background:#f0f4f8;color:#11325C;}
.crm-agent-contact-btn.secondary:hover{background:#e2e8f0;}
.crm-agent-socials{display:flex;gap:10px;align-items:center;margin-left:4px;}
.crm-agent-social{
    width:32px;height:32px;border-radius:50%;
    background:#f0f4f8;color:#11325C;
    display:flex;align-items:center;justify-content:center;
    text-decoration:none;font-size:14px;transition:background .2s;
}
.crm-agent-social:hover{background:#11325C;color:#fff;}
@media(max-width:480px){
    .crm-agent-card{flex-direction:column;align-items:center;text-align:center;}
    .crm-agent-contacts{justify-content:center;}
    .crm-agent-meta{justify-content:center;}
}

.crm-socials{display:flex;flex-wrap:wrap;}
.crm-social-btn{
    display:flex;align-items:center;justify-content:center;
    text-decoration:none;transition:background .2s,border-color .2s,transform .15s;
    flex-shrink:0;
}
.crm-social-btn:hover{transform:translateY(-2px);}
.crm-social-btn svg{display:block;transition:fill .2s;}

.crm-contact-rows{display:flex;flex-direction:column;}
.crm-contact-row{
    display:flex;align-items:center;gap:12px;
    font-weight:600;font-family:'Figtree',sans-serif;
    text-decoration:none;color:inherit;
    transition:opacity .15s;
}
.crm-contact-row:hover{opacity:.7;}
.crm-contact-icon{display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.crm-contact-icon svg{display:block;}

.crm-contact-btns{display:flex;flex-wrap:wrap;}
.crm-contact-btn{
    display:inline-flex;align-items:center;gap:8px;
    font-family:'Figtree',sans-serif;font-weight:700;
    text-decoration:none;transition:background .2s,transform .1s;
    white-space:nowrap;
}
.crm-contact-btn:hover{transform:translateY(-1px);}
.crm-contact-btn svg{fill:currentColor;}

.crm-overview-wrap{font-family:'Figtree',sans-serif;color:#1a1a2e;}
.crm-overview-rows{width:100%;}
.crm-overview-row{
    display:flex;
    align-items:baseline;
    padding:10px 0;
    border-bottom:1px solid #e8e8e8;
    font-size:15px;
    line-height:1.5;
}
.crm-overview-row:first-child{border-top:1px solid #e8e8e8;}
.crm-overview-label{
    flex:0 0 50%;
    color:#444;
    padding-right:24px;
}
.crm-overview-label::before{
    content:"•";
    color:#11325C;
    font-size:18px;
    margin-right:10px;
    line-height:1;
    vertical-align:middle;
}
.crm-overview-value{
    flex:1;
    font-weight:700;
    color:#1a1a2e;
}
@media(max-width:600px){
    .crm-overview-row{flex-direction:column;gap:2px;padding:12px 0;}
    .crm-overview-label{flex:none;width:100%;}
    .crm-overview-value{padding-left:28px;}
    .crm-overview-row{font-size:14px;}
}

.crm-features-wrap{font-family:'Figtree',sans-serif;color:#1a1a2e;}
.crm-features-title{
    font-size:clamp(24px,4vw,38px);
    font-weight:800;
    color:#11325C;
    margin:0 0 32px;
    line-height:1.15;
}
.crm-features-section{
    margin-bottom:8px;
    padding-bottom:8px;
    border-bottom:1px solid #e8e8e8;
}
.crm-features-section:last-child{border-bottom:none;}
.crm-features-section-title{
    font-size:20px;
    font-weight:800;
    color:#11325C;
    margin:0 0 16px;
    padding-top:24px;
}
.crm-features-rows{
    display:table;
    width:100%;
    border-collapse:collapse;
}
.crm-features-row{
    display:table-row;
}
.crm-features-row td,
.crm-features-cell{
    display:table-cell;
    padding:7px 12px 7px 0;
    font-size:15px;
    line-height:1.5;
    vertical-align:top;
}
.crm-features-label{
    display:table-cell;
    padding:7px 24px 7px 0;
    font-size:15px;
    color:#444;
    white-space:nowrap;
    vertical-align:top;
    width:50%;
}
.crm-features-label::before{
    content:"•";
    color:#11325C;
    font-size:18px;
    margin-right:10px;
    line-height:1;
    vertical-align:middle;
}
.crm-features-value{
    display:table-cell;
    padding:7px 0;
    font-size:15px;
    font-weight:700;
    color:#1a1a2e;
    vertical-align:top;
}
@media(max-width:600px){
    .crm-features-label,.crm-features-value{font-size:14px;}
    .crm-features-section-title{font-size:18px;}
    .crm-features-title{margin-bottom:20px;}
    /* Stack on mobile */
    .crm-features-rows{display:block;}
    .crm-features-row{display:block;margin-bottom:8px;}
    .crm-features-label,.crm-features-value{display:block;width:100%;padding:2px 0;}
    .crm-features-value{padding-left:28px;}
}
.crm-amenities-grid{
    display:flex;flex-wrap:wrap;gap:10px;padding:4px 0;
}
.crm-amenity-tag{
    display:inline-flex;align-items:center;gap:6px;
    background:#f0f4f8;color:#1a1a2e;
    font-size:14px;font-weight:500;
    font-family:'Figtree',sans-serif;
    padding:7px 14px;border-radius:50px;
    border:1px solid #e2e8f0;white-space:nowrap;
}
@media(max-width:600px){.crm-amenity-tag{font-size:13px;padding:6px 12px;}}

.crm-details-table{
    width:100%;
    border-collapse:collapse;
    font-family:'Figtree',sans-serif;
}
.crm-details-table tr{
    border-bottom:1px solid #e8e8e8;
}
.crm-details-table tr:first-child{
    border-top:1px solid #e8e8e8;
}
.crm-details-table td{
    padding:18px 4px;
    font-size:15px;
    line-height:1.4;
    vertical-align:middle;
}
.crm-details-table td:first-child{
    font-weight:700;
    color:#1a1a2e;
    width:40%;
    padding-right:24px;
}
.crm-details-table td:last-child{
    color:#1a1a2e;
    font-weight:400;
}
@media(max-width:600px){
    .crm-details-table td{ font-size:14px; padding:14px 4px; }
    .crm-details-table td:first-child{ width:45%; }
}
/* ── LISTING FILTERS [listing_filters] ── */
.crm-lf-wrap{font-family:'Figtree',sans-serif;}
.crm-lf-row{display:flex;flex-wrap:wrap;align-items:flex-end;gap:20px;padding:16px 0 20px;}
.crm-lf-group{display:flex;flex-direction:column;gap:6px;}
.crm-lf-label{font-size:11px;font-weight:700;letter-spacing:.6px;text-transform:uppercase;color:#9ca3af;}

/* Search */
.crm-lf-search-group{min-width:200px;}
.crm-lf-search-wrap{display:flex;align-items:center;gap:8px;height:40px;padding:0 12px;border:1.5px solid #e2e8f0;border-radius:8px;background:#fff;transition:border-color .2s;}
.crm-lf-search-wrap:focus-within{border-color:#111;}
.crm-lf-search-wrap svg{flex-shrink:0;opacity:.4;}
.crm-lf-input-text{flex:1;border:none;outline:none;font-size:13px;font-family:'Figtree',sans-serif;color:#111;background:transparent;min-width:0;}
.crm-lf-input-text::placeholder{color:#9ca3af;}

/* Pills */
.crm-lf-pills{display:flex;gap:4px;}
#crm-lf .crm-lf-pill,
.crm-lf-wrap .crm-lf-pill{
    padding:7px 14px;border-radius:50px;
    border:1.5px solid #e2e8f0 !important;
    background:#fff !important;
    color:#6b7280 !important;
    font-size:13px;font-weight:600;
    font-family:'Figtree',sans-serif;
    cursor:pointer;white-space:nowrap;
    transition:all .15s;
    text-decoration:none !important;
    box-shadow:none !important;
}
#crm-lf .crm-lf-pill:hover,
.crm-lf-wrap .crm-lf-pill:hover{
    border-color:#111 !important;
    color:#111 !important;
    background:#fff !important;
}
#crm-lf .crm-lf-pill.is-active,
.crm-lf-wrap .crm-lf-pill.is-active{
    background:#111 !important;
    border-color:#111 !important;
    color:#fff !important;
}

/* Select */
.crm-lf-select{height:40px;padding:0 12px;border:1.5px solid #e2e8f0;border-radius:8px;font-size:13px;font-family:'Figtree',sans-serif;color:#374151;background:#fff;cursor:pointer;outline:none;transition:border-color .2s;min-width:130px;}
.crm-lf-select:focus{border-color:#111;}

/* Price inputs */
.crm-lf-range{display:flex;align-items:center;gap:8px;}
.crm-lf-input{width:96px;height:40px;padding:0 12px;border:1.5px solid #e2e8f0;border-radius:8px;font-size:13px;font-family:'Figtree',sans-serif;color:#374151;outline:none;transition:border-color .2s;}
.crm-lf-input:focus{border-color:#111;}
.crm-lf-dash{color:#9ca3af;font-size:13px;}

/* Actions */
.crm-lf-actions{display:flex;align-items:center;gap:8px;margin-left:auto;}
#crm-lf .crm-lf-btn-clear,
.crm-lf-wrap .crm-lf-btn-clear{
    height:40px;padding:0 16px;
    background:transparent !important;
    color:#6b7280 !important;
    border:1.5px solid #e2e8f0 !important;
    border-radius:8px;font-size:13px;font-weight:600;
    font-family:'Figtree',sans-serif;cursor:pointer;
    transition:all .15s;white-space:nowrap;
    text-decoration:none !important;
}
#crm-lf .crm-lf-btn-clear:hover,
.crm-lf-wrap .crm-lf-btn-clear:hover{
    border-color:#111 !important;
    color:#111 !important;
    background:transparent !important;
}
.crm-lf-hidden{display:none!important;}

/* Meta row */
.crm-lf-meta{display:flex;align-items:center;gap:16px;padding-bottom:12px;}
.crm-lf-count{font-size:13px;color:#6b7280;}

/* Pagination */
.crm-lf-pagination{display:flex;align-items:center;gap:6px;flex-wrap:wrap;padding:24px 0 8px;}
#crm-lf-pagination .crm-lf-page{
    min-width:38px;height:38px;padding:0 10px;
    border:1.5px solid #e2e8f0 !important;
    border-radius:8px;
    background:#fff !important;
    color:#374151 !important;
    font-size:13px;font-weight:600;
    font-family:'Figtree',sans-serif;
    cursor:pointer;transition:all .15s;
    text-decoration:none !important;
}
#crm-lf-pagination .crm-lf-page:hover{
    border-color:#111 !important;
    color:#111 !important;
    background:#fff !important;
}
#crm-lf-pagination .crm-lf-page.is-active{
    background:#111 !important;
    border-color:#111 !important;
    color:#fff !important;
    cursor:default;
}
#crm-lf-pagination .crm-lf-page.is-disabled{
    opacity:.35;cursor:not-allowed;pointer-events:none;
}
.crm-lf-dots{padding:0 4px;color:#9ca3af;font-size:14px;line-height:38px;}

@media(max-width:768px){
    .crm-lf-row{gap:12px;}
    .crm-lf-actions{margin-left:0;width:100%;}
    .crm-lf-search-group{width:100%;}
}

/* ── LISTING ARCHIVE [listing_archive] ── */
.crm-archive-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    font-family:'Figtree',sans-serif;
}
@media(max-width:1024px){ .crm-archive-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:600px)  { .crm-archive-grid{grid-template-columns:1fr;} }

.crm-card{
    display:flex;flex-direction:column;
    background:#fff;border-radius:12px;
    overflow:hidden;
    text-decoration:none;color:inherit;
    box-shadow:0 2px 8px rgba(0,0,0,.04);
    transition:transform .2s,box-shadow .2s;
    cursor:pointer;
}
.crm-card:hover{transform:translateY(-3px);box-shadow:0 6px 20px rgba(0,0,0,.07);}

/* Image */
.crm-card-image{
    position:relative;overflow:hidden;
    aspect-ratio:4/3;background:#e9edf2;
}
.crm-card-image img:first-child{
    width:100%;height:100%;object-fit:cover;
    display:block;transition:transform .3s;
}
.crm-card:hover .crm-card-image img:first-child{transform:scale(1.04);}

/* No photo */
.crm-card-no-photo{
    width:100%;height:100%;
    display:flex;flex-direction:column;
    align-items:center;justify-content:center;
    gap:8px;color:#a0aec0;
}
.crm-card-no-photo span{font-size:12px;}

/* Logo overlay — top right */
.crm-card-logo{
    position:absolute;top:14px;right:16px;
    height:20px;width:auto;object-fit:contain;
    pointer-events:none;
    opacity:1;
    filter:drop-shadow(0 1px 3px rgba(0,0,0,.4));
}

/* Views overlay */
.crm-card-views{
    position:absolute;top:12px;left:12px;
    display:flex;align-items:center;gap:5px;
    background:rgba(0,0,0,.45);
    color:#fff;font-size:12px;font-weight:600;
    padding:4px 9px;border-radius:20px;
    backdrop-filter:blur(4px);
    font-family:'Figtree',sans-serif;
}

/* Body */
.crm-card-body{padding:14px 16px 18px;}

.crm-card-price{
    font-size:18px;font-weight:800;
    color:#111;margin-bottom:6px;
    letter-spacing:-.3px;
}
.crm-card-title{
    font-size:14px;font-weight:500;
    color:#374151;margin-bottom:10px;
    line-height:1.4;
    display:-webkit-box;-webkit-line-clamp:2;
    -webkit-box-orient:vertical;overflow:hidden;
}
.crm-card-stats{
    display:flex;align-items:center;flex-wrap:wrap;
    font-size:12px;font-weight:700;
    color:#e91e63;letter-spacing:.3px;
    text-transform:uppercase;gap:0;
}
.crm-card-dot{
    margin:0 8px;opacity:.4;
    font-size:14px;color:#111;
}
