.row {
    display: flex;
    align-items: stretch;
}
.masonry-thumbs {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    gap: 0;
    align-items: stretch; /* Align the items vertically */
}
.grid-item img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
}
.top-info{
    z-index: 2;
    background-color: #ffffffb5;
    position: absolute;
    position-area: center;
    padding: 50px;
    border-radius: 10%;

}
.title h1{
    color: #3b3b3b;
    text-align: center;
    text-decoration: underline;
    margin-bottom: 0px;
}
@media (min-width: 1200px) {
    img.mfp-img:not(.img-fluid):not(.rounded) {
        height: 911px !important;
        width: auto;
    }
}
/* Main hero image: fixed height so image always fits like the “correct” property page, responsive */
.image-container {
    position: relative;
    width: 100%;
    padding-bottom: 66.66%;
    background-color: transparent;
}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.card{
    background-color: #1b355a;
    border-color: transparent;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card .card-body{
    color: white;
    font-size: 1.1rem;
    padding: 1.5rem;
}
.card .card-body dl.row {
    line-height: 1.4;
    margin-bottom: 0;
}
.card .card-body dt,
.card .card-body dd {
    line-height: 1.4;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.card .card-body dt {
    color: #cfcfcf;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
.card .card-body dd {
    color: white;
    font-weight: 500;
}
dt{
    color: #cfcfcf;
}
/* agent area */
    .care-section {
        background-color: white;
        border-radius: 0.375rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        display: flex;
        flex-wrap: wrap;
    }
    .caretaker-info {
        flex: 1;
        min-width: 300px;
        padding: 0px 40px;
        background: #e5e5e5;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .caretaker-header {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }
    .caretaker-header i {
        font-size: 2rem;
        margin-right: 15px;
        background: #3F776B;
        padding: 15px;
        border-radius: 50%;
    }
    .caretaker-header h2 {
        font-size: 1.8rem;
        font-weight: 600;
    }
    .caretaker-details p {
        margin: 8px 0;
        display: flex;
        align-items: center;
        font-size: 0.95rem;
        background: #5a6a7c;
        padding: 5px 15px;
        border-radius: 8px;
    }
    .caretaker-details i {
        width: 30px;
        margin-right: 10px;
    }
    .caretaker-name {
        font-size: 1.3rem;
        font-weight: bold;
        margin: 5px 0 20px;
        color: #2c3e50;
    }
    .phone-number {
        font-size: 1.5rem;
        letter-spacing: 1px;
        background: rgba(255, 255, 255, 0.1);
        padding: 10px 15px;
        border-radius: 8px;
        display: inline-block;
    }
    .agent-info {
        flex: 1;
        min-width: 300px;
        padding: 20px 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .agent-header {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }
    .agent-header i {
        font-size: 2.5rem;
        margin-right: 15px;
        color: #458174;
        background: rgba(52, 152, 219, 0.1);
        padding: 15px;
        border-radius: 50%;
    }
    .agent-header h2 {
        font-size: 1.8rem;
        font-weight: 600;
        color: #2c3e50;
    }
    .agent-details {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }
    .agent-logo {
        flex: 1;
        min-width: 100px;
        display: flex;
        justify-content: center;
    }
    .logo-placeholder {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #458174 0%, #2a5047 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    .logo-placeholder i {
        font-size: 2rem;
        color: white;
    }
    .agent-contact {
        flex: 2;
        min-width: 200px;
    }
    .agent-name {
        font-size: 1.3rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 15px;
    }
    .agent-address {
        font-size: 0.9rem;
        line-height: 1.6;
        color: #7f8c8d;
        margin-bottom: 20px;
    }
    .agent-contact-info {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }
    .contact-item {
        display: flex;
        align-items: center;
        background: #f8f9fa;
        padding: 10px 15px;
        border-radius: 8px;
        font-size: 0.95rem;
        color: #2c3e50;
    }
    .contact-item i {
        margin-right: 8px;
        color: #458174;
    }
    @media (max-width: 768px) {
        .care-section {
            flex-direction: column;
        }
        .caretaker-info, .agent-info {
            padding: 30px;
        }
        .section-title h1 {
            font-size: 2rem;
        }
        .caretaker-name, .agent-name {
            font-size: 1.3rem;
        }
        .phone-number {
            font-size: 1.2rem;
        }
        .action-buttons {
            flex-direction: column;
            padding: 25px;
        }
    }
    @media (max-width: 480px) {
        .section-title h1 {
            font-size: 1.8rem;
        }
        .caretaker-header h2, .agent-header h2 {
            font-size: 1.3rem;
        }
        .caretaker-details p {
            font-size: 1rem;
        }
        .agent-details {
            flex-direction: column;
            text-align: center;
        }
        .agent-contact {
            text-align: center;
        }
        .agent-contact-info {
            justify-content: center;
        }
    }
    .action-buttons {
        display: flex;
        justify-content: space-between;
        padding: 30px 40px;
        background: #f5f5f5;
        border-top: 1px solid #e0e0e0;
        width: 100%;
        gap: 20px;
    }
    .action-buttons .btn {
        flex: 1;
        padding: 10px 12px;
        border-radius: 12px;
        font-size: 0.8rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        border: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    .save-btn, .contact-btn, .contact-btn a, .share-btn {
        background: #5a6a7c;
        color: white !important;
    }
    .save-btn:hover, .contact-btn:hover, .share-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        background: #e0e0e0 !important;
        color: #3a3a3a !important;
    }
    .contact-btn:hover a{
        background: unset;
        color: #3a3a3a !important;
    }
    /* description part */
    .description {
        overflow: hidden;
        position: relative;
        transition: max-height 0.4s ease;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    .description li {
        list-style: inside;
    }
    #propertyDescription img {
        max-width: 100%;
        height: auto;
    }
    .description.expanded {
        max-height: 2000px;
    }
    .read-more-btn {
        color: black;
        border: none;
        background: #ffffff80;
        padding: 10px 20px;
        margin-top: 10px;
        cursor: pointer;
        border-radius: 5px;
        width: 25%;
    }
    .disclaimer {
        margin-top: 30px;
        font-size: 0.9rem;
        color: #555;
        padding-top: 15px;
    }
    .floorplan button{
        border: none;
        background: none;
    }
    /* Share property */
    .share-wrapper {
        position: relative;
        display: inline-block;
    }
    .share-menu {
        display: none;
        position: absolute;
        top: 220px;
        right: 20px;
        background-color: white;
        border: 1px solid #ddd;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        border-radius: 6px;
        z-index: 1000;
        width: 200px;
    }
    .share-menu a {
        display: block;
        padding: 10px;
        text-decoration: none;
        color: #333 !important;
        font-size: 14px;
    }
    .share-menu a:hover {
        background-color: #f0f0f0;
    }
    /* Keep label and value on one line (e.g. Bedrooms: 2) */
    .postcontent .iconlist li strong { display: inline; }
    .postcontent .iconlist li .prop-pair { white-space: nowrap; }
    /* Description: same line as others; allow wrap for long content */
    .postcontent .iconlist li.property-description-item .prop-pair { white-space: normal; }
    .section-title { color: #1B355A; margin-bottom: 0; }
    .label-title { color: #1B355A; }
    .property-disclaimer { font-size: 0.9rem; color: #555; }
    .floorplan-btn { border: none; background: none; cursor: pointer; }
    /* Floormap modal — scope to legacy #floorplanModal only (BS5 favorites/filters modals share .modal / .modal-content). */
    #floorplanModal {
        display: none; /* Hidden by default */
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.7);
    }
    #floorplanModal .modal-content {
        background-color: #fff;
        margin: auto;
        padding: 20px;
        border-radius: 0.375rem;
        width: 80%;
        max-width: 800px;
        position: relative;
        text-align: center;
    }
    .floorplan-image {
        width: 100%;
        height: auto;
        border-radius: 0.375rem;
    }
    #floorplanModal .close {
        color: #aaa;
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
    }
    #floorplanModal .close:hover {
        color: #000;
    }
    /* Status badge styling */
    .label.badge {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        font-weight: 500;
    }
    /* Status overlay */
    .status-overlay {
        z-index: 3;
        backdrop-filter: blur(2px);
        width: 100%;
        height: 20%;
        align-content: center;
        justify-items: center;
        place-self: anchor-center;
    }
    /* Gray background */
    .bg-gray-600 {
        background-color: #a1a3a5 !important;
    }
	.status-overlay [class*="bi-"]{
		font-size: xx-large;
	}
    .sticky-sidebar-wrap{
        background-color: #e5e5e5;
        border-radius: 0.375rem;
        padding-top: 50px;
    }
    /* Lightbox Styles */
    .lightbox {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 1000;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .lightbox.active {
        display: flex;
        opacity: 1;
    }
    .lightbox-content {
        max-width: 90%;
        max-height: 90%;
        position: relative;
    }
    .lightbox-img {
        max-width: 100%;
        max-height: 80vh;
        border-radius: 8px;
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    }
    .lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.9);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        transition: background 0.3s ease;
    }
    .lightbox-nav:hover {
        background: rgba(255, 255, 255, 1);
    }
    .lightbox-nav.prev {
        left: 20px;
    }
    .lightbox-nav.next {
        right: 20px;
    }
    .lightbox-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.9);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        transition: background 0.3s ease;
    }
    .lightbox-close:hover {
        background: rgba(255, 255, 255, 1);
    }
    /* Main hero image - applies to all property pages */
    #mainImage {
        width: 100%;
        height: 100%;
        object-fit: cover;      /* makes it fully cover */
        object-position: center;
        cursor: pointer;
    }

/* Map "Show all properties" switch: blue when on, red when off; thumb circle always white */
.map-custom-control .form-check-input {
    background-color: #c9302c;
    border-color: #c9302c;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.map-custom-control .form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.map-custom-control .form-check-input:focus {
    border-color: rgba(13, 110, 253, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
/* Sidebar: full gallery under NOFREERIDE card — transparent strip */
.property-sidebar-gallery-wrap {
    background: transparent;
    border-radius: 12px;
    padding: 0.5rem 0 0;
}
.property-sidebar-gallery-wrap .gallery-item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
}
.property-sidebar-gallery-wrap .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}
.property-sidebar-gallery-wrap #showMoreGalleryBtn,
.property-sidebar-gallery-wrap #showLessGalleryBtn {
    border: 1px solid rgba(202, 138, 4, 0.65);
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-weight: 600;
    color: #422006 !important;
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 40%, #f59e0b 100%);
    box-shadow: 0 2px 14px rgba(245, 158, 11, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: filter 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    position: relative;
    overflow: hidden;
}
.property-sidebar-gallery-wrap #showMoreGalleryBtn::after {
    content: "";
    position: absolute;
    top: -25%;
    left: 0;
    width: 45%;
    height: 150%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0) 35%,
        rgba(255, 255, 255, 0.85) 50%,
        rgba(255, 255, 255, 0.35) 62%,
        transparent 100%
    );
    opacity: 0.9;
    pointer-events: none;
    transform: translateX(-180%) skewX(-12deg);
}
.property-sidebar-gallery-wrap #showMoreGalleryBtn:hover::after,
.property-sidebar-gallery-wrap #showLessGalleryBtn:hover::after {
    animation: property-showing-btn-shimmer 0.75s ease-in-out forwards;
}
.property-sidebar-gallery-wrap #showMoreGalleryBtn:hover,
.property-sidebar-gallery-wrap #showLessGalleryBtn:hover {
    filter: brightness(1.04);
    color: #1c1917 !important;
    border-color: rgba(180, 83, 9, 0.75);
    box-shadow: 0 3px 18px rgba(217, 119, 6, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
/* Main section background — dashlite admin dark (--bs-gray-900), no estate image */
.property-show-content-wrap {
    background: #1f2b3a !important;
    background-image: none !important;
    /* Tighter top so content sits closer under the hero image / slider */
    padding-top: 0.5rem !important;
}
/* Single .container for hero + tabs so col-lg-8 / col-lg-4 widths match between rows */
.property-show-listing-wrap {
    padding-top: 1.1rem !important; /* breathing room after removing breadcrumb */
    padding-bottom: 0.25rem !important;
}
.property-show-directions-btn {
    border-color: rgba(148, 163, 184, 0.45) !important;
    color: #e2e8f0 !important;
}
.property-show-directions-btn:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: #94a3b8 !important;
    color: #fff !important;
}
/* Tab panels: explicit dark text on white bg (theme can set light text on .content-wrap) */
.property-show-content-wrap #propertyDetailTabContent,
.property-show-content-wrap #propertyDetailTabContent .tab-pane {
    color: #212529 !important;
}
.property-show-content-wrap #propertyDetailTabContent .text-muted {
    color: #6c757d !important;
}
.property-show-content-wrap #propertyDetailTabContent a:not(.btn) {
    color: #0d6efd;
}
.property-show-content-wrap #propertyDetailTabContent strong {
    color: #000;
}
.property-show-content-wrap #propertyDetailTabContent .property-highlights-top .property-highlights-title {
    color: #0f172a !important;
}
.property-show-content-wrap #propertyDetailTabContent .property-highlights-top .property-highlights-teaser {
    color: #475569 !important;
    font-size: 1.1rem !important;
    line-height: 1.55;
}
/* Long description HTML from DB may include inline light/white colors — force readable dark text in the tab */
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html,
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html * {
    color: #0f172a !important;
}
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html a,
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html a * {
    color: #0d6efd !important;
}
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html a:hover,
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html a:hover * {
    color: #0a58ca !important;
}
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html img {
    max-width: 100%;
    height: auto;
}
/* Tighten DB HTML spacing (extra <p> margins, double <br>, empty blocks) */
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html {
    line-height: 1.55;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html p {
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
}
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html p:first-child {
    margin-top: 0;
}
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html p:last-child {
    margin-bottom: 0;
}
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html p:empty {
    display: none;
    margin: 0;
}
/* Collapse consecutive line breaks (common in pasted HTML) */
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html br + br {
    display: none;
}
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html h1,
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html h2,
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html h3,
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html h4,
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html h5,
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html h6 {
    margin-top: 0.85rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a !important;
}
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html h1:first-child,
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html h2:first-child,
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html h3:first-child {
    margin-top: 0;
}
/* Lists — clear bullets/numbers and comfortable spacing */
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html ul,
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html ol {
    margin: 0.35rem 0 0.6rem;
    padding-left: 1.5rem;
    list-style-position: outside;
}
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html ul {
    list-style-type: disc;
}
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html ol {
    list-style-type: decimal;
}
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html li {
    margin: 0.12rem 0;
    padding-left: 0.35rem;
    display: list-item;
    line-height: 1.45;
}
/* Editors often put <p> inside <li> — reset p margins so items don’t double-stack */
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html li > p {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html li > p + p {
    margin-top: 0.4rem !important;
}
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html li p strong {
    font-weight: 700;
    color: #0f172a !important;
}
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html ul ul,
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html ol ol,
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html ul ol,
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html ol ul {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}
/* Tables in long description — card-style, readable type (overrides messy inline sizes from editors) */
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html table {
    width: 100%;
    max-width: 100%;
    margin: 1.15rem 0;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 0.7rem;
    overflow: hidden;
    font-size: 1.08rem !important;
    line-height: 1.45 !important;
    border: 1px solid #cbd5e1;
    background: #fff;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.06);
}
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html thead th,
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html thead td {
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%) !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.7rem 1.1rem !important;
    border: none !important;
    border-bottom: 2px solid #94a3b8 !important;
    vertical-align: middle;
}
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html tbody th {
    background: #f8fafc !important;
    color: #334155 !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    text-align: left;
    padding: 0.75rem 1.1rem !important;
    border-bottom: 1px solid #e2e8f0 !important;
    border-right: 1px solid #e2e8f0 !important;
    vertical-align: top;
}
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html tbody td {
    padding: 0.85rem 1.1rem !important;
    border: none !important;
    border-bottom: 1px solid #e2e8f0 !important;
    vertical-align: top;
    font-size: 1.05rem !important;
    color: #0f172a !important;
}
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html tbody tr:nth-child(even) td {
    background-color: #f8fafc !important;
}
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html tbody tr:nth-child(even) th {
    background-color: #f1f5f9 !important;
}
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html tbody tr:last-child td,
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html tbody tr:last-child th {
    border-bottom: none !important;
}
.property-show-content-wrap #propertyDetailTabContent .property-long-description-html table caption {
    caption-side: top;
    padding: 0.5rem 0.25rem 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a !important;
    text-align: left;
}
.property-show-content-wrap #propertyDetailTabContent .property-showing-tab-embed strong {
    color: #f8fafc !important;
}
/* Request showing — embedded in tab (same dark panel as former modal) */
.property-show-content-wrap #propertyDetailTabContent .property-showing-tab-embed {
    background: linear-gradient(155deg, #18202d 0%, #1f2b3a 55%, #1a2332 100%);
    border: 1px solid rgba(96, 165, 250, 0.4);
    border-radius: 0;
    padding: 1.15rem 1.25rem;
    margin-top: 0.25rem;
}
/* Tab tables (Favorites, Statistics, …) — light palette on dark page */
.property-show-content-wrap #propertyDetailTabContent .property-tab-table-wrap {
    background: #fff;
}
.property-show-content-wrap #propertyDetailTabContent .property-tab-light-table {
    --bs-table-bg: #ffffff;
    --bs-table-color: #0f172a;
    --bs-table-striped-bg: #f1f5f9;
    --bs-table-striped-color: #0f172a;
    --bs-table-hover-bg: #e2e8f0;
    --bs-table-hover-color: #0f172a;
    --bs-table-border-color: #cbd5e1;
    color: #0f172a !important;
}
.property-show-content-wrap #propertyDetailTabContent .property-tab-light-table thead th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #475569 !important;
    background-color: #f8fafc !important;
    border-bottom-width: 2px;
}
.property-show-content-wrap #propertyDetailTabContent .property-tab-light-table tbody td {
    font-size: 0.9rem;
    vertical-align: middle;
    color: #0f172a !important;
    background-color: inherit;
}
.property-show-content-wrap #propertyDetailTabContent .property-tab-light-table.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: #f1f5f9;
    color: #0f172a !important;
}
.property-show-content-wrap #propertyDetailTabContent .property-tab-light-table.table-striped > tbody > tr:nth-of-type(even) > * {
    --bs-table-accent-bg: #ffffff;
    color: #0f172a !important;
}
.property-show-content-wrap #propertyDetailTabContent .property-tab-light-table .property-stat-label {
    font-weight: 600;
    color: #475569 !important;
    width: 40%;
}
.property-show-content-wrap #propertyDetailTabContent .property-tab-light-table .property-stat-value {
    color: #0f172a !important;
    font-weight: 600;
}
.property-show-content-wrap #propertyDetailTabContent .property-tab-light-table .property-stat-section-head {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #475569 !important;
    background-color: #f1f5f9 !important;
    border-bottom: 2px solid #e2e8f0;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
}
/* Mortgage calculator tab — larger, card-style panel (light surfaces; overrides dark theme form defaults) */
.property-show-content-wrap #propertyDetailTabContent .property-mortgage-calculator--panel {
    border-radius: 1rem;
    border: 1px solid rgba(203, 213, 225, 0.95);
    padding: 1.65rem 1.35rem;
    background: linear-gradient(165deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}
.property-show-content-wrap #propertyDetailTabContent .property-mortgage-calculator--panel .form-control,
.property-show-content-wrap #propertyDetailTabContent .property-mortgage-calculator--panel .form-select {
    background-color: #ffffff !important;
    color: #0f172a !important;
    border-color: #cbd5e1 !important;
}
.property-show-content-wrap #propertyDetailTabContent .property-mortgage-calculator--panel .form-control::placeholder {
    color: #94a3b8;
}
.property-show-content-wrap #propertyDetailTabContent .property-mortgage-calculator--panel .form-control:focus,
.property-show-content-wrap #propertyDetailTabContent .property-mortgage-calculator--panel .form-select:focus {
    background-color: #ffffff !important;
    color: #0f172a !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.18);
}
.property-show-content-wrap #propertyDetailTabContent .property-mortgage-calculator--panel .input-group-text {
    background-color: #f1f5f9 !important;
    color: #334155 !important;
    border-color: #cbd5e1 !important;
    font-weight: 600;
}
@media (min-width: 768px) {
    .property-show-content-wrap #propertyDetailTabContent .property-mortgage-calculator--panel {
        padding: 2rem 2rem;
    }
}
.property-show-content-wrap #propertyDetailTabContent .property-mc-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f172a;
    line-height: 1.25;
}
.property-show-content-wrap #propertyDetailTabContent .property-mc-lead {
    font-size: 1rem;
    line-height: 1.5;
    color: #475569;
}
.property-show-content-wrap #propertyDetailTabContent .property-mortgage-calculator--panel .property-mc-results {
    border-radius: 0.85rem !important;
    border: 1px solid rgba(59, 130, 246, 0.28) !important;
    background: #ffffff !important;
    padding: 1.35rem 1.5rem !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 4px 20px rgba(37, 99, 235, 0.08);
}
@media (min-width: 768px) {
    .property-show-content-wrap #propertyDetailTabContent .property-mortgage-calculator--panel .property-mc-results {
        padding: 1.6rem 1.85rem !important;
    }
}
.property-show-content-wrap #propertyDetailTabContent .property-mortgage-calculator--panel .property-mc-results .property-mc-payment-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1d4ed8;
    letter-spacing: -0.02em;
}
.property-show-content-wrap #propertyDetailTabContent .property-mortgage-calculator--panel .property-mc-results .property-mc-stat-row {
    font-size: 1rem;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}
.property-show-content-wrap #propertyDetailTabContent .property-tab-calculator-footnote {
    font-size: 0.95rem;
    line-height: 1.55;
}
.property-show-content-wrap #propertyDetailTabContent .property-calculator-help-callout {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 1.5rem;
    padding: 1.35rem 1.4rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(59, 130, 246, 0.38);
    background: linear-gradient(145deg, rgba(239, 246, 255, 0.98) 0%, #ffffff 48%, rgba(224, 231, 255, 0.55) 100%);
    box-shadow: 0 10px 36px rgba(37, 99, 235, 0.12);
}
@media (min-width: 576px) {
    .property-show-content-wrap #propertyDetailTabContent .property-calculator-help-callout {
        padding: 1.5rem 1.65rem;
        gap: 1.15rem;
    }
}
.property-show-content-wrap #propertyDetailTabContent .property-calculator-help-callout__icon {
    flex-shrink: 0;
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
    font-size: 1.45rem;
    line-height: 1;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.45);
}
.property-show-content-wrap #propertyDetailTabContent .property-calculator-help-callout__lead {
    font-size: 1.12rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
}
.property-show-content-wrap #propertyDetailTabContent .property-calculator-help-callout__text {
    font-size: 1.02rem;
    line-height: 1.62;
    color: #334155;
    font-weight: 500;
    margin-bottom: 0;
}
.property-show-content-wrap #propertyDetailTabContent .property-tab-light-table .property-fav-title {
    font-weight: 600;
    color: #0f172a !important;
}
.property-show-content-wrap #propertyDetailTabContent .property-tab-light-table .property-fav-loc {
    color: #475569 !important;
}
.property-show-content-wrap #propertyDetailTabContent .property-tab-light-table .property-fav-price {
    font-weight: 600;
    color: #0f172a !important;
    white-space: nowrap;
}
.property-show-content-wrap #propertyDetailTabContent .property-tab-light-table .property-fav-saved .form-check-input {
    cursor: pointer;
}
/* Headline block — no panel / accent background (sits on .property-show-content-wrap) */
.property-show-kpi-card {
    --bs-card-bg: transparent;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0;
}
.property-show-kpi-card:hover {
    transform: none;
    box-shadow: none !important;
}
.property-show-kpi-card-inner {
    background: transparent !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0.35rem !important; /* tighter gap before Bedrooms / KPI strip */
}
/* Admin dashboard–style KPI strip (Total Companies row) — above property tabs */
.property-show-content-wrap .property-show-stat-kpi-row .nk-ecwg6 .card-inner {
    padding: 1.15rem 1rem;
    text-align: center;
}
.property-show-content-wrap .property-show-stat-kpi-row .card-title-group {
    display: flex;
    justify-content: center;
}
.property-show-content-wrap .property-show-stat-kpi-row .card-title .title {
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.property-show-content-wrap .property-show-stat-kpi-row .data-group {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
}
.property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-blue {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15) 0%, rgba(96, 165, 250, 0.05) 100%) !important;
    border: 1px solid rgba(96, 165, 250, 0.3) !important;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.1);
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(96, 165, 250, 0.2);
}
.property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-blue .card-title .title,
.property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-blue .title { color: #60a5fa !important; }
.property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-green {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.15) 0%, rgba(52, 211, 153, 0.05) 100%) !important;
    border: 1px solid rgba(52, 211, 153, 0.3) !important;
    box-shadow: 0 4px 12px rgba(52, 211, 153, 0.1);
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 211, 153, 0.2);
}
.property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-green .card-title .title,
.property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-green .title { color: #34d399 !important; }
.property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-amber {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(251, 191, 36, 0.05) 100%) !important;
    border: 1px solid rgba(251, 191, 36, 0.3) !important;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.1);
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-amber:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.2);
}
.property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-amber .card-title .title,
.property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-amber .title { color: #fbbf24 !important; }
.property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0.05) 100%) !important;
    border: 1px solid rgba(168, 85, 247, 0.3) !important;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.1);
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(168, 85, 247, 0.2);
}
.property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-purple .card-title .title,
.property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-purple .title { color: #a855f7 !important; }
.property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-blue .amount,
.property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-green .amount,
.property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-amber .amount,
.property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-purple .amount {
    color: #ffffff !important;
    font-family: Roboto, sans-serif;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    line-height: 1.15;
    animation: amount-glow-pulse 2s ease-in-out infinite;
}
@media (max-width: 575.98px) {
    .property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-blue .amount,
    .property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-green .amount,
    .property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-amber .amount,
    .property-show-content-wrap .property-show-stat-kpi-row .stat-card-accent-purple .amount {
        font-size: 1.65rem !important;
    }
}
/* Meta strip (Price / Listing / Category / Reference) — slightly smaller amounts for long prices */
.property-show-content-wrap .property-show-stat-kpi-row--meta .stat-card-accent-blue .amount,
.property-show-content-wrap .property-show-stat-kpi-row--meta .stat-card-accent-green .amount,
.property-show-content-wrap .property-show-stat-kpi-row--meta .stat-card-accent-amber .amount,
.property-show-content-wrap .property-show-stat-kpi-row--meta .stat-card-accent-purple .amount {
    font-size: 1.45rem !important;
    line-height: 1.2;
    word-break: break-word;
    hyphens: auto;
}
@media (max-width: 575.98px) {
    .property-show-content-wrap .property-show-stat-kpi-row--meta .stat-card-accent-blue .amount,
    .property-show-content-wrap .property-show-stat-kpi-row--meta .stat-card-accent-green .amount,
    .property-show-content-wrap .property-show-stat-kpi-row--meta .stat-card-accent-amber .amount,
    .property-show-content-wrap .property-show-stat-kpi-row--meta .stat-card-accent-purple .amount {
        font-size: 1.15rem !important;
    }
}
@keyframes amount-glow-pulse {
    0%, 100% {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.4), 0 0 16px rgba(255, 255, 255, 0.25);
    }
    50% {
        text-shadow: 0 0 16px rgba(255, 255, 255, 0.65), 0 0 32px rgba(255, 255, 255, 0.4);
    }
}
@keyframes property-amount-glow-pulse {
    0%, 100% {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.4), 0 0 16px rgba(255, 255, 255, 0.25);
    }
    50% {
        text-shadow: 0 0 16px rgba(255, 255, 255, 0.65), 0 0 32px rgba(255, 255, 255, 0.4);
    }
}
.property-show-headline-primary {
    color: #ffffff !important;
    font-size: 1.875rem !important;
    font-weight: 700 !important;
    line-height: 1.2;
    animation: property-amount-glow-pulse 2s ease-in-out infinite;
}
@media (max-width: 575.98px) {
    .property-show-headline-primary {
        font-size: 1.55rem !important;
    }
}
.property-show-address-block .property-show-h1 {
    margin-inline-start: 0;
    padding-inline-start: 0;
}
.property-show-kpi-card .property-stat-chips .badge.badge-accent-active,
.property-show-kpi-card .property-stat-chips .badge.badge-accent-amber,
.property-show-kpi-card .property-kpi-chips-row--location > .badge.badge-accent-purple {
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 0.3rem 0.55rem;
}
.property-kpi-chips-grid {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.property-kpi-chips-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}
.property-kpi-chips-section-tag {
    flex-shrink: 0;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
@media (max-width: 575.98px) {
    .property-kpi-chips-row--location {
        align-items: flex-start;
    }
    .property-kpi-chips-row--location .property-kpi-chips-section-tag {
        width: 100%;
        text-align: center;
    }
}
.property-detail-tabs {
    gap: 0.5rem;
    flex-wrap: wrap;
    border: none !important;
    list-style: none;
}
.property-detail-tabs .nav-item {
    margin: 0;
}
.property-detail-tabs .nav-link {
    border-radius: 999px;
    padding: 0.45rem 1rem;
    border: 1px solid rgba(96, 165, 250, 0.45);
    background: rgba(255, 255, 255, 0.06);
    color: #cbd5e1 !important;
    white-space: nowrap;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.35;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.property-detail-tabs .nav-link:hover {
    color: #eff6ff !important;
    border-color: rgba(96, 165, 250, 0.8);
    background: rgba(96, 165, 250, 0.22);
}
.property-detail-tabs .nav-link.active {
    color: #fff !important;
    font-weight: 600;
    border-color: rgba(96, 165, 250, 0.95);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95) 0%, rgba(37, 99, 235, 0.92) 100%);
    box-shadow: 0 2px 10px rgba(96, 165, 250, 0.45);
}
.property-detail-tabs .nav-link:focus-visible {
    outline: 2px solid #93c5fd;
    outline-offset: 2px;
}
.property-highlights-top {
    padding: 0 0 0.95rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}
.property-highlights-top .property-highlights-title {
    color: #f1f5f9;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}
.property-highlights-top .property-highlights-teaser {
    color: #334155;
    margin-bottom: 0.65rem;
    font-size: 1.1rem;
    line-height: 1.55;
}
.property-highlights-top .property-highlights-features-panel {
    margin-top: 1.1rem;
    padding: 0;
    border-radius: 1rem;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}
.property-highlights-top .property-highlights-features-heading {
    margin: 0 !important;
    padding: 0.85rem 1.15rem;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: #0f172a;
    background: linear-gradient(90deg, #eff6ff 0%, #f8fafc 55%, #f8fafc 100%);
    border-bottom: 1px solid rgba(191, 219, 254, 0.9);
}
.property-show-content-wrap #propertyDetailTabContent .property-highlights-top .property-highlights-features-heading {
    color: #0f172a !important;
}
.property-highlights-top .property-highlights-features {
    list-style: none;
    padding: 0.75rem 0.85rem 0.95rem;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.55rem;
    align-items: stretch;
    justify-content: flex-start;
}
@media (min-width: 576px) {
    .property-highlights-top .property-highlights-features {
        padding: 0.85rem 1rem 1.1rem;
        gap: 0.55rem 0.65rem;
    }
}
.property-highlights-top .property-highlights-features li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0.5rem 0.85rem 0.5rem 0.65rem;
    max-width: 100%;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: #1e293b;
    background: #ffffff;
    border: 1px solid rgba(203, 213, 225, 0.95);
    border-radius: 999px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
@keyframes property-amenity-dot-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 0 0 0 rgba(34, 197, 94, 0.45),
            0 2px 6px rgba(22, 101, 52, 0.28);
    }
    50% {
        transform: scale(1.09);
        box-shadow:
            0 0 0 7px rgba(34, 197, 94, 0.12),
            0 3px 14px rgba(22, 163, 74, 0.4);
    }
}
.property-highlights-top .property-highlights-features li::before {
    content: "";
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background-image:
        linear-gradient(145deg, #22c55e 0%, #16a34a 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
    background-size: 100% 100%, 0.72rem 0.72rem;
    animation: property-amenity-dot-pulse 2.2s ease-in-out infinite;
    will-change: transform, box-shadow;
}
.property-highlights-top .property-highlights-features li:nth-child(1)::before { animation-delay: 0s; }
.property-highlights-top .property-highlights-features li:nth-child(2)::before { animation-delay: 0.18s; }
.property-highlights-top .property-highlights-features li:nth-child(3)::before { animation-delay: 0.36s; }
.property-highlights-top .property-highlights-features li:nth-child(4)::before { animation-delay: 0.54s; }
.property-highlights-top .property-highlights-features li:nth-child(5)::before { animation-delay: 0.72s; }
.property-highlights-top .property-highlights-features li:nth-child(n+6)::before { animation-delay: 0.9s; }
.property-show-content-wrap #propertyDetailTabContent .property-highlights-top .property-highlights-features li {
    color: #1e293b !important;
}
.property-highlights-top .property-highlights-more-btn {
    border-radius: 999px;
}
.property-highlights-map-view-toggle .btn {
    font-weight: 600;
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
    font-size: 0.875rem;
}
@media (prefers-reduced-motion: reduce) {
    .property-show-headline-primary {
        animation: none;
    }
    .property-highlights-top .property-highlights-features li::before {
        animation: none !important;
    }
}
.property-show-sidebar-sticky {
    position: sticky;
    top: 1rem;
    z-index: 2;
}
.share-wrapper-headline {
    position: relative;
}
.share-wrapper-headline .share-menu {
    top: calc(100% + 6px);
    right: 0;
    left: auto;
}
@media (max-width: 991.98px) {
    .property-show-sidebar-sticky {
        position: static;
    }
}
/* Request a showing card (sidebar) — blue accent, REALTOR-style */
.property-show-content-wrap .showingCardBody {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.22) 0%, rgba(96, 165, 250, 0.08) 100%);
    border: 1px solid rgba(96, 165, 250, 0.45);
    border-radius: 12px;
    padding: 1.25rem 1.1rem;
    box-shadow: 0 4px 16px rgba(96, 165, 250, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.property-show-content-wrap .showingCardText {
    color: #e8f4fc;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.4;
}
/* Request a showing — yellow / amber accent (trial) */
@keyframes property-showing-btn-shimmer {
    0% {
        transform: translateX(-120%) skewX(-12deg);
    }
    100% {
        transform: translateX(220%) skewX(-12deg);
    }
}
.property-show-content-wrap .showingCardBody .blueRoundedBtn {
    display: block;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(202, 138, 4, 0.65);
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-weight: 600;
    color: #422006 !important;
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 40%, #f59e0b 100%);
    box-shadow: 0 2px 14px rgba(245, 158, 11, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: filter 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    position: relative;
    overflow: hidden;
}
.property-show-content-wrap .showingCardBody .blueRoundedBtn > span {
    position: relative;
    z-index: 1;
}
.property-show-content-wrap .showingCardBody .blueRoundedBtn::after {
    content: "";
    position: absolute;
    top: -25%;
    left: 0;
    width: 45%;
    height: 150%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0) 35%,
        rgba(255, 255, 255, 0.85) 50%,
        rgba(255, 255, 255, 0.35) 62%,
        transparent 100%
    );
    opacity: 0.9;
    pointer-events: none;
    transform: translateX(-180%) skewX(-12deg);
}
.property-show-content-wrap .showingCardBody .blueRoundedBtn:hover::after {
    animation: property-showing-btn-shimmer 0.75s ease-in-out forwards;
}
.property-show-content-wrap .showingCardBody .blueRoundedBtn:hover {
    filter: brightness(1.04);
    color: #1c1917 !important;
    border-color: rgba(180, 83, 9, 0.75);
    box-shadow: 0 3px 18px rgba(217, 119, 6, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
@media (prefers-reduced-motion: reduce) {
    .property-show-content-wrap .showingCardBody .blueRoundedBtn:hover::after {
        animation: none;
    }
}
.property-show-content-wrap .showingCardBody .blueRoundedBtn.whiteText {
    color: #422006 !important;
}
.property-show-content-wrap .showingCardBody .blueRoundedBtn.whiteText:hover {
    color: #1c1917 !important;
}
/* Request a showing — modal (dark theme, matches listing strip) */
.property-showing-modal .modal-content {
    background: linear-gradient(155deg, #18202d 0%, #1f2b3a 55%, #1a2332 100%);
    border: 1px solid rgba(96, 165, 250, 0.4);
    border-radius: 14px;
    color: #e2e8f0;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.property-showing-modal .modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    border-bottom-color: rgba(148, 163, 184, 0.22);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.property-showing-modal .modal-header .modal-title {
    color: #f8fafc;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 0;
    line-height: 1.25;
    padding-top: 0.1rem;
}
.property-showing-modal .modal-header .btn-close {
    filter: invert(1) grayscale(1);
    opacity: 0.65;
    flex-shrink: 0;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    margin-left: auto;
    padding: 0.2rem;
    align-self: flex-start;
    transform: translateY(-0.15rem);
}
.property-showing-modal .form-label {
    color: #cbd5e1;
    font-size: 0.875rem;
    margin-bottom: 0.35rem;
}
.property-showing-modal .form-control,
.property-showing-modal .form-select {
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: #f1f5f9;
    border-radius: 0;
}
.property-showing-modal .form-control:focus,
.property-showing-modal .form-select:focus {
    background: rgba(15, 23, 42, 0.75);
    border-color: rgba(96, 165, 250, 0.65);
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2);
}
.property-showing-modal .form-control::placeholder {
    color: #64748b;
}
.property-showing-modal .form-check {
    padding-left: 1.6rem;
}
.property-showing-modal .form-check-input {
    border-color: rgba(148, 163, 184, 0.5);
    background-color: rgba(15, 23, 42, 0.5);
}
.property-showing-modal .form-check-input:checked {
    background-color: #3b82f6;
    border-color: #60a5fa;
}
.property-showing-modal .form-check-label {
    color: #e2e8f0;
    font-size: 0.9rem;
}
.property-showing-modal .text-muted-soft {
    color: #94a3b8 !important;
    font-size: 0.8rem;
}
.property-showing-modal .property-showing-modal-divider {
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    margin: 0.45rem 0 0.55rem;
}
/* Wide modal (match prior modal-lg feel) */
.property-showing-modal.property-showing-modal--compact .modal-dialog.modal-lg {
    max-width: min(800px, calc(100vw - 1.5rem));
}
@keyframes property-showing-title-pulse {
    0%, 100% {
        color: #ffffff;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.45), 0 0 28px rgba(255, 255, 255, 0.2);
    }
    50% {
        color: #f8fafc;
        text-shadow: 0 0 18px rgba(255, 255, 255, 0.75), 0 0 36px rgba(255, 255, 255, 0.35);
    }
}
.property-showing-modal .property-showing-modal-title-pulse {
    animation: property-showing-title-pulse 2.4s ease-in-out infinite;
    color: #fff !important;
    font-weight: 700;
    letter-spacing: 0.03em;
}
@media (prefers-reduced-motion: reduce) {
    .property-showing-modal .property-showing-modal-title-pulse {
        animation: none;
        text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
    }
}
/* Green accent panels (inquiry scope + contact via) — matches sidebar save/email family */
.property-showing-modal .showing-modal-accent-box {
    background: linear-gradient(145deg, rgba(52, 211, 153, 0.14) 0%, rgba(15, 23, 42, 0.52) 50%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(52, 211, 153, 0.42) !important;
    border-radius: 10px;
    box-shadow: 0 0 0 1px rgba(110, 231, 183, 0.1) inset, 0 4px 20px rgba(16, 185, 129, 0.1);
}
.property-showing-modal .showing-modal-accent-box .form-check-label {
    font-size: 0.88rem;
}
.property-showing-modal .showing-modal-accent-box .form-check-input:checked {
    background-color: #10b981;
    border-color: #34d399;
}
.property-showing-modal .showing-modal-accent-box .form-check-input:focus {
    border-color: rgba(52, 211, 153, 0.9);
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.28);
}
.property-showing-modal.property-showing-modal--compact .modal-header {
    padding: 0.65rem 0.85rem;
    border-bottom-color: rgba(148, 163, 184, 0.2);
    align-items: flex-start;
}
.property-showing-modal.property-showing-modal--compact .modal-body {
    padding: 0.5rem 0.85rem 0.75rem;
}
.property-showing-modal.property-showing-modal--compact .form-label {
    font-size: 0.78rem;
    margin-bottom: 0.15rem;
}
.property-showing-modal.property-showing-modal--compact .form-control,
.property-showing-modal.property-showing-modal--compact .form-select {
    padding: 0.35rem 0.55rem;
    font-size: 0.875rem;
}
.property-showing-modal.property-showing-modal--compact .form-select {
    padding-right: 2rem;
}
.property-showing-modal.property-showing-modal--compact .row.g-2 {
    --bs-gutter-y: 0.45rem;
    --bs-gutter-x: 0.5rem;
}
.property-showing-modal .showing-contact-chips {
    justify-content: center;
    align-items: center;
}
.property-showing-modal.property-showing-modal--compact .showing-contact-chips {
    gap: 0.35rem 0.85rem;
}
.property-showing-modal.property-showing-modal--compact .showing-contact-chips .form-check {
    margin-bottom: 0;
    min-height: 1.1rem;
}
.property-showing-modal.property-showing-modal--compact .showing-contact-chips .form-check-label {
    font-size: 0.8rem;
}
.property-showing-modal.property-showing-modal--compact .btn-submit-showing {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
}
.property-showing-modal .btn-submit-showing {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    font-weight: 600;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
}
.property-showing-modal .btn-submit-showing:hover {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}
.property-show-content-wrap .showingCardDivider {
    margin: 1rem 0;
}
.property-show-content-wrap .showingCardDividerContent {
    margin: 0;
    border: 0;
    border-top: 1px solid rgba(96, 165, 250, 0.4);
    opacity: 1;
}
.property-show-content-wrap .showingCardFooterBtns {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.35rem;
}
/* Send email / Save for later — square pills, green accent (same family as .badge-accent-active) */
.property-show-content-wrap .showingCardBody .whiteRoundedBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 0 !important;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.28) 0%, rgba(52, 211, 153, 0.12) 100%) !important;
    border: 1px solid rgba(52, 211, 153, 0.5) !important;
    color: #34d399 !important;
    box-shadow: 0 2px 8px rgba(52, 211, 153, 0.2);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.property-show-content-wrap .showingCardBody .showingCardFooterBtns .whiteRoundedBtn {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    padding: 0.32rem 0.45rem;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.25;
}
.property-show-content-wrap .showingCardBody .showingCardFooterBtns .favorite-btn.whiteRoundedBtn {
    gap: 0.35rem;
}
.property-show-content-wrap .showingCardBody .whiteRoundedBtn:hover {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.4) 0%, rgba(52, 211, 153, 0.2) 100%) !important;
    border-color: rgba(52, 211, 153, 0.75) !important;
    color: #6ee7b7 !important;
    box-shadow: 0 3px 12px rgba(52, 211, 153, 0.28);
}
.property-show-content-wrap .showingCardBody .whiteRoundedBtn.save-btn,
.property-show-content-wrap .showingCardBody .whiteRoundedBtn.favorite-btn {
    cursor: pointer;
}
.property-show-content-wrap .showingCardBody .whiteRoundedBtn.save-btn:hover,
.property-show-content-wrap .showingCardBody .whiteRoundedBtn.favorite-btn:hover {
    transform: none;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.4) 0%, rgba(52, 211, 153, 0.2) 100%) !important;
    border-color: rgba(52, 211, 153, 0.75) !important;
    color: #6ee7b7 !important;
}
/* Amenities — blue accent (admin .stat-card-accent-blue) */
.property-amenities-wrap {
    gap: 0.5rem 0.65rem;
}
.property-amenity-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.28) 0%, rgba(96, 165, 250, 0.12) 100%);
    border: 1px solid rgba(96, 165, 250, 0.5);
    color: #1e40af !important;
    box-shadow: 0 2px 8px rgba(96, 165, 250, 0.2);
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.property-amenity-chip:hover {
    border-color: rgba(96, 165, 250, 0.75);
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
    transform: translateY(-1px);
}
.property-amenity-chip-icon {
    color: #60a5fa;
    font-size: 1rem;
    flex-shrink: 0;
}
/* intl-tel-input — dark modal + listing forms (intlTelInput.css loads after this block) */
.property-showing-modal .iti,
#leadContactForm .iti {
    width: 100%;
    display: block;
}
.property-showing-modal .iti__flag-container,
#leadContactForm .iti__flag-container {
    border-right: 1px solid rgba(148, 163, 184, 0.35);
}
/* separateDialCode: intlTelInput sets .iti--separate-dial-code .iti__selected-flag { background rgba(0,0,0,.05) } — match .form-select */
.property-showing-modal .iti.iti--separate-dial-code .iti__selected-flag {
    background-color: rgba(15, 23, 42, 0.55) !important;
    background-image: none !important;
    border-radius: 8px 0 0 8px;
}
.property-showing-modal .iti.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: rgba(30, 41, 59, 0.85) !important;
}
.property-showing-modal .iti__arrow {
    border-top-color: #94a3b8;
}
.property-showing-modal .iti__arrow--up {
    border-bottom-color: #94a3b8;
    border-top-color: transparent;
}
.property-showing-modal .iti__selected-flag,
#leadContactForm .iti__selected-flag {
    background: rgba(15, 23, 42, 0.55);
    border-radius: 0;
}
.property-showing-modal .iti__selected-flag:hover,
#leadContactForm .iti__selected-flag:hover {
    background: rgba(30, 41, 59, 0.85);
}
.property-showing-modal .iti__selected-dial-code,
#leadContactForm .iti__selected-dial-code {
    color: #e2e8f0;
    padding-left: 4px;
}
.property-showing-modal .iti input[type="tel"],
#leadContactForm .iti input[type="tel"] {
    border-radius: 0 8px 8px 0 !important;
}
.property-showing-modal .iti__country-list,
#leadContactForm .iti__country-list {
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.45);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
}
.property-showing-modal .iti__country-list .iti__country,
#leadContactForm .iti__country-list .iti__country {
    color: #0f172a;
}
.property-showing-modal .iti__country-list .iti__country.iti__highlight,
#leadContactForm .iti__country-list .iti__country.iti__highlight {
    background: rgba(96, 165, 250, 0.22);
}
.property-showing-modal .iti__country-list .iti__dial-code,
#leadContactForm .iti__country-list .iti__dial-code {
    color: #475569;
}
#leadContactForm .iti__selected-flag {
    background: #fff;
    border-radius: 0;
}
#leadContactForm .iti__selected-flag:hover {
    background: #f8fafc;
}
#leadContactForm .iti__selected-dial-code {
    color: #334155;
}
#leadContactForm .form-control {
    border-radius: 0;
}
