/*==================================================
BUCKETLIST PROPERTIES — PROPERTY DETAILS
Professional, database-powered and responsive
==================================================*/

:root {
    --pd-ink: #101828;
    --pd-ink-soft: #344054;
    --pd-muted: #667085;
    --pd-line: #e4e7ec;
    --pd-line-strong: #d0d5dd;
    --pd-paper: #ffffff;
    --pd-canvas: #f5f6f8;
    --pd-canvas-warm: #faf8f4;
    --pd-gold: #ad8b4f;
    --pd-gold-dark: #8c6b34;
    --pd-gold-soft: #f6efe2;
    --pd-green: #067647;
    --pd-green-soft: #ecfdf3;
    --pd-danger: #b42318;
    --pd-radius-sm: 12px;
    --pd-radius: 18px;
    --pd-radius-lg: 28px;
    --pd-shadow-sm: 0 8px 24px rgba(16, 24, 40, 0.06);
    --pd-shadow: 0 18px 54px rgba(16, 24, 40, 0.10);
    --pd-shadow-lg: 0 34px 90px rgba(16, 24, 40, 0.18);
    --pd-container: 1280px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--pd-canvas);
    color: var(--pd-ink);
    font-family: "Inter", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.pd-modal-open {
    overflow: hidden;
}

.pd-page,
.pd-page *,
.pd-modal,
.pd-modal * {
    box-sizing: border-box;
}

.pd-page img,
.pd-modal img {
    max-width: 100%;
}

.pd-page button,
.pd-modal button,
.pd-page input,
.pd-page textarea,
.pd-modal input,
.pd-modal textarea {
    font: inherit;
}

.pd-page button,
.pd-modal button {
    -webkit-tap-highlight-color: transparent;
}

.pd-container {
    width: min(calc(100% - 40px), var(--pd-container));
    margin: 0 auto;
}

/*==================================================
HERO
==================================================*/

.pd-hero {
    padding: 30px 0 34px;
    background:
        radial-gradient(circle at 90% 10%, rgba(173, 139, 79, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    border-bottom: 1px solid var(--pd-line);
}

.pd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 26px;
    color: var(--pd-muted);
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
}

.pd-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}

.pd-breadcrumb a:hover {
    color: var(--pd-gold-dark);
}

.pd-breadcrumb span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.pd-breadcrumb i {
    flex: 0 0 auto;
    font-size: 17px;
    color: #98a2b3;
}

.pd-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 42px;
    align-items: end;
    margin-bottom: 28px;
}

.pd-heading-copy {
    min-width: 0;
}

.pd-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.pd-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 0 11px;
    border: 1px solid #e8dcc4;
    border-radius: 999px;
    background: var(--pd-gold-soft);
    color: var(--pd-gold-dark);
    font-size: 12px;
    font-weight: 700;
}

.pd-badge-dark {
    border-color: var(--pd-ink);
    background: var(--pd-ink);
    color: #fff;
}

.pd-badge-verified {
    border-color: #abefc6;
    background: var(--pd-green-soft);
    color: var(--pd-green);
}

.pd-heading-copy h1 {
    max-width: 900px;
    margin: 0;
    color: var(--pd-ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.pd-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0 0;
    color: var(--pd-muted);
    font-size: 16px;
}

.pd-location i {
    color: var(--pd-gold);
    font-size: 21px;
}

.pd-heading-actions {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.pd-price {
    text-align: right;
}

.pd-price span,
.pd-price small {
    display: block;
    color: var(--pd-muted);
}

.pd-price span {
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pd-price strong {
    display: block;
    color: var(--pd-ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1;
    white-space: nowrap;
}

.pd-price small {
    margin-top: 8px;
    font-size: 13px;
}

.pd-icon-actions {
    display: flex;
    gap: 10px;
}

.pd-icon-btn {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--pd-line-strong);
    border-radius: 50%;
    background: #fff;
    color: var(--pd-ink);
    cursor: pointer;
    transition: all .22s ease;
}

.pd-icon-btn i {
    font-size: 21px;
}

.pd-icon-btn:hover,
.pd-icon-btn.is-active {
    transform: translateY(-2px);
    border-color: var(--pd-gold);
    background: var(--pd-gold);
    color: #fff;
    box-shadow: var(--pd-shadow-sm);
}

.pd-media-shell {
    overflow: hidden;
    border: 1px solid var(--pd-line);
    border-radius: var(--pd-radius-lg);
    background: #fff;
    box-shadow: var(--pd-shadow);
}

.pd-media-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(340px, .8fr);
    gap: 4px;
    min-height: 610px;
    background: #e8eaed;
}

.pd-media-grid.is-single {
    grid-template-columns: 1fr;
}

.pd-media-main,
.pd-media-small {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: #eef0f2;
    cursor: pointer;
}

.pd-media-main img,
.pd-media-small img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.pd-media-main:hover img,
.pd-media-small:hover img {
    transform: scale(1.035);
}

.pd-media-side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 4px;
}

.pd-view-all {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 999px;
    background: rgba(16, 24, 40, .82);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: all .22s ease;
}

.pd-view-all:hover {
    background: var(--pd-gold);
    transform: translateY(-2px);
}

.pd-facts {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid var(--pd-line);
}

.pd-facts.pd-facts-project {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.pd-facts-project .pd-fact {
    padding: 20px 18px;
}

.pd-facts-project .pd-fact strong {
    white-space: normal;
    line-height: 1.3;
}

.pd-project-unit-types {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    padding: 14px 22px;
    border-top: 1px solid var(--pd-line);
    background: var(--pd-canvas-warm);
    color: var(--pd-gold-dark);
    font-size: 14px;
    font-weight: 700;
}

.pd-project-unit-types i {
    font-size: 20px;
}

@media (max-width: 1024px) {
    .pd-facts.pd-facts-project {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .pd-facts.pd-facts-project {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pd-project-unit-types {
        justify-content: flex-start;
    }
}
.pd-fact {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    border-right: 1px solid var(--pd-line);
}

.pd-fact:last-child {
    border-right: 0;
}

.pd-fact > i {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--pd-gold-soft);
    color: var(--pd-gold-dark);
    font-size: 20px;
}

.pd-fact div {
    min-width: 0;
}

.pd-fact strong,
.pd-fact span {
    display: block;
}

.pd-fact strong {
    overflow: hidden;
    color: var(--pd-ink);
    font-size: 17px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pd-fact span {
    margin-top: 3px;
    color: var(--pd-muted);
    font-size: 12px;
}

/*==================================================
SECTION NAV
==================================================*/

.pd-section-nav {
    position: sticky;
    top: var(--pd-header-height, 0px);
    z-index: 80;
    border-bottom: 1px solid var(--pd-line);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(16px);
}

.site-header + .menu-overlay + .mobile-menu + .pd-page .pd-section-nav {
    top: 0;
}

.pd-section-nav-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    min-height: 62px;
    overflow-x: auto;
    scrollbar-width: none;
}

.pd-section-nav-inner::-webkit-scrollbar {
    display: none;
}

.pd-section-nav a {
    position: relative;
    flex: 0 0 auto;
    padding: 21px 0 19px;
    color: var(--pd-muted);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s ease;
}

.pd-section-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--pd-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.pd-section-nav a:hover,
.pd-section-nav a.active {
    color: var(--pd-ink);
}

.pd-section-nav a.active::after {
    transform: scaleX(1);
}

/*==================================================
MAIN LAYOUT
==================================================*/

.pd-content {
    padding: 54px 0 84px;
}

.pd-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 34px;
    align-items: start;
}

.pd-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pd-card {
    scroll-margin-top: 90px;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid var(--pd-line);
    border-radius: var(--pd-radius-lg);
    background: var(--pd-paper);
    box-shadow: var(--pd-shadow-sm);
}

.pd-section-kicker {
    margin-bottom: 10px;
    color: var(--pd-gold-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.pd-card h2,
.pd-similar h2,
.pd-lead-modal h2,
.pd-floorplan-modal h2 {
    margin: 0;
    color: var(--pd-ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.14;
    letter-spacing: -.025em;
}

.pd-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.pd-description {
    margin-top: 22px;
    color: var(--pd-ink-soft);
    font-size: 16px;
    line-height: 1.9;
}

.pd-reference-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--pd-line);
}

.pd-reference-strip div,
.pd-address-grid div {
    min-width: 0;
}

.pd-reference-strip span,
.pd-reference-strip strong,
.pd-address-grid span,
.pd-address-grid strong {
    display: block;
}

.pd-reference-strip span,
.pd-address-grid span {
    margin-bottom: 6px;
    color: var(--pd-muted);
    font-size: 12px;
}

.pd-reference-strip strong,
.pd-address-grid strong {
    overflow-wrap: anywhere;
    color: var(--pd-ink);
    font-size: 14px;
}

/*==================================================
HIGHLIGHTS
==================================================*/

.pd-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.pd-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 82px;
    padding: 18px;
    border: 1px solid var(--pd-line);
    border-radius: var(--pd-radius);
    background: #fcfcfd;
}

.pd-highlight-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--pd-gold-soft);
    color: var(--pd-gold-dark);
    font-size: 19px;
}

.pd-highlight strong {
    color: var(--pd-ink);
    font-size: 15px;
    line-height: 1.45;
}

/*==================================================
DETAILS
==================================================*/

.pd-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 30px;
}

.pd-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 58px;
    border-bottom: 1px solid var(--pd-line);
}

.pd-detail-row span {
    color: var(--pd-muted);
    font-size: 14px;
}

.pd-detail-row strong {
    color: var(--pd-ink);
    font-size: 14px;
    text-align: right;
}

/*==================================================
AMENITIES
==================================================*/

.pd-amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.pd-amenity {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 14px 16px;
    border: 1px solid var(--pd-line);
    border-radius: 14px;
    background: #fcfcfd;
}

.pd-amenity i {
    color: var(--pd-gold-dark);
    font-size: 21px;
}

.pd-amenity span {
    color: var(--pd-ink-soft);
    font-size: 14px;
    font-weight: 600;
}

/*==================================================
PAYMENT PLAN
==================================================*/

.pd-payment-timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.pd-payment-step {
    position: relative;
    min-height: 180px;
    padding: 24px;
    border: 1px solid #eadfc9;
    border-radius: var(--pd-radius);
    background:
        linear-gradient(160deg, rgba(246, 239, 226, .95), rgba(255, 255, 255, .98));
}

.pd-payment-number {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--pd-ink);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.pd-payment-copy {
    margin-top: 22px;
}

.pd-payment-copy span,
.pd-payment-copy strong {
    display: block;
}

.pd-payment-copy span {
    color: var(--pd-muted);
    font-size: 13px;
    font-weight: 700;
}

.pd-payment-copy strong {
    margin-top: 4px;
    color: var(--pd-gold-dark);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 38px;
}

.pd-payment-copy p {
    margin: 12px 0 0;
    color: var(--pd-muted);
    font-size: 13px;
    line-height: 1.55;
}

/*==================================================
GALLERY
==================================================*/

.pd-text-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--pd-gold-dark);
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: gap .2s ease, color .2s ease;
}

.pd-text-btn:hover {
    gap: 11px;
    color: var(--pd-ink);
}

.pd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.pd-gallery-card {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    padding: 0;
    border: 0;
    border-radius: var(--pd-radius);
    background: #eef0f2;
    cursor: pointer;
}

.pd-gallery-card:nth-child(3n + 1) {
    grid-column: span 2;
    min-height: 390px;
}

.pd-gallery-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.pd-gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(16, 24, 40, .68) 100%);
}

.pd-gallery-card span {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 2;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.pd-gallery-card:hover img {
    transform: scale(1.045);
}

/*==================================================
FLOOR PLANS
==================================================*/

.pd-floorplans {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.pd-floorplan {
    overflow: hidden;
    border: 1px solid var(--pd-line);
    border-radius: var(--pd-radius);
    background: #fff;
}

.pd-floorplan-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    padding: 0;
    border: 0;
    background: #f7f8fa;
    cursor: zoom-in;
}

.pd-floorplan-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.pd-floorplan-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    border-top: 1px solid var(--pd-line);
}

/*==================================================
LOCATION
==================================================*/

.pd-location-copy {
    margin: -6px 0 24px;
    color: var(--pd-muted);
    line-height: 1.75;
}

.pd-map {
    overflow: hidden;
    min-height: 420px;
    border: 1px solid var(--pd-line);
    border-radius: var(--pd-radius);
    background: #eef0f2;
}

.pd-map iframe {
    width: 100%;
    height: 420px;
    display: block;
    border: 0;
}

.pd-map-placeholder {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px;
    background:
        radial-gradient(circle at center, rgba(173, 139, 79, .14), transparent 35%),
        linear-gradient(135deg, #f7f4ed, #eef1f5);
    color: var(--pd-ink);
    text-align: center;
    text-decoration: none;
}

.pd-map-placeholder i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--pd-gold);
    color: #fff;
    font-size: 26px;
    box-shadow: var(--pd-shadow-sm);
}

.pd-map-placeholder strong {
    margin-top: 8px;
    font-size: 18px;
}

.pd-map-placeholder span {
    color: var(--pd-muted);
    font-size: 14px;
}

.pd-address-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.pd-address-grid div {
    padding: 16px;
    border: 1px solid var(--pd-line);
    border-radius: 14px;
    background: #fcfcfd;
}

.pd-nearby-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.pd-nearby {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px;
    border: 1px solid var(--pd-line);
    border-radius: 14px;
}

.pd-nearby > i {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--pd-gold-soft);
    color: var(--pd-gold-dark);
    font-size: 19px;
}

.pd-nearby strong,
.pd-nearby span {
    display: block;
}

.pd-nearby strong {
    font-size: 14px;
}

.pd-nearby span {
    margin-top: 3px;
    color: var(--pd-muted);
    font-size: 12px;
}

/*==================================================
DEVELOPER
==================================================*/

.pd-developer-card {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    background:
        radial-gradient(circle at 0 100%, rgba(173, 139, 79, .12), transparent 38%),
        #fff;
}

.pd-developer-logo {
    min-height: 160px;
    display: grid;
    place-items: center;
    padding: 28px;
    border: 1px solid var(--pd-line);
    border-radius: var(--pd-radius);
    background: #fff;
}

.pd-developer-logo img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.pd-developer-copy p {
    margin: 16px 0 22px;
    color: var(--pd-muted);
    line-height: 1.75;
}

.pd-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid var(--pd-line-strong);
    border-radius: 12px;
    color: var(--pd-ink);
    font-weight: 700;
    text-decoration: none;
    transition: all .2s ease;
}

.pd-outline-btn:hover {
    border-color: var(--pd-ink);
    background: var(--pd-ink);
    color: #fff;
}

/*==================================================
MORTGAGE
==================================================*/

.pd-mortgage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
}

.pd-mortgage-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.pd-field {
    min-width: 0;
}

.pd-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--pd-ink-soft);
    font-size: 13px;
    font-weight: 700;
}

.pd-field input,
.pd-field textarea {
    width: 100%;
    border: 1px solid var(--pd-line-strong);
    border-radius: 12px;
    background: #fff;
    color: var(--pd-ink);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.pd-field input {
    height: 50px;
    padding: 0 14px;
}

.pd-field textarea {
    min-height: 120px;
    padding: 14px;
    resize: vertical;
}

.pd-field input:focus,
.pd-field textarea:focus {
    border-color: var(--pd-gold);
    box-shadow: 0 0 0 4px rgba(173, 139, 79, .12);
}

.pd-mortgage-result {
    padding: 26px;
    border-radius: var(--pd-radius);
    background: var(--pd-ink);
    color: #fff;
}

.pd-mortgage-result > span {
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pd-mortgage-result > strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 38px;
    line-height: 1.1;
}

.pd-mortgage-breakdown {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.pd-mortgage-breakdown div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 7px 0;
}

.pd-mortgage-breakdown span {
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
}

.pd-mortgage-breakdown strong {
    font-size: 13px;
}

.pd-mortgage-result small {
    display: block;
    margin-top: 20px;
    color: rgba(255, 255, 255, .52);
    font-size: 11px;
    line-height: 1.55;
}

/*==================================================
SIDEBAR
==================================================*/

.pd-sidebar {
    position: sticky;
    top: calc(var(--pd-header-height, 0px) + 78px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pd-contact-card,
.pd-sidebar-info {
    border: 1px solid var(--pd-line);
    border-radius: var(--pd-radius-lg);
    background: #fff;
    box-shadow: var(--pd-shadow-sm);
}

.pd-contact-card {
    padding: 26px;
}

.pd-agent {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pd-agent img {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    border: 3px solid #fff;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 1px var(--pd-line);
}

.pd-agent span,
.pd-agent h3,
.pd-agent p {
    display: block;
    margin: 0;
}

.pd-agent span {
    margin-bottom: 3px;
    color: var(--pd-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.pd-agent h3 {
    color: var(--pd-ink);
    font-size: 19px;
}

.pd-agent p {
    margin-top: 4px;
    color: var(--pd-muted);
    font-size: 13px;
}

.pd-contact-price {
    margin: 24px 0;
    padding: 20px 0;
    border-top: 1px solid var(--pd-line);
    border-bottom: 1px solid var(--pd-line);
}

.pd-contact-price span,
.pd-contact-price strong {
    display: block;
}

.pd-contact-price span {
    margin-bottom: 5px;
    color: var(--pd-muted);
    font-size: 12px;
}

.pd-contact-price strong {
    color: var(--pd-ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 30px;
}

.pd-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.pd-primary-btn,
.pd-secondary-btn,
.pd-mini-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: all .22s ease;
}

.pd-primary-btn,
.pd-secondary-btn {
    width: 100%;
    border: 1px solid transparent;
    padding: 0 18px;
}

.pd-primary-btn {
    background: var(--pd-gold);
    color: #fff;
}

.pd-primary-btn:hover {
    transform: translateY(-2px);
    background: var(--pd-gold-dark);
    box-shadow: var(--pd-shadow-sm);
}

.pd-secondary-btn {
    border-color: var(--pd-line-strong);
    background: #fff;
    color: var(--pd-ink);
}

.pd-secondary-btn:hover {
    transform: translateY(-2px);
    border-color: var(--pd-ink);
    background: var(--pd-ink);
    color: #fff;
}

.pd-contact-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.pd-mini-btn {
    min-width: 0;
    min-height: 46px;
    padding: 0 12px;
    border: 1px solid var(--pd-line);
    background: #f9fafb;
    color: var(--pd-ink);
    font-size: 13px;
}

.pd-mini-btn:hover {
    transform: translateY(-2px);
    border-color: var(--pd-gold);
}

.pd-whatsapp-btn {
    border-color: #abefc6;
    background: var(--pd-green-soft);
    color: var(--pd-green);
}

.pd-brochure-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    color: var(--pd-gold-dark);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.pd-trust-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--pd-line);
    color: var(--pd-muted);
    font-size: 12px;
    line-height: 1.55;
}

.pd-trust-note i {
    color: var(--pd-green);
    font-size: 18px;
}

.pd-sidebar-info {
    padding: 20px 22px;
}

.pd-sidebar-info div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 9px 0;
}

.pd-sidebar-info span {
    color: var(--pd-muted);
    font-size: 12px;
}

.pd-sidebar-info strong {
    color: var(--pd-ink);
    font-size: 12px;
    text-align: right;
    overflow-wrap: anywhere;
}

/*==================================================
SIMILAR PROPERTIES
==================================================*/

.pd-similar {
    padding: 80px 0 90px;
    border-top: 1px solid var(--pd-line);
    background: #fff;
}

.pd-similar-head {
    margin-bottom: 32px;
}

.pd-similar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.pd-property-card {
    overflow: hidden;
    border: 1px solid var(--pd-line);
    border-radius: var(--pd-radius-lg);
    background: #fff;
    box-shadow: var(--pd-shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}

.pd-property-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pd-shadow);
}

.pd-property-image {
    position: relative;
    aspect-ratio: 4 / 3;
    display: block;
    overflow: hidden;
    background: #eef0f2;
}

.pd-property-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.pd-property-card:hover .pd-property-image img {
    transform: scale(1.045);
}

.pd-property-image > span {
    position: absolute;
    left: 14px;
    top: 14px;
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(16, 24, 40, .86);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.pd-property-body {
    padding: 22px;
}

.pd-property-body > p {
    margin: 0 0 8px;
    color: var(--pd-gold-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.pd-property-body h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
}

.pd-property-body h3 a {
    color: var(--pd-ink);
    text-decoration: none;
}

.pd-property-price {
    display: block;
    margin-top: 18px;
    color: var(--pd-ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 26px;
}

.pd-property-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--pd-line);
    color: var(--pd-muted);
    font-size: 12px;
}

/*==================================================
FOOTER
==================================================*/

.pd-footer {
    padding: 56px 0 22px;
    background: #0b1220;
    color: #fff;
}

.pd-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr 1fr;
    gap: 50px;
    align-items: start;
}

.pd-footer-logo {
    width: 190px;
    max-height: 56px;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1);
}

.pd-footer p {
    max-width: 500px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .62);
    line-height: 1.75;
}

.pd-footer-links,
.pd-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pd-footer a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    transition: color .2s ease;
}

.pd-footer a:hover {
    color: #fff;
}

.pd-footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.pd-footer-bottom {
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .52);
    font-size: 12px;
}

/*==================================================
MOBILE ACTION BAR
==================================================*/

.pd-mobile-actions {
    display: none;
}

/*==================================================
MODALS
==================================================*/

.pd-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.pd-modal.is-open {
    display: flex;
}

.pd-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 18, .84);
    backdrop-filter: blur(10px);
}

.pd-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    background: rgba(16, 24, 40, .75);
    color: #fff;
    cursor: pointer;
    transition: all .2s ease;
}

.pd-modal-close:hover {
    transform: rotate(6deg);
    background: var(--pd-gold);
}

.pd-gallery-modal {
    position: relative;
    z-index: 2;
    width: min(1200px, 96vw);
    max-height: 94vh;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) 70px;
    grid-template-rows: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 12px 18px;
}

.pd-gallery-modal figure {
    grid-column: 2;
    min-height: 0;
    margin: 0;
    text-align: center;
}

.pd-gallery-modal figure img {
    max-width: 100%;
    max-height: 72vh;
    border-radius: 16px;
    object-fit: contain;
    box-shadow: var(--pd-shadow-lg);
}

.pd-gallery-modal figcaption {
    min-height: 22px;
    margin-top: 12px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
}

.pd-gallery-arrow {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all .2s ease;
}

.pd-gallery-arrow:hover {
    background: var(--pd-gold);
}

.pd-gallery-arrow i {
    font-size: 28px;
}

.pd-gallery-prev {
    grid-column: 1;
    grid-row: 1;
}

.pd-gallery-next {
    grid-column: 3;
    grid-row: 1;
}

.pd-gallery-counter {
    grid-column: 2;
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    text-align: center;
}

.pd-gallery-thumbs {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 4px 8px;
    scrollbar-width: none;
}

.pd-gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.pd-gallery-thumb {
    width: 74px;
    height: 54px;
    flex: 0 0 74px;
    overflow: hidden;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 9px;
    background: #222;
    cursor: pointer;
    opacity: .55;
    transition: all .2s ease;
}

.pd-gallery-thumb.is-active {
    border-color: var(--pd-gold);
    opacity: 1;
}

.pd-gallery-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.pd-floorplan-modal,
.pd-lead-modal {
    position: relative;
    z-index: 2;
    width: min(860px, 96vw);
    max-height: 92vh;
    overflow: auto;
    border-radius: var(--pd-radius-lg);
    background: #fff;
    box-shadow: var(--pd-shadow-lg);
}

.pd-floorplan-modal {
    padding: 34px;
}

.pd-floorplan-modal h2 {
    margin-bottom: 22px;
    padding-right: 56px;
}

.pd-floorplan-modal img {
    width: 100%;
    max-height: 72vh;
    display: block;
    object-fit: contain;
}

.pd-lead-modal {
    width: min(720px, 96vw);
    padding: 34px;
}

.pd-lead-intro {
    padding-right: 54px;
}

.pd-lead-intro p {
    margin: 12px 0 0;
    color: var(--pd-muted);
    line-height: 1.65;
}

.pd-lead-form {
    margin-top: 28px;
}

.pd-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.pd-submit-btn {
    position: relative;
    margin-top: 18px;
}

.pd-submit-btn.is-loading {
    pointer-events: none;
    opacity: .82;
}

.pd-btn-spinner {
    width: 18px;
    height: 18px;
    display: none;
    border: 2px solid rgba(255, 255, 255, .45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: pd-spin .7s linear infinite;
}

.pd-submit-btn.is-loading .pd-btn-spinner {
    display: inline-block;
}

@keyframes pd-spin {
    to { transform: rotate(360deg); }
}

/*==================================================
TOAST
==================================================*/

.pd-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 10050;
    max-width: min(440px, calc(100% - 32px));
    padding: 13px 18px;
    border-radius: 12px;
    background: var(--pd-ink);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    box-shadow: var(--pd-shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 16px);
    transition: opacity .22s ease, transform .22s ease;
}

.pd-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width: 1180px) {
    .pd-media-grid {
        min-height: 520px;
        grid-template-columns: minmax(0, 1.5fr) minmax(300px, .8fr);
    }

    .pd-layout {
        grid-template-columns: minmax(0, 1fr) 350px;
    }

    .pd-mortgage {
        grid-template-columns: 1fr;
    }

    .pd-mortgage-result {
        min-height: 230px;
    }
}

@media (max-width: 1024px) {
    .pd-heading-row {
        grid-template-columns: 1fr;
        gap: 22px;
        align-items: start;
    }

    .pd-heading-actions {
        width: 100%;
        justify-content: space-between;
    }

    .pd-price {
        text-align: left;
    }

    .pd-media-grid {
        min-height: 470px;
        grid-template-columns: 1.4fr .8fr;
    }

    .pd-facts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pd-fact {
        border-bottom: 1px solid var(--pd-line);
    }

    .pd-fact:nth-child(3n) {
        border-right: 0;
    }

    .pd-fact:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .pd-layout {
        grid-template-columns: 1fr;
    }

    .pd-sidebar {
        position: static;
        order: -1;
    }

    .pd-contact-card {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
        gap: 26px;
        align-items: center;
    }

    .pd-contact-price {
        margin: 20px 0 0;
        border-bottom: 0;
    }

    .pd-contact-actions {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .pd-trust-note {
        grid-column: 1 / -1;
    }

    .pd-sidebar-info {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .pd-similar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .pd-container {
        width: min(calc(100% - 28px), var(--pd-container));
    }

    .pd-hero {
        padding-top: 20px;
    }

    .pd-heading-copy h1 {
        font-size: clamp(34px, 7vw, 50px);
    }

    .pd-media-grid {
        display: block;
        min-height: 0;
        background: #fff;
    }

    .pd-media-main {
        width: 100%;
        aspect-ratio: 16 / 10;
        display: block;
    }

    .pd-media-side {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 8px;
        background: #fff;
        scrollbar-width: none;
    }

    .pd-media-side::-webkit-scrollbar {
        display: none;
    }

    .pd-media-small {
        width: 130px;
        height: 92px;
        flex: 0 0 130px;
        border-radius: 10px;
    }

    .pd-view-all {
        right: 14px;
        bottom: 116px;
        min-height: 42px;
        padding: 0 14px;
        font-size: 12px;
    }

    .pd-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pd-fact,
    .pd-fact:nth-child(3n) {
        border-right: 1px solid var(--pd-line);
        border-bottom: 1px solid var(--pd-line);
    }

    .pd-fact:nth-child(2n) {
        border-right: 0;
    }

    .pd-fact:last-child {
        grid-column: span 2;
        border-bottom: 0;
        border-right: 0;
    }

    .pd-reference-strip,
    .pd-address-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pd-amenities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pd-payment-timeline {
        grid-template-columns: 1fr;
    }

    .pd-payment-step {
        min-height: 0;
    }

    .pd-developer-card {
        grid-template-columns: 150px minmax(0, 1fr);
    }

    .pd-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pd-footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

    .pd-gallery-modal {
        width: 100%;
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        gap: 8px;
    }

    .pd-gallery-arrow {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 680px) {
    body {
        padding-bottom: 74px;
    }

    .pd-heading-actions {
        align-items: center;
    }

    .pd-price strong {
        font-size: 34px;
    }

    .pd-icon-btn {
        width: 42px;
        height: 42px;
    }

    .pd-media-shell {
        border-radius: 20px;
    }

    .pd-media-main {
        aspect-ratio: 4 / 3;
    }

    .pd-section-nav-inner {
        min-height: 56px;
        gap: 24px;
    }

    .pd-section-nav a {
        padding: 19px 0 17px;
    }

    .pd-content {
        padding: 28px 0 50px;
    }

    .pd-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .pd-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 22px;
    }

    .pd-highlights-grid,
    .pd-details-grid,
    .pd-gallery-grid,
    .pd-floorplans,
    .pd-nearby-grid,
    .pd-mortgage-form {
        grid-template-columns: 1fr;
    }

    .pd-gallery-card,
    .pd-gallery-card:nth-child(3n + 1) {
        grid-column: auto;
        min-height: 250px;
    }

    .pd-detail-row {
        min-height: 54px;
    }

    .pd-contact-card {
        display: block;
        padding: 22px;
    }

    .pd-contact-price {
        border-bottom: 1px solid var(--pd-line);
    }

    .pd-contact-actions {
        margin-top: 20px;
    }

    .pd-sidebar-info {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pd-developer-card {
        grid-template-columns: 1fr;
    }

    .pd-developer-logo {
        min-height: 130px;
    }

    .pd-similar {
        padding: 54px 0 64px;
    }

    .pd-similar-grid {
        grid-template-columns: 1fr;
    }

    .pd-footer {
        padding-bottom: 30px;
    }

    .pd-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pd-footer-grid > div:first-child {
        grid-column: auto;
    }

    .pd-mobile-actions {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 200;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        min-height: 68px;
        padding: 8px;
        border-top: 1px solid var(--pd-line);
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 -12px 34px rgba(16, 24, 40, .12);
        backdrop-filter: blur(14px);
    }

    .pd-mobile-actions a,
    .pd-mobile-actions button {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        min-width: 0;
        padding: 0 6px;
        border: 0;
        border-radius: 10px;
        background: transparent;
        color: var(--pd-ink);
        font-size: 10px;
        font-weight: 800;
        text-decoration: none;
        cursor: pointer;
    }

    .pd-mobile-actions i {
        color: var(--pd-gold-dark);
        font-size: 21px;
    }

    .pd-mobile-actions button {
        background: var(--pd-gold);
        color: #fff;
    }

    .pd-mobile-actions button i {
        color: #fff;
    }

    .pd-modal {
        align-items: flex-end;
        padding: 0;
    }

    .pd-lead-modal,
    .pd-floorplan-modal {
        width: 100%;
        max-height: 92vh;
        border-radius: 24px 24px 0 0;
        padding: 28px 20px 24px;
    }

    .pd-form-grid {
        grid-template-columns: 1fr;
    }

    .pd-gallery-modal {
        align-self: center;
        width: 100%;
        padding: 0 8px;
        grid-template-columns: 42px minmax(0, 1fr) 42px;
    }

    .pd-gallery-modal figure img {
        max-height: 64vh;
        border-radius: 12px;
    }

    .pd-gallery-thumbs {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .pd-container {
        width: min(calc(100% - 22px), var(--pd-container));
    }

    .pd-breadcrumb {
        margin-bottom: 18px;
    }

    .pd-heading-copy h1 {
        font-size: 34px;
    }

    .pd-location {
        align-items: flex-start;
        font-size: 14px;
        line-height: 1.5;
    }

    .pd-heading-actions {
        gap: 12px;
    }

    .pd-price strong {
        font-size: 30px;
    }

    .pd-price small {
        font-size: 11px;
    }

    .pd-icon-actions {
        gap: 7px;
    }

    .pd-icon-btn {
        width: 40px;
        height: 40px;
    }

    .pd-media-main {
        aspect-ratio: 1 / .78;
    }

    .pd-view-all {
        bottom: 108px;
    }

    .pd-fact {
        gap: 10px;
        padding: 16px 13px;
    }

    .pd-fact > i {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 18px;
    }

    .pd-fact strong {
        font-size: 15px;
    }

    .pd-reference-strip,
    .pd-address-grid,
    .pd-amenities-grid {
        grid-template-columns: 1fr;
    }

    .pd-card h2,
    .pd-similar h2,
    .pd-lead-modal h2,
    .pd-floorplan-modal h2 {
        font-size: 30px;
    }

    .pd-contact-split {
        grid-template-columns: 1fr;
    }

    .pd-mortgage-result > strong {
        font-size: 31px;
    }

    .pd-gallery-arrow {
        width: 38px;
        height: 38px;
    }

    .pd-gallery-modal {
        grid-template-columns: 38px minmax(0, 1fr) 38px;
        gap: 5px;
    }
}

/*==================================================
ACCESSIBILITY / REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .pd-page *,
    .pd-modal * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
/* ==================================================
   OFF PLAN PROJECT FACTS - FINAL OVERRIDE
   ================================================== */

.pd-media-shell .pd-facts.pd-facts-project {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    width: 100%;
    border-top: 1px solid var(--pd-line);
}

.pd-media-shell .pd-facts.pd-facts-project .pd-fact {
    min-width: 0;
    min-height: 112px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 18px;
    border-right: 1px solid var(--pd-line);
    border-bottom: 0 !important;
}

.pd-media-shell .pd-facts.pd-facts-project .pd-fact:last-child {
    border-right: 0;
}

.pd-media-shell .pd-facts.pd-facts-project .pd-fact > i {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
}

.pd-media-shell .pd-facts.pd-facts-project .pd-fact div {
    min-width: 0;
}

.pd-media-shell .pd-facts.pd-facts-project .pd-fact strong {
    display: block;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
    white-space: normal;
    word-break: normal;
}

.pd-media-shell .pd-facts.pd-facts-project .pd-fact span {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.35;
}


/* UNIT TYPES BAR */

.pd-project-unit-types {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 14px 24px;
    border-top: 1px solid var(--pd-line);
    background: #fbf8f2;
    color: var(--pd-ink);
    font-size: 15px;
    font-weight: 600;
}

.pd-project-unit-types i {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--pd-gold-soft);
    color: var(--pd-gold-dark);
    font-size: 17px;
}


/* TABLET */

@media (max-width: 1100px) {

    .pd-media-shell .pd-facts.pd-facts-project {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .pd-media-shell .pd-facts.pd-facts-project .pd-fact {
        border-bottom: 1px solid var(--pd-line) !important;
    }

    .pd-media-shell .pd-facts.pd-facts-project .pd-fact:nth-child(3n) {
        border-right: 0;
    }

    .pd-media-shell .pd-facts.pd-facts-project .pd-fact:nth-last-child(-n + 3) {
        border-bottom: 0 !important;
    }
}


/* MOBILE */

@media (max-width: 700px) {

    .pd-media-shell .pd-facts.pd-facts-project {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .pd-media-shell .pd-facts.pd-facts-project .pd-fact {
        min-height: 100px;
        padding: 16px 14px;
        border-right: 1px solid var(--pd-line);
        border-bottom: 1px solid var(--pd-line) !important;
    }

    .pd-media-shell .pd-facts.pd-facts-project .pd-fact:nth-child(3n) {
        border-right: 1px solid var(--pd-line);
    }

    .pd-media-shell .pd-facts.pd-facts-project .pd-fact:nth-child(2n) {
        border-right: 0;
    }

    .pd-media-shell .pd-facts.pd-facts-project .pd-fact:nth-last-child(-n + 2) {
        border-bottom: 0 !important;
    }

    .pd-media-shell .pd-facts.pd-facts-project .pd-fact strong {
        font-size: 16px;
    }

    .pd-project-unit-types {
        padding: 13px 16px;
        font-size: 14px;
    }
}

/* Space below shared header on property detail page */
.pd-hero {
    padding-top: 34px;
}