    /* === Renter Assistant NLP Box === */
    #assistant-box {
        width: 100%;
        clear: both;
        margin-bottom: 20px;
        padding: 0;
    }
    .assistant-inner {
        background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        padding: 24px 28px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .assistant-header-row {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        gap: 10px;
    }
    .assistant-label {
        font-family: "din_mediumregular", "Helvetica Neue", Helvetica, Arial;
        font-size: 18px;
        font-weight: 600;
        color: #333;
        text-transform: uppercase;
    }
    #assistant-lang {
        margin-left: auto;
        padding: 4px 8px;
        font-size: 13px;
        border: 1px solid #ccc;
        border-radius: 6px;
        background: #fff;
        color: #555;
        cursor: pointer;
        outline: none;
    }
    #assistant-lang:hover { border-color: #d32d35; }
    #assistant-lang:focus { border-color: #d32d35; box-shadow: 0 0 0 2px rgba(211,45,53,0.15); }
    #assistant-lang optgroup { font-weight: 700; color: #333; font-style: normal; }
    #assistant-lang optgroup[label="Staff Languages"] { color: #2e7d32; }
    #assistant-lang optgroup option { font-weight: 400; color: #555; }
    .assistant-staff-note {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 6px;
        margin-bottom: -2px;
    }
    .staff-note-photos {
        display: flex;
        gap: 8px;
    }
    .staff-note-card {
        position: relative;
        width: 52px;
        height: 52px;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 1px 4px rgba(0,0,0,0.15);
        flex-shrink: 0;
    }
    .staff-note-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .staff-note-card .staff-note-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0,0,0,0.65);
        padding: 2px 4px;
        text-align: center;
        opacity: 0;
        transition: opacity 0.2s;
    }
    .staff-note-card:hover .staff-note-overlay { opacity: 1; }
    .staff-note-name {
        display: block;
        font-size: 9px;
        color: #fff;
        font-weight: 600;
        line-height: 1.2;
    }
    .staff-note-phone {
        display: block;
        font-size: 8px;
        color: #cce5ff;
        text-decoration: none;
        line-height: 1.2;
    }
    .staff-note-phone:hover { color: #fff; }
    .staff-note-text {
        font-size: 12px;
        color: #2e7d32;
        font-family: "dinregular", "Helvetica Neue", Helvetica, Arial;
        font-style: italic;
    }
    .assistant-badge {
        display: inline-block;
        background: #f0f0f0;
        color: #666;
        font-size: 12px;
        font-weight: 500;
        padding: 3px 10px;
        border-radius: 12px;
        margin-left: 10px;
        cursor: help;
        vertical-align: middle;
        position: relative;
        text-transform: none;
    }
    .assistant-badge:hover {
        background: #e0e0e0;
        color: #444;
    }
    /* CSS tooltip for badge */
    .assistant-badge::after {
        content: attr(data-tooltip);
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 8px;
        padding: 10px 14px;
        background: #333;
        color: #fff;
        font-size: 12px;
        line-height: 1.4;
        border-radius: 6px;
        white-space: normal;
        width: 260px;
        text-align: left;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s, visibility 0.2s;
        z-index: 100;
        pointer-events: none;
    }
    .assistant-badge::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 6px solid transparent;
        border-bottom-color: #333;
        margin-top: -4px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s, visibility 0.2s;
        z-index: 100;
    }
    .assistant-badge:hover::after,
    .assistant-badge:hover::before {
        opacity: 1;
        visibility: visible;
    }
    .assistant-disclaimer {
        font-size: 12px;
        color: #888;
        font-family: "dinregular", "Helvetica Neue", Helvetica, Arial;
        font-style: italic;
        margin-bottom: 8px;
        line-height: 1.4;
    }
    .assistant-input-row {
        display: flex;
        gap: 0;
    }
    #assistant-input {
        flex: 1;
        padding: 14px 18px;
        font-size: 16px;
        font-family: "dinregular", "Helvetica Neue", Helvetica, Arial, sans-serif;
        border: 2px solid #ccc;
        border-right: none;
        border-radius: 8px 0 0 8px;
        outline: none;
        transition: border-color 0.2s;
        background: #fff;
    }
    #assistant-input:focus {
        border-color: #d32d35;
    }
    #assistant-input::placeholder {
        color: #999;
        font-style: italic;
    }
    #assistant-submit {
        padding: 14px 20px;
        background: #d32d35;
        color: #fff;
        border: 2px solid #d32d35;
        border-radius: 0 8px 8px 0;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
    }
    #assistant-submit:hover { background: #b01e1e; border-color: #b01e1e; }
    #assistant-submit:disabled { opacity: 0.6; cursor: not-allowed; }

    /* Loading */
    #assistant-loading {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 14px;
        color: #666;
        font-family: "dinregular", "Helvetica Neue", Helvetica, Arial;
        font-size: 15px;
    }
    .assistant-spinner {
        width: 22px; height: 22px;
        border: 3px solid #e0e0e0;
        border-top-color: #d32d35;
        border-radius: 50%;
        animation: assistant-spin 0.7s linear infinite;
    }
    @keyframes assistant-spin { to { transform: rotate(360deg); } }
    .assistant-cancel-btn {
        background: none;
        border: 1px solid #ccc;
        border-radius: 4px;
        padding: 4px 12px;
        font-size: 13px;
        color: #666;
        cursor: pointer;
        font-family: "dinregular", "Helvetica Neue", Helvetica, Arial;
        transition: color 0.2s, border-color 0.2s;
    }
    .assistant-cancel-btn:hover { color: #d32d35; border-color: #d32d35; }

    /* Error */
    #assistant-error {
        margin-top: 12px;
        padding: 10px 16px;
        background: #fff3f3;
        border: 1px solid #e8c4c4;
        border-radius: 6px;
        color: #c41230;
        font-size: 14px;
        font-family: "dinregular", "Helvetica Neue", Helvetica, Arial;
    }

    /* === Assistant Results === */
    #assistant-results {
        width: 100%;
        clear: both;
        margin-bottom: 20px;
    }
    .assistant-explanation {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 20px;
        background: #f0f7f0;
        border: 1px solid #c8e6c9;
        border-radius: 8px;
        margin-bottom: 16px;
    }
    .assistant-explanation-text { flex: 1; }
    .assistant-explanation-text p {
        margin: 0;
        font-size: 15px;
        line-height: 1.5;
        color: #333;
    }
    .assistant-tts-btn {
        background: none;
        border: 1px solid #ccc;
        border-radius: 6px;
        padding: 6px 8px;
        cursor: pointer;
        color: #666;
        flex-shrink: 0;
        transition: color 0.2s, border-color 0.2s;
    }
    .assistant-tts-btn:hover { color: #d32d35; border-color: #d32d35; }

    .assistant-tts-toggle {
        background: none;
        border: none;
        padding: 2px 4px;
        cursor: pointer;
        color: #888;
        margin-left: 6px;
        vertical-align: middle;
        transition: color 0.2s;
    }
    .assistant-tts-toggle:hover { color: #d32d35; }

    .assistant-filter-summary {
        font-size: 13px;
        color: #666;
        margin-bottom: 16px;
        font-family: "dinregular", "Helvetica Neue", Helvetica, Arial;
    }
    .assistant-adjust-link {
        color: #d32d35;
        text-decoration: underline;
        margin-left: 6px;
    }

    .assistant-suggestions {
        padding: 12px 16px;
        background: #fff8e1;
        border: 1px solid #ffe0b2;
        border-radius: 6px;
        margin-bottom: 16px;
    }
    .assistant-suggestions p {
        margin: 0 0 4px;
        font-size: 14px;
        color: #795548;
    }
    .assistant-suggestions p:last-child { margin-bottom: 0; }

    .assistant-no-results {
        padding: 20px;
        text-align: center;
        color: #666;
        font-size: 15px;
    }
    .assistant-no-results a { color: #d32d35; }

    .assistant-knowledge-cta {
        padding: 16px 20px;
        text-align: center;
        color: #555;
        font-size: 14px;
        border-top: 1px solid #eee;
    }
    .assistant-knowledge-cta a { color: #d32d35; }

    .assistant-more {
        text-align: center;
        padding: 16px;
        font-size: 14px;
        color: #666;
    }
    .assistant-more a { color: #d32d35; font-weight: 600; }

    /* Listing cards grid */
    #assistant-listings {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 20px;
        margin-bottom: 20px;
    }
    .assistant-listing-card {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        transition: box-shadow 0.2s;
    }
    .assistant-listing-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.14); }
    .assistant-listing-image {
        height: 200px;
        overflow: hidden;
        background: #e0e0e0;
    }
    .assistant-listing-image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }
    .assistant-listing-info { padding: 14px 16px; }
    .assistant-listing-price {
        font-family: "din_mediumregular", "Helvetica Neue", Helvetica, Arial;
        font-size: 17px;
        font-weight: 700;
        color: #333;
        text-transform: capitalize;
        margin-bottom: 4px;
    }
    .assistant-listing-avail {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
    }
    .assistant-listing-avail.status-now { color: #27ae60; }
    .assistant-listing-avail.status-future { color: #d32d35; }
    .assistant-listing-avail.status-tentative { color: #e67e22; cursor: help; }
    .assistant-listing-avail.status-rented { color: #888; }
    .assistant-listing-status-note {
        font-size: 11px;
        color: #999;
        font-style: italic;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    .assistant-listing-address {
        font-size: 14px;
        color: #555;
        margin-bottom: 8px;
        text-transform: capitalize;
    }
    .assistant-listing-details {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 12px;
    }
    .assistant-listing-details span {
        background: #f5f5f5;
        padding: 3px 8px;
        border-radius: 4px;
        font-size: 12px;
        color: #555;
        white-space: nowrap;
    }
    .assistant-listing-details .pets-ok {
        background: #e8f5e9;
        color: #2e7d32;
    }
    .assistant-listing-actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }
    .assistant-view-btn {
        padding: 8px 14px;
        background: #d32d35;
        color: #fff !important;
        text-decoration: none !important;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: background 0.2s;
    }
    .assistant-view-btn:hover { background: #b01e1e; }
    .assistant-fav-btn, .assistant-inquiry-btn {
        padding: 8px 14px;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 13px;
        color: #555;
        cursor: pointer;
        transition: all 0.2s;
        font-family: "dinregular", "Helvetica Neue", Helvetica, Arial;
    }
    .assistant-fav-btn:hover { border-color: #d32d35; color: #d32d35; }
    .assistant-fav-btn.added { color: #d32d35; border-color: #d32d35; }
    .assistant-inquiry-btn:hover { border-color: #333; color: #333; }

    /* Lead capture CTA card */
    .assistant-cta-card {
        background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        padding: 20px 24px;
        margin-top: 20px;
        text-align: center;
    }
    .assistant-cta-title {
        font-family: "din_mediumregular", "Helvetica Neue", Helvetica, Arial;
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin: 0 0 6px;
    }
    .assistant-cta-subtitle {
        font-size: 13px;
        color: #666;
        margin: 0 0 14px;
    }
    .assistant-lead-form {
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    .assistant-lead-form input {
        padding: 10px 14px;
        font-size: 14px;
        border: 1px solid #ccc;
        border-radius: 6px;
        outline: none;
        font-family: "dinregular", "Helvetica Neue", Helvetica, Arial;
        min-width: 180px;
    }
    .assistant-lead-form input:focus { border-color: #d32d35; }
    .assistant-lead-form button {
        padding: 10px 20px;
        background: #d32d35;
        color: #fff;
        border: none;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        font-family: "din_mediumregular", "Helvetica Neue", Helvetica, Arial;
        transition: background 0.2s;
    }
    .assistant-lead-form button:hover { background: #b01e1e; }
    .assistant-lead-form button:disabled { opacity: 0.6; cursor: not-allowed; }
    .assistant-lead-status {
        width: 100%;
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 14px;
        margin-top: 6px;
    }
    .assistant-lead-status.lead-success {
        background: #f0f7f0;
        color: #2e7d32;
        border: 1px solid #c8e6c9;
    }
    .assistant-lead-status.lead-error {
        background: #fff3f3;
        color: #c41230;
        border: 1px solid #e8c4c4;
    }

    .container.inner { width: 1060px !important; max-width: 1060px !important; }
    /* Search filters sidebar - match live site exactly */
    #search-filters { background-color: #e6e7e9 !important; -webkit-border-radius: 0 5em 0 0 !important; -moz-border-radius: 0 5em 0 0 !important; border-radius: 0 5em 0 0 !important; }
    #search-filters div { padding: 5px; }
    #search-filters a { text-decoration: none; color: #333; }
    #search-filters h3 { margin: 0; height: 23px; margin-top: 10px; padding: 2px 0 2px 9px; display: flex; align-items: center; justify-content: space-between; width: 100%; box-sizing: border-box; border: 1px solid #e7e7e7 !important; -webkit-border-radius: 0 8px 0 8px; -moz-border-radius: 0 8px 0 8px; border-radius: 0 8px 0 8px; background-color: #FFF !important; cursor: pointer; font-family: "din_mediumregular", "Helvetica Neue", Helvetica, Arial; font-weight: normal; font-size: 14px; line-height: 23px; }
    #search-filters h3 .filter { display: none; background: url('/img/check.jpg') 0 0 no-repeat; height: 12px; width: 16px; padding: 0; margin: 6px 5px 0 0; float: right; }
    #search-filters .filter-closed { background: url('/img/filter-closed.png') center center no-repeat; flex-shrink: 0; height: 23px; width: 18px; margin-right: 10px; order: 2; }
    #search-filters .filter-open { background: url('/img/filter-open.png') center center no-repeat; flex-shrink: 0; height: 23px; width: 18px; margin-right: 10px; order: 2; }
    #search-filters h3 a { order: 1; flex-grow: 1; }
    .options { background-color: #FFF; display: none; }
    #search-filters label { font-weight: normal; cursor: pointer; }
    #search-filters-inner { position: relative; margin-left: 9px; }
    #listings-container .span-8 { width: 310px; }
    #listings-container .span-10 { width: 390px; }
    #listings-container #results .row { display: block !important; flex-wrap: unset !important; margin: 0 !important; }
    #listings-container #results .row>* { padding-left: 0 !important; padding-right: 0 !important; max-width: unset !important; flex: unset !important; }
    /* Post / listing card layout - match live site span grid */
    .post { overflow: hidden; clear: both; margin-bottom: 0; min-height: 250px; padding: 10px 0; border-top: 1px solid #e7e7e7; }
    /* new-listing gap handled by matching live site structure */
    .new-listing { border-bottom: 3px solid #d32d35; height: 19px; margin: 0; padding: 0; text-align: right; }
    .new-listing-badge { display: inline-block; background: #d32d35; color: #fff; font-size: 11px; font-family: "din_mediumregular", "Helvetica Neue", Helvetica, Arial; text-transform: uppercase; padding: 2px 10px; letter-spacing: 0.5px; line-height: 15px; }
    .managed-property { position: absolute; background-color: white; bottom: 0; width: 100%; }
    .managed-property .line { height: 3px; background-color: #d32d35; }
    .managed-property .managed-icon { text-align: center; padding: 2px 0; }
    .managed-badge { display: inline-block; background: #d32d35; color: #fff; font-size: 10px; font-family: "din_mediumregular", "Helvetica Neue", Helvetica, Arial; text-transform: uppercase; padding: 2px 8px; letter-spacing: 0.5px; line-height: 14px; }
    .post > .span-18:first-child { margin: 0 !important; padding: 0 !important; line-height: 0; font-size: 0; }
    .post > .span-18:first-child .new-listing { margin: 0 !important; }
    /* gap was from white borders in image files, fixed with object-fit:cover */
    /* Listing options - match live site fonts */
    .listing-options { margin: 0; padding: 0; font-family: "dinregular"; font-weight: normal; font-size: 14px; }
    .listing-options li { list-style: none; margin: 0; padding: 0; }
    .listing-options span { font-family: "din_mediumregular"; }
    .listing-options .upsize { font-size: 16px; }
    .green { color: green; }
    .pink { color: #d32d35; }
    .cap { text-transform: capitalize; }
    /* More Info button - use background image like live site */
    .ua-btn.moreinfo { font-size: 0; line-height: 0; color: transparent; background: transparent url('/img/more-info.png') center center no-repeat; border: none; display: inline-block; cursor: pointer; width: 91px; height: 20px; text-decoration: none; }
    .ua-btn.moreinfo:hover { opacity: 0.8; }
    /* Pagination - match live site: right-aligned, underline selected */
    #pagination { text-align: right; font-size: 14px; font-family: "din_mediumregular"; font-weight: normal; color: #d32d35; margin-top: 10px; }
    #pagination a { color: #d32d35; text-decoration: none; margin: 0 2px; }
    #pagination .selected { text-decoration: underline; }
    /* Payments text */
    .payments { padding-bottom: 2px; }
    /* Favourites link */
    #label-favorite { font-family: "din_mediumregular", "Helvetica Neue", Helvetica, Arial; font-weight: normal; font-size: 14px; }
    .helv { font-size: 11px; color: #666; }
    /* Search results heading */
    #search-results h1 { font-size: 22px; font-family: "din_mediumregular", "Helvetica Neue", Helvetica, Arial; font-weight: normal; text-transform: uppercase; }
    /* Global typography from live site */
    h1, h2, h3, h4 { text-transform: uppercase; font-family: "din_mediumregular", "Helvetica Neue", Helvetica, Arial; font-weight: normal; }
    p { font-family: "din_mediumregular", "Helvetica Neue", Helvetica, Arial; }
    #clear-filters { cursor: pointer; font-family: "din_mediumregular"; font-weight: normal; font-size: 14px; color: #d32d35; }
    /* Managed property badge */
    .managed-property { position: absolute; background-color: white; bottom: 0; width: 100%; }
    .managed-property .line { height: 3px; background-color: #d32d35; }
    /* Hide mobile-only elements on desktop */
    .mobile-card-header { display: none; }

    @media (max-width: 1024px) {
        /* Assistant mobile */
        #assistant-box { margin: 0 8px 16px; }
        .assistant-inner { padding: 16px; border-radius: 10px; }
        .assistant-header-row { margin-bottom: 8px; flex-wrap: wrap; }
        .assistant-label { font-size: 16px; }
        #assistant-lang { font-size: 12px; padding: 3px 6px; }
        #assistant-input { padding: 12px 14px; font-size: 15px; }
        #assistant-submit { padding: 12px 16px; }
        #assistant-listings { grid-template-columns: 1fr; gap: 16px; }
        #assistant-results { margin: 0 8px 16px; }
        .assistant-explanation { padding: 12px 14px; }
        .assistant-listing-image { height: 180px; }
        .assistant-listing-image img { height: 180px; }
        .assistant-listing-actions { flex-direction: column; }
        .assistant-view-btn, .assistant-fav-btn, .assistant-inquiry-btn { text-align: center; }
        .assistant-cta-card { margin: 16px 0; padding: 16px; }
        .assistant-lead-form { flex-direction: column; }
        .assistant-lead-form input { min-width: 0; width: 100%; }
        .assistant-lead-form button { width: 100%; }

        .container.inner { width: 100% !important; max-width: 100% !important; padding: 0 10px; box-sizing: border-box; }
        #search-filters { width: 100% !important; float: none !important; }
        #search-results { width: 100% !important; float: none !important; margin-left: 0 !important; }
        .prepend-1 { padding-left: 0 !important; }
        /* Mobile search results cleanup */
        #pagination {
            text-align: center;
            font-size: 0;
            padding: 12px 0;
            border: none !important;
            height: auto !important;
            float: none !important;
            overflow: visible !important;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 6px;
        }
        #pagination a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 38px;
            height: 38px;
            padding: 0 10px;
            margin: 0;
            font-size: 14px;
            font-weight: 600;
            font-family: "din_mediumregular", "Helvetica Neue", Helvetica, Arial, sans-serif;
            color: #333;
            text-decoration: none;
            background: #f0f0f0;
            border-radius: 8px;
            transition: all 0.2s;
        }
        #pagination a:hover { background: #D2222A; color: #fff; text-decoration: none; }
        #pagination a.selected, #pagination #current-pagination {
            background: #D2222A;
            color: #fff;
            pointer-events: none;
        }
        #pagination #previous-pagination,
        #pagination #next {
            background: none;
            color: #D2222A;
            font-weight: 700;
            font-size: 14px;
            min-width: auto;
            padding: 0 6px;
        }
        #pagination #previous-pagination:hover,
        #pagination #next:hover { background: rgba(210,34,42,0.08); }
        /* Mobile listing cards — modern card layout */
        .post {
            clear: both;
            margin: 0 8px 20px !important;
            padding: 0 0 16px !important;
            border-bottom: none !important;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            overflow: hidden;
        }
        .post .span-7, .post .span-8, .post .span-10, .post .span-11, .post .span-18 {
            width: 100% !important; float: none !important; margin: 0 !important;
        }
        .post .span-8 { height: auto !important; border-radius: 0; }
        .post .span-8 a { height: auto !important; display: block; }
        .post .span-8 img { width: 100% !important; height: 220px !important; object-fit: cover !important; display: block; }
        .post .span-7 { position: relative; }
        .post .span-4.last { width: 100% !important; float: none !important; margin: 0 !important; text-align: left !important; }

        /* New listing banner */
        .post .new-listing { width: 100% !important; float: none !important; }

        /* Price heading */
        .post h3.cap {
            margin: 12px 16px 4px !important;
            font-size: 18px !important;
            font-weight: 700 !important;
            color: #333 !important;
        }
        .post h3.cap .pink { color: #D2222A !important; font-size: 14px !important; }
        .post h3.cap .green { color: #27ae60 !important; font-size: 14px !important; font-weight: 700 !important; }

        /* Property details list */
        .post .listing-options {
            list-style: none !important;
            padding: 0 16px !important;
            margin: 8px 0 12px !important;
            width: 100% !important;
            box-sizing: border-box;
        }
        .post .listing-options li {
            padding: 5px 0 !important;
            font-size: 13px !important;
            color: #555 !important;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            gap: 6px;
        }
        .post .listing-options li:last-child { border-bottom: none; }
        .post .listing-options li span {
            color: #888 !important;
            font-weight: 600 !important;
            min-width: 100px;
            flex-shrink: 0;
        }
        .post .listing-options li.upsize { font-weight: 600 !important; color: #333 !important; font-size: 14px !important; }

        /* Payments text */
        .post .payments {
            font-size: 11px !important;
            color: #aaa !important;
            padding: 0 16px !important;
            margin-bottom: 8px;
        }
        .post .shaw { display: none !important; }

        /* Favourites link */
        .post #add-favorite {
            display: block;
            padding: 8px 16px !important;
            font-size: 13px;
        }
        .post #add-favorite .pink { font-size: 13px !important; font-weight: 600 !important; }

        /* Property ID */
        .post .helv { font-size: 12px !important; color: #aaa !important; }
        .post .span-4.last > .span-4:nth-child(3) { padding: 4px 16px !important; }

        /* More Info button */
        .post .ua-btn.moreinfo {
            display: block !important;
            width: calc(100% - 32px) !important;
            margin: 8px 16px !important;
            min-height: 48px !important;
            line-height: 48px !important;
            text-align: center !important;
            border-radius: 10px !important;
            font-size: 15px !important;
            font-weight: 700 !important;
        }

        #next-pagination, #previous-pagination { font-weight: bold; }

        /* Mobile card header — price + availability + More Info side by side */
        .mobile-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 16px;
            gap: 12px;
            border-bottom: 1px solid #f0f0f0;
        }
        .mobile-card-left { flex: 1; }
        .mobile-card-price {
            font-size: 20px;
            font-weight: 700;
            color: #333;
            font-family: "din_mediumregular", "Helvetica Neue", Helvetica, Arial, sans-serif;
        }
        .mobile-card-price span { font-size: 20px; font-weight: 700; color: #333; }
        .mobile-card-avail { margin-top: 6px; }
        .mobile-card-avail .status-now { color: #27ae60; font-size: 19px; font-weight: 700; }
        .mobile-card-avail .status-future { color: #D2222A; font-size: 17px; font-weight: 700; }
        .mobile-card-avail .status-conditional { color: #D2222A; font-size: 16px; font-weight: 700; line-height: 1.3; }
        .mobile-card-avail .status-note { color: #D2222A; font-size: 14px; font-weight: 600; line-height: 1.3; }
        .mobile-card-avail .status-rented { color: #888; font-size: 17px; font-weight: 700; }
        .mobile-card-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #D2222A;
            color: #fff !important;
            text-decoration: none !important;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            padding: 12px 20px;
            border-radius: 10px;
            white-space: nowrap;
            min-height: 44px;
            box-shadow: 0 2px 4px rgba(210,34,42,0.2);
        }
        .mobile-card-btn:hover { background: #b01e1e; }

        /* Hide original price, status, and more-info on mobile (replaced by card header) */
        .post > .span-10 > h3.cap { display: none !important; }
        .post .span-4.last .button { display: none !important; }

        /* Search results background */
        #results { background: #f3f3f3; padding: 10px 0; margin: 0 -10px; }
    }
