/* ==========================================================================
   SkyTrade Aviation — Marketplace Page
   Loaded on template-marketplace.php (after booking.css).
   Layout: sidebar filters + list rows. Palette from theme tokens.
   ========================================================================== */

.charter-page.mp-page {
	background: var(--st-navy);
	color: var(--st-white);
}

.charter-page.mp-page .container.booking-page {
	max-width: none;
	padding-top: 0;
}

/* ── HERO (image bg pattern like membership / charter) ───────────────────── */

.mp-hero {
	position: relative;
	min-height: 320px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: var(--st-navy);
	border-bottom: 1px solid var(--st-navy-mid);
}

.mp-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.mp-hero__bg img,
.mp-hero__bg .skytrade-img,
.mp-hero__bg .skytrade-img-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mp-hero__bg img,
.mp-hero__bg .skytrade-img {
	opacity: 0.45;
	transform: scale(1.04);
	animation: mpHeroZoom 12s ease-in-out infinite alternate;
}

.mp-hero__bg .skytrade-img-placeholder {
	min-height: 320px;
	border-radius: 0;
	border: none;
	opacity: 0.35;
}

@keyframes mpHeroZoom {
	from {
		transform: scale(1.04);
	}

	to {
		transform: scale(1.12);
	}
}

.mp-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		to top,
		rgba(10, 22, 40, 0.98) 0%,
		rgba(10, 22, 40, 0.55) 55%,
		rgba(10, 22, 40, 0.35) 100%
	);
}

.mp-hero__content {
	position: relative;
	z-index: 2;
	padding: 48px 0 40px;
}

.mp-hero__headline {
	font-family: var(--st-font-display);
	font-size: clamp(28px, 4vw, 36px);
	font-weight: 700;
	margin: 8px 0 12px;
	color: var(--st-white);
	line-height: 1.1;
}

.mp-hero__sub {
	color: var(--st-white-60);
	font-size: 14px;
	max-width: 640px;
	line-height: 1.6;
	margin: 0;
}

.mp-shell {
	padding: 32px 0 80px;
}

/* ── TYPE TABS ────────────────────────────────────────────────────────────── */

.mp-type-tabs {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}

.mp-type-tab {
	flex: 1 1 160px;
	background: var(--st-navy-light);
	border: 1px solid var(--st-navy-mid);
	border-radius: 6px;
	padding: 14px 16px;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s;
	color: inherit;
	font-family: inherit;
}

.mp-type-tab:hover {
	border-color: var(--st-gold);
}

.mp-type-tab.is-active {
	border-color: var(--st-gold);
	background: rgba(201, 168, 76, 0.08);
}

.mp-type-tab__label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--st-white);
}

.mp-type-tab__sub {
	display: block;
	font-size: 11px;
	color: var(--st-white-60);
	margin-top: 2px;
}

.mp-type-tab--mine {
	flex: 0 0 120px;
	text-align: center;
}

/* ── LAYOUT: SIDEBAR + RESULTS ────────────────────────────────────────────── */

.mp-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 32px;
	align-items: start;
}

@media (max-width: 900px) {
	.mp-layout {
		grid-template-columns: 1fr;
	}

	.mp-sidebar {
		position: static;
	}
}

.mp-sidebar {
	background: var(--st-navy-light);
	border: 1px solid var(--st-navy-mid);
	border-radius: 6px;
	padding: 20px;
	position: sticky;
	top: 20px;
}

.mp-sidebar__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--st-gold);
	font-weight: 700;
	margin-bottom: 16px;
}

.mp-sidebar__clear {
	background: none;
	border: none;
	color: var(--st-white-60);
	font-size: 10px;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 400;
	cursor: pointer;
	text-decoration: underline;
	padding: 0;
}

.mp-filter-group {
	margin-bottom: 18px;
}

.mp-filter-label {
	display: block;
	font-size: 11px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--st-white-60);
	margin-bottom: 8px;
}

.mp-filter-row {
	display: flex;
	gap: 8px;
}

.mp-filter-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.mp-chip {
	background: transparent;
	border: 1px solid var(--st-navy-mid);
	color: var(--st-white-60);
	border-radius: 20px;
	padding: 5px 12px;
	font-size: 11px;
	cursor: pointer;
	transition: border-color 0.15s, color 0.15s, background 0.15s;
	font-family: inherit;
}

.mp-chip:hover {
	border-color: var(--st-gold);
}

.mp-chip.is-active {
	border-color: var(--st-gold);
	color: var(--st-gold);
	background: rgba(201, 168, 76, 0.1);
	font-weight: 600;
}

.mp-page .field__input--sm {
	padding: 8px 10px;
	font-size: 12px;
}

/* ── RESULTS TOOLBAR ────────────────────────────────────────────────────── */

.mp-results__toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--st-navy-mid);
	gap: 12px;
	flex-wrap: wrap;
}

.mp-results__count {
	font-size: 14px;
	font-weight: 600;
	color: var(--st-white);
}

.mp-results__sort {
	display: flex;
	align-items: center;
	gap: 8px;
}

.mp-sort-label {
	font-size: 11px;
	color: var(--st-white-60);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ── LIST ROWS ────────────────────────────────────────────────────────────── */

.mp-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.mp-row {
	display: grid;
	grid-template-columns: 200px 1fr 180px;
	gap: 20px;
	background: var(--st-navy-light);
	border: 1px solid var(--st-navy-mid);
	border-radius: 6px;
	padding: 16px;
	cursor: pointer;
	transition: border-color 0.2s;
}

.mp-row:hover {
	border-color: var(--st-gold);
}

@media (max-width: 700px) {
	.mp-row {
		grid-template-columns: 1fr;
	}

	.mp-row__aside {
		align-items: flex-start;
		text-align: left;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 12px;
	}

	.mp-type-tab {
		flex: 1 1 calc(50% - 10px);
	}

	.mp-type-tab--mine {
		flex: 1 1 100%;
	}
}

.mp-row__thumb {
	position: relative;
	height: 140px;
	border-radius: 4px;
	overflow: hidden;
	background: var(--st-navy-mid);
}

.mp-row__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mp-row__no-photo {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--st-white-20);
	font-size: 11px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.mp-row__badge {
	position: absolute;
	top: 8px;
	left: 8px;
	background: rgba(201, 168, 76, 0.92);
	color: var(--st-navy);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.8px;
	padding: 3px 7px;
	border-radius: 3px;
}

.mp-row__fav {
	position: absolute;
	top: 8px;
	right: 8px;
	background: var(--st-gold);
	color: var(--st-navy);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.5px;
	padding: 3px 6px;
	border-radius: 3px;
}

.mp-row__title {
	font-size: 16px;
	font-weight: 600;
	color: var(--st-white);
	margin: 0 0 8px;
}

.mp-row__specs {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 16px;
	font-size: 12px;
	color: var(--st-white-60);
}

.mp-row__aside {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	text-align: right;
}

.mp-row__price {
	font-family: "JetBrains Mono", ui-monospace, monospace;
	font-size: 17px;
	font-weight: 700;
	color: var(--st-gold);
}

.mp-row__price-unit {
	font-size: 11px;
	color: var(--st-white-60);
	font-family: inherit;
	font-weight: 400;
}

.mp-row__price-sub {
	font-size: 10px;
	color: var(--st-white-60);
	margin-top: 2px;
}

.mp-row__price--call,
.mp-row__price--enquire {
	font-size: 13px;
	letter-spacing: 0.5px;
}

/* ── EMPTY / PAGINATION ───────────────────────────────────────────────────── */

.mp-empty {
	text-align: center;
	padding: 60px 20px;
	color: var(--st-white-60);
}

.mp-empty__title {
	color: var(--st-white);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 6px;
}

.mp-empty__sub {
	margin: 0;
	font-size: 13px;
}

.mp-pagination {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 24px;
	flex-wrap: wrap;
}

.mp-page-btn {
	background: var(--st-navy-light);
	border: 1px solid var(--st-navy-mid);
	color: var(--st-white-60);
	border-radius: 4px;
	padding: 7px 12px;
	font-size: 12px;
	cursor: pointer;
	font-family: inherit;
}

.mp-page-btn.is-active {
	border-color: var(--st-gold);
	color: var(--st-gold);
	font-weight: 700;
}

.mp-page-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

/* ── DETAIL VIEW ──────────────────────────────────────────────────────────── */

.mp-back-link {
	background: none;
	border: none;
	color: var(--st-gold);
	font-size: 13px;
	cursor: pointer;
	margin-bottom: 20px;
	padding: 0;
	font-family: inherit;
}

.mp-loading {
	text-align: center;
	padding: 60px;
	color: var(--st-white-60);
}

.mp-detail {
	padding: 0;
	overflow: hidden;
}

.mp-gallery {
	position: relative;
}

.mp-gallery__main img {
	width: 100%;
	max-height: 420px;
	object-fit: cover;
	display: block;
}

.mp-gallery__none {
	height: 240px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--st-navy-mid);
	color: var(--st-white-20);
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.mp-gallery__thumbs {
	display: flex;
	gap: 6px;
	padding: 10px;
	overflow-x: auto;
	background: var(--st-navy);
}

.mp-gallery__thumbs img {
	width: 70px;
	height: 50px;
	object-fit: cover;
	border-radius: 3px;
	cursor: pointer;
	opacity: 0.5;
	flex-shrink: 0;
}

.mp-gallery__thumbs img.is-active {
	opacity: 1;
	outline: 2px solid var(--st-gold);
}

.mp-detail__header,
.mp-detail__specs,
.mp-detail__intel,
.mp-detail__loi {
	padding: 24px 28px;
	border-bottom: 1px solid var(--st-navy-mid);
}

.mp-detail__badges {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}

.mp-badge {
	background: rgba(201, 168, 76, 0.15);
	border: 1px solid rgba(201, 168, 76, 0.4);
	color: var(--st-gold);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1px;
	padding: 3px 9px;
	border-radius: 3px;
}

.mp-badge--gold {
	background: var(--st-gold);
	color: var(--st-navy);
	border: none;
}

.mp-detail__location {
	margin-left: auto;
	color: var(--st-white-60);
	font-size: 12px;
}

.mp-detail__title {
	font-family: var(--st-font-display);
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 6px;
	color: var(--st-white);
}

.mp-detail__category {
	color: var(--st-white-60);
	font-size: 11px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.mp-detail__price {
	font-family: "JetBrains Mono", ui-monospace, monospace;
	font-size: 26px;
	font-weight: 700;
	color: var(--st-gold);
}

.mp-detail__price--call {
	font-family: var(--st-font-body);
	font-size: 20px;
}

.mp-detail__price-note {
	color: var(--st-white-60);
	font-size: 11px;
	margin-top: 4px;
}

.mp-spec-section {
	margin-bottom: 20px;
}

.mp-spec-section:last-child {
	margin-bottom: 0;
}

.mp-spec-section__title {
	color: var(--st-gold);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.mp-spec-row {
	display: flex;
	gap: 16px;
	padding: 5px 0;
	font-size: 13px;
}

@media (max-width: 700px) {
	.mp-spec-row {
		flex-direction: column;
		gap: 2px;
	}

	.mp-detail__header,
	.mp-detail__specs,
	.mp-detail__intel,
	.mp-detail__loi {
		padding: 20px 16px;
	}
}

.mp-spec-row__label {
	width: 160px;
	flex-shrink: 0;
	color: var(--st-white-60);
}

.mp-spec-row__value {
	color: var(--st-white);
	font-weight: 500;
}

.mp-spec-section__text {
	color: var(--st-white-60);
	font-size: 13px;
	line-height: 1.6;
	margin-top: 8px;
}

/* ── FLEET INTELLIGENCE ───────────────────────────────────────────────────── */

.mp-intel-sub {
	color: var(--st-white-60);
	font-size: 11px;
	margin: 4px 0 16px;
}

.mp-intel-stats {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.mp-intel-stat strong {
	display: block;
	font-family: "JetBrains Mono", ui-monospace, monospace;
	color: var(--st-gold);
	font-size: 20px;
}

.mp-intel-stat span {
	display: block;
	color: var(--st-white-60);
	font-size: 10px;
	letter-spacing: 0.5px;
	margin-top: 4px;
	max-width: 140px;
	line-height: 1.4;
}

.mp-intel-note {
	margin-top: 14px;
	background: rgba(214, 158, 46, 0.08);
	border: 1px solid rgba(214, 158, 46, 0.3);
	border-radius: 4px;
	padding: 12px;
	font-size: 11px;
	color: var(--st-white-60);
	line-height: 1.5;
}

/* ── LOI SECTION ──────────────────────────────────────────────────────────── */

.mp-section-head {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--st-gold);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2.5px;
	margin-bottom: 14px;
}

.mp-section-head::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--st-navy-mid);
}

.mp-section-head--sm {
	margin-top: 22px;
}

.mp-loi-intro {
	color: var(--st-white-60);
	font-size: 12px;
	line-height: 1.5;
	margin-bottom: 12px;
}

.mp-loi-notice {
	background: rgba(201, 168, 76, 0.06);
	border: 1px solid rgba(201, 168, 76, 0.25);
	border-radius: 4px;
	padding: 12px;
	font-size: 11px;
	color: var(--st-white-60);
	line-height: 1.5;
	margin-bottom: 16px;
}

.mp-loi-form {
	margin-top: 16px;
}

.mp-buyer-type {
	display: flex;
	gap: 8px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.mp-buyer-type__opt {
	flex: 1;
	min-width: 100px;
	background: var(--st-navy-light);
	border: 1px solid var(--st-navy-mid);
	color: var(--st-white-60);
	padding: 9px;
	border-radius: 3px;
	font-size: 11px;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
}

.mp-buyer-type__opt.is-active {
	border-color: var(--st-gold);
	color: var(--st-gold);
	background: rgba(201, 168, 76, 0.1);
}

.mp-pill-group {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.mp-pill {
	background: transparent;
	border: 1px solid var(--st-navy-mid);
	color: var(--st-white-60);
	border-radius: 20px;
	padding: 7px 14px;
	font-size: 11px;
	cursor: pointer;
	font-family: inherit;
}

.mp-pill.is-active {
	border-color: var(--st-gold);
	color: var(--st-gold);
	background: rgba(201, 168, 76, 0.1);
}

.mp-toggle-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 8px;
}

.mp-toggle {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: var(--st-navy-light);
	border: 1px solid var(--st-navy-mid);
	border-radius: 4px;
	padding: 12px;
	cursor: pointer;
}

.mp-toggle input {
	margin-top: 3px;
	accent-color: var(--st-gold);
	flex-shrink: 0;
}

.mp-toggle strong {
	display: block;
	font-size: 13px;
	color: var(--st-white);
	font-weight: 500;
}

.mp-toggle small {
	display: block;
	font-size: 11px;
	color: var(--st-white-60);
	margin-top: 2px;
}

.mp-loi-disclaimer {
	background: var(--st-navy-light);
	border: 1px solid var(--st-navy-mid);
	border-radius: 4px;
	padding: 14px;
	font-size: 11px;
	font-style: italic;
	color: var(--st-white-60);
	line-height: 1.5;
	margin-top: 20px;
}

.mp-terms-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 16px;
	font-size: 12px;
	color: var(--st-white-60);
	cursor: pointer;
}

.mp-terms-row.is-accepted {
	color: var(--st-green);
}

.mp-loi-submit {
	margin-top: 16px;
}

.mp-loi-confirmed {
	text-align: center;
	padding: 40px 20px;
}

.mp-loi-confirmed__title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--st-white);
}

.mp-loi-confirmed__ref {
	font-family: "JetBrains Mono", ui-monospace, monospace;
	color: var(--st-gold);
	font-size: 13px;
	margin-bottom: 16px;
}

.mp-loi-confirmed__body {
	color: var(--st-white-60);
	font-size: 13px;
	line-height: 1.6;
	max-width: 420px;
	margin: 0 auto 28px;
}

/* Hero upgrades */
.mp-hero {
	min-height: 520px;
}

.mp-hero__headline span {
	color: var(--st-gold);
}

.mp-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
}

.mp-hero__trust .trust-pill {
	padding: 7px 14px;
	border-radius: 24px;
	border: 1px solid rgba(201, 168, 76, 0.25);
	background: rgba(201, 168, 76, 0.07);
	color: var(--st-white-60);
	font-size: 12px;
	font-weight: 500;
}

.mp-hero__scroll-cue {
	margin-top: 32px;
}

.mp-hero__scroll-cue span {
	display: block;
	width: 1px;
	height: 48px;
	background: linear-gradient(to bottom, transparent, var(--st-gold));
	animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
	0%, 100% { opacity: 0.35; }
	50% { opacity: 1; }
}

/* Stats strip */
.mp-stats-strip {
	background: var(--st-navy-light);
	border-bottom: 1px solid var(--st-navy-mid);
}

.mp-stats-strip__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	padding: 20px 0;
}

.mp-stat {
	text-align: center;
	padding: 10px 32px;
}

.mp-stat__num {
	display: block;
	font-family: var(--st-font-display);
	font-size: 28px;
	font-weight: 700;
	color: var(--st-gold);
}

.mp-stat__label {
	display: block;
	font-size: 10px;
	color: var(--st-white-60);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-top: 4px;
}

.mp-stat-div {
	width: 1px;
	height: 40px;
	background: var(--st-navy-mid);
}

/* Skeleton loaders */
.mp-skeleton-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.mp-skeleton-row {
	display: flex;
	gap: 16px;
	padding: 16px;
	background: var(--st-navy-light);
	border-radius: 8px;
}

.mp-skeleton-thumb {
	width: 120px;
	height: 80px;
	border-radius: 6px;
	flex-shrink: 0;
}

.mp-skeleton-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
}

.mp-skeleton-line {
	height: 12px;
	border-radius: 4px;
}

.shimmer {
	background: linear-gradient(90deg, var(--st-navy-mid) 25%, rgba(26, 48, 84, 0.8) 50%, var(--st-navy-mid) 75%);
	background-size: 200% 100%;
	animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

/* Detail two-column */
.mp-detail-layout {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 32px;
	align-items: start;
}

.mp-detail-layout__right {
	position: sticky;
	top: 80px;
}

.mp-detail__price-panel {
	background: var(--st-navy);
	border: 1px solid var(--st-navy-mid);
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 20px;
}

.mp-detail-trust {
	margin-top: 20px;
}

.mp-shell-trust {
	margin: 40px 0 0;
	padding-top: 24px;
	border-top: 1px solid var(--st-navy-mid);
}

@media (max-width: 1024px) {
	.mp-detail-layout {
		grid-template-columns: 1fr;
	}

	.mp-detail-layout__right {
		position: static;
	}
}

/* Mobile filter */
.mp-mobile-filter-bar {
	display: none;
	padding: 12px 0;
	gap: 12px;
	align-items: center;
}

.mp-mobile-filter-btn {
	padding: 10px 20px;
	border: 1px solid var(--st-navy-mid);
	border-radius: 8px;
	background: var(--st-navy-light);
	color: var(--st-white);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}

.mp-mobile-results {
	font-size: 12px;
	color: var(--st-white-60);
	margin-left: auto;
}

@media (max-width: 768px) {
	.mp-mobile-filter-bar {
		display: flex;
	}

	.mp-sidebar {
		display: none;
		position: fixed;
		inset: 0 0 0 auto;
		width: min(320px, 88vw);
		z-index: 200;
		top: 0;
		border-radius: 0;
		overflow-y: auto;
		box-shadow: -8px 0 32px rgba(0, 0, 0, 0.45);
	}

	.mp-sidebar.is-open {
		display: block;
	}
}

/* List row hover polish */
.mp-listing-row {
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.mp-listing-row:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	border-color: rgba(201, 168, 76, 0.3);
}

/* How it works (process cards) */
.mp-process-section {
	background: var(--st-navy-light);
}

.mp-process-section .medevac-process-card {
	background: var(--st-navy);
	border: 1px solid var(--st-navy-mid);
	border-radius: 12px;
	padding: 24px;
	transition: transform 0.25s;
}

.mp-process-section .medevac-process-card:hover {
	transform: translateY(-4px);
}

.mp-process-section .medevac-process-card__num {
	font-family: var(--st-font-display);
	font-size: 40px;
	font-weight: 700;
	color: rgba(201, 168, 76, 0.2);
	line-height: 1;
	margin-bottom: 12px;
}

.mp-process-section .medevac-process-card h3 {
	font-size: 15px;
	font-weight: 700;
	color: var(--st-white);
	margin-bottom: 8px;
}

.mp-process-section .medevac-process-card p {
	font-size: 13px;
	color: var(--st-white-60);
	line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
	.mp-hero__bg img,
	.mp-hero__bg .skytrade-img {
		animation: none;
		transform: none;
	}

	.mp-hero__scroll-cue span,
	.shimmer {
		animation: none;
	}

	.mp-listing-row:hover,
	.mp-process-section .medevac-process-card:hover {
		transform: none;
	}
}

/* ==========================================================================
   Listing grid — premium 4-column card layout. Replaces the horizontal
   list-row layout entirely for both the main browse view and "Mine" tab
   (both reuse the same .mp-list / .mp-row markup from renderRow() in
   marketplace.js — no JS changes needed, only these class names restyled).
   Card language matches the rest of the site's glass-panel + gold-accent
   treatment (see .fleet-category-card) so it reads as one system.
   ========================================================================== */

.mp-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.mp-row {
	display: flex;
	flex-direction: column;
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
	border: 1px solid var(--st-navy-mid);
	border-top: 2px solid rgba(201, 168, 76, 0.5);
	border-radius: 8px;
	overflow: hidden;
	padding: 0;
	cursor: pointer;
	transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.mp-row:hover {
	border-color: rgba(201, 168, 76, 0.4);
	border-top-color: var(--st-gold);
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.mp-row__thumb {
	position: relative;
	height: 190px;
	border-radius: 0;
	background: radial-gradient(ellipse at center, #14264a, #0A1628);
}

.mp-row__thumb::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 22, 40, 0.85) 0%, transparent 55%);
	pointer-events: none;
}

.mp-row__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mp-row__no-photo {
	color: var(--st-white-20);
	font-size: 10px;
	letter-spacing: 1.5px;
}

.mp-row__badge {
	top: 10px;
	left: 10px;
	z-index: 2;
	background: rgba(201, 168, 76, 0.95);
	backdrop-filter: blur(4px);
}

.mp-row__fav {
	top: 10px;
	right: 10px;
	z-index: 2;
}

.mp-row__body {
	padding: 16px 16px 0;
	flex: 1;
}

.mp-row__title {
	font-size: 15px;
	line-height: 1.3;
	margin-bottom: 8px;
}

.mp-row__specs {
	font-size: 11px;
	gap: 3px 12px;
}

.mp-row__aside {
	flex-direction: column;
	align-items: stretch;
	text-align: left;
	margin-top: 14px;
	padding: 14px 16px 16px;
	border-top: 1px solid var(--st-navy-mid);
	gap: 4px;
}

.mp-row__price {
	font-size: 18px;
}

.mp-row__price-sub {
	margin-top: 0;
}

.mp-row__aside .mp-row__view {
	margin-top: 10px;
	width: 100%;
	text-align: center;
}

/* Responsive — step down gracefully as columns get tight */
@media (max-width: 1280px) {
	.mp-list {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 900px) {
	.mp-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.mp-list {
		grid-template-columns: 1fr;
	}
}
