/* Minupidu capability demo — public client portfolio page */

.mcd-page {
	--mcd-accent: var(--listeo-primary-color, #f91942);
	--mcd-border: #e8ebf2;
	--mcd-muted: #667085;
	--mcd-text: #101828;
	--mcd-surface: #f7f8fb;
	padding: 32px 0 72px;
	background: linear-gradient(180deg, #fff 0%, var(--mcd-surface) 220px);
}

.mcd-hero {
	max-width: 860px;
	margin-bottom: 40px;
}

.mcd-eyebrow {
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mcd-accent);
}

.mcd-title {
	margin: 0 0 14px;
	font-size: clamp(1.85rem, 3vw, 2.5rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--mcd-text);
}

.mcd-lead {
	margin: 0;
	font-size: 17px;
	line-height: 1.65;
	color: #344054;
}

.mcd-section {
	margin-bottom: 48px;
	padding: 28px;
	border: 1px solid var(--mcd-border);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 8px 28px rgba(16, 24, 40, 0.05);
}

.mcd-section--flagship {
	border-color: rgba(249, 25, 66, 0.22);
	box-shadow: 0 14px 40px rgba(249, 25, 66, 0.08);
}

.mcd-section-head h2 {
	margin: 0 0 8px;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--mcd-text);
}

.mcd-section-head p {
	margin: 0 0 12px;
	color: var(--mcd-muted);
	line-height: 1.55;
}

.mcd-live-links {
	margin: 0 0 8px !important;
	font-size: 14px;
	font-weight: 600;
}

.mcd-live-links a {
	color: var(--mcd-accent);
	text-decoration: none;
}

.mcd-live-links a:hover {
	text-decoration: underline;
}

.mcd-live-links span {
	margin: 0 8px;
	color: #d0d5dd;
}

.mcd-subblock {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid #eef2f6;
}

.mcd-subblock:first-of-type {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.mcd-subblock__title {
	margin: 0 0 16px;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--mcd-text);
}

.mcd-compare {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	align-items: start;
}

.mcd-panel {
	position: relative;
	padding: 18px;
	border-radius: 14px;
	border: 1px solid var(--mcd-border);
	background: #fcfcfd;
}

.mcd-panel--before {
	border-style: dashed;
	background: #fafafa;
	opacity: 0.92;
}

.mcd-panel--after,
.mcd-panel--winner {
	background: linear-gradient(180deg, #fff 0%, #fff7f8 100%);
	border-color: rgba(249, 25, 66, 0.22);
	box-shadow: 0 12px 32px rgba(249, 25, 66, 0.07);
}

.mcd-winner-badge {
	position: absolute;
	top: -11px;
	right: 16px;
	padding: 5px 12px;
	border-radius: 999px;
	background: var(--mcd-accent);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.mcd-panel h3 {
	margin: 0 0 8px;
	font-size: 1rem;
	font-weight: 700;
}

.mcd-panel-note {
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--mcd-muted);
}

.mcd-bullets {
	margin: 14px 0 0;
	padding-left: 18px;
	font-size: 14px;
	color: #344054;
	line-height: 1.45;
}

.mcd-bullets--muted {
	color: #98a2b3;
}

.mcd-bullets li + li {
	margin-top: 6px;
}

/* Reviews & ratings */

.mcd-reviews-shell {
	border-radius: 14px;
	border: 1px solid var(--mcd-border);
	background: #fff;
	padding: 14px;
}

.mcd-reviews-shell--legacy {
	background: #fafafa;
}

.mcd-reviews-shell--minu {
	border-color: rgba(249, 25, 66, 0.15);
	box-shadow: 0 12px 32px rgba(16, 24, 40, 0.08);
}

.mcd-reviews-shell__heading {
	margin: 0 0 12px;
	font-size: 15px;
	font-weight: 700;
	color: #667085;
}

.mcd-rating-overview {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 16px;
	margin-bottom: 16px;
	padding: 14px;
	border-radius: 14px;
	background: linear-gradient(135deg, #fff 0%, #fff9fa 100%);
	border: 1px solid #ffe0e6;
}

.mcd-rating-overview__score {
	text-align: center;
}

.mcd-rating-overview__number {
	display: block;
	font-size: 2.4rem;
	font-weight: 800;
	line-height: 1;
	color: var(--mcd-text);
}

.mcd-rating-overview__of {
	display: block;
	margin: 4px 0 8px;
	font-size: 12px;
	color: var(--mcd-muted);
}

.mcd-rating-overview__count {
	display: block;
	margin-top: 8px;
	font-size: 11px;
	color: var(--mcd-muted);
}

.mcd-star-row {
	display: inline-flex;
	gap: 2px;
	color: #f59e0b;
	font-size: 13px;
}

.mcd-star-row--lg {
	font-size: 16px;
	margin: 4px 0;
}

.mcd-rating-bars {
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
}

.mcd-rating-bar {
	display: grid;
	grid-template-columns: 1fr 1.4fr auto;
	gap: 8px;
	align-items: center;
	font-size: 12px;
}

.mcd-rating-bar__label {
	color: #475467;
	font-weight: 600;
}

.mcd-rating-bar__track {
	height: 8px;
	border-radius: 999px;
	background: #f2f4f7;
	overflow: hidden;
}

.mcd-rating-bar__track span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #fb7185, var(--mcd-accent));
}

.mcd-rating-bar strong {
	font-size: 12px;
	color: var(--mcd-text);
	min-width: 28px;
	text-align: right;
}

.mcd-review-item {
	padding-top: 14px;
	border-top: 1px solid #eef2f6;
}

.mcd-review-item--plain + .mcd-review-item--plain {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px dashed #e8ebf2;
}

.mcd-review-item__head {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin-bottom: 8px;
}

.mcd-review-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #eef2f6;
	color: #475467;
	font-size: 12px;
	font-weight: 700;
	flex-shrink: 0;
}

.mcd-review-item__head strong {
	display: block;
	font-size: 14px;
}

.mcd-review-date {
	display: block;
	font-size: 11px;
	color: var(--mcd-muted);
	margin-bottom: 4px;
}

.mcd-review-text {
	margin: 0 0 10px;
	font-size: 14px;
	line-height: 1.55;
	color: #344054;
}

.mcd-reply-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 12px;
	border: 1px solid var(--mcd-border);
	border-radius: 999px;
	background: #fff;
	font-size: 12px;
	font-weight: 600;
	color: var(--mcd-accent);
	cursor: default;
}

.mcd-reviews-shell .minupidu-owner-reply {
	margin-left: 0 !important;
}

/* Schema markup block */

.mcd-section--schema {
	border-color: rgba(16, 24, 40, 0.12);
	background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.mcd-schema-grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 24px;
	align-items: start;
}

.mcd-schema-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.mcd-schema-pill {
	display: inline-flex;
	padding: 6px 11px;
	border-radius: 999px;
	border: 1px solid #dbeafe;
	background: #eff6ff;
	color: #1d4ed8;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.mcd-schema-copy code {
	font-size: 12px;
	background: #f2f4f7;
	padding: 2px 6px;
	border-radius: 4px;
}

.mcd-schema-code {
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid #1e293b;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

.mcd-schema-code__bar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	background: #0f172a;
	border-bottom: 1px solid #1e293b;
}

.mcd-schema-code__bar span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #334155;
}

.mcd-schema-code__bar span:nth-child(1) { background: #ef4444; }
.mcd-schema-code__bar span:nth-child(2) { background: #f59e0b; }
.mcd-schema-code__bar span:nth-child(3) { background: #22c55e; }

.mcd-schema-code__bar em {
	margin-left: auto;
	font-style: normal;
	font-size: 11px;
	color: #94a3b8;
}

.mcd-schema-code__pre {
	margin: 0;
	padding: 16px 18px;
	background: #0b1220;
	overflow-x: auto;
}

.mcd-schema-code__pre code {
	display: block;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 12px;
	line-height: 1.55;
	color: #e2e8f0;
	white-space: pre;
}

/* Live catalog cards */

.mcd-live-card {
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--mcd-border);
	background: #fff;
}

.mcd-live-card--legacy {
	box-shadow: none;
}

.mcd-live-card--minu {
	border-color: rgba(249, 25, 66, 0.15);
	box-shadow: 0 14px 36px rgba(16, 24, 40, 0.1);
}

.mcd-live-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	background: #eaecf0;
}

.mcd-live-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mcd-live-card__tag {
	position: absolute;
	top: 10px;
	left: 10px;
	max-width: calc(100% - 20px);
	padding: 6px 11px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	background: rgba(255, 255, 255, 0.96);
	color: #344054;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mcd-live-card__tag--plain {
	color: #98a2b3;
	font-weight: 600;
}

.mcd-live-card__capacity {
	position: absolute;
	right: 10px;
	bottom: 10px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 10px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(0, 0, 0, 0.08);
	font-size: 12px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.mcd-live-card__capacity i {
	color: var(--mcd-accent);
}

.mcd-live-card__body {
	padding: 14px 16px 16px;
}

.mcd-live-card__body h4 {
	margin: 0 0 6px;
	font-size: 17px;
	font-weight: 700;
	color: var(--mcd-text);
}

.mcd-live-card__meta {
	margin: 0 0 8px;
	font-size: 13px;
	color: var(--mcd-muted);
}

.mcd-live-card__excerpt {
	margin: 0 0 10px;
	font-size: 13px;
	line-height: 1.45;
	color: #667085;
}

.mcd-live-card__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 10px;
}

.mcd-chip {
	display: inline-flex;
	padding: 4px 9px;
	border-radius: 999px;
	background: #f2f4f7;
	font-size: 11px;
	font-weight: 600;
	color: #475467;
}

.mcd-chip--accent {
	background: #fff1f2;
	color: var(--mcd-accent);
}

.mcd-live-card__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	font-size: 12px;
}

.mcd-live-card__stars {
	color: #f59e0b;
	font-weight: 700;
}

.mcd-live-card__muted,
.mcd-live-card__price {
	color: var(--mcd-muted);
	font-size: 11px;
}

/* Profile shells */

.mcd-profile-shell {
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--mcd-border);
	background: #fff;
}

.mcd-profile-shell--legacy {
	padding: 14px;
}

.mcd-profile-shell--legacy .mcd-profile-shell__thumb {
	margin-bottom: 12px;
	border-radius: 8px;
	overflow: hidden;
	max-height: 120px;
}

.mcd-profile-shell--legacy .mcd-profile-shell__thumb img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	filter: grayscale(0.15);
}

.mcd-profile-shell--legacy h4 {
	margin: 0 0 4px;
	font-size: 16px;
}

.mcd-profile-shell__crumb {
	margin: 0 0 10px;
	font-size: 12px;
	color: var(--mcd-muted);
}

.mcd-profile-shell--legacy hr {
	border: 0;
	border-top: 1px solid #eef2f6;
	margin: 10px 0;
}

.mcd-profile-shell--legacy p {
	margin: 0 0 10px;
	font-size: 13px;
	line-height: 1.5;
	color: #475467;
}

.mcd-profile-shell--minu {
	border-color: rgba(249, 25, 66, 0.15);
	box-shadow: 0 14px 36px rgba(16, 24, 40, 0.1);
}

.mcd-profile-shell__hero {
	position: relative;
}

.mcd-profile-shell__hero img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 200px;
	object-fit: cover;
}

.mcd-profile-shell__titlebar {
	padding: 12px 14px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, #fff 100%);
	border-bottom: 1px solid #f0f0f0;
}

.mcd-profile-shell__titlebar h4 {
	margin: 0 0 4px;
	font-size: 16px;
	font-weight: 700;
}

.mcd-profile-shell__titlebar span {
	font-size: 12px;
	color: var(--mcd-muted);
}

.mcd-profile-shell__modules {
	padding: 12px;
	background: #f9fafb;
}

.mcd-profile-shell__modules .minupidu-listing-block {
	margin-bottom: 12px !important;
}

.mcd-profile-shell__modules .minupidu-listing-block:last-child {
	margin-bottom: 0 !important;
}

.mcd-page .minupidu-lang-badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border-radius: 999px;
	border: 1px solid var(--mcd-border);
	background: #fff;
	text-decoration: none;
	color: inherit;
}

.mcd-mask-btn {
	display: inline-flex;
	margin-right: 8px;
	padding: 8px 14px;
	border: 1px solid var(--mcd-border);
	border-radius: 999px;
	background: #fff;
	font-size: 12px;
	font-weight: 600;
	color: #344054;
	cursor: default;
}

/* Rankings photo strip */

.mcd-rankings-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid #eef2f6;
}

.mcd-rankings-strip img {
	width: 100%;
	height: 110px;
	object-fit: cover;
	border-radius: 12px;
	border: 1px solid var(--mcd-border);
	box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}

/* Editorial + claim mocks */

.mcd-mock-archive__bar {
	padding: 12px 14px;
	background: #eef2f6;
	font-weight: 700;
	font-size: 14px;
}

.mcd-mock-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	padding: 12px;
	background: #fff;
}

.mcd-mock-archive__grid img {
	width: 100%;
	height: 72px;
	object-fit: cover;
	border-radius: 8px;
	filter: saturate(0.85);
}

.mcd-mock-landing {
	padding: 14px;
	border: 1px solid var(--mcd-border);
	border-radius: 14px;
	background: #fff;
}

.mcd-mock-crumb {
	margin-bottom: 10px;
	font-size: 12px;
	color: var(--mcd-muted);
}

.mcd-mock-landing__hero {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 12px;
	padding: 14px;
	border-radius: 12px;
	background: linear-gradient(135deg, #fff 0%, #f9fafc 58%, #fff7f8 100%);
}

.mcd-mock-landing__hero h4 {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 700;
}

.mcd-mock-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
}

.mcd-mock-stats span {
	padding: 4px 10px;
	border-radius: 999px;
	border: 1px solid var(--mcd-border);
	background: #fff;
	font-size: 11px;
	font-weight: 600;
}

.mcd-mock-landing__img {
	border-radius: 10px;
	overflow: hidden;
	min-height: 120px;
}

.mcd-mock-landing__img img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 120px;
	object-fit: cover;
}

.mcd-mock-claim {
	padding: 14px;
	border: 1px solid var(--mcd-border);
	border-radius: 12px;
	background: #fff;
}

.mcd-mock-claim h4 {
	margin: 0 0 10px;
	font-size: 15px;
	font-weight: 700;
}

.mcd-mock-input {
	height: 36px;
	margin-bottom: 10px;
	border-radius: 8px;
	background: #f2f4f7;
}

.mcd-mock-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 16px;
	border: 0;
	border-radius: 999px;
	background: #344054;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
}

.mcd-mock-btn--primary {
	background: var(--mcd-accent);
}

.mcd-mock-btn--outline {
	background: #fff;
	border: 1px solid var(--mcd-border);
	color: #344054;
}

.mcd-mock-btn--ghost {
	background: transparent;
	color: #344054;
	border: 1px solid transparent;
}

.mcd-mock-btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.mcd-steps {
	display: flex;
	gap: 8px;
	margin-bottom: 12px;
	font-size: 11px;
	font-weight: 600;
}

.mcd-steps span {
	padding: 5px 8px;
	border-radius: 999px;
	background: #f2f4f7;
	color: #667085;
}

.mcd-steps .is-done {
	background: #ecfdf3;
	color: #027a48;
}

.mcd-steps .is-active {
	background: #fff1f2;
	color: var(--mcd-accent);
}

.mcd-package-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	margin-bottom: 12px;
}

.mcd-package-cards div {
	padding: 12px;
	border: 1px solid var(--mcd-border);
	border-radius: 12px;
	text-align: center;
	font-size: 12px;
	background: #fff;
}

.mcd-package-cards .is-selected {
	border-color: var(--mcd-accent);
	box-shadow: 0 0 0 1px var(--mcd-accent);
}

/* CSV tool */

.mcd-section--csv {
	border-color: rgba(249, 25, 66, 0.22);
}

.mcd-csv-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.mcd-csv-file-label {
	display: inline-flex;
	align-items: center;
	margin: 0;
	padding: 0;
	cursor: pointer;
	line-height: 1;
}

.mcd-csv-file-label input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	overflow: hidden;
}

.mcd-csv-toolbar .mcd-mock-btn {
	min-height: 38px;
	box-sizing: border-box;
	margin: 0;
	line-height: 1.25;
	vertical-align: middle;
	font-family: inherit;
}

.mcd-csv-toolbar button.mcd-mock-btn {
	appearance: none;
	-webkit-appearance: none;
}

.mcd-csv-status {
	margin: 12px 0 0;
	font-size: 14px;
	font-weight: 600;
	color: #027a48;
}

.mcd-csv-status.is-error {
	color: #b42318;
}

.mcd-csv-filename {
	margin: 4px 0 0;
	font-size: 13px;
	color: var(--mcd-muted);
}

.mcd-csv-block {
	margin-top: 22px;
}

.mcd-csv-block h3 {
	margin: 0 0 8px;
	font-size: 1rem;
	font-weight: 700;
}

.mcd-csv-summary {
	margin: 0 0 10px;
	font-size: 14px;
	color: #344054;
}

.mcd-csv-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--mcd-border);
	border-radius: 12px;
}

.mcd-csv-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

.mcd-csv-table th,
.mcd-csv-table td {
	padding: 10px 12px;
	border-bottom: 1px solid #eef2f6;
	text-align: left;
	vertical-align: top;
}

.mcd-csv-table th {
	background: #f9fafb;
	font-weight: 700;
	color: #344054;
}

.mcd-csv-table tbody tr:last-child td {
	border-bottom: 0;
}

.mcd-status-pill {
	display: inline-block;
	padding: 3px 8px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
}

.mcd-status-pill--ok {
	background: #ecfdf3;
	color: #027a48;
}

.mcd-status-pill--review {
	background: #fffaeb;
	color: #b54708;
}

.mcd-status-pill--unknown {
	background: #f2f4f7;
	color: #475467;
}

.mcd-footer {
	margin-top: 28px;
	padding-top: 18px;
	border-top: 1px solid var(--mcd-border);
	font-size: 14px;
	color: var(--mcd-muted);
}

.mcd-footer a {
	color: var(--mcd-accent);
	text-decoration: none;
}

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

	.mcd-schema-grid {
		grid-template-columns: 1fr;
	}

	.mcd-rating-overview {
		grid-template-columns: 1fr;
	}

	.mcd-panel--after,
	.mcd-panel--winner {
		order: -1;
	}

	.mcd-mock-landing__hero {
		grid-template-columns: 1fr;
	}

	.mcd-section {
		padding: 18px;
	}
}

@media (min-width: 901px) {
	.mcd-compare--profile .mcd-panel--after,
	.mcd-compare--rankings .mcd-panel--after {
		transform: translateY(-2px);
	}
}
