/* Shipments listing page */
body.nine-properties {
    --pm-sp-navy: #09233c;
    --pm-sp-muted: #667085;
    --pm-sp-border: #e7ebf0;
    --pm-sp-green: var(--nine-pm-brand-btn, #0abf53);
    --pm-sp-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-shipments-page {
    padding: calc(var(--nine-site-header-height, 67px) + 20px) 0 0;
    background: #f4f6f8;
}

body.nine-properties .nine-pm-shipments-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;
}

/* Unified toolbar */
body.nine-properties .nine-pm-shipments-page__toolbar {
    margin-bottom: 20px;
}

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

body.nine-properties .nine-pm-shipments-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-sp-border);
}

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

body.nine-properties .nine-pm-shipments-page__live-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--pm-sp-green-soft);
    border: 1px solid #bbf7d0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #047857;
}

body.nine-properties .nine-pm-shipments-page__live-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgb(34 197 94 / 55%);
    animation: pm-system-feedback-pulse 2.2s ease-out infinite;
}

body.nine-properties .nine-pm-shipments-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-sp-navy);
}

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

body.nine-properties .nine-pm-shipments-page__toolbar-aside {
    flex: 0 0 auto;
}

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

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

body.nine-properties .nine-pm-shipments-page__meta-item strong {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--pm-sp-navy);
}

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

body.nine-properties .nine-pm-shipments-page__meta-divider {
    width: 1px;
    background: var(--pm-sp-border);
    flex: 0 0 1px;
}

body.nine-properties .nine-pm-shipments-page__meta-item--date {
    min-width: 0;
    padding-inline: 12px;
    background: linear-gradient(180deg, rgb(10 191 83 / 6%) 0%, rgb(10 191 83 / 2%) 100%);
}

body.nine-properties .nine-pm-shipments-page__date-nav-controls {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

body.nine-properties .nine-pm-shipments-page__date-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--pm-sp-navy);
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

body.nine-properties .nine-pm-shipments-page__date-nav-btn:hover:not(.is-disabled) {
    background: rgb(10 191 83 / 12%);
    color: #047857;
}

body.nine-properties .nine-pm-shipments-page__date-nav-btn.is-disabled {
    opacity: 0.3;
    pointer-events: none;
}

body.nine-properties .nine-pm-shipments-page__input--date {
    width: 118px;
    min-height: 26px;
    padding: 0 6px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--pm-sp-navy);
    font-size: 13px;
    font-weight: 700;
}

body.nine-properties .nine-pm-shipments-page__input--date:focus {
    outline: none;
    box-shadow: inset 0 0 0 1px rgb(10 191 83 / 35%);
    background: rgb(255 255 255 / 72%);
}

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

body.nine-properties .nine-pm-shipments-page__filter-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
}

body.nine-properties .nine-pm-shipments-page__filter-group-label {
    flex: 0 0 auto;
    min-width: 72px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--pm-sp-muted);
}

body.nine-properties .nine-pm-shipments-page__pills {
    display: flex;
    flex: 1 1 auto;
    gap: 8px;
    overflow-x: auto;
    min-width: 0;
    padding-bottom: 2px;
}

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

body.nine-properties .nine-pm-shipments-page__pill:hover,
body.nine-properties .nine-pm-shipments-page__pill.is-active {
    border-color: var(--pm-sp-green);
    background: var(--pm-sp-green-soft);
    color: #047857;
}

body.nine-properties .nine-pm-shipments-page__filter-group--controls {
    align-items: flex-end;
}

body.nine-properties .nine-pm-shipments-page__field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 140px;
}

body.nine-properties .nine-pm-shipments-page__field--search {
    flex: 1 1 200px;
    min-width: 180px;
}

body.nine-properties .nine-pm-shipments-page__field-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--pm-sp-muted);
}

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

body.nine-properties .nine-pm-shipments-page__select:focus,
body.nine-properties .nine-pm-shipments-page__input:focus {
    outline: none;
    border-color: var(--pm-sp-green);
    box-shadow: 0 0 0 3px rgb(10 191 83 / 12%);
}

body.nine-properties .nine-pm-shipments-page__filter-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

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

body.nine-properties .nine-pm-shipments-page__apply:hover {
    background: #089a45;
}

body.nine-properties .nine-pm-shipments-page__clear {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--pm-sp-muted);
    text-decoration: none;
}

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

body.nine-properties .nine-pm-shipments-page__main {
    padding: 0 0 36px;
}

body.nine-properties .nine-pm-shipments-page__results-head {
    margin-bottom: 12px;
}

body.nine-properties .nine-pm-shipments-page__results-count {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--pm-sp-muted);
}

body.nine-properties .nine-pm-shipments-page__empty {
    padding: 48px 24px;
    border: 1px dashed var(--pm-sp-border);
    border-radius: 14px;
    background: #fff;
    text-align: center;
}

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

body.nine-properties .nine-pm-shipments-page__empty p {
    margin: 0;
    font-size: 14px;
    color: var(--pm-sp-muted);
}

body.nine-properties .nine-pm-shipments-page__empty-cta {
    display: inline-flex;
    margin-top: 16px;
    min-height: 40px;
    align-items: center;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--pm-sp-green);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

body.nine-properties .nine-pm-shipments-spotlight {
    display: grid;
    grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
    align-items: start;
    gap: 20px;
    margin-bottom: 20px;
    padding: 16px;
    border: 1px solid var(--pm-sp-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 14px rgb(9 35 60 / 5%);
}

body.nine-properties .nine-pm-shipments-spotlight--hot {
    border-color: #fed7aa;
    background: linear-gradient(180deg, #fff 0%, rgb(255 247 237 / 45%) 100%);
}

body.nine-properties .nine-pm-shipments-spotlight__media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--pm-sp-border);
    padding: 12px;
}

body.nine-properties .nine-pm-shipments-spotlight__media img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

body.nine-properties .nine-pm-shipments-spotlight-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

body.nine-properties .nine-pm-shipments-spotlight-wrap .nine-pm-shipments-spotlight {
    margin-bottom: 0;
}

body.nine-properties .nine-pm-shipments-route-calendar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body.nine-properties .nine-pm-shipments-route-calendar__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

body.nine-properties .nine-pm-shipments-route-calendar__title {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--pm-sp-muted);
}

body.nine-properties .nine-pm-shipments-route-calendar__nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.nine-properties .nine-pm-shipments-route-calendar__nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--pm-sp-border);
    border-radius: 999px;
    background: #fff;
    color: var(--pm-sp-navy);
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
}

body.nine-properties .nine-pm-shipments-route-calendar__nav-btn:hover:not(:disabled) {
    border-color: #cbd5e1;
    background: #f8fafc;
}

body.nine-properties .nine-pm-shipments-route-calendar__nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

body.nine-properties .nine-pm-shipments-route-calendar__month {
    margin: 0;
    min-width: 108px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--pm-sp-navy);
}

body.nine-properties .nine-pm-shipments-route-calendar__grid {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

body.nine-properties .nine-pm-shipments-route-calendar__weekdays,
body.nine-properties .nine-pm-shipments-route-calendar__week {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
}

body.nine-properties .nine-pm-shipments-route-calendar__weekdays span {
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--pm-sp-muted);
}

body.nine-properties .nine-pm-shipments-route-calendar__day {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    border: 0;
    padding: 0;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    background: transparent;
}

body.nine-properties .nine-pm-shipments-route-calendar__day.is-empty {
    visibility: hidden;
}

body.nine-properties .nine-pm-shipments-route-calendar__day.is-today .nine-pm-shipments-route-calendar__day-num {
    box-shadow: inset 0 0 0 1px #94a3b8;
}

body.nine-properties .nine-pm-shipments-route-calendar__day.is-dispatch {
    cursor: pointer;
}

body.nine-properties .nine-pm-shipments-route-calendar__day.is-dispatch:hover {
    background: #f1f5f9;
}

body.nine-properties .nine-pm-shipments-route-calendar__day.is-dispatch.is-planned .nine-pm-shipments-route-calendar__day-num::after,
body.nine-properties .nine-pm-shipments-route-calendar__day.is-dispatch.is-booked .nine-pm-shipments-route-calendar__day-num::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    margin: 2px auto 0;
    border-radius: 999px;
}

body.nine-properties .nine-pm-shipments-route-calendar__day.is-dispatch.is-planned .nine-pm-shipments-route-calendar__day-num::after {
    background: #22c55e;
}

body.nine-properties .nine-pm-shipments-route-calendar__day.is-dispatch.is-booked .nine-pm-shipments-route-calendar__day-num::after {
    background: #3b82f6;
}

body.nine-properties .nine-pm-shipments-route-calendar__day.is-active {
    background: #fff7ed;
    color: #c2410c;
    box-shadow: inset 0 0 0 2px #fb923c;
}

body.nine-properties .nine-pm-shipments-route-calendar__day.is-active .nine-pm-shipments-route-calendar__day-num::after {
    display: none;
}

body.nine-properties .nine-pm-shipments-route-calendar__day-num {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    min-height: 24px;
    border-radius: 999px;
    line-height: 1.1;
}

body.nine-properties .nine-pm-shipments-route-calendar__legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 2px;
    padding-top: 0;
}

body.nine-properties .nine-pm-shipments-route-calendar__legend-item {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

body.nine-properties .nine-pm-shipments-route-calendar__legend-item.is-planned {
    background: #22c55e;
}

body.nine-properties .nine-pm-shipments-route-calendar__legend-item.is-booked {
    background: #3b82f6;
}

body.nine-properties .nine-pm-shipments-route-calendar__legend-item.is-active {
    background: #fff7ed;
    box-shadow: inset 0 0 0 2px #fb923c;
}

body.nine-properties .nine-pm-shipments-route-schedule {
    padding: 14px 16px;
    border: 1px solid var(--pm-sp-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 14px rgb(9 35 60 / 5%);
}

body.nine-properties .nine-pm-shipments-route-schedule__head {
    margin-bottom: 12px;
}

body.nine-properties .nine-pm-shipments-route-schedule__title {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--pm-sp-navy);
}

body.nine-properties .nine-pm-shipments-route-schedule__cards {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
}

body.nine-properties .nine-pm-shipments-route-schedule__card {
    flex: 0 0 210px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--pm-sp-border);
    background: #f8fafc;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

body.nine-properties .nine-pm-shipments-route-schedule__card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgb(9 35 60 / 6%);
}

body.nine-properties .nine-pm-shipments-route-schedule__card.is-active,
body.nine-properties .nine-pm-shipments-route-schedule__card--selected {
    border-color: #fdba74;
    background: linear-gradient(180deg, #fff 0%, rgb(255 247 237 / 55%) 100%);
    box-shadow: 0 0 0 1px rgb(251 146 60 / 35%);
}

body.nine-properties .nine-pm-shipments-route-schedule__card--booked {
    border-color: #bfdbfe;
    background: #f8fbff;
}

body.nine-properties .nine-pm-shipments-route-schedule__card--planned {
    border-color: #bbf7d0;
    background: #f0fdf4;
}

body.nine-properties .nine-pm-shipments-route-schedule__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

body.nine-properties .nine-pm-shipments-route-schedule__status {
    padding: 2px 8px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--pm-sp-border);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--pm-sp-navy);
}

body.nine-properties .nine-pm-shipments-route-schedule__card--selected .nine-pm-shipments-route-schedule__status {
    border-color: #fdba74;
    color: #c2410c;
}

body.nine-properties .nine-pm-shipments-route-schedule__card--booked .nine-pm-shipments-route-schedule__status {
    border-color: #93c5fd;
    color: #1d4ed8;
}

body.nine-properties .nine-pm-shipments-route-schedule__card--planned .nine-pm-shipments-route-schedule__status {
    border-color: #86efac;
    color: #047857;
}

body.nine-properties .nine-pm-shipments-route-schedule__day {
    font-size: 11px;
    font-weight: 700;
    color: var(--pm-sp-muted);
}

body.nine-properties .nine-pm-shipments-route-schedule__date {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: var(--pm-sp-navy);
}

body.nine-properties .nine-pm-shipments-route-schedule__meta {
    margin: 0;
    font-size: 12px;
    color: var(--pm-sp-muted);
}

body.nine-properties .nine-pm-shipments-route-schedule__progress {
    display: block;
    height: 5px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

body.nine-properties .nine-pm-shipments-route-schedule__progress-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #0abf53 0%, #22c55e 100%);
}

body.nine-properties .nine-pm-shipments-route-schedule__card--selected .nine-pm-shipments-route-schedule__progress-fill {
    background: linear-gradient(90deg, #f97316 0%, #ef4444 100%);
}

body.nine-properties .nine-pm-shipments-route-schedule__link {
    margin-top: auto;
    font-size: 11px;
    font-weight: 700;
    color: var(--pm-sp-navy);
    text-decoration: none;
}

body.nine-properties .nine-pm-shipments-route-schedule__link:hover {
    color: var(--pm-sp-green);
}

body.nine-properties .nine-pm-shipments-spotlight__badge {
    flex: 0 0 auto;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgb(255 247 237 / 95%);
    border: 1px solid #fed7aa;
    font-size: 11px;
    font-weight: 700;
    color: #c2410c;
    white-space: nowrap;
}

body.nine-properties .nine-pm-shipments-spotlight__body-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
}

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

body.nine-properties .nine-pm-shipments-spotlight__hero-copy {
    flex: 1 1 auto;
    min-width: 0;
}

body.nine-properties .nine-pm-shipments-spotlight__hero-row .nine-pm-shipments-spotlight__cta {
    flex: 0 0 auto;
    margin-top: 4px;
    white-space: nowrap;
}

body.nine-properties .nine-pm-shipments-spotlight__body-head .nine-pm-shipments-spotlight__eyebrow {
    margin: 0;
}

body.nine-properties .nine-pm-shipments-spotlight__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

body.nine-properties .nine-pm-shipments-spotlight__eyebrow {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--pm-sp-muted);
}

body.nine-properties .nine-pm-shipments-spotlight__route {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--pm-sp-navy);
}

body.nine-properties .nine-pm-shipments-spotlight__country {
    margin: -4px 0 0;
    font-size: 13px;
    color: var(--pm-sp-muted);
}

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

body.nine-properties .nine-pm-shipments-spotlight__metric {
    padding: 10px 12px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid var(--pm-sp-border);
}

body.nine-properties .nine-pm-shipments-spotlight__metric span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--pm-sp-muted);
}

body.nine-properties .nine-pm-shipments-spotlight__metric strong {
    display: block;
    margin-top: 4px;
    font-size: 15px;
    color: var(--pm-sp-navy);
}

body.nine-properties .nine-pm-shipments-spotlight__capacity {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--pm-sp-muted);
}

body.nine-properties .nine-pm-shipments-spotlight__progress {
    display: block;
    height: 6px;
    border-radius: 999px;
    background: #eef1f4;
    overflow: hidden;
}

body.nine-properties .nine-pm-shipments-spotlight__progress-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #0abf53 0%, #22c55e 100%);
}

body.nine-properties .nine-pm-shipments-spotlight--hot .nine-pm-shipments-spotlight__progress-fill {
    background: linear-gradient(90deg, #f97316 0%, #ef4444 100%);
}

body.nine-properties .nine-pm-shipments-spotlight__cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--pm-sp-green);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

body.nine-properties .nine-pm-shipments-spotlight__cta:hover {
    background: #089a45;
    color: #fff;
}

body.nine-properties .nine-pm-shipments-page .nine-pm-all-shipments__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

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

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

body.nine-properties .nine-pm-shipments-page__cta-inner h2 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 800;
    color: var(--pm-sp-navy);
}

body.nine-properties .nine-pm-shipments-page__cta-inner p {
    margin: 0;
    max-width: 560px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--pm-sp-muted);
}

body.nine-properties .nine-pm-shipments-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-sp-green);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

body.nine-properties .nine-pm-shipments-page__cta-button:hover {
    background: #089a45;
    color: #fff;
}

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

    body.nine-properties .nine-pm-shipments-page__toolbar-aside {
        width: 100%;
    }

    body.nine-properties .nine-pm-shipments-page__toolbar-meta {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    body.nine-properties .nine-pm-shipments-page__meta-divider {
        display: none;
    }

    body.nine-properties .nine-pm-shipments-page__meta-item {
        flex: 1 1 33%;
        min-width: 92px;
        border-top: 1px solid var(--pm-sp-border);
    }

    body.nine-properties .nine-pm-shipments-page__meta-item:nth-child(-n + 3) {
        border-top: 0;
    }

    body.nine-properties .nine-pm-shipments-page__meta-item--date {
        flex: 1 1 100%;
        border-top: 1px solid var(--pm-sp-border);
    }

    body.nine-properties .nine-pm-shipments-page__date-nav-controls {
        width: 100%;
        max-width: 280px;
    }

    body.nine-properties .nine-pm-shipments-page__input--date {
        flex: 1 1 auto;
        width: auto;
        min-width: 0;
    }

    body.nine-properties .nine-pm-shipments-spotlight {
        grid-template-columns: 1fr;
    }

    body.nine-properties .nine-pm-shipments-spotlight__hero-row {
        flex-direction: column;
        align-items: stretch;
    }

    body.nine-properties .nine-pm-shipments-spotlight__hero-row .nine-pm-shipments-spotlight__cta {
        align-self: stretch;
        justify-content: center;
        margin-top: 0;
    }

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

@media (max-width: 767px) {
    body.nine-properties .nine-pm-shipments-page__filter-group--controls {
        flex-direction: column;
        align-items: stretch;
    }

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

    body.nine-properties .nine-pm-shipments-spotlight__metrics {
        grid-template-columns: 1fr;
    }

    body.nine-properties .nine-pm-shipments-page .nine-pm-all-shipments__grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    body.nine-properties .nine-pm-shipments-page .nine-pm-all-shipments__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    body.nine-properties .nine-pm-shipments-page .nine-pm-all-shipments__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
