/* MassingPro front-end styles. Scoped under .mp-wrap to avoid theme clashes. */
.mp-wrap {
	--mp-ink: #1f2a37;
	--mp-accent: #c8862b;
	--mp-line: #e2e5ea;
	max-width: 920px;
	margin: 0 auto;
}
.mp-wrap * { box-sizing: border-box; }

.mp-account { display: flex; justify-content: flex-end; margin-bottom: 1rem; }
.mp-credit-chip {
	background: var(--mp-ink); color: #fff; border-radius: 999px;
	padding: .3rem .8rem; font-size: .85rem; font-weight: 600;
}

.mp-eyebrow { text-transform: uppercase; letter-spacing: .06em; font-size: .75rem; color: var(--mp-accent); font-weight: 700; margin: 0 0 .3rem; }
.mp-muted { color: #6b7280; }
.mp-back { text-decoration: none; font-weight: 600; }

.mp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; margin: 1rem 0; }
.mp-card { border: 1px solid var(--mp-line); border-radius: 12px; padding: 1.1rem; background: #fff; display: flex; flex-direction: column; }
.mp-card h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.mp-card p { margin: 0 0 1rem; color: #4b5563; font-size: .92rem; flex: 1; }
.mp-card-foot { display: flex; justify-content: space-between; align-items: center; }
.mp-cost { font-size: .85rem; color: #6b7280; }
.mp-price { font-size: 1.2rem; font-weight: 700; margin: .2rem 0; }

.mp-btn {
	display: inline-block; border: 1px solid var(--mp-ink); color: var(--mp-ink);
	background: #fff; border-radius: 8px; padding: .5rem .9rem; font-weight: 600;
	text-decoration: none; cursor: pointer; font-size: .9rem;
}
.mp-btn:hover { background: #f3f4f6; }
.mp-btn-solid { background: var(--mp-ink); color: #fff; }
.mp-btn-solid:hover { background: #111827; color: #fff; }
.mp-btn:disabled { opacity: .6; cursor: default; }

.mp-form { margin-top: 1rem; }
.mp-sample-bar { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; margin-bottom: 1rem; }
.mp-field { margin-bottom: 1rem; display: inline-block; width: calc(50% - .5rem); vertical-align: top; }
.mp-field:nth-child(odd) { margin-right: 1rem; }
.mp-field-full, .mp-field.mp-field-full { display: block; width: 100%; margin-right: 0; }
.mp-field label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: .3rem; }
.mp-field input[type="text"], .mp-field textarea, .mp-field input[type="file"] {
	width: 100%; padding: .55rem .7rem; border: 1px solid var(--mp-line); border-radius: 8px; font-size: .95rem; font-family: inherit;
}
.mp-field textarea { min-height: 120px; resize: vertical; }

.mp-result-wrap { margin-top: 2rem; }
.mp-download {
	display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
	border: 1px solid var(--mp-accent); border-radius: 12px; padding: 1rem 1.2rem; margin-bottom: 1.5rem;
}
.mp-result {
	white-space: pre-wrap; word-wrap: break-word; background: #f9fafb; border: 1px solid var(--mp-line);
	border-radius: 10px; padding: 1.1rem; font-size: .9rem; line-height: 1.5; overflow-x: auto;
}
.mp-disclaimer { font-size: .82rem; margin-top: .6rem; }
.mp-notice { background: #fff7ed; border: 1px solid #fed7aa; border-radius: 8px; padding: .8rem 1rem; }
.mp-buy-title { margin-top: 2.5rem; }

@media ( max-width: 600px ) {
	.mp-field { width: 100%; margin-right: 0; display: block; }
}
