.overlayText {
    position: absolute; right: 0; top: 0;
    background: #1C326B; padding: 10px 15px;
    font-size: 16px; line-height: 1.42; letter-spacing: .2px;
    color: #fff; border-left: 8px solid #FF8201;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    text-overflow: ellipsis; overflow: hidden;
}

.purchase_hero_img {
    height: 240px; width: 100%;
    background-size: cover; background-position: center; display: block;
}
@media (max-width: 767px) {
    .purchase_hero_img { height: 200px; }
}

.pur-card {
    background: #fff;
    box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.16);
    overflow: hidden;
    margin-bottom: 24px;
    transition: box-shadow .2s, transform .2s;
    border: 1px solid #eef0f5;
    position: relative;
}
.pur-card:hover {
    box-shadow: 0 8px 32px rgba(28,50,107,.14);
    transform: translateY(-2px);
}

/* image zone */
.pur-card-imgzone { position: relative; background: #EDEDED; }

/* badge top-left */
.pur-badge {
    position: absolute; top: 0; left: 0; z-index: 3;
    padding: 10px 15px; font-size: 16px;
    font-family: "Myriad Pro", sans-serif;
    color: #fff; font-style: italic; font-weight: bold; text-transform: uppercase;
}
.pur-badge--asis     { background: #4D4D4D; }
.pur-badge--markdown { background: #1C326B; border-left: 3px solid #FF8201; }
.pur-badge--added    { background: #FF8201; color: #fff; }
.pur-badge--sold     { background: red; }
.pur-badge--reduced  { background: red; }

/* price overlay on hero */
.pur-price-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,.5); color: #000; width: 100%; padding: 15px;
    display: flex; align-items: flex-end; justify-content: space-between;
}
.pur-price-current {
    font-size: 22px; font-weight: 700; color: #fff;
    font-family: "Myriad Pro", sans-serif; line-height: 1;
}
.pur-price-original {
    font-size: 16px; color: rgba(255,255,255,.7);
    text-decoration: line-through; margin-left: 6px;
    font-family: "Myriad Pro", sans-serif;
}
.pur-price-reduced { color: #FF8201; }
.pur-call-pill {
    display: inline-flex; align-items: center; gap: 5px;
    background-color: white; border: 1px solid rgba(255,255,255,.35);
    border-radius: 20px; padding: 4px 10px;
    font-size: 16px; color: #1C326B ; text-decoration: none;
    font-family: "Myriad Pro", sans-serif; transition: background .15s;
}
.pur-call-pill:hover { background-color: white ; color: #1C326B; }

/* thumbnail strip */
.pur-thumbstrip {
    display: flex; overflow-x: auto; gap: 4px;
    padding: 6px 8px; background: #f8f9fc;
    border-top: 1px solid #eef0f5; scrollbar-width: none;
}
.pur-thumbstrip::-webkit-scrollbar { display: none; }
.pur-thumbstrip a { display: block; flex: 0 0 64px; text-decoration: none; }
.pur-thumb {
    width: 64px; height: 46px; border-radius: 4px;
    background-size: cover; background-position: center;
    background-color: #EDEDED; border: 2px solid transparent;
    transition: border-color .15s; position: relative; overflow: hidden;
}
.pur-thumb.first  { border-color: #FF8201; }
.pur-thumb:hover  { border-color: #1C326B; }
.pur-thumb-more {
    position: absolute; inset: 0; background: rgba(0,0,0,.5);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 10px; font-weight: 700;
    font-family: "Myriad Pro", sans-serif;
}

/* card body */
.pur-card-body { padding: 15px; }
.pur-card-approval {
    font-size: 16px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .7px; color: #FF8201; margin-bottom: 4px;
    font-family: "Myriad Pro", sans-serif;
}
.pur-card-title {
    font-size: 24px; font-weight: bold; color: #1C326B;
    line-height: 1.5; margin-bottom: 2px; font-family: "Myriad Pro", sans-serif;
}
.pur-card-model {
    font-size: 16px; color: #4d4d4d; margin-bottom: 8px;
    font-family: "Myriad Pro", sans-serif;
}
.pur-card-location {
    display: flex; align-items: center; gap: 5px;
    font-size: 18px; color: #4D4D4D; margin-bottom: 4px;
    font-family: "Myriad Pro", sans-serif;
}
.pur-card-note     { font-size: 12px; color: #009CDE; margin-bottom: 4px; font-family: "Myriad Pro", sans-serif; }
.pur-card-note--red { color: #FA5252; font-weight: 700; }
.pur-card-divider  { border: none; border-top: 1px solid #EDEDED; margin: 15px 0; }
.pur-card-cta {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; margin-top: auto;
}

/* sold-out filter on related images */
.pur-card-img--soldout { filter: grayscale(60%); }

/* ════════════════════════════════════════════════════════════
   BUILDING DETAIL PAGE 
   ════════════════════════════════════════════════════════════ */
.bd-hero { position: relative; background: #EDEDED; overflow: hidden; }
.bd-hero-img {
    width: 100%; height: 420px;
    background-size: cover; background-position: center;
    cursor: pointer; display: block; transition: opacity .2s;
}
.bd-hero-img:hover { opacity: .92; }
@media (max-width: 767px) { .bd-hero-img { height: 230px; }
    .mobile-width-100p{
        max-width:100%;
    }
}

.bd-thumbs {
    display: flex;
    gap: 6px;
    overflow: hidden; /* hide overflow thumbs instead of scrolling */
    flex-wrap: nowrap;
    margin-top: 8px;
}
.bd-thumb-link {
    flex: 0 0 auto;
    display: block;
    text-decoration: none;
    position: relative;
}

.bd-thumb {
    width: 80px;
    height: 60px;
    background-size: cover;
    background-position: center;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
}

    .bd-thumb.active {
        border-color: #FF8201;
    }

.bd-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 50, 107, 0.72);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    font-family: "Myriad Pro", sans-serif;
    border-radius: 4px;
}
.bd-thumbs::-webkit-scrollbar { display: none; }
.bd-thumbs a { display: block; flex: 0 0 80px; text-decoration: none; }
.bd-thumb {
    width: 80px; height: 58px;
    background-size: cover; background-position: center;
    background-color: #EDEDED; border: 2px solid transparent;
    cursor: pointer; transition: border-color .15s;
    position: relative; overflow: hidden;
}
.bd-thumb.active { border-color: #FF8201; }
.bd-thumb:hover  { border-color: #1C326B; }
.bd-thumb-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,.45);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 11px; font-weight: 700;
}

.bd-soldout-banner {
    background: #FA5252; color: #fff; text-align: center;
    padding: 14px; font-size: 16px; font-weight: 700;
}
.bd-soldout-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,.55);
    display: flex; align-items: center; justify-content: center; z-index: 2;
}
.bd-soldout-badge {
    background: #FA5252; color: #fff; font-size: 22px;
    font-weight: 800; padding: 14px 36px; text-transform: uppercase;
}

.bd-panel {
    background: #fff;
    box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.16);
    padding: 30px 20px;
    position: sticky;
}
@media (max-width: 990px){
    .bd-panel {
        margin-top: 20px;
    }
}

.bd-approval { font-size: 13px; font-weight: 700; text-transform: uppercase; color: #FF8201; margin-bottom: 6px; font-family: "Myriad Pro", sans-serif; }
.bd-title    { margin-bottom: 10px !important; }
.bd-model    { font-size: 18px; color: #4D4D4D; margin-bottom: 15px; font-family: "Myriad Pro", sans-serif; }

.bd-price-block   { margin-bottom: 20px; }
.bd-price-current { font-size: 30px; font-weight: 700; color: #1C326B; line-height: 1; font-family: "Myriad Pro", sans-serif; }
.bd-price-current.reduced { color: #FA5252; }
.bd-price-original { font-size: 16px; color: #4D4D4D; text-decoration: line-through; margin-left: 8px; }
.bd-price-soldout  { font-size: 25px; font-weight: 700; color: #FA5252; font-family: "Myriad Pro", sans-serif; }

.bd-meta-row { display: flex; align-items: flex-start; gap: 8px; font-size: 16px; color: #4D4D4D; margin-bottom: 8px; font-family: "Myriad Pro", sans-serif; line-height: 1.5; }
.bd-meta-row span { font-size: 18px; }
.bd-meta-row svg  { flex-shrink: 0; margin-top: 4px; }
.bd-meta-label    { font-weight: 700; color: #1C326B; margin-right: 4px; font-size: 18px; }
.bd-divider       { border: none; border-top: 1px solid #EDEDED; margin: 20px 0; }

.bd-features-heading { font-size: 20px; font-weight: 700; text-transform: uppercase; color: #1C326B; margin-bottom: 10px; font-family: "Myriad Pro", sans-serif; }
.bd-features { font-size: 18px; color: #4D4D4D; line-height: 1.5; font-family: "Myriad Pro", sans-serif; }
.bd-features ul, .bd-features ul li { font-size: 18px; color: #4D4D4D; line-height: 1.5; font-family: "Myriad Pro", sans-serif; }
.bd-features li { padding: 1px 0px !important;}
@media (min-width: 992px) { .bd-features { font-size: 20px; } }

.bd-disclaimer { font-size: 16px; color: #4D4D4D; margin-top: 12px; line-height: 1.5; font-family: "Myriad Pro", sans-serif; }
.bd-serial { font-size: 18px; color: #1C326B !important; margin-top: 6px; font-family: "Myriad Pro", sans-serif;}

.bd-cta-wrap .learn-more-btn { display: block; width: 100%; text-align: center; margin-bottom: 10px; }
.bd-cta-wrap a.learn-more-btn { display: block; width: 100%; text-align: center; margin-bottom: 10px; text-decoration: none; }
.bd-soldout-msg    { display: block; width: 100%; text-align: center; padding: 12px; background: #EDEDED; color: #4D4D4D; font-size: 16px; font-weight: 700; margin-bottom: 10px; font-family: "Myriad Pro", sans-serif; text-transform: uppercase; }
.bd-notify-link    { display: block; text-align: center; font-size: 16px; color: #FF8201; text-decoration: underline; margin-bottom: 10px; font-family: "Myriad Pro", sans-serif; }
.bd-back-link      { font-size: 16px; color: #1C326B; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 8px; font-family: "Myriad Pro", sans-serif; }
.bd-back-link:hover { text-decoration: underline; color: #1C326B; }

.bd-tag {
    display: inline-block;
    color: #fff;
    margin-bottom: 10px;
    padding: 10px 15px;
    font-size: 16px;
    font-family: "Myriad Pro", sans-serif;
    font-style: italic;
    font-weight: bold;
    text-transform: uppercase;
}
.bd-tag--markdown { background: #1C326B; border-left: 4px solid #FF8201; }
.bd-tag--asis     { background: #4D4D4D; }
.bd-tag--new      { background: #FF8201; color: white; }
.bd-tag--reduced  { background: #FA5252; }

.bd-floorplan-label { font-size: 13px; font-weight: 700; text-transform: uppercase; color: #1C326B; margin: 20px 0 8px; font-family: "Myriad Pro", sans-serif; }

@media (max-width: 767px) {
    .trapezoid_bg { border-left:30px solid #1c326b; border-right:30px solid transparent; border-top:50px solid #1c326b; height:0; width:150px; margin-top:-15px; margin-bottom:-10px; margin-left:-15px; }
    .strik-price:before { position:absolute; content:""; width:80px; left:-10px; top:50%; right:0; border-top:2px solid; border-color:inherit; transform:rotate(-10deg); }
}
@media (min-width: 768px) {
    .trapezoid_bg { border-left:30px solid #1c326b; border-right:30px solid transparent; border-top:60px solid #1c326b; height:0; width:150px; margin-top:-15px; margin-bottom:-15px; margin-left:-15px; }
    .strik-price:before { position:absolute; content:""; width:100px; left:-10px; top:50%; right:0; border-top:2px solid; border-color:inherit; transform:rotate(-10deg); }
    .trapezoid_text_margin { margin:5px auto !important; }
}
.trapezoid_text { position:absolute; top:0; bottom:0; margin:auto; }
/* ── Filter bar — exact match of MM case studies .filter-with-card ── */
.pur-filter-card {
    background: #efefef;
    padding: 10px;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.pur-filter-card-title {
    display: none;
}

.pur-filter-hint {
    display: none;
}

/* matches .filter-box */
.pur-filter-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
}

/* matches .first-filter */
.pur-filter-group {
    flex: 1 1 200px;
    max-width: 270px;
    min-width: 160px;
    margin: 5px 10px;
    position: relative;
    -webkit-box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 0px -12px 0 rgba(0, 0, 0, 0.16);
    padding: 0;
    border: 2px solid #efefef;
}

    /* matches .table-title — gray header with label + orange chevron */
    .pur-filter-group label {
        display: block;
        background: #efefef;
        font-size: 18px;
        font-weight: normal;
        color: #4d4d4d;
        padding: 10px 40px 10px 15px;
        margin: 0;
        cursor: default;
        text-transform: none;
        letter-spacing: 0;
        font-family: "Myriad Pro", sans-serif;
        position: relative;
        line-height: 1.3;
    }

        /* matches .table-title:after — orange chevron arrow */
        .pur-filter-group label::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 14px;
            width: 14px;
            height: 9px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23FF8201' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
            background-size: contain;
            transform: translateY(-50%);
        }

    /* matches .filter-category white body area */
    .pur-filter-group select.purchase_dropdown {
        display: block;
        width: 100%;
        height: 48px;
        border: none;
        border-radius: 0;
        padding: 0 35px 0 15px;
        font-size: 18px;
        color: #1C326B;
        background: #efefef url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%231C326B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center;
        -webkit-appearance: none;
        appearance: none;
        font-family: "Myriad Pro", sans-serif;
        cursor: pointer;
        margin-top:0px !important;
        transition: background-color .15s;
    }
    /* Active filter indicator — orange left border matching MM style */
    .pur-filter-group.has-value {
        border: 2px solid #FF8201;
    }

        .pur-filter-group.has-value select.purchase_dropdown {
            font-weight: 700;
            color: #1C326B;
        }
/* Search button — aligned to bottom of select */
.pur-filter-btn {
    flex: 0 0 auto;
    margin: 5px 10px;
    display: flex;
    align-items: flex-end;
    padding: 0;
    background: none;
    box-shadow: none;
    border: none;
}

    .pur-filter-btn input[type="submit"] {
        height: 48px;
        padding: 0 28px;
        background: #FF8201;
        color: #fff;
        border: none;
        border-radius: 0;
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .6px;
        cursor: pointer;
        font-family: "Myriad Pro", sans-serif;
        white-space: nowrap;
        transition: background .15s;
    }

        .pur-filter-btn input[type="submit"]:hover {
            background: #e07200;
        }

@media (max-width: 767px) {
    .pur-filter-group {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .pur-filter-btn {
        width: calc(100% - 20px);
    }

        .pur-filter-btn input[type="submit"] {
            width: 100%;
        }

    .ps-view-detail-btn {
        text-align: center !important;
        padding: 10px !important;
        display: inline-block;
        position: relative;
        text-transform: uppercase;
        font-size: 16px !important;
        font-family: 'Myriad Pro', sans-serif;
    }
}

.pur-clear-filter-wrap {
    flex: 0 0 auto;
    margin: 5px 10px;
    display: none;
    align-items: center;
}

.pur-clear-filter-btn {
    position: relative;
    background: transparent;
    border: none;
    font-size: 18px;
    font-family: "Myriad Pro", sans-serif;
    color: #4d4d4d;
    padding: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

    .pur-clear-filter-btn:hover {
        background-color: #eeeeee;
        color: #4d4d4d;
    }

    .pur-clear-filter-btn::after {
        content: '';
        width: 0;
        height: 2px;
        background-color: #FF8201;
        position: absolute;
        left: 0;
        bottom: -6px;
        transition: width 0.2s ease-in-out;
    }

    .pur-clear-filter-btn:hover::after {
        width: 100%;
    }



.overlayText {
    position: absolute;
    right: 0;
    top: 0;
    background: #1C326B;
    padding: 10px 15px;
    font-size: 16px;
    line-height: 1.42;
    letter-spacing: .2px;
    color: #fff;
    border-left: 8px solid #FF8201;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.pur-hero {
    background: linear-gradient(135deg, #1C326B 0%, #0d1e45 100%);
    padding: 48px 0 40px;
    position: relative;
    overflow: hidden;
}

    .pur-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
    }

.pur-hero-title {
    font-size: 40px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
    font-family: "Myriad Pro", sans-serif;
    margin-bottom: 10px;
}

.pur-hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,.75);
    font-family: "Myriad Pro", sans-serif;
    max-width: 560px;
    margin-bottom: 0;
}

.pur-hero-accent {
    display: inline-block;
    width: 48px;
    height: 4px;
    background: #FF8201;
    border-radius: 2px;
    margin-bottom: 14px;
}

@media (max-width: 767px) {
    .pur-hero {
        padding: 32px 0 28px;
    }

    .pur-hero-title {
        font-size: 28px;
    }
}

.pur-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    font-family: "Myriad Pro", sans-serif;
}

.pur-pill--location {
    background: #1C326B;
}

.pur-pill--type {
    background: #FF8201;
}

.pur-pill-remove {
    color: white;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
}

.pur-pill-sep {
    color: #ccc;
    font-size: 16px;
    line-height: 1;
}

.pur-clear-all {
    margin-left: auto;
    font-size: 18px;
    color: #4d4d4d;
    text-decoration: underline;
    font-family: "Myriad Pro", sans-serif;
}

.pur-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 8px;
}

.pur-results-count {
    font-size: 18px;
    color: #4d4d4d;
    font-family: "Myriad Pro", sans-serif;
    margin-bottom: 10px;
}


.pur-btn-outline {
    flex: 1;
    min-width: 120px;
    height: 40px;
    line-height: 38px;
    border: 1.5px solid #1C326B;
    color: #1C326B;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-family: "Myriad Pro", sans-serif;
    display: block;
    transition: background .15s, color .15s;
}

    .pur-btn-outline:hover {
        background: #1C326B;
        color: #fff;
    }


/* ── PAGINATION ── */
.pur-pagination {
    display: flex;
    justify-content: center;
    gap: 2px;
    padding: 10px 0 10px;
    flex-wrap: wrap;
}

.pur-page-btn {
    width: 36px;
    height: 36px;
    line-height: 34px;
    text-align: center;
    font-size: 16px;
    color: #1C326B;
    cursor: pointer;
    text-decoration: none;
    font-family: "Myriad Pro", sans-serif;
    background: #fff;
    display: inline-block;
    transition: background .12s, color .12s, border-color .12s;
    border-radius: 50%;
}

    .pur-page-btn:not(.pur-page-btn--arrow):hover {
        background: #f0f3fa;
        border-color: #1C326B;
    }

    .pur-page-btn.active {
        background: #1C326B;
        color: #fff;
        border-color: #1C326B;
    }

    .pur-page-btn.disabled {
        opacity: .4;
        pointer-events: none;
    }

.pur-page-btn--arrow {
    font-size: 0;
    position: relative;
    width: 30px;
    height: 30px;
    line-height: 1;
}
    /* shared arrow style */
    .pur-page-btn--arrow::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        transition: transform 0.15s ease-in-out;
    }

    /* previous ← */
    .pur-page-btn--arrow[aria-label="Previous"]::after {
        background-image: url('/Content/Images/CaseStudies/left-triangle-arrow.svg');
    }

    /* next → */
    .pur-page-btn--arrow[aria-label="Next"]::after {
        background-image: url('/Content/Images/CaseStudies/right-triangle-arrow.svg');
    }

    /* hover nudge — matches case studies feel */
    .pur-page-btn--arrow[aria-label="Previous"]:not(.disabled):hover::after {
        transform: translateX(-2px);
    }

    .pur-page-btn--arrow[aria-label="Next"]:not(.disabled):hover::after {
        transform: translateX(2px);
    }

/* disabled state already handled by .pur-page-btn.disabled { opacity: .4 } */

/* ── EMPTY STATE ── */
.pur-empty-wrap {
    max-width: 640px;
    margin: 32px auto 48px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
    padding: 52px 40px 44px;
    text-align: center;
}

.pur-empty-title {
    font-size: 22px;
    color: #1C326B;
    margin: 0 0 10px;
    line-height: 1.3;
    font-family: "Myriad Pro", sans-serif;
}

.pur-empty-sub {
    font-size: 14px;
    color: #666;
    max-width: 460px;
    margin: 0 auto 10px;
    line-height: 1.6;
    font-family: "Myriad Pro", sans-serif;
}

.pur-empty-cta {
    display: inline-block;
    background: #FF8201;
    color: #fff;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    margin: 28px 0 10px;
    font-family: "Myriad Pro", sans-serif;
    transition: background .2s;
}

    .pur-empty-cta:hover {
        background: #e07200;
        color: #fff;
    }

.pur-empty-phone {
    display: block;
    font-size: 13px;
    color: #1C326B;
    text-decoration: underline;
    margin-bottom: 28px;
    font-family: "Myriad Pro", sans-serif;
}

.pur-suggestion-divider {
    border-top: 1px solid #eef0f5;
    padding-top: 28px;
}

.pur-suggestion-heading {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: #aaa;
    margin-bottom: 16px;
    font-family: "Myriad Pro", sans-serif;
}

.pur-suggestion-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.pur-suggestion-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 6px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    font-family: "Myriad Pro", sans-serif;
    transition: opacity .15s;
    border: 1.5px solid transparent;
}

    .pur-suggestion-btn:hover {
        opacity: .85;
    }

.pur-suggestion-btn--primary {
    background: #1C326B;
    color: #fff;
    border-color: #1C326B;
}

.pur-suggestion-btn--secondary {
    background: #f0f2f8;
    color: #1C326B;
    border-color: #dde1ec;
}

/* ── Building Detail — replaces all inline styles ── */

/* Thumb strip top margin */
.bd-thumbs-wrap {
    margin-top: 8px;
}

/* Individual thumb anchor */
.bd-thumb-link {
    display: block;
    flex: 0 0 80px;
    text-decoration: none;
}

/* Info/warning notes in panel */
.bd-note-info {
    font-size: 14px;
    color: #009CDE;
    margin-bottom: 6px;
    font-family: "Myriad Pro", sans-serif;
}

.bd-note-warn {
    font-size: 14px;
    color: #FA5252;
    font-weight: 700;
    margin-bottom: 6px;
    font-family: "Myriad Pro", sans-serif;
}

/* CTA buttons */
.bd-cta-primary {
    width: 100%;
    cursor: pointer;
    margin-bottom: 10px;
}

.bd-cta-phone {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    width: 100%;
    cursor: pointer;
}

.bd-cta-browse {
    display: block;
    text-align: center;
    text-decoration: none;
    margin-top: 8px;
}

/* ── Index.cshtml inline replacements ── */
.pur-filter-bg {
    background-color: #efefef;
}

.pur-content-area {
    padding-top: 8px;
    padding-bottom: 32px;
}

.pur-results-page {
    color: #999;
}

.pur-hero-link {
    display: block;
}

.pur-card-img-fallback {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pur-btn-flex-center {
    align-items: center;
    justify-content: center;
}

.pur-footer-offset {
    margin-bottom: -51px;
}

/* Why Choose section */
.why-choose-item {
    margin: 20px 0;
    padding: 0;
}

.why-choose-label {
    max-width: 140px;
    margin: auto;
}

.why-choose-icon--lg {
    width: 80px;
}

.why-choose-icon--md {
    width: 65px;
}

.why-choose-icon--sm {
    width: 60px;
}
/* ── Sold-out / out-of-stock product treatment ── */
.bd-oos-badge {
    display: inline-block;
    background: #EDEDED;
    color: #4d4d4d;
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px 15px;
    margin-bottom: 15px;
    font-family: "Myriad Pro", sans-serif;
}

.bd-oos-price-label {
    font-size: 16px;
    text-transform: uppercase;
    color: #4d4d4d;
    margin-bottom: 10px;
    font-family: "Myriad Pro", sans-serif;
}

.bd-oos-price {
    font-size: 34px;
    color: #1C326B;
    font-weight: 700;
    margin: 0 0 24px;
    font-family: "Myriad Pro", sans-serif;
}

.bd-oos-panel {
    border-left: 4px solid #FF8201;
    background: #EDEDED;
    padding: 20px 24px;
    margin-top: 30px;
}

.bd-oos-panel-title {
    font-size: 20px;
    color: #1C326B;
    line-height: 1.5;
    margin: 0 0 12px;
    font-family: "Myriad Pro", sans-serif;
}

.bd-oos-panel-text {
    font-size: 16px;
    color: #4d4d4d;
    line-height: 1.6;
    margin: 0;
    font-family: "Myriad Pro", sans-serif;
}

.bd-oos-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 60px;
    padding-top: 8px;
}

.bd-oos-meta-item {
    flex: 0 0 auto;
    min-width: 140px;
}

.bd-oos-meta-label {
    font-size: 12px;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 4px;
    font-family: "Myriad Pro", sans-serif;
}

.bd-oos-meta-value {
    font-size: 16px;
    color: #1C326B;
    font-family: "Myriad Pro", sans-serif;
}

.bd-oos-cta-row {
    margin-top: 28px;
}

.bd-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 40px; /* keeps image off the edges + away from arrows */
}

    .bd-lightbox.is-open {
        display: flex;
    }

.bd-lightbox-img {
    max-width: 85%;
    max-height: 80vh; /* viewport-relative so it never exceeds screen height */
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.bd-lightbox .bd-lightbox-img {
    max-width: 85% !important;
    max-height: 80vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
}


.bd-lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.bd-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background-color: #FF8201 !important;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: background 0.15s;
    z-index: 5;
}

    .bd-lightbox-arrow:hover {
        background-color: #FF8201 !important;
    }

.bd-lightbox-arrow--prev {
    left: 24px;
}

.bd-lightbox-arrow--next {
    right: 24px;
}

.bd-lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 15px;
    font-family: "Myriad Pro", sans-serif;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 14px;
    border-radius: 20px;
}

@media (max-width: 767px) {
    .bd-lightbox-arrow {
        width: 42px;
        height: 42px;
        font-size: 40px;
    }

    .bd-lightbox-arrow--prev {
        left: 10px;
    }

    .bd-lightbox-arrow--next {
        right: 10px;
    }
}