/* Cities / destinations page */
body.nine-properties {
    --pm-cp-navy: #09233c;
    --pm-cp-muted: #667085;
    --pm-cp-border: #e7ebf0;
    --pm-cp-green: var(--nine-pm-brand-btn, #0abf53);
    --pm-cp-green-soft: #ecfdf5;
    --nine-site-header-height: 67px;
}

@media (max-width: 1199px) {
    body.nine-properties {
        --nine-site-header-height: 62px;
    }
}

body.nine-properties .nine-pm-cities-page {
    padding: calc(var(--nine-site-header-height, 67px) + 20px) 0 0;
    background: #f4f6f8;
}

body.nine-properties .nine-pm-cities-page__inner {
    max-width: var(--nine-pm-content-max, 1280px);
    margin: 0 auto;
    padding: 0 var(--nine-pm-content-gutter, 15px);
    box-sizing: border-box;
}

body.nine-properties .nine-pm-cities-page__toolbar {
    margin-bottom: 20px;
}

body.nine-properties .nine-pm-cities-page__toolbar > .nine-pm-cities-page__inner {
    padding: 20px 18px 18px;
    border: 1px solid var(--pm-cp-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 10px rgb(9 35 60 / 4%);
}

body.nine-properties .nine-pm-cities-page__toolbar-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--pm-cp-border);
}

body.nine-properties .nine-pm-cities-page__intro {
    min-width: 0;
}

body.nine-properties .nine-pm-cities-page__badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 3px 9px;
    border-radius: 999px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1d4ed8;
}

body.nine-properties .nine-pm-cities-page__title {
    margin: 0;
    font-size: clamp(24px, 3.2vw, 32px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--pm-cp-navy);
}

body.nine-properties .nine-pm-cities-page__subtitle {
    margin: 8px 0 0;
    max-width: 560px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--pm-cp-muted);
}

body.nine-properties .nine-pm-cities-page__toolbar-meta {
    display: inline-flex;
    align-items: stretch;
    max-width: 100%;
    border: 1px solid var(--pm-cp-border);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

body.nine-properties .nine-pm-cities-page__meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 88px;
    padding: 9px 14px;
    text-align: center;
}

body.nine-properties .nine-pm-cities-page__meta-item strong {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--pm-cp-navy);
}

body.nine-properties .nine-pm-cities-page__meta-item span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--pm-cp-muted);
}

body.nine-properties .nine-pm-cities-page__meta-divider {
    width: 1px;
    background: var(--pm-cp-border);
}

body.nine-properties .nine-pm-cities-page__filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

body.nine-properties .nine-pm-cities-page__filter-group-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--pm-cp-muted);
}

body.nine-properties .nine-pm-cities-page__pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
}

body.nine-properties .nine-pm-cities-page__pill {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid var(--pm-cp-border);
    border-radius: 999px;
    background: #fff;
    color: var(--pm-cp-navy);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

body.nine-properties .nine-pm-cities-page__pill:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

body.nine-properties .nine-pm-cities-page__pill.is-active {
    border-color: #93c5fd;
    background: #eff6ff;
    color: #1d4ed8;
}

body.nine-properties .nine-pm-cities-page__filter-group--controls {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 0;
}

body.nine-properties .nine-pm-cities-page__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 220px;
}

body.nine-properties .nine-pm-cities-page__field--search {
    flex: 1 1 280px;
}

body.nine-properties .nine-pm-cities-page__field-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--pm-cp-muted);
}

body.nine-properties .nine-pm-cities-page__input {
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid var(--pm-cp-border);
    border-radius: 10px;
    background: #fff;
    color: var(--pm-cp-navy);
    font-size: 14px;
}

body.nine-properties .nine-pm-cities-page__input:focus {
    outline: none;
    border-color: #93c5fd;
    box-shadow: 0 0 0 3px rgb(147 197 253 / 25%);
}

body.nine-properties .nine-pm-cities-page__filter-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

body.nine-properties .nine-pm-cities-page__apply {
    min-height: 40px;
    padding: 0 16px;
    border: 0;
    border-radius: 10px;
    background: var(--pm-cp-green);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

body.nine-properties .nine-pm-cities-page__clear {
    font-size: 13px;
    font-weight: 700;
    color: var(--pm-cp-muted);
    text-decoration: none;
}

body.nine-properties .nine-pm-cities-page__clear:hover {
    color: var(--pm-cp-navy);
}

body.nine-properties .nine-pm-cities-page__main {
    margin-bottom: 20px;
}

body.nine-properties .nine-pm-cities-page__results-head {
    margin-bottom: 14px;
}

body.nine-properties .nine-pm-cities-page__results-count {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--pm-cp-navy);
}

body.nine-properties .nine-pm-cities-page__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

body.nine-properties .nine-pm-cities-page-card {
    min-width: 0;
}

body.nine-properties .nine-pm-cities-page-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--pm-cp-border);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 2px 10px rgb(9 35 60 / 5%);
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}

body.nine-properties .nine-pm-cities-page-card__link:hover {
    box-shadow: 0 8px 22px rgb(9 35 60 / 10%);
    transform: translateY(-2px);
}

body.nine-properties .nine-pm-cities-page-card__media {
    position: relative;
    height: 168px;
    overflow: hidden;
    background: #e5e7eb;
}

body.nine-properties .nine-pm-cities-page-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.nine-properties .nine-pm-cities-page-card__region {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgb(255 255 255 / 92%);
    border: 1px solid rgb(255 255 255 / 80%);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--pm-cp-navy);
}

body.nine-properties .nine-pm-cities-page-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 12px;
    padding: 14px 14px 16px;
}

body.nine-properties .nine-pm-cities-page-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

body.nine-properties .nine-pm-cities-page-card__location {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
}

body.nine-properties .nine-pm-cities-page-card__flag-wrap {
    flex: 0 0 22px;
    width: 22px;
    height: 16px;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgb(0 0 0 / 8%);
}

body.nine-properties .nine-pm-cities-page-card__flag {
    display: block;
    width: 22px;
    height: 16px;
    background-size: cover;
}

body.nine-properties .nine-pm-cities-page-card__names {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

body.nine-properties .nine-pm-cities-page-card__city {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--pm-cp-navy);
}

body.nine-properties .nine-pm-cities-page-card__country {
    font-size: 12px;
    color: var(--pm-cp-muted);
}

body.nine-properties .nine-pm-cities-page-card__rate {
    flex: 0 0 auto;
    text-align: right;
}

body.nine-properties .nine-pm-cities-page-card__rate span {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--pm-cp-muted);
}

body.nine-properties .nine-pm-cities-page-card__rate strong {
    display: block;
    margin-top: 2px;
    font-size: 15px;
    color: #047857;
}

body.nine-properties .nine-pm-cities-page-card__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

body.nine-properties .nine-pm-cities-page-card__meta-item {
    padding: 8px 10px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid var(--pm-cp-border);
}

body.nine-properties .nine-pm-cities-page-card__meta-item span {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--pm-cp-muted);
}

body.nine-properties .nine-pm-cities-page-card__meta-item strong {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.35;
    color: var(--pm-cp-navy);
}

body.nine-properties .nine-pm-cities-page-card__cta {
    margin-top: auto;
    font-size: 13px;
    font-weight: 700;
    color: var(--pm-cp-green);
}

body.nine-properties .nine-pm-cities-page__empty {
    padding: 36px 24px;
    border: 1px dashed var(--pm-cp-border);
    border-radius: 16px;
    background: #fff;
    text-align: center;
}

body.nine-properties .nine-pm-cities-page__empty h2 {
    margin: 0 0 8px;
    font-size: 20px;
    color: var(--pm-cp-navy);
}

body.nine-properties .nine-pm-cities-page__empty p {
    margin: 0;
    color: var(--pm-cp-muted);
}

body.nine-properties .nine-pm-cities-page__empty-cta {
    display: inline-flex;
    margin-top: 16px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--pm-cp-green);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

body.nine-properties .nine-pm-cities-page__cta-band {
    padding: 0 0 48px;
}

body.nine-properties .nine-pm-cities-page__cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    border: 1px solid var(--pm-cp-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 18px rgb(9 35 60 / 6%);
}

body.nine-properties .nine-pm-cities-page__cta-inner h2 {
    margin: 0 0 6px;
    font-size: 22px;
    color: var(--pm-cp-navy);
}

body.nine-properties .nine-pm-cities-page__cta-inner p {
    margin: 0;
    color: var(--pm-cp-muted);
}

body.nine-properties .nine-pm-cities-page__cta-button {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--pm-cp-green);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 991px) {
    body.nine-properties .nine-pm-cities-page__toolbar-top {
        flex-direction: column;
    }

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

@media (max-width: 767px) {
    body.nine-properties .nine-pm-cities-page__grid {
        grid-template-columns: 1fr;
    }

    body.nine-properties .nine-pm-cities-page__filter-group--controls {
        flex-direction: column;
        align-items: stretch;
    }

    body.nine-properties .nine-pm-cities-page__field,
    body.nine-properties .nine-pm-cities-page__field--search {
        width: 100%;
        min-width: 0;
    }

    body.nine-properties .nine-pm-cities-page__cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (min-width: 1200px) {
    body.nine-properties .nine-pm-cities-page__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Destination detail page */
body.nine-properties .nine-pm-destination-detail {
    padding-bottom: 0;
}

body.nine-properties .nine-pm-destination-detail__panel {
    padding: 20px 18px 22px;
    border: 1px solid var(--pm-cp-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 10px rgb(9 35 60 / 4%);
    box-sizing: border-box;
}

body.nine-properties .nine-pm-destination-detail__hero {
    margin-bottom: 16px;
}

body.nine-properties .nine-pm-destination-detail__split {
    margin-bottom: 16px;
}

body.nine-properties .nine-pm-destination-detail__split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 16px;
    align-items: stretch;
}

body.nine-properties .nine-pm-destination-detail__highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

body.nine-properties .nine-pm-destination-detail__highlights-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.nine-properties .nine-pm-destination-detail__highlights-list li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--pm-cp-navy);
}

body.nine-properties .nine-pm-destination-detail__highlights-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pm-cp-green);
    transform: translateY(-50%);
}

body.nine-properties .nine-pm-destination-detail__hub-summary {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid var(--pm-cp-border);
}

body.nine-properties .nine-pm-destination-detail__hub-summary span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--pm-cp-muted);
}

body.nine-properties .nine-pm-destination-detail__hub-summary strong {
    font-size: 14px;
    line-height: 1.35;
    color: var(--pm-cp-navy);
}

body.nine-properties .nine-pm-destination-detail__inline-empty {
    padding: 18px 16px;
    border: 1px dashed var(--pm-cp-border);
    border-radius: 12px;
    background: #f8fafc;
    text-align: center;
}

body.nine-properties .nine-pm-destination-detail__inline-empty p {
    margin: 0;
    font-size: 14px;
    color: var(--pm-cp-muted);
}

body.nine-properties .nine-pm-destination-detail__inline-empty .nine-pm-cities-page__empty-cta {
    margin-top: 12px;
}

body.nine-properties .nine-pm-destination-detail__section-head--row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

body.nine-properties .nine-pm-destination-detail__section-link {
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 700;
    color: var(--pm-cp-green);
    text-decoration: none;
    white-space: nowrap;
}

body.nine-properties .nine-pm-destination-detail__section-link:hover {
    text-decoration: underline;
}

body.nine-properties .nine-pm-destination-detail__section--related {
    margin-bottom: 16px;
}

body.nine-properties .nine-pm-destination-detail__related-grid {
    margin-top: 0;
}

body.nine-properties .nine-pm-destination-detail__cta-band {
    padding-bottom: 48px;
}

body.nine-properties .nine-pm-destination-detail__back {
    display: inline-flex;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--pm-cp-muted);
    text-decoration: none;
}

body.nine-properties .nine-pm-destination-detail__back:hover {
    color: var(--pm-cp-navy);
}

body.nine-properties .nine-pm-destination-detail__hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: 24px;
    align-items: start;
}

body.nine-properties .nine-pm-destination-detail__location {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

body.nine-properties .nine-pm-destination-detail__region {
    display: inline-flex;
    margin-bottom: 6px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1d4ed8;
}

body.nine-properties .nine-pm-destination-detail__title {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--pm-cp-navy);
}

body.nine-properties .nine-pm-destination-detail__hubs {
    margin: 6px 0 0;
    font-size: 14px;
    color: var(--pm-cp-muted);
}

body.nine-properties .nine-pm-destination-detail__note {
    margin: 16px 0 0;
    max-width: 620px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--pm-cp-muted);
}

body.nine-properties .nine-pm-destination-detail__hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

body.nine-properties .nine-pm-destination-detail__hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

body.nine-properties .nine-pm-destination-detail__secondary-cta {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 4px;
    font-size: 14px;
    font-weight: 700;
    color: var(--pm-cp-green);
    text-decoration: none;
}

body.nine-properties .nine-pm-destination-detail__hero-media {
    overflow: hidden;
    border-radius: 14px;
    background: #e5e7eb;
}

body.nine-properties .nine-pm-destination-detail__hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

body.nine-properties .nine-pm-destination-detail__section {
    margin-bottom: 16px;
}

body.nine-properties .nine-pm-destination-detail__section--shipments {
    margin-bottom: 16px;
}

body.nine-properties .nine-pm-destination-detail__section-head {
    margin-bottom: 14px;
}

body.nine-properties .nine-pm-destination-detail__section-head h2 {
    margin: 0 0 6px;
    font-size: 22px;
    color: var(--pm-cp-navy);
}

body.nine-properties .nine-pm-destination-detail__section-head p {
    margin: 0;
    font-size: 14px;
    color: var(--pm-cp-muted);
}

body.nine-properties .nine-pm-destination-detail__pickup-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

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

body.nine-properties .nine-pm-destination-detail__pickup-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid var(--pm-cp-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 2px 10px rgb(9 35 60 / 4%);
}

body.nine-properties .nine-pm-destination-detail__pickup-card strong {
    font-size: 16px;
    color: var(--pm-cp-navy);
}

body.nine-properties .nine-pm-destination-detail__pickup-card span {
    font-size: 13px;
    line-height: 1.4;
    color: var(--pm-cp-muted);
}

body.nine-properties .nine-pm-destination-detail__pickup-hub {
    font-size: 11px !important;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1d4ed8 !important;
}

body.nine-properties .nine-pm-destination-detail__shipments-grid {
    --pm-destination-shipment-media-height: 200px;
    --pm-destination-shipment-foot-height: 88px;

    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 360px));
    gap: 16px;
    margin-top: 4px;
    justify-content: start;
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card {
    min-height: 0;
    height: auto;
    border-radius: 14px;
    overflow: hidden;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid var(--pm-cp-border);
    box-shadow: 0 2px 10px rgb(9 35 60 / 5%);
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card:hover {
    box-shadow: 0 8px 22px rgb(9 35 60 / 10%);
    transform: translateY(-2px);
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card__link {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    padding: 0;
    text-decoration: none;
    color: inherit;
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card__media {
    position: relative;
    height: var(--pm-destination-shipment-media-height);
    overflow: hidden;
    background: #e5e7eb;
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card__media-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgb(0 0 0 / 62%) 0%,
        rgb(0 0 0 / 18%) 42%,
        rgb(0 0 0 / 0%) 100%
    );
    pointer-events: none;
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card__fill-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgb(220 38 38 / 92%);
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card__media-top {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    box-sizing: border-box;
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card__flag-wrap {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 35%);
    background: #fff;
    box-shadow: 0 1px 4px rgb(0 0 0 / 18%);
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card__flag {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card__location {
    min-width: 0;
    flex: 1 1 auto;
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card__city {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgb(0 0 0 / 35%);
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card__country {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 2px;
    font-size: 11px;
    line-height: 1.2;
    color: rgb(255 255 255 / 88%);
    text-shadow: 0 1px 2px rgb(0 0 0 / 30%);
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card__foot {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: var(--pm-destination-shipment-foot-height);
    padding: 10px 12px 12px;
    box-sizing: border-box;
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card__date {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--pm-cp-navy);
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card__id {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 10px;
    line-height: 1.3;
    color: var(--pm-cp-muted);
    letter-spacing: 0.01em;
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card__capacity-label {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 2px;
    font-size: 10px;
    line-height: 1.3;
    color: var(--pm-cp-muted);
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card__capacity-value {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--pm-cp-navy);
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card__progress {
    position: relative;
    height: 7px;
    border-radius: 999px;
    background: #ececec;
    overflow: hidden;
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card__progress-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #22c55e;
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card--filling-fast .pm-shipment-card__progress-fill {
    background: #f59e0b;
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card__join {
    margin-top: 2px;
    font-size: 13px;
    font-weight: 700;
    color: var(--pm-cp-green);
}

body.nine-properties .nine-pm-destination-detail .pm-shipment-card__link:hover .pm-shipment-card__join {
    text-decoration: underline;
}

@media (max-width: 991px) {
    body.nine-properties .nine-pm-destination-detail__hero-grid {
        grid-template-columns: 1fr;
    }

    body.nine-properties .nine-pm-destination-detail__hero-meta {
        grid-template-columns: 1fr;
    }

    body.nine-properties .nine-pm-destination-detail__split-grid {
        grid-template-columns: 1fr;
    }

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

    body.nine-properties .nine-pm-destination-detail__shipments-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    body.nine-properties .nine-pm-destination-detail__section-head--row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    body.nine-properties .nine-pm-destination-detail__split .nine-pm-destination-detail__pickup-grid {
        grid-template-columns: 1fr;
    }

    body.nine-properties .nine-pm-destination-detail__shipments-grid {
        grid-template-columns: 1fr;
        --pm-destination-shipment-media-height: 180px;
    }
}

/* Listing pages — recent deliveries + collection points */
body.nine-properties .nine-pm-listing-page__deliveries-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

body.nine-properties .nine-pm-recent-delivery-page-card {
    min-width: 0;
}

body.nine-properties .nine-pm-recent-delivery-page-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--pm-cp-border);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 2px 10px rgb(9 35 60 / 5%);
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}

body.nine-properties .nine-pm-recent-delivery-page-card__link:hover {
    box-shadow: 0 8px 22px rgb(9 35 60 / 10%);
    transform: translateY(-2px);
}

body.nine-properties .nine-pm-recent-delivery-page-card__banner {
    position: relative;
    height: 140px;
    overflow: hidden;
    background: #e5e7eb;
}

body.nine-properties .nine-pm-recent-delivery-page-card__banner-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.nine-properties .nine-pm-recent-delivery-page-card__banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 4px;
    padding: 14px;
    background: linear-gradient(180deg, rgb(0 0 0 / 10%) 0%, rgb(0 0 0 / 72%) 100%);
}

body.nine-properties .nine-pm-recent-delivery-page-card__status {
    align-self: flex-start;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgb(34 197 94 / 92%);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
}

body.nine-properties .nine-pm-recent-delivery-page-card__route {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 16px;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 1px 3px rgb(0 0 0 / 35%);
}

body.nine-properties .nine-pm-recent-delivery-page-card__flag {
    width: 18px;
    height: 13px;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgb(255 255 255 / 25%);
}

body.nine-properties .nine-pm-recent-delivery-page-card__ref {
    font-size: 11px;
    color: rgb(255 255 255 / 88%);
}

body.nine-properties .nine-pm-recent-delivery-page-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
}

body.nine-properties .nine-pm-recent-delivery-page-card__timeline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 8px;
    align-items: center;
}

body.nine-properties .nine-pm-recent-delivery-page-card__node {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

body.nine-properties .nine-pm-recent-delivery-page-card__node span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--pm-cp-muted);
}

body.nine-properties .nine-pm-recent-delivery-page-card__node strong {
    font-size: 12px;
    color: var(--pm-cp-navy);
}

body.nine-properties .nine-pm-recent-delivery-page-card__track {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding-top: 14px;
}

body.nine-properties .nine-pm-recent-delivery-page-card__track-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #d1fae5;
}

body.nine-properties .nine-pm-recent-delivery-page-card__track-badge {
    position: absolute;
    top: 0;
    padding: 2px 7px;
    border-radius: 999px;
    background: #ecfdf5;
    border: 1px solid #86efac;
    font-size: 10px;
    font-weight: 700;
    color: #047857;
    white-space: nowrap;
}

body.nine-properties .nine-pm-recent-delivery-page-card__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

body.nine-properties .nine-pm-recent-delivery-page-card__metrics > div {
    padding: 8px 10px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid var(--pm-cp-border);
}

body.nine-properties .nine-pm-recent-delivery-page-card__metrics span {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--pm-cp-muted);
}

body.nine-properties .nine-pm-recent-delivery-page-card__metrics strong {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--pm-cp-navy);
}

body.nine-properties .nine-pm-listing-page__points-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

body.nine-properties .nine-pm-collection-point-page-card {
    min-width: 0;
}

body.nine-properties .nine-pm-collection-point-page-card__link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    height: 100%;
    padding: 16px;
    border: 1px solid var(--pm-cp-border);
    border-radius: 14px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 2px 10px rgb(9 35 60 / 4%);
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}

body.nine-properties .nine-pm-collection-point-page-card__link:hover {
    box-shadow: 0 8px 22px rgb(9 35 60 / 10%);
    transform: translateY(-2px);
}

body.nine-properties .nine-pm-collection-point-page-card__flag-wrap {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgb(0 0 0 / 8%);
}

body.nine-properties .nine-pm-collection-point-page-card__flag {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
}

body.nine-properties .nine-pm-collection-point-page-card__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

body.nine-properties .nine-pm-collection-point-page-card__text strong {
    font-size: 16px;
    line-height: 1.25;
    color: var(--pm-cp-navy);
}

body.nine-properties .nine-pm-collection-point-page-card__text span {
    font-size: 13px;
    line-height: 1.35;
    color: var(--pm-cp-muted);
}

body.nine-properties .nine-pm-collection-point-page-card__hub {
    font-size: 11px !important;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1d4ed8 !important;
}

@media (max-width: 991px) {
    body.nine-properties .nine-pm-listing-page__deliveries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 767px) {
    body.nine-properties .nine-pm-listing-page__deliveries-grid {
        grid-template-columns: 1fr;
    }

    body.nine-properties .nine-pm-recent-delivery-page-card__metrics {
        grid-template-columns: 1fr;
    }

    body.nine-properties .nine-pm-listing-page__points-grid {
        grid-template-columns: 1fr;
    }
}

body.nine-properties .nine-pm-recent-deliveries-page .nine-pm-cities-page__toolbar-meta {
    display: inline-flex;
    align-items: stretch;
    max-width: 100%;
    overflow: hidden;
}

@media (max-width: 991px) {
    body.nine-properties .nine-pm-recent-deliveries-page .nine-pm-cities-page__toolbar-meta {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    body.nine-properties .nine-pm-recent-deliveries-page .nine-pm-shipments-page__meta-item--date {
        width: 100%;
    }
}
