:root {
	--pm-color-bg: #ffffff;
	--pm-color-surface: #ffffff;
	--pm-color-surface-soft: #f5f8f7;
	--pm-color-surface-muted: #eef6f3;
	--pm-color-text: #102033;
	--pm-color-text-muted: #536274;
	--pm-color-border: #dce7e5;
	--pm-color-border-strong: #bfd3d0;
	--pm-color-primary: #0f8a78;
	--pm-color-primary-dark: #075f55;
	--pm-color-primary-soft: #e4f6f2;
	--pm-color-success: #167857;
	--pm-color-warning-bg: #fff8e6;
	--pm-color-warning-border: #ead9a6;
	--pm-color-danger: #9a3528;
	--pm-color-danger-bg: #fff2f0;
	--pm-shadow-card: 0 12px 34px rgba(16, 32, 51, 0.08);
	--pm-shadow-hover: 0 18px 44px rgba(16, 32, 51, 0.12);
	--pm-font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--pm-radius-xs: 6px;
	--pm-radius-sm: 8px;
	--pm-radius-md: 12px;
	--pm-radius-lg: 16px;
	--pm-space-1: 0.25rem;
	--pm-space-2: 0.5rem;
	--pm-space-3: 0.75rem;
	--pm-space-4: 1rem;
	--pm-space-5: 1.25rem;
	--pm-space-6: 1.5rem;
	--pm-space-8: 2rem;
	--pm-space-10: 2.5rem;
	--pm-container: 1180px;
}

.marketplace-page,
.pm-marketplace {
	background:
		linear-gradient(180deg, rgba(228, 246, 242, 0.72), rgba(255, 255, 255, 0) 360px),
		var(--pm-color-bg);
	color: var(--pm-color-text);
	font-family: var(--pm-font-family);
	margin: -2rem 0 0;
	padding: var(--pm-space-10) 0 4rem;
}

.marketplace-shell,
.pm-container {
	margin: 0 auto;
	max-width: var(--pm-container);
	padding: 0 var(--pm-space-4);
}

.marketplace-nav,
.pm-nav {
	align-items: center;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid var(--pm-color-border);
	border-radius: var(--pm-radius-md);
	box-shadow: 0 10px 28px rgba(16, 32, 51, 0.05);
	display: flex;
	gap: var(--pm-space-4);
	justify-content: space-between;
	margin-bottom: var(--pm-space-6);
	padding: 0.8rem 0.95rem;
}

.marketplace-brand,
.marketplace-nav a,
.pm-nav__brand,
.pm-nav a {
	color: var(--pm-color-text);
	font-weight: 750;
	text-decoration: none;
}

.marketplace-brand,
.pm-nav__brand {
	align-items: center;
	display: inline-flex;
	gap: var(--pm-space-2);
}

.pm-nav__mark {
	background: var(--pm-color-primary);
	border-radius: var(--pm-radius-xs);
	color: #ffffff;
	display: inline-grid;
	font-size: 0.78rem;
	font-weight: 800;
	height: 28px;
	letter-spacing: 0;
	place-items: center;
	width: 28px;
}

.marketplace-nav-links,
.pm-nav__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	justify-content: flex-end;
}

.marketplace-nav-links a,
.pm-nav__links a {
	color: var(--pm-color-text-muted);
	font-size: 0.92rem;
	font-weight: 650;
}

.marketplace-nav-links a:hover,
.pm-nav__links a:hover,
.section-heading a:hover,
.filter-actions a:hover,
.back-link:hover {
	color: var(--pm-color-primary-dark);
}

.marketplace-hero,
.pm-hero {
	align-items: stretch;
	display: grid;
	gap: var(--pm-space-5);
	grid-template-columns: minmax(0, 1fr) 360px;
	margin-bottom: var(--pm-space-8);
}

.hero-copy,
.hero-panel,
.access-panel,
.submit-card,
.pm-hero__copy,
.pm-hero__stats,
.pm-card,
.pm-empty-state,
.pm-cta {
	background: var(--pm-color-surface);
	border: 1px solid var(--pm-color-border);
	border-radius: var(--pm-radius-lg);
	box-shadow: var(--pm-shadow-card);
}

.hero-copy,
.pm-hero__copy {
	padding: clamp(1.5rem, 4vw, 3rem);
}

.hero-copy h1,
.pm-hero__title {
	color: var(--pm-color-text);
	font-size: clamp(2rem, 4vw, 3.35rem);
	font-weight: 780;
	letter-spacing: 0;
	line-height: 1.08;
	margin: 0;
	max-width: 840px;
}

.marketplace-kicker,
.pm-kicker {
	color: var(--pm-color-primary);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin: 0 0 var(--pm-space-2);
	text-transform: uppercase;
}

.marketplace-subtitle,
.pm-subtitle {
	color: var(--pm-color-text-muted);
	font-size: 1.05rem;
	line-height: 1.65;
	margin: var(--pm-space-4) 0 0;
	max-width: 680px;
}

.hero-search,
.pm-search {
	display: flex;
	gap: var(--pm-space-3);
	margin-top: var(--pm-space-5);
	max-width: 760px;
}

.hero-search input,
.pm-search input,
.filter-field input,
.filter-field select,
.filter-field textarea,
.inquiry-panel input,
.inquiry-panel select,
.inquiry-panel textarea,
.registration-form input,
.registration-form select,
.registration-form textarea {
	background: #ffffff;
	border: 1px solid var(--pm-color-border-strong);
	border-radius: var(--pm-radius-sm);
	color: var(--pm-color-text);
	min-height: 44px;
	padding: 0.6rem 0.75rem;
	width: 100%;
}

.hero-search input,
.pm-search input {
	flex: 1;
	min-height: 50px;
}

.hero-search input:focus,
.pm-search input:focus,
.filter-field input:focus,
.filter-field select:focus,
.filter-field textarea:focus,
.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus,
.inquiry-panel input:focus,
.inquiry-panel select:focus,
.inquiry-panel textarea:focus {
	border-color: var(--pm-color-primary);
	box-shadow: 0 0 0 3px rgba(15, 138, 120, 0.14);
	outline: none;
}

.hero-search button,
.primary-action,
.secondary-action,
.form-actions button,
.filter-actions button,
.inquiry-panel button,
.inquiry-login,
.pm-button {
	align-items: center;
	border-radius: var(--pm-radius-sm);
	display: inline-flex;
	font-weight: 750;
	justify-content: center;
	min-height: 44px;
	padding: 0.7rem 1rem;
	text-decoration: none;
	transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.hero-search button,
.primary-action,
.form-actions button,
.filter-actions button,
.inquiry-panel button,
.inquiry-login,
.pm-button--primary {
	background: var(--pm-color-primary);
	border: 1px solid var(--pm-color-primary);
	color: #ffffff;
}

.hero-search button:hover,
.primary-action:hover,
.form-actions button:hover,
.filter-actions button:hover,
.inquiry-panel button:hover,
.inquiry-login:hover,
.pm-button--primary:hover {
	background: var(--pm-color-primary-dark);
	border-color: var(--pm-color-primary-dark);
	color: #ffffff;
	transform: translateY(-1px);
}

.secondary-action,
.pm-button--secondary {
	background: #ffffff;
	border: 1px solid var(--pm-color-border-strong);
	color: var(--pm-color-primary-dark);
}

.secondary-action:hover,
.pm-button--secondary:hover {
	border-color: var(--pm-color-primary);
	color: var(--pm-color-primary-dark);
	transform: translateY(-1px);
}

.hero-actions,
.pm-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--pm-space-3);
	margin-top: var(--pm-space-4);
}

.hero-panel,
.pm-hero__stats {
	display: grid;
	gap: var(--pm-space-3);
	padding: var(--pm-space-4);
}

.hero-panel div,
.pm-stat-card {
	background: var(--pm-color-surface-soft);
	border: 1px solid var(--pm-color-border);
	border-radius: var(--pm-radius-md);
	padding: var(--pm-space-4);
}

.hero-panel span,
.dashboard-card span,
.pm-stat-card__value {
	color: var(--pm-color-primary);
	display: block;
	font-size: 2rem;
	font-weight: 820;
	line-height: 1;
}

.hero-panel strong,
.dashboard-card strong,
.pm-stat-card__label {
	color: var(--pm-color-text-muted);
	display: block;
	font-size: 0.9rem;
	font-weight: 750;
	margin-top: 0.4rem;
}

.marketplace-header,
.pm-page-header {
	align-items: end;
	display: flex;
	justify-content: space-between;
	margin-bottom: var(--pm-space-6);
}

.marketplace-header h1,
.detail-section h1,
.pm-page-header h1 {
	color: var(--pm-color-text);
	font-size: clamp(2rem, 4vw, 3.35rem);
	font-weight: 780;
	letter-spacing: 0;
	line-height: 1.05;
	margin: 0;
	max-width: 840px;
}

.marketplace-filters,
.pm-filter-panel {
	background: var(--pm-color-surface);
	border: 1px solid var(--pm-color-border);
	border-radius: var(--pm-radius-lg);
	box-shadow: 0 10px 28px rgba(16, 32, 51, 0.05);
	display: grid;
	gap: var(--pm-space-4);
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-bottom: var(--pm-space-5);
	padding: var(--pm-space-4);
}

.filter-field,
.inquiry-panel label {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.filter-field-wide {
	grid-column: span 2;
}

.filter-field label,
.filter-check,
.inquiry-panel label span,
.registration-form label {
	color: var(--pm-color-text-muted);
	font-size: 0.86rem;
	font-weight: 700;
}

.filter-check {
	align-items: center;
	display: flex;
	gap: 0.55rem;
	min-height: 42px;
}

.filter-check input {
	height: 18px;
	width: 18px;
}

.filter-actions {
	align-items: center;
	display: flex;
	gap: 0.85rem;
	justify-content: flex-end;
}

.filter-actions a,
.back-link,
.section-heading a {
	color: var(--pm-color-primary);
	font-weight: 750;
	text-decoration: none;
}

.marketplace-section,
.pm-section {
	margin-top: var(--pm-space-8);
}

.marketplace-home .pm-section {
	margin-top: 2.75rem;
}

.pm-search-panel {
	align-items: end;
	background: var(--pm-color-surface);
	border: 1px solid var(--pm-color-border);
	border-radius: var(--pm-radius-lg);
	box-shadow: var(--pm-shadow-card);
	display: grid;
	gap: var(--pm-space-4);
	grid-template-columns: minmax(0, 1fr) auto;
	padding: var(--pm-space-5);
}

.pm-marketplace-search {
	display: grid;
	gap: var(--pm-space-2);
}

.pm-marketplace-search label {
	color: var(--pm-color-text-muted);
	font-size: 0.84rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.pm-marketplace-search div {
	display: flex;
	gap: var(--pm-space-3);
}

.pm-marketplace-search input {
	background: #ffffff;
	border: 1px solid var(--pm-color-border-strong);
	border-radius: var(--pm-radius-sm);
	color: var(--pm-color-text);
	flex: 1;
	min-height: 46px;
	padding: 0.65rem 0.8rem;
}

.pm-marketplace-search input:focus {
	border-color: var(--pm-color-primary);
	box-shadow: 0 0 0 3px rgba(15, 138, 120, 0.14);
	outline: none;
}

.pm-quick-links {
	display: flex;
	flex-wrap: wrap;
	gap: var(--pm-space-2);
	justify-content: flex-end;
}

.pm-quick-links a {
	background: var(--pm-color-primary-soft);
	border: 1px solid #cce7e1;
	border-radius: 999px;
	color: var(--pm-color-primary-dark);
	font-size: 0.9rem;
	font-weight: 750;
	padding: 0.45rem 0.75rem;
	text-decoration: none;
}

.pm-quick-links a:hover {
	border-color: var(--pm-color-primary);
}

.section-heading,
.pm-section__heading {
	align-items: end;
	display: flex;
	gap: var(--pm-space-4);
	justify-content: space-between;
	margin-bottom: var(--pm-space-4);
}

.section-heading h2,
.pm-section__heading h2 {
	color: var(--pm-color-text);
	font-size: 1.45rem;
	margin: 0;
}

.section-heading p,
.pm-section__heading p {
	color: var(--pm-color-text-muted);
	margin: 0.3rem 0 0;
}

.portal-card-grid,
.opportunity-grid,
.registration-choice-grid,
.dashboard-card-grid,
.pm-card-grid {
	display: grid;
	gap: var(--pm-space-4);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portal-card,
.opportunity-card,
.registration-choice,
.dashboard-card,
.pm-card {
	background: var(--pm-color-surface);
	border: 1px solid var(--pm-color-border);
	border-radius: var(--pm-radius-lg);
	color: inherit;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	min-height: 100%;
	padding: var(--pm-space-5);
	text-decoration: none;
	transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.portal-card:hover,
.opportunity-card:hover,
.registration-choice:hover,
.dashboard-card:hover,
.listing-card:hover,
.pm-card:hover {
	border-color: rgba(15, 138, 120, 0.42);
	box-shadow: var(--pm-shadow-hover);
	transform: translateY(-2px);
}

.portal-card span,
.registration-choice span,
.pm-card__eyebrow {
	color: var(--pm-color-primary);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.portal-card h3,
.opportunity-card h2,
.opportunity-card h3,
.registration-choice h2,
.pm-card__title {
	color: var(--pm-color-text);
	margin: 0;
}

.portal-card p,
.opportunity-card p,
.registration-choice p,
.pm-card__description {
	color: var(--pm-color-text-muted);
	line-height: 1.55;
	margin: 0;
}

.portal-card-accent,
.pm-card--accent {
	background: var(--pm-color-primary-soft);
	border-color: #b8dfd7;
}

.pm-process-grid,
.pm-trust-grid {
	display: grid;
	gap: var(--pm-space-4);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.pm-mini-card {
	background: var(--pm-color-surface);
	border: 1px solid var(--pm-color-border);
	border-radius: var(--pm-radius-lg);
	box-shadow: var(--pm-shadow-card);
	color: inherit;
	display: flex;
	flex-direction: column;
	gap: var(--pm-space-5);
	justify-content: space-between;
	min-height: 100%;
	padding: var(--pm-space-5);
	text-decoration: none;
	transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.pm-mini-card:hover {
	border-color: rgba(15, 138, 120, 0.42);
	box-shadow: var(--pm-shadow-hover);
	transform: translateY(-2px);
}

.pm-mini-card h3 {
	color: var(--pm-color-text);
	font-size: 1.05rem;
	margin: var(--pm-space-2) 0;
}

.pm-mini-card p {
	color: var(--pm-color-text-muted);
	line-height: 1.55;
	margin: 0;
}

.pm-mini-card__meta {
	align-items: baseline;
	background: var(--pm-color-surface-soft);
	border: 1px solid var(--pm-color-border);
	border-radius: var(--pm-radius-md);
	display: flex;
	gap: var(--pm-space-2);
	justify-content: space-between;
	padding: 0.65rem 0.75rem;
}

.pm-mini-card__meta strong {
	color: var(--pm-color-text-muted);
	font-size: 0.78rem;
	text-transform: uppercase;
}

.pm-mini-card__meta span {
	color: var(--pm-color-primary-dark);
	font-weight: 800;
}

.company-strip,
.dashboard-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--pm-space-3);
}

.company-strip div {
	background: var(--pm-color-surface);
	border: 1px solid var(--pm-color-border);
	border-radius: var(--pm-radius-md);
	display: flex;
	flex-wrap: wrap;
	gap: var(--pm-space-2);
	padding: 0.9rem;
}

.company-strip strong {
	color: var(--pm-color-text);
}

.company-strip span {
	color: var(--pm-color-text-muted);
}

.tag-list,
.pm-tag-list,
.listing-meta,
.listing-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.tag-list span,
.pm-tag,
.listing-meta span,
.listing-facts span {
	background: var(--pm-color-surface-muted);
	border-radius: 999px;
	color: var(--pm-color-text-muted);
	font-size: 0.78rem;
	font-weight: 700;
	padding: 0.24rem 0.55rem;
}

.listing-meta .verified-pill,
.verified-pill,
.pm-tag--success {
	background: #dff3ec;
	color: var(--pm-color-success);
}

.detail-line,
.pm-detail-line {
	display: grid;
	gap: var(--pm-space-1);
}

.detail-line strong,
.pm-detail-line strong {
	color: var(--pm-color-text-muted);
	font-size: 0.86rem;
}

.detail-line span,
.pm-detail-line span {
	color: var(--pm-color-text-muted);
}

.access-panel,
.pm-cta {
	padding: var(--pm-space-6);
}

.access-panel h2,
.pm-cta h2 {
	margin: 0 0 var(--pm-space-2);
}

.access-panel p,
.pm-cta p {
	color: var(--pm-color-text-muted);
	line-height: 1.6;
	margin: 0;
}

.submit-layout,
.registration-layout {
	align-items: start;
	display: grid;
	gap: var(--pm-space-4);
	grid-template-columns: minmax(0, 1fr) 340px;
}

.registration-layout {
	grid-template-columns: minmax(0, 1fr) 320px;
}

.submit-card,
.registration-card,
.registration-summary,
.detail-section,
.side-panel {
	background: var(--pm-color-surface);
	border: 1px solid var(--pm-color-border);
	border-radius: var(--pm-radius-lg);
	box-shadow: var(--pm-shadow-card);
	padding: var(--pm-space-5);
}

.registration-form {
	display: flex;
	flex-direction: column;
	gap: var(--pm-space-4);
}

.registration-form textarea,
.inquiry-panel textarea {
	resize: vertical;
}

.registration-card h2,
.registration-summary h2,
.detail-section h2,
.side-panel h2 {
	font-size: 1.08rem;
	margin: 0 0 var(--pm-space-4);
}

.registration-summary p {
	color: var(--pm-color-text-muted);
	margin: 0 0 var(--pm-space-3);
}

.form-status-success {
	background: #eef9f4;
	border: 1px solid #c8eadc;
	border-radius: var(--pm-radius-sm);
	color: var(--pm-color-success);
	padding: var(--pm-space-3);
}

.form-status-error {
	background: var(--pm-color-danger-bg);
	border: 1px solid #f1c2bc;
	border-radius: var(--pm-radius-sm);
	color: var(--pm-color-danger);
	padding: var(--pm-space-3);
}

.form-grid {
	display: grid;
	gap: var(--pm-space-4);
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: var(--pm-space-4);
	justify-content: space-between;
	margin-top: var(--pm-space-4);
}

.single-column {
	grid-template-columns: 1fr;
}

.results-bar,
.pm-results-bar {
	align-items: baseline;
	display: flex;
	gap: 0.35rem;
	margin: var(--pm-space-5) 0;
}

.results-bar strong,
.pm-results-bar strong {
	color: var(--pm-color-primary);
}

.listing-grid,
.pm-listing-grid {
	display: grid;
	gap: var(--pm-space-4);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.listing-card,
.pm-listing-card {
	background: var(--pm-color-surface);
	border: 1px solid var(--pm-color-border);
	border-radius: var(--pm-radius-lg);
	box-shadow: var(--pm-shadow-card);
	color: inherit;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	text-decoration: none;
	transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.listing-image,
.detail-media,
.pm-listing-card__media {
	align-items: center;
	aspect-ratio: 4 / 3;
	background: var(--pm-color-surface-muted);
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.listing-image img,
.detail-media img,
.pm-listing-card__media img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.listing-image span,
.detail-media span,
.pm-listing-card__media span {
	color: var(--pm-color-text-muted);
	font-weight: 750;
}

.listing-card-body,
.pm-listing-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: var(--pm-space-3);
	padding: var(--pm-space-4);
}

.listing-card h2,
.pm-listing-card__title {
	color: var(--pm-color-text);
	font-size: 1.15rem;
	line-height: 1.25;
	margin: 0;
}

.listing-card p,
.pm-listing-card__summary {
	color: var(--pm-color-text-muted);
	line-height: 1.55;
	margin: 0;
}

.listing-footer,
.pm-listing-card__footer {
	align-items: end;
	display: flex;
	gap: var(--pm-space-3);
	justify-content: space-between;
	margin-top: auto;
}

.listing-footer span,
.supplier-location,
.privacy-note,
.form-status {
	color: #65736f;
	font-size: 0.9rem;
}

.marketplace-pagination {
	align-items: center;
	display: flex;
	gap: var(--pm-space-4);
	justify-content: center;
	margin-top: var(--pm-space-6);
}

.marketplace-pagination a {
	color: var(--pm-color-primary);
	font-weight: 750;
	text-decoration: none;
}

.empty-state,
.pm-empty-state {
	padding: var(--pm-space-8);
	text-align: center;
}

.empty-state h2,
.pm-empty-state h2 {
	color: var(--pm-color-text);
	margin-top: 0;
}

.empty-state p,
.pm-empty-state p {
	color: var(--pm-color-text-muted);
	margin-bottom: 0;
}

.detail-layout {
	align-items: start;
	display: grid;
	gap: var(--pm-space-5);
	grid-template-columns: minmax(0, 1fr) 360px;
	margin-top: var(--pm-space-4);
}

.detail-main,
.detail-side {
	display: flex;
	flex-direction: column;
	gap: var(--pm-space-4);
}

.detail-media {
	border-radius: var(--pm-radius-lg);
}

.pm-gallery {
	display: grid;
	gap: var(--pm-space-3);
}

.pm-gallery__hero {
	border: 1px solid var(--pm-color-border);
	min-height: 360px;
}

.pm-gallery__thumbs {
	display: grid;
	gap: var(--pm-space-3);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pm-gallery__thumb {
	align-items: center;
	aspect-ratio: 4 / 3;
	background: var(--pm-color-surface);
	border: 1px solid var(--pm-color-border);
	border-radius: var(--pm-radius-sm);
	color: var(--pm-color-text-muted);
	display: flex;
	font-size: 0.84rem;
	font-weight: 750;
	justify-content: center;
	overflow: hidden;
	padding: var(--pm-space-2);
	text-align: center;
}

.pm-gallery__thumb img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.pm-gallery__thumb--placeholder {
	background: var(--pm-color-surface-soft);
}

.pm-facts-card {
	display: grid;
	gap: var(--pm-space-3);
}

.detail-price {
	color: var(--pm-color-primary);
	font-size: 1.35rem;
	font-weight: 820;
	margin: var(--pm-space-3) 0;
}

.detail-description {
	color: #3b4844;
	line-height: 1.65;
}

.detail-grid,
.notice-list {
	display: grid;
	gap: var(--pm-space-3);
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-grid div,
.notice-item,
.checklist-table div {
	background: var(--pm-color-surface-soft);
	border: 1px solid var(--pm-color-border);
	border-radius: var(--pm-radius-md);
	padding: 0.85rem;
}

.detail-grid span,
.notice-item span,
.checklist-table span {
	color: #65736f;
	display: block;
	font-size: 0.88rem;
}

.notice-item strong,
.checklist-table strong,
.detail-grid strong {
	display: block;
	margin-bottom: var(--pm-space-1);
}

.notice-positive {
	background: #eef9f4;
	border-color: #c8eadc;
}

.compliance-note {
	background: var(--pm-color-warning-bg);
	border: 1px solid var(--pm-color-warning-border);
	border-radius: var(--pm-radius-sm);
	color: #6a5622;
	margin: var(--pm-space-4) 0 0;
	padding: 0.85rem;
}

.checklist-table {
	display: grid;
	gap: var(--pm-space-3);
	margin-top: var(--pm-space-4);
}

.checklist-table p {
	color: var(--pm-color-text-muted);
	margin: 0.35rem 0 0;
}

.supplier-name {
	font-size: 1.15rem;
	font-weight: 750;
	margin: 0 0 var(--pm-space-2);
}

.rating-list {
	display: grid;
	gap: 0.65rem;
	margin: var(--pm-space-4) 0;
}

.rating-item {
	background: var(--pm-color-surface-soft);
	border: 1px solid var(--pm-color-border);
	border-radius: var(--pm-radius-sm);
	padding: var(--pm-space-3);
}

.rating-item strong {
	display: block;
	font-size: 0.9rem;
	margin-bottom: var(--pm-space-1);
}

.rating-item p {
	color: var(--pm-color-text-muted);
	margin: 0;
}

.inquiry-panel form {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.pm-table {
	background: var(--pm-color-surface);
	border: 1px solid var(--pm-color-border);
	border-radius: var(--pm-radius-lg);
	border-spacing: 0;
	box-shadow: var(--pm-shadow-card);
	overflow: hidden;
	width: 100%;
}

.pm-table th,
.pm-table td {
	border-bottom: 1px solid var(--pm-color-border);
	padding: 0.9rem;
	text-align: left;
	vertical-align: top;
}

.pm-table th {
	background: var(--pm-color-surface-soft);
	color: var(--pm-color-text-muted);
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
}

.pm-table tr:last-child td {
	border-bottom: 0;
}

.pm-table a {
	color: var(--pm-color-primary);
	font-weight: 750;
	text-decoration: none;
}

.pm-data-table td:first-child {
	min-width: 220px;
}

.pm-table-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--pm-space-2);
}

.pm-table-action-primary {
	background: var(--pm-color-primary-soft);
	border: 1px solid #cce7e1;
	border-radius: 999px;
	padding: 0.28rem 0.55rem;
	white-space: nowrap;
}

.pm-service-card h3 {
	color: var(--pm-color-text-muted);
	font-size: 0.98rem;
	font-weight: 700;
}

.pm-registration-choice {
	position: relative;
}

.pm-registration-choice::after {
	color: var(--pm-color-primary-dark);
	content: "Register";
	font-size: 0.9rem;
	font-weight: 800;
	margin-top: auto;
}

@media (max-width: 980px) {
	.marketplace-filters,
	.listing-grid,
	.detail-layout,
	.marketplace-hero,
	.portal-card-grid,
	.opportunity-grid,
	.registration-choice-grid,
	.dashboard-card-grid,
	.submit-layout,
	.registration-layout,
	.pm-filter-panel,
	.pm-listing-grid,
	.pm-card-grid,
	.pm-hero,
	.pm-process-grid,
	.pm-trust-grid,
	.pm-search-panel {
		grid-template-columns: 1fr 1fr;
	}

	.detail-main,
	.detail-side,
	.filter-field-wide,
	.hero-copy,
	.submit-card,
	.registration-summary,
	.pm-hero__copy {
		grid-column: 1 / -1;
	}
}

@media (max-width: 680px) {
	.marketplace-page,
	.pm-marketplace {
		padding-top: var(--pm-space-6);
	}

	.marketplace-filters,
	.listing-grid,
	.detail-layout,
	.detail-grid,
	.pm-gallery__thumbs,
	.notice-list,
	.marketplace-hero,
	.portal-card-grid,
	.opportunity-grid,
	.registration-choice-grid,
	.dashboard-card-grid,
	.submit-layout,
	.registration-layout,
	.form-grid,
	.pm-filter-panel,
	.pm-listing-grid,
	.pm-card-grid,
	.pm-hero,
	.pm-process-grid,
	.pm-trust-grid,
	.pm-search-panel {
		grid-template-columns: 1fr;
	}

	.marketplace-nav,
	.section-heading,
	.hero-search,
	.pm-nav,
	.pm-section__heading,
	.pm-search {
		align-items: stretch;
		flex-direction: column;
	}

	.marketplace-nav-links,
	.pm-nav__links {
		justify-content: flex-start;
	}

	.filter-field-wide {
		grid-column: auto;
	}

	.filter-actions {
		justify-content: stretch;
	}

	.filter-actions button,
	.inquiry-login,
	.hero-search button,
	.primary-action,
	.secondary-action,
	.form-actions button,
	.pm-button,
	.pm-search button {
		width: 100%;
	}

	.dashboard-actions,
	.pm-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.pm-marketplace-search div {
		flex-direction: column;
	}

	.pm-quick-links {
		justify-content: flex-start;
	}

	.pm-table {
		display: block;
		overflow-x: auto;
	}

	.pm-gallery__hero {
		min-height: 240px;
	}
}

body:has(#page-marketplace) > nav.navbar {
	display: none;
}

body:has(#page-marketplace) main.container,
body:has(.marketplace-page) main.container {
	margin: 0 !important;
	max-width: none;
	padding: 0;
	width: 100%;
}

body:has(#page-marketplace) footer.web-footer,
body:has(.marketplace-page) footer.web-footer {
	display: none;
}

body:has(#page-marketplace) .page_content,
body:has(.marketplace-page) .page_content {
	margin: 0;
}

.pm-catalog-home {
	background: #f4f7f8;
	margin-top: -1rem;
	padding: 0 0 var(--pm-space-8);
}

.pm-catalog-home .pm-container {
	max-width: var(--pm-container);
}

.pm-catalog-home .pm-nav {
	background: var(--pm-color-text);
	border: 0;
	border-radius: 0 0 var(--pm-radius-md) var(--pm-radius-md);
	box-shadow: none;
	margin-bottom: 0;
	padding: 0.75rem 1rem;
}

.pm-catalog-home .pm-nav__brand,
.pm-catalog-home .pm-nav a {
	color: #ffffff;
}

.pm-catalog-home .pm-nav__mark {
	background: var(--pm-color-primary);
}

.pm-catalog-home .pm-nav__links {
	gap: 0.45rem 0.8rem;
}

.pm-catalog-home .pm-nav__links a {
	border-radius: var(--pm-radius-xs);
	color: #dce7e5;
	font-size: 0.88rem;
	padding: 0.35rem 0.45rem;
}

.pm-catalog-home .pm-nav__links a:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.pm-catalog-search {
	align-items: center;
	background: #24313d;
	border-radius: 0 0 var(--pm-radius-md) var(--pm-radius-md);
	display: grid;
	gap: var(--pm-space-4);
	grid-template-columns: minmax(0, 1fr) auto;
	margin-bottom: var(--pm-space-5);
	padding: var(--pm-space-4);
}

.pm-catalog-search form {
	display: grid;
	gap: var(--pm-space-2);
}

.pm-catalog-search label {
	color: #cbd8d7;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pm-catalog-search__row {
	display: flex;
}

.pm-catalog-search input {
	border: 0;
	border-radius: var(--pm-radius-sm) 0 0 var(--pm-radius-sm);
	color: var(--pm-color-text);
	flex: 1;
	font-size: 1rem;
	min-height: 52px;
	padding: 0.75rem 1rem;
}

.pm-catalog-search button {
	border-radius: 0 var(--pm-radius-sm) var(--pm-radius-sm) 0;
	min-width: 112px;
}

.pm-catalog-search__links {
	display: flex;
	flex-wrap: wrap;
	gap: var(--pm-space-2);
	justify-content: flex-end;
}

.pm-catalog-search__links a {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	color: #ffffff;
	font-size: 0.88rem;
	font-weight: 750;
	padding: 0.45rem 0.7rem;
	text-decoration: none;
}

.pm-catalog-intro {
	background: #ffffff;
	border: 1px solid var(--pm-color-border);
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	margin-top: var(--pm-space-5);
	min-height: 260px;
}

.pm-catalog-intro__copy {
	padding: clamp(1.5rem, 4vw, 2.5rem);
}

.pm-catalog-intro__copy h1 {
	color: var(--pm-color-text);
	font-size: clamp(1.75rem, 3vw, 2.65rem);
	font-weight: 820;
	line-height: 1.08;
	margin: 0;
	max-width: 720px;
}

.pm-catalog-intro__copy p:not(.pm-kicker) {
	color: var(--pm-color-text-muted);
	font-size: 1rem;
	line-height: 1.55;
	margin: var(--pm-space-3) 0 0;
	max-width: 660px;
}

.pm-catalog-intro__visual {
	align-items: center;
	background: linear-gradient(135deg, #dff3ec, #f6faf9);
	display: flex;
	justify-content: center;
	min-height: 260px;
	overflow: hidden;
	position: relative;
}

.pm-catalog-intro__visual img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.pm-device-illustration {
	background: #ffffff;
	border: 1px solid var(--pm-color-border);
	border-radius: var(--pm-radius-lg);
	box-shadow: var(--pm-shadow-card);
	display: grid;
	gap: var(--pm-space-3);
	padding: var(--pm-space-6);
	width: min(72%, 320px);
}

.pm-device-illustration span {
	background: var(--pm-color-surface-muted);
	border-radius: var(--pm-radius-sm);
	display: block;
	height: 28px;
}

.pm-device-illustration span:first-child {
	background: var(--pm-color-primary);
	height: 72px;
}

.pm-catalog-stat-strip {
	align-items: center;
	background: rgba(16, 32, 51, 0.9);
	border-radius: var(--pm-radius-sm);
	bottom: var(--pm-space-4);
	color: #ffffff;
	display: grid;
	gap: 0 var(--pm-space-2);
	grid-template-columns: auto auto auto auto;
	left: var(--pm-space-4);
	padding: 0.75rem 0.9rem;
	position: absolute;
}

.pm-catalog-stat-strip strong {
	color: #ffffff;
	font-size: 1.25rem;
}

.pm-catalog-stat-strip span {
	color: #dce7e5;
	font-size: 0.82rem;
}

.pm-promo-grid {
	display: grid;
	gap: var(--pm-space-3);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: var(--pm-space-5);
}

.pm-promo-card {
	background: var(--pm-color-text);
	color: #ffffff;
	display: grid;
	min-height: 168px;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	transition: box-shadow 0.16s ease, transform 0.16s ease;
}

.pm-promo-card:hover {
	box-shadow: var(--pm-shadow-hover);
	color: #ffffff;
	transform: translateY(-2px);
}

.pm-promo-card img {
	height: 100%;
	inset: 0;
	object-fit: cover;
	opacity: 0.56;
	position: absolute;
	width: 100%;
}

.pm-promo-card::after {
	background: linear-gradient(90deg, rgba(16, 32, 51, 0.95), rgba(16, 32, 51, 0.48));
	content: "";
	inset: 0;
	position: absolute;
}

.pm-promo-card__icon {
	background:
		linear-gradient(135deg, rgba(15, 138, 120, 0.95), rgba(7, 95, 85, 0.74)),
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 10px, transparent 10px 20px);
	inset: 0;
	position: absolute;
}

.pm-promo-card__content {
	align-self: end;
	padding: var(--pm-space-5);
	position: relative;
	z-index: 1;
}

.pm-promo-card__content span {
	color: #bfe8df;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pm-promo-card__content h3 {
	color: #ffffff;
	font-size: 1.25rem;
	margin: var(--pm-space-2) 0;
}

.pm-promo-card__content p {
	color: #edf5f3;
	line-height: 1.45;
	margin: 0;
}

.pm-catalog-section {
	background: #ffffff;
	border: 1px solid var(--pm-color-border);
	padding: var(--pm-space-5);
}

.pm-category-grid {
	border-left: 1px solid var(--pm-color-border);
	border-top: 1px solid var(--pm-color-border);
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pm-category-tile {
	background: #ffffff;
	border-bottom: 1px solid var(--pm-color-border);
	border-right: 1px solid var(--pm-color-border);
	color: inherit;
	display: grid;
	gap: var(--pm-space-2);
	min-height: 172px;
	padding: var(--pm-space-4);
	text-align: center;
	text-decoration: none;
	transition: background-color 0.16s ease, box-shadow 0.16s ease;
}

.pm-category-tile:hover {
	background: var(--pm-color-surface-soft);
	box-shadow: inset 0 -3px 0 var(--pm-color-primary);
}

.pm-category-tile__visual {
	align-items: center;
	background:
		linear-gradient(135deg, #f9fbfb, #e8f4f1);
	border: 1px solid var(--pm-color-border);
	border-radius: var(--pm-radius-md);
	display: flex;
	height: 76px;
	justify-content: center;
	margin: 0 auto;
	width: 96px;
}

.pm-category-tile__visual span {
	color: var(--pm-color-primary-dark);
	font-size: 1.25rem;
	font-weight: 820;
	text-transform: uppercase;
}

.pm-category-tile h3 {
	color: var(--pm-color-text);
	font-size: 0.98rem;
	margin: 0;
}

.pm-category-tile p {
	color: var(--pm-color-text-muted);
	font-size: 0.86rem;
	line-height: 1.35;
	margin: 0;
}

.pm-solutions-grid {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pm-solution-card {
	background: var(--pm-color-surface-soft);
	color: inherit;
	display: grid;
	gap: var(--pm-space-2);
	min-height: 190px;
	padding: var(--pm-space-5);
	text-decoration: none;
}

.pm-solution-card span {
	color: var(--pm-color-primary);
	font-size: 0.78rem;
	font-weight: 820;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pm-solution-card h3 {
	color: var(--pm-color-text);
	font-size: 1.25rem;
	margin: 0;
}

.pm-solution-card p {
	color: var(--pm-color-text-muted);
	line-height: 1.55;
	margin: 0;
}

.pm-solution-card strong {
	color: var(--pm-color-primary-dark);
	margin-top: auto;
}

.pm-trust-strip {
	background: var(--pm-color-primary-dark);
	color: #ffffff;
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: var(--pm-space-5);
}

.pm-trust-strip div {
	background: rgba(255, 255, 255, 0.06);
	padding: var(--pm-space-4);
}

.pm-trust-strip strong {
	color: #ffffff;
	display: block;
	font-size: 0.98rem;
	margin-bottom: var(--pm-space-1);
}

.pm-trust-strip span {
	color: #d7ece7;
	font-size: 0.88rem;
	line-height: 1.4;
}

.pm-marketplace-footer {
	background: #17232d;
	color: #ffffff;
	display: grid;
	gap: var(--pm-space-6);
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(220px, 0.65fr);
	margin-top: var(--pm-space-5);
	padding: var(--pm-space-8);
}

.pm-marketplace-footer h2 {
	color: #ffffff;
	font-size: 1.35rem;
	margin: 0 0 var(--pm-space-3);
}

.pm-marketplace-footer p,
.pm-marketplace-footer a,
.pm-marketplace-footer span {
	color: #c8d6d8;
}

.pm-marketplace-footer p {
	line-height: 1.6;
	margin: 0;
}

.pm-marketplace-footer nav,
.pm-marketplace-footer__support {
	display: grid;
	gap: var(--pm-space-2);
}

.pm-marketplace-footer a {
	text-decoration: none;
}

.pm-marketplace-footer a:hover {
	color: #ffffff;
}

.pm-marketplace-footer__support strong {
	color: #ffffff;
}

@media (max-width: 980px) {
	.pm-catalog-search,
	.pm-catalog-intro,
	.pm-promo-grid,
	.pm-solutions-grid,
	.pm-trust-strip,
	.pm-marketplace-footer {
		grid-template-columns: 1fr;
	}

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

	.pm-catalog-search__links {
		justify-content: flex-start;
	}
}

@media (max-width: 680px) {
	.pm-catalog-home {
		margin-top: 0;
	}

	.pm-catalog-home .pm-nav {
		align-items: stretch;
		border-radius: 0;
		flex-direction: column;
	}

	.pm-catalog-search {
		border-radius: 0;
		margin-left: calc(var(--pm-space-4) * -1);
		margin-right: calc(var(--pm-space-4) * -1);
	}

	.pm-catalog-search__row {
		flex-direction: column;
	}

	.pm-catalog-search input,
	.pm-catalog-search button {
		border-radius: var(--pm-radius-sm);
		width: 100%;
	}

	.pm-catalog-intro__copy,
	.pm-catalog-section,
	.pm-marketplace-footer {
		padding: var(--pm-space-4);
	}

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

	.pm-promo-card {
		min-height: 156px;
	}

	.pm-trust-strip {
		gap: 0;
	}
}

html[dir="rtl"] .pm-marketplace,
html[lang^="ar"] .pm-marketplace,
body[dir="rtl"] .pm-marketplace {
	direction: rtl;
	text-align: right;
}

html[dir="rtl"] .pm-nav,
html[lang^="ar"] .pm-nav,
body[dir="rtl"] .pm-nav,
html[dir="rtl"] .marketplace-nav,
html[lang^="ar"] .marketplace-nav,
body[dir="rtl"] .marketplace-nav {
	direction: rtl;
}

html[dir="rtl"] .pm-nav__links,
html[lang^="ar"] .pm-nav__links,
body[dir="rtl"] .pm-nav__links,
html[dir="rtl"] .marketplace-nav-links,
html[lang^="ar"] .marketplace-nav-links,
body[dir="rtl"] .marketplace-nav-links,
html[dir="rtl"] .pm-catalog-search__links,
html[lang^="ar"] .pm-catalog-search__links,
body[dir="rtl"] .pm-catalog-search__links,
html[dir="rtl"] .pm-quick-links,
html[lang^="ar"] .pm-quick-links,
body[dir="rtl"] .pm-quick-links {
	justify-content: flex-start;
}

html[dir="rtl"] .pm-catalog-search input,
html[lang^="ar"] .pm-catalog-search input,
body[dir="rtl"] .pm-catalog-search input {
	border-radius: 0 var(--pm-radius-sm) var(--pm-radius-sm) 0;
	text-align: right;
}

html[dir="rtl"] .pm-catalog-search button,
html[lang^="ar"] .pm-catalog-search button,
body[dir="rtl"] .pm-catalog-search button {
	border-radius: var(--pm-radius-sm) 0 0 var(--pm-radius-sm);
}

html[dir="rtl"] .pm-table th,
html[dir="rtl"] .pm-table td,
html[lang^="ar"] .pm-table th,
html[lang^="ar"] .pm-table td,
body[dir="rtl"] .pm-table th,
body[dir="rtl"] .pm-table td {
	text-align: right;
}

html[dir="rtl"] .pm-catalog-stat-strip,
html[lang^="ar"] .pm-catalog-stat-strip,
body[dir="rtl"] .pm-catalog-stat-strip {
	left: auto;
	right: var(--pm-space-4);
}

html[dir="rtl"] .pm-promo-card::after,
html[lang^="ar"] .pm-promo-card::after,
body[dir="rtl"] .pm-promo-card::after {
	background: linear-gradient(270deg, rgba(16, 32, 51, 0.95), rgba(16, 32, 51, 0.48));
}

html[dir="rtl"] .pm-category-grid,
html[lang^="ar"] .pm-category-grid,
body[dir="rtl"] .pm-category-grid {
	border-left: 0;
	border-right: 1px solid var(--pm-color-border);
}

html[dir="rtl"] .pm-category-tile,
html[lang^="ar"] .pm-category-tile,
body[dir="rtl"] .pm-category-tile {
	border-left: 1px solid var(--pm-color-border);
	border-right: 0;
}

html[dir="rtl"] input,
html[dir="rtl"] select,
html[dir="rtl"] textarea,
html[lang^="ar"] input,
html[lang^="ar"] select,
html[lang^="ar"] textarea,
body[dir="rtl"] input,
body[dir="rtl"] select,
body[dir="rtl"] textarea {
	direction: rtl;
	text-align: right;
}

html[dir="rtl"] input[type="email"],
html[dir="rtl"] input[type="url"],
html[dir="rtl"] input[type="tel"],
html[lang^="ar"] input[type="email"],
html[lang^="ar"] input[type="url"],
html[lang^="ar"] input[type="tel"],
body[dir="rtl"] input[type="email"],
body[dir="rtl"] input[type="url"],
body[dir="rtl"] input[type="tel"] {
	direction: ltr;
	text-align: left;
}

html[dir="rtl"] .pm-button,
html[dir="rtl"] .pm-tag,
html[dir="rtl"] .listing-meta span,
html[dir="rtl"] .listing-facts span,
html[lang^="ar"] .pm-button,
html[lang^="ar"] .pm-tag,
html[lang^="ar"] .listing-meta span,
html[lang^="ar"] .listing-facts span,
body[dir="rtl"] .pm-button,
body[dir="rtl"] .pm-tag,
body[dir="rtl"] .listing-meta span,
body[dir="rtl"] .listing-facts span {
	unicode-bidi: plaintext;
}

@media (max-width: 680px) {
	html[dir="rtl"] .pm-catalog-search input,
	html[dir="rtl"] .pm-catalog-search button,
	html[lang^="ar"] .pm-catalog-search input,
	html[lang^="ar"] .pm-catalog-search button,
	body[dir="rtl"] .pm-catalog-search input,
	body[dir="rtl"] .pm-catalog-search button {
		border-radius: var(--pm-radius-sm);
	}
}

.pm-part-number,
.pm-ltr {
	direction: ltr;
	unicode-bidi: isolate;
}

.pm-part-number {
	color: var(--pm-color-text-muted);
	font-size: 0.92rem;
	font-weight: 750;
	margin-top: -0.25rem;
}

.pm-card-actions,
.pm-downloads,
.pm-related-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--pm-space-2);
}

.pm-card-actions a,
.pm-downloads a,
.pm-related-list a {
	border: 1px solid var(--pm-color-border);
	border-radius: var(--pm-radius-sm);
	color: var(--pm-color-primary-dark);
	font-weight: 750;
	padding: 0.55rem 0.7rem;
	text-decoration: none;
}

.pm-table-wrap {
	overflow-x: auto;
}

.pm-public-table {
	border-collapse: collapse;
	min-width: 720px;
	width: 100%;
}

.pm-public-table th,
.pm-public-table td {
	border-bottom: 1px solid var(--pm-color-border);
	padding: 0.75rem;
	text-align: start;
	vertical-align: top;
}

.pm-public-table th {
	color: var(--pm-color-text-muted);
	font-size: 0.82rem;
	text-transform: uppercase;
}

.pm-related-list {
	flex-direction: column;
}

.pm-related-list a {
	display: grid;
	gap: 0.2rem;
}

.pm-related-list span {
	color: var(--pm-color-text-muted);
	font-size: 0.86rem;
}

.pm-company-logo {
	border: 1px solid var(--pm-color-border);
	border-radius: var(--pm-radius-sm);
	max-height: 56px;
	max-width: 140px;
	object-fit: contain;
	padding: 0.35rem;
}

.pm-portal-form .marketplace-section {
	padding: 20px 0;
}

.pm-form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
}

.pm-form-grid label,
.pm-repeat-row label {
	display: grid;
	gap: 6px;
	font-weight: 600;
}

.pm-form-grid input,
.pm-form-grid textarea,
.pm-form-grid select,
.pm-repeat-row input,
.pm-repeat-row textarea,
.pm-repeat-row select {
	width: 100%;
	border: 1px solid var(--pm-border, #d9e2ec);
	border-radius: 8px;
	padding: 10px 12px;
	background: #fff;
	font: inherit;
}

.pm-repeat-list {
	display: grid;
	gap: 10px;
	margin: 12px 0;
}

.pm-repeat-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 10px;
	align-items: end;
}

.pm-repeat-row--wide {
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.pm-status {
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	padding: 4px 9px;
	font-size: 0.82rem;
	font-weight: 700;
	background: #eef2f7;
	color: #334155;
}

.pm-status--published { background: #dff7ea; color: #11613a; }
.pm-status--pending-review { background: #fff3cc; color: #7a4d00; }
.pm-status--rejected { background: #ffe1e1; color: #9f1d1d; }
.pm-status--inactive,
.pm-status--sold-out { background: #e7eaf0; color: #4b5563; }

.pm-list-thumb {
	width: 54px;
	height: 42px;
	object-fit: cover;
	border-radius: 6px;
}
