:root {
    --pm-blue: #1f6df2;
    --pm-blue-dark: #1559cd;
    --pm-text: #0f172a;
    --pm-muted: #64748b;
    --pm-border: #dce6f3;
    --pm-soft: #f6f9fd;
    --pm-green: #12b981;
    --pm-shadow: 0 12px 28px rgba(15, 23, 42, .10);
    --pm-radius: 14px;
}

.pm-properties-shell,
.pm-single-shell {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--pm-text);
    max-width: 1760px;
    margin: 0 auto;
    padding: 42px 54px 72px;
    box-sizing: border-box;
}

.pm-properties-shell *,
.pm-single-shell * {
    box-sizing: border-box;
}

.pm-filter-bar {
    display: grid;
    grid-template-columns: 160px 190px 150px minmax(280px, 1fr) 185px 108px;
    gap: 12px;
    align-items: center;
    margin: -28px 0 44px;
    padding: 0;
}

.pm-filter-bar select,
.pm-search-field input {
    width: 100%;
    height: 50px;
    border: 1px solid var(--pm-border);
    border-radius: 10px;
    background: #fff;
    color: #1e293b;
    font-size: 16px;
    line-height: 1;
    outline: none;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .03);
}

.pm-filter-bar select {
    padding: 0 44px 0 18px;
    appearance: auto;
}

.pm-search-field {
    position: relative;
    display: block;
}

.pm-search-field input {
    padding: 0 18px 0 48px;
}

.pm-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #718096;
    font-size: 22px;
    pointer-events: none;
}

.pm-view-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--pm-border);
    border-radius: 10px;
    overflow: hidden;
    height: 50px;
    background: #fff;
}

.pm-view-btn {
    border: 0;
    background: #fff;
    color: #64748b;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    transition: .18s ease;
}

.pm-view-btn.is-active {
    background: var(--pm-blue);
    color: #fff;
}

.pm-result-summary {
    color: #61718d;
    font-size: 18px;
    margin-bottom: 34px;
}

.pm-result-summary strong {
    color: #1f2937;
    font-weight: 700;
}

.pm-properties-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    position: relative;
    transition: opacity .2s ease;
}

.pm-properties-shell.is-loading .pm-properties-grid {
    opacity: .45;
}

.pm-property-card {
    background: #fff;
    border: 1px solid var(--pm-border);
    border-radius: var(--pm-radius);
    overflow: hidden;
    box-shadow: var(--pm-shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}

.pm-property-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, .13);
}

.pm-card-image {
    display: block;
    position: relative;
    height: 410px;
    background: #e8eef7;
    overflow: hidden;
    text-decoration: none;
}

.pm-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.pm-property-card:hover .pm-card-image img {
    transform: scale(1.04);
}

.pm-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 25px;
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.pm-badge-new {
    position: absolute;
    top: 17px;
    left: 18px;
    z-index: 2;
    background: var(--pm-green);
    color: #fff;
}

.pm-card-body {
    padding: 22px 22px 20px;
}

.pm-card-body h3 {
    margin: 0 0 14px;
    font-size: 23px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -.02em;
}

.pm-card-body h3 a {
    color: #111827;
    text-decoration: none;
}

.pm-card-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.pm-card-price strong {
    color: var(--pm-blue);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -.03em;
}

.pm-card-price span {
    color: #65748a;
    font-size: 18px;
}

.pm-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #66758e;
    font-size: 16px;
    margin-bottom: 20px;
}

.pm-pin {
    color: #718096;
    font-size: 17px;
}

.pm-card-specs {
    display: flex;
    align-items: center;
    gap: 25px;
    border-top: 1px solid var(--pm-border);
    padding-top: 19px;
    color: #5e708a;
    font-size: 16px;
}

.pm-card-specs span,
.pm-detail-specs span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.pm-card-specs i,
.pm-detail-specs i {
    color: #356fb7;
    font-style: normal;
    font-weight: 700;
}

.pm-properties-grid.is-list-view {
    grid-template-columns: 1fr;
}

.pm-properties-grid.is-list-view .pm-property-card {
    display: grid;
    grid-template-columns: 360px 1fr;
}

.pm-properties-grid.is-list-view .pm-card-image {
    height: 260px;
}

.pm-empty-state {
    grid-column: 1 / -1;
    min-height: 160px;
    display: grid;
    place-items: center;
    border: 1px dashed var(--pm-border);
    border-radius: var(--pm-radius);
    background: var(--pm-soft);
    color: var(--pm-muted);
    font-size: 18px;
}

.pm-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #72809a;
    font-size: 13px;
    margin-bottom: 45px;
}

.pm-breadcrumbs a,
.pm-back-link {
    color: #52617a;
    text-decoration: none;
}

.pm-breadcrumbs strong {
    color: #111827;
    font-weight: 600;
}

.pm-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 28px;
    color: #111827;
    font-size: 15px;
    font-weight: 700;
}

.pm-detail-gallery {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 10px;
    height: 670px;
    margin-bottom: 48px;
}

.pm-detail-main-image,
.pm-detail-thumbs button:not(.pm-see-more) {
    display: block;
    overflow: hidden;
    background: #edf3fb;
    border: 0;
    padding: 0;
    cursor: pointer;
    appearance: none;
    font: inherit;
}

.pm-detail-main-image {
    border-radius: 12px 0 0 12px;
}

.pm-detail-main-image img,
.pm-detail-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.pm-detail-main-image:hover img,
.pm-detail-thumbs button:hover img {
    transform: scale(1.04);
}

.pm-detail-thumbs {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pm-detail-thumbs button:nth-child(2) {
    border-radius: 0 12px 0 0;
}

.pm-detail-thumbs button:nth-child(4) {
    border-radius: 0 0 12px 0;
}

.pm-see-more {
    position: absolute;
    right: 22px;
    bottom: 18px;
    background: #fff;
    color: #1f2937;
    border: 1px solid var(--pm-border);
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .12);
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    appearance: none;
}

.pm-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 36px;
    align-items: start;
}

.pm-detail-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.pm-detail-badges .pm-badge-new {
    position: static;
}

.pm-soft-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 14px;
    background: #edf3fb;
    color: #65758d;
    font-size: 13px;
    font-weight: 700;
}

.pm-soft-badge.is-green {
    color: #088b64;
    background: #dff7ec;
}

.pm-detail-content h1 {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -.03em;
}

.pm-detail-location {
    margin-bottom: 24px;
}

.pm-detail-specs {
    display: flex;
    align-items: center;
    gap: 44px;
    background: var(--pm-soft);
    border-radius: 10px;
    padding: 18px 22px;
    color: #111827;
    margin-bottom: 30px;
    font-size: 15px;
}

.pm-detail-specs strong {
    margin-right: -3px;
}

.pm-detail-content h2 {
    margin: 28px 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.25;
}

.pm-detail-copy {
    max-width: 920px;
    color: #607089;
    font-size: 17px;
    line-height: 1.75;
}

.pm-detail-copy p {
    margin: 0 0 14px;
}

.pm-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pm-amenities span {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--pm-border);
    border-radius: 999px;
    padding: 8px 16px;
    color: #63738b;
    font-size: 14px;
    background: #fff;
}

.pm-detail-sidebar {
    position: sticky;
    top: 30px;
}

.pm-price-box,
.pm-enquiry-form {
    border: 1px solid var(--pm-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
}

.pm-price-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    margin-bottom: 16px;
}

.pm-price-box div {
    padding: 24px 28px;
}

.pm-price-box div + div {
    border-left: 1px solid var(--pm-border);
}

.pm-price-box span {
    display: block;
    color: #8491a6;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: 6px;
}

.pm-price-box strong {
    display: block;
    color: #111827;
    font-size: 22px;
    line-height: 1.2;
}

.pm-price-box div:first-child strong {
    color: var(--pm-blue);
    font-size: 25px;
}

.pm-enquiry-form {
    padding: 24px;
}

.pm-enquiry-form h3 {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
}

.pm-enquiry-form label {
    display: block;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 13px;
}

.pm-enquiry-form input,
.pm-enquiry-form textarea {
    width: 100%;
    border: 1px solid var(--pm-border);
    border-radius: 9px;
    background: #fff;
    margin-top: 7px;
    padding: 12px 13px;
    color: #111827;
    font: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.pm-enquiry-form input {
    height: 42px;
}

.pm-enquiry-form input:focus,
.pm-enquiry-form textarea:focus,
.pm-filter-bar select:focus,
.pm-search-field input:focus {
    border-color: rgba(31, 109, 242, .55);
    box-shadow: 0 0 0 4px rgba(31, 109, 242, .08);
}

.pm-enquiry-form button {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: 9px;
    background: var(--pm-blue);
    color: #fff;
    cursor: pointer;
    font-weight: 800;
    transition: background .18s ease, transform .18s ease;
}

.pm-enquiry-form button:hover {
    background: var(--pm-blue-dark);
    transform: translateY(-1px);
}

.pm-enquiry-form.is-sending button {
    opacity: .65;
    pointer-events: none;
}

.pm-form-status {
    min-height: 18px;
    margin: 10px 0 0;
    color: #64748b;
    font-size: 13px;
}



.pm-detail-gallery-empty {
    height: auto;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pm-soft);
    border: 1px dashed var(--pm-border);
    border-radius: 12px;
    color: var(--pm-muted);
}

body.pm-photo-tour-open,
body.pm-lightbox-open {
    overflow: hidden;
}

.pm-photo-tour[hidden] {
    display: none !important;
}

.pm-photo-tour {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.pm-photo-tour__shade {
    position: absolute;
    inset: 0;
    background: rgba(8, 13, 24, .72);
}

.pm-photo-tour__dialog {
    position: relative;
    z-index: 1;
    width: min(1240px, calc(100vw - 72px));
    max-height: calc(100vh - 46px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .32);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pm-photo-tour__header {
    min-height: 86px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--pm-border);
}

.pm-photo-tour__header h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1;
    color: #0f172a;
}

.pm-photo-tour__close {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #52617a;
    cursor: pointer;
    font-size: 42px;
    line-height: 1;
    padding: 0;
}

.pm-photo-tour__body {
    padding: 32px;
    overflow: auto;
}

.pm-photo-tour__hero {
    margin: 0;
    height: min(62vh, 650px);
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #eef3fb;
}

.pm-photo-tour__hero img,
.pm-photo-tour__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pm-photo-tour__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 22px;
}

.pm-photo-tour__thumb {
    height: 300px;
    border: 0;
    border-radius: 10px;
    padding: 0;
    background: #eef3fb;
    cursor: pointer;
    overflow: hidden;
    appearance: none;
}

.pm-photo-tour__thumb.is-active {
    border-color: transparent;
}

.pm-photo-tour__thumb:hover img {
    transform: scale(1.03);
}

.pm-photo-tour__thumb img {
    transition: transform .35s ease;
}



.pm-photo-tour__hero {
    display: block;
    width: 100%;
    padding: 0;
    appearance: none;
    cursor: zoom-in;
}

.pm-photo-tour__hero:focus-visible,
.pm-gallery-lightbox-trigger:focus-visible,
.pm-photo-tour-trigger:focus-visible,
.pm-photo-tour__thumb:focus-visible,
.pm-lightbox__close:focus-visible,
.pm-lightbox__arrow:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, .12);
}

.pm-lightbox[hidden] {
    display: none !important;
}

.pm-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.pm-lightbox__shade {
    position: absolute;
    inset: 0;
    background: rgba(8, 13, 24, .90);
}

.pm-lightbox__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pm-lightbox__image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    border: 0;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .40);
    background: #fff;
}

.pm-lightbox__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .96);
    color: #0f172a;
    cursor: pointer;
    font-size: 38px;
    line-height: 1;
    padding: 0 0 4px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .25);
}

.pm-lightbox__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .96);
    color: #0f172a;
    cursor: pointer;
    font-size: 42px;
    line-height: 48px;
    padding: 0 0 5px;
    transform: translateY(-50%);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .25);
}

.pm-lightbox__arrow--prev {
    left: 12px;
}

.pm-lightbox__arrow--next {
    right: 12px;
}

.pm-lightbox__close:hover,
.pm-lightbox__arrow:hover {
    transform: translateY(-50%) scale(1.04);
}

.pm-lightbox__close:hover {
    transform: scale(1.04);
}

@media (max-width: 1400px) {
    .pm-properties-shell,
    .pm-single-shell {
        padding-left: 32px;
        padding-right: 32px;
    }

    .pm-card-image {
        height: 320px;
    }

    .pm-detail-gallery {
        height: 560px;
    }
}

@media (max-width: 1100px) {
    .pm-filter-bar {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 0;
    }

    .pm-search-field {
        grid-column: span 2;
    }

    .pm-properties-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pm-detail-layout {
        grid-template-columns: 1fr;
    }

    .pm-detail-sidebar {
        position: static;
    }
}

@media (max-width: 760px) {
    .pm-properties-shell,
    .pm-single-shell {
        padding: 24px 16px 46px;
    }

    .pm-filter-bar,
    .pm-properties-grid,
    .pm-properties-grid.is-list-view,
    .pm-properties-grid.is-list-view .pm-property-card,
    .pm-detail-gallery,
    .pm-detail-layout,
    .pm-price-box {
        grid-template-columns: 1fr;
    }

    .pm-filter-bar {
        gap: 10px;
        margin-bottom: 28px;
    }

    .pm-search-field {
        grid-column: auto;
    }

    .pm-card-image,
    .pm-properties-grid.is-list-view .pm-card-image {
        height: 250px;
    }

    .pm-card-body h3 {
        font-size: 21px;
    }

    .pm-card-price strong {
        font-size: 25px;
    }

    .pm-card-specs,
    .pm-detail-specs {
        gap: 14px;
        flex-wrap: wrap;
    }

    .pm-detail-gallery {
        height: auto;
    }

    .pm-detail-main-image {
        height: 320px;
        border-radius: 12px;
    }

    .pm-detail-thumbs {
        grid-template-columns: 1fr 1fr;
    }

    .pm-detail-thumbs button:not(.pm-see-more) {
        height: 145px;
        border-radius: 10px !important;
    }

    .pm-detail-content h1 {
        font-size: 32px;
    }

    .pm-price-box div + div {
        border-left: 0;
        border-top: 1px solid var(--pm-border);
    }
}


@media (max-width: 760px) {
    .pm-photo-tour {
        padding: 12px;
    }

    .pm-photo-tour__dialog {
        width: calc(100vw - 24px);
        max-height: calc(100vh - 24px);
        border-radius: 10px;
    }

    .pm-photo-tour__header {
        min-height: 68px;
        padding: 0 18px;
    }

    .pm-photo-tour__header h2 {
        font-size: 24px;
    }

    .pm-photo-tour__body {
        padding: 18px;
    }

    .pm-photo-tour__hero {
        height: 360px;
    }

    .pm-photo-tour__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pm-photo-tour__thumb {
        height: 220px;
    }

    .pm-lightbox {
        padding: 14px;
    }

    .pm-lightbox__close {
        top: 8px;
        right: 8px;
        width: 40px;
        height: 40px;
        font-size: 32px;
    }

    .pm-lightbox__arrow {
        width: 42px;
        height: 42px;
        font-size: 34px;
        line-height: 38px;
    }

    .pm-lightbox__arrow--prev {
        left: 8px;
    }

    .pm-lightbox__arrow--next {
        right: 8px;
    }

}

/* Homepage Featured Properties Slider */
.pm-featured-shell {
    --pm-featured-gap: 28px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--pm-text);
    max-width: 1760px;
    margin: 0 auto;
    padding: 42px 54px 48px;
    box-sizing: border-box;
}

.pm-featured-shell *,
.pm-featured-shell *::before,
.pm-featured-shell *::after {
    box-sizing: border-box;
}

.pm-featured-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.pm-featured-kicker {
    color: var(--pm-blue);
    font-size: 16px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pm-featured-head h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: #0f172a;
    font-size: clamp(34px, 3.2vw, 52px);
    line-height: .98;
    letter-spacing: -.045em;
}

.pm-featured-head p {
    margin: 10px 0 0;
    color: #64748b;
    font-size: clamp(17px, 1.2vw, 22px);
    line-height: 1.35;
}

.pm-featured-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex: 0 0 auto;
}

.pm-featured-nav,
.pm-featured-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.pm-featured-nav {
    width: 56px;
    border: 1px solid var(--pm-border);
    background: #fff;
    color: #0f172a;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
}

.pm-featured-nav.is-primary {
    border: 3px solid var(--pm-blue);
    color: #0f172a;
    box-shadow: none;
}

.pm-featured-view-all {
    min-width: 176px;
    padding: 0 30px;
    border: 0;
    background: var(--pm-blue);
    color: #fff;
    font-size: 22px;
    gap: 12px;
}

.pm-featured-nav:hover,
.pm-featured-view-all:hover {
    transform: translateY(-2px);
}

.pm-featured-view-all:hover {
    background: var(--pm-blue-dark);
    color: #fff;
}

.pm-featured-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.pm-featured-viewport::-webkit-scrollbar {
    display: none;
}

.pm-featured-track {
    display: flex;
    gap: var(--pm-featured-gap);
    align-items: stretch;
}

.pm-featured-card {
    flex: 0 0 calc((100% - (var(--pm-featured-gap) * 2)) / 3);
    min-width: 0;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--pm-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .12);
    transition: transform .2s ease, box-shadow .2s ease;
}

.pm-featured-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, .16);
}

.pm-featured-card-image {
    position: relative;
    display: block;
    height: 440px;
    overflow: hidden;
    background: #e8eef7;
    color: #fff;
    text-decoration: none;
}

.pm-featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .42s ease;
}

.pm-featured-card:hover .pm-featured-card-image img {
    transform: scale(1.045);
}

.pm-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, .06) 0%, rgba(15, 23, 42, .14) 48%, rgba(0, 0, 0, .72) 100%);
    z-index: 1;
    pointer-events: none;
}

.pm-featured-card-badges {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    pointer-events: none;
}

.pm-featured-badge,
.pm-featured-promoted {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    border-radius: 999px;
    padding: 6px 15px;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pm-featured-badge--green {
    background: var(--pm-green);
    color: #fff;
}

.pm-featured-badge--blue {
    background: var(--pm-blue);
    color: #fff;
}

.pm-featured-badge--orange {
    background: #f97316;
    color: #fff;
}

.pm-featured-promoted {
    margin-left: auto;
    background: rgba(255, 255, 255, .94);
    color: var(--pm-blue);
    box-shadow: 0 8px 18px rgba(15, 23, 42, .12);
}

.pm-featured-promoted span {
    font-size: 17px;
    line-height: 1;
}

.pm-featured-card-copy {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    display: block;
}

.pm-featured-card-copy strong {
    display: block;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(25px, 1.55vw, 31px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -.045em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .35);
}

.pm-featured-card-copy em {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    color: rgba(255, 255, 255, .90);
    font-style: normal;
    font-size: 16px;
    line-height: 1.3;
}

.pm-featured-card-foot {
    min-height: 98px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #fff;
}

.pm-featured-price strong {
    display: block;
    color: var(--pm-blue);
    font-size: 25px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.03em;
}

.pm-featured-price span {
    display: block;
    color: #64748b;
    margin-top: 8px;
    font-size: 17px;
    line-height: 1;
}

.pm-featured-specs {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    color: #5e708a;
    font-size: 16px;
    white-space: nowrap;
}

.pm-featured-specs span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pm-featured-specs i {
    color: #5c708b;
    font-style: normal;
    font-weight: 700;
}

.pm-featured-shell .pm-empty-state {
    flex: 0 0 100%;
}

@media (max-width: 1400px) {
    .pm-featured-shell {
        padding-left: 32px;
        padding-right: 32px;
    }

    .pm-featured-card-image {
        height: 360px;
    }
}

@media (max-width: 1100px) {
    .pm-featured-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .pm-featured-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .pm-featured-card {
        flex-basis: calc((100% - var(--pm-featured-gap)) / 2);
    }
}

@media (max-width: 760px) {
    .pm-featured-shell {
        padding: 28px 16px 38px;
    }

    .pm-featured-actions {
        gap: 10px;
        flex-wrap: wrap;
    }

    .pm-featured-nav,
    .pm-featured-view-all {
        height: 48px;
    }

    .pm-featured-nav {
        width: 48px;
        font-size: 25px;
    }

    .pm-featured-view-all {
        min-width: 136px;
        padding: 0 20px;
        font-size: 17px;
    }

    .pm-featured-card {
        flex-basis: 86%;
    }

    .pm-featured-card-image {
        height: 310px;
    }

    .pm-featured-card-foot {
        align-items: flex-start;
        flex-direction: column;
        min-height: 0;
    }

    .pm-featured-specs {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}
