/**
 * File: assets/css/mc-post-wizard.css
 *
 * Styles for the MappCanada unified posting wizard shell.
 * Mobile-first, BEM naming, scoped to .mc-wizard namespace.
 *
 * Sections:
 *   1.  Wizard page wrapper
 *   2.  Progress indicator
 *   3.  Step content area
 *   4.  Type-selector cards (Step 1)
 *   5.  Category selector (Step 2)
 *   6.  Location fields (Step 3)
 *   7.  Details fields (Step 4)
 *   8.  Media upload (Step 5)
 *   9.  Review & publish (Step 6)
 *  10.  Navigation bar
 *  11.  Login wall
 *  12.  Responsive overrides
 *
 * @version 1.1.0
 * @package MappCanada
 */

/* =========================================================================
   1. Wizard page wrapper
   ========================================================================= */

.mc-wizard-page {
	background: #f8f8f8;
	min-height: 100vh;
	padding-bottom: 80px; /* clearance for sticky nav on mobile */
}

.mc-wizard {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 16px 40px;
}

.mc-wizard__header {
	text-align: center;
	padding: 28px 16px 12px;
}

.mc-wizard__title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 4px;
	line-height: 1.2;
}

.mc-wizard__subtitle {
	font-size: 0.9rem;
	color: #666;
	margin: 0;
}

/* =========================================================================
   2. Progress indicator
   ========================================================================= */

.mc-wizard__progress {
	padding: 16px 0 8px;
}

/* Step-number indicators row */
.mc-wizard__steps {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	list-style: none;
	margin: 0 0 8px;
	padding: 0;
}

.mc-wizard__step-item {
	display: flex;
	align-items: center;
	flex: 1;
	min-width: 0;
}

.mc-wizard__step-item:last-child {
	flex: 0 0 auto;
}

/* Connector line between steps */
.mc-wizard__step-connector {
	flex: 1;
	height: 2px;
	background: #ddd;
	margin: 0 2px;
	transition: background 0.25s;
}

.mc-wizard__step-connector--done {
	background: #D52B1E;
}

/* Step bubble */
.mc-wizard__step-dot {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 2px solid #ddd;
	background: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	color: #aaa;
	flex-shrink: 0;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
	position: relative;
}

.mc-wizard__step-dot--done {
	background: #D52B1E;
	border-color: #D52B1E;
	color: #fff;
}

.mc-wizard__step-dot--done::after {
	content: '✓';
	font-size: 0.8rem;
}

.mc-wizard__step-dot--done span {
	display: none;
}

.mc-wizard__step-dot--active {
	background: #D52B1E;
	border-color: #D52B1E;
	color: #fff;
}

/* Step label row (hidden on very small screens, visible md+) */
.mc-wizard__step-labels {
	display: none;
	justify-content: space-between;
	padding: 0 2px;
}

.mc-wizard__step-label {
	font-size: 0.7rem;
	color: #999;
	text-align: center;
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 0 2px;
}

.mc-wizard__step-label--active {
	color: #D52B1E;
	font-weight: 600;
}

.mc-wizard__step-label--done {
	color: #555;
}

/* Linear progress bar */
.mc-wizard__progress-bar-track {
	height: 3px;
	background: #e8e8e8;
	border-radius: 2px;
	overflow: hidden;
	margin-top: 8px;
}

.mc-wizard__progress-bar-fill {
	height: 100%;
	background: #D52B1E;
	border-radius: 2px;
	transition: width 0.3s ease;
}

/* Step counter label */
.mc-wizard__step-count {
	text-align: center;
	font-size: 0.78rem;
	color: #888;
	margin-top: 6px;
}

/* =========================================================================
   3. Step content area
   ========================================================================= */

.mc-wizard__body {
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	padding: 24px 20px 20px;
	margin-top: 16px;
	box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.mc-wizard__step {
	display: none;
}

.mc-wizard__step--active {
	display: block;
	animation: mc-wizard-fadein 0.2s ease;
}

@keyframes mc-wizard-fadein {
	from { opacity: 0; transform: translateY(6px); }
	to   { opacity: 1; transform: translateY(0); }
}

.mc-wizard__step-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 4px;
}

.mc-wizard__step-desc {
	font-size: 0.88rem;
	color: #666;
	margin: 0 0 20px;
}

/* Step-level error message */
.mc-wizard__step-error {
	color: #c0392b;
	font-size: 0.85rem;
	font-weight: 600;
	margin: 10px 0 0;
	padding: 8px 12px;
	background: #fff0ef;
	border: 1px solid #f5c6c2;
	border-radius: 6px;
	display: block;
}

/* =========================================================================
   4. Type-selector cards (Step 1)
   ========================================================================= */

.mc-wizard__type-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 4px;
}

.mc-wizard__type-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 22px 12px 18px;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	background: #fafafa;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}

.mc-wizard__type-card:hover,
.mc-wizard__type-card:focus {
	border-color: #D52B1E;
	background: #fff6f6;
	outline: none;
	box-shadow: 0 0 0 2px rgba(213,43,30,.18);
}

.mc-wizard__type-card--selected {
	border-color: #D52B1E;
	background: #fff1f0;
	box-shadow: 0 0 0 3px rgba(213,43,30,.18);
}

.mc-wizard__type-icon {
	font-size: 2rem;
	line-height: 1;
}

.mc-wizard__type-label {
	font-size: 0.88rem;
	font-weight: 600;
	color: #222;
}

.mc-wizard__type-desc {
	font-size: 0.75rem;
	color: #888;
	margin-top: -4px;
}

/* =========================================================================
   5. Category selector (Step 2)
   ========================================================================= */

.mc-wizard__category-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-top: 4px;
}

.mc-wizard__category-chip {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border: 1.5px solid #e0e0e0;
	border-radius: 8px;
	background: #fafafa;
	cursor: pointer;
	font-size: 0.85rem;
	font-weight: 500;
	color: #333;
	transition: border-color 0.15s, background 0.15s;
}

.mc-wizard__category-chip:hover,
.mc-wizard__category-chip:focus {
	border-color: #D52B1E;
	background: #fff6f6;
	outline: none;
}

.mc-wizard__category-chip--selected {
	border-color: #D52B1E;
	background: #fff1f0;
	color: #D52B1E;
	font-weight: 600;
}

.mc-wizard__category-icon {
	font-size: 1.1rem;
}

.mc-wizard__category-loading {
	text-align: center;
	color: #aaa;
	font-size: 0.85rem;
	padding: 20px 0;
}

/* =========================================================================
   6. Location fields (Step 3)
   ========================================================================= */

.mc-wizard__field-group {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mc-wizard__field {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.mc-wizard__label {
	font-size: 0.85rem;
	font-weight: 600;
	color: #333;
}

.mc-wizard__label--required::after {
	content: ' *';
	color: #D52B1E;
}

.mc-wizard__input,
.mc-wizard__select,
.mc-wizard__textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1.5px solid #ccc;
	border-radius: 7px;
	font-size: 0.9rem;
	color: #1a1a1a;
	background: #fff;
	transition: border-color 0.15s, box-shadow 0.15s;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}

.mc-wizard__input:focus,
.mc-wizard__select:focus,
.mc-wizard__textarea:focus {
	outline: none;
	border-color: #D52B1E;
	box-shadow: 0 0 0 2px rgba(213,43,30,.15);
}

.mc-wizard__select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M0 0l6 7 6-7z' fill='%23666'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 32px;
}

.mc-wizard__textarea {
	min-height: 100px;
	resize: vertical;
}

.mc-wizard__field-hint {
	font-size: 0.78rem;
	color: #999;
}

.mc-wizard__field-error {
	font-size: 0.78rem;
	color: #c0392b;
	display: none;
}

.mc-wizard__field--invalid .mc-wizard__input,
.mc-wizard__field--invalid .mc-wizard__select,
.mc-wizard__field--invalid .mc-wizard__textarea {
	border-color: #c0392b;
}

.mc-wizard__field--invalid .mc-wizard__field-error {
	display: block;
}

/* =========================================================================
   7. Details fields (Step 4)
   ========================================================================= */

.mc-wizard__price-wrap {
	position: relative;
}

.mc-wizard__price-prefix {
	position: absolute;
	left: 11px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0.9rem;
	color: #666;
	pointer-events: none;
}

.mc-wizard__price-wrap .mc-wizard__input {
	padding-left: 26px;
}

.mc-wizard__inline-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

/* Type-specific field group labels */
.mc-wizard__field-section-label {
	font-size: 0.75rem;
	font-weight: 700;
	color: #aaa;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 4px 0 0;
	border-top: 1px solid #f0f0f0;
	margin-top: 4px;
}

/* =========================================================================
   8. Media upload (Step 5)
   ========================================================================= */

.mc-wizard__media-upload {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.mc-wizard__media-dropzone {
	border: 2px dashed #ccc;
	border-radius: 10px;
	padding: 30px 20px;
	text-align: center;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s;
	background: #fafafa;
}

.mc-wizard__media-dropzone:hover,
.mc-wizard__media-dropzone.mc-wizard__media-dropzone--drag {
	border-color: #D52B1E;
	background: #fff6f6;
}

.mc-wizard__media-dropzone-icon {
	font-size: 2.2rem;
	display: block;
	margin-bottom: 8px;
}

.mc-wizard__media-dropzone-text {
	font-size: 0.88rem;
	color: #666;
	margin: 0;
}

.mc-wizard__media-dropzone-cta {
	display: inline-block;
	margin-top: 8px;
	font-size: 0.82rem;
	color: #D52B1E;
	font-weight: 600;
}

.mc-wizard__media-input {
	display: none;
}

.mc-wizard__media-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.mc-wizard__media-thumb {
	position: relative;
	border-radius: 7px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #eee;
}

.mc-wizard__media-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mc-wizard__media-remove {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(0,0,0,.55);
	color: #fff;
	border: none;
	font-size: 0.75rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mc-wizard__media-count {
	font-size: 0.8rem;
	color: #888;
}

/* =========================================================================
   8b. Edit-mode existing gallery
   ========================================================================= */

.mc-wizard__existing-gallery {
	margin-bottom: 16px;
}

.mc-wizard__existing-gallery-label {
	font-size: 0.8rem;
	color: #666;
	margin-bottom: 8px;
}

.mc-wizard__existing-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.mc-wizard__existing-gallery-label {
	grid-column: 1 / -1;
}

.mc-wizard__existing-thumb {
	position: relative;
	border-radius: 7px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #eee;
	transition: opacity .2s;
}

.mc-wizard__existing-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Staged-for-removal: dim and show red overlay */
.mc-wizard__existing-thumb--staged {
	opacity: .45;
}

.mc-wizard__existing-thumb--staged::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(192,0,0,.18);
	border: 2px solid #c0392b;
	border-radius: 7px;
	pointer-events: none;
}

.mc-wizard__existing-remove {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(0,0,0,.55);
	color: #fff;
	border: none;
	font-size: 0.75rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .15s;
}

.mc-wizard__existing-remove--staged {
	background: #c0392b;
}

/* Locked type grid in edit mode */
.mc-wizard__type-grid--locked .mc-wizard__type-card {
	cursor: default;
	pointer-events: none;
	opacity: .7;
}

.mc-wizard__type-grid--locked .mc-wizard__type-card--selected {
	opacity: 1;
}

/* =========================================================================
   9. Review & publish (Step 6)
   ========================================================================= */

.mc-wizard__review {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* Quality notice — soft guidance displayed before the user publishes */
.mc-wizard__review-quality-notice {
	background: #fffbe6;
	border: 1px solid #f5e57a;
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 0.85rem;
	color: #7a6300;
	line-height: 1.5;
}

.mc-wizard__review-quality-notice strong {
	display: block;
	margin-bottom: 6px;
	font-size: 0.88rem;
}

.mc-wizard__review-quality-notice ul {
	margin: 0;
	padding-left: 20px;
}

.mc-wizard__review-quality-notice li {
	margin-bottom: 4px;
}

.mc-wizard__review-section {
	background: #f8f8f8;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	padding: 14px 16px;
}

.mc-wizard__review-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}

.mc-wizard__review-section-title {
	font-size: 0.82rem;
	font-weight: 600;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.mc-wizard__review-edit-btn {
	font-size: 0.8rem;
	color: #D52B1E;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	font-weight: 500;
}

.mc-wizard__review-row {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 0.88rem;
	color: #333;
	line-height: 1.4;
}

.mc-wizard__review-row-label {
	color: #888;
	min-width: 80px;
	flex-shrink: 0;
}

.mc-wizard__review-empty {
	color: #aaa;
	font-style: italic;
	font-size: 0.85rem;
}

/* Review row hidden state */
.mc-wizard__review-row[style*="display:none"] {
	display: none !important;
}

.mc-wizard__tos-wrap {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 6px;
	font-size: 0.85rem;
	color: #555;
}

.mc-wizard__tos-checkbox {
	margin-top: 2px;
	flex-shrink: 0;
}

.mc-wizard__tos-wrap a {
	color: #D52B1E;
}

/* =========================================================================
   10. Navigation bar
   ========================================================================= */

.mc-wizard__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 20px;
}

.mc-wizard__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 11px 22px;
	border-radius: 7px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	border: 2px solid transparent;
	transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
	line-height: 1.2;
	text-decoration: none;
}

.mc-wizard__btn--primary {
	background: #D52B1E;
	color: #fff;
	border-color: #D52B1E;
}

.mc-wizard__btn--primary:hover,
.mc-wizard__btn--primary:focus {
	background: #b72318;
	border-color: #b72318;
	outline: none;
	box-shadow: 0 0 0 3px rgba(213,43,30,.2);
}

.mc-wizard__btn--secondary {
	background: #fff;
	color: #444;
	border-color: #ccc;
}

.mc-wizard__btn--secondary:hover,
.mc-wizard__btn--secondary:focus {
	border-color: #888;
	background: #f5f5f5;
	outline: none;
}

.mc-wizard__btn--ghost {
	background: none;
	color: #888;
	border-color: transparent;
	padding-left: 8px;
	padding-right: 8px;
}

.mc-wizard__btn--ghost:hover {
	color: #333;
}

.mc-wizard__btn:disabled,
.mc-wizard__btn[aria-disabled="true"] {
	opacity: 0.45;
	cursor: not-allowed;
	pointer-events: none;
}

.mc-wizard__btn--publish {
	background: #2ecc71;
	color: #fff;
	border-color: #2ecc71;
}

.mc-wizard__btn--publish:hover,
.mc-wizard__btn--publish:focus {
	background: #27ae60;
	border-color: #27ae60;
	outline: none;
	box-shadow: 0 0 0 3px rgba(46,204,113,.2);
}

/* Publishing / loading state */
.mc-wizard__btn--publish[aria-busy="true"] {
	background: #27ae60;
	border-color: #27ae60;
	opacity: 0.8;
	cursor: wait;
}

/* Discard draft button */
.mc-wizard__btn--discard {
	background: transparent;
	color: #888;
	border: 1px solid #ddd;
	font-size: 0.78rem;
	padding: 6px 12px;
}

.mc-wizard__btn--discard:hover,
.mc-wizard__btn--discard:focus {
	color: #D52B1E;
	border-color: #D52B1E;
	background: transparent;
}

/* Nav spacer (pushes next button right when back is absent) */
.mc-wizard__nav-spacer {
	flex: 1;
}

/* =========================================================================
   11. Login wall
   ========================================================================= */

.mc-wizard__login-wall {
	text-align: center;
	padding: 40px 20px;
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	margin-top: 24px;
}

.mc-wizard__login-icon {
	font-size: 2.8rem;
	display: block;
	margin-bottom: 12px;
}

.mc-wizard__login-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 8px;
}

.mc-wizard__login-desc {
	font-size: 0.9rem;
	color: #666;
	margin: 0 0 20px;
}

.mc-wizard__login-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}

.mc-wizard__login-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 11px 28px;
	border-radius: 7px;
	font-size: 0.92rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s, box-shadow 0.15s;
}

.mc-wizard__login-btn--primary {
	background: #D52B1E;
	color: #fff;
}

.mc-wizard__login-btn--primary:hover {
	background: #b72318;
	box-shadow: 0 2px 8px rgba(213,43,30,.25);
}

.mc-wizard__login-btn--secondary {
	background: #f0f0f0;
	color: #333;
}

.mc-wizard__login-btn--secondary:hover {
	background: #e4e4e4;
}

/* =========================================================================
   12. Success state panel
   ========================================================================= */

.mc-wizard--success {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding: 40px 16px 60px;
}

.mc-wizard__success-panel {
	max-width: 520px;
	width: 100%;
	background: #fff;
	border: 1px solid #d9f0d9;
	border-radius: 12px;
	padding: 40px 32px 36px;
	text-align: center;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.mc-wizard__success-icon {
	display: block;
	font-size: 3rem;
	line-height: 1;
	margin-bottom: 16px;
}

.mc-wizard__success-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1a7a35;
	margin: 0 0 12px;
	line-height: 1.25;
}

.mc-wizard__success-body {
	font-size: 0.95rem;
	color: #555;
	margin: 0 0 28px;
	line-height: 1.6;
}

.mc-wizard__notice {
	font-size: 0.875rem;
	border-radius: 6px;
	padding: 10px 14px;
	margin: 0 0 20px;
	text-align: left;
	line-height: 1.5;
}

.mc-wizard__notice--warn {
	background: #fff8e1;
	border: 1px solid #f0c040;
	color: #6b4c00;
}

.mc-wizard__success-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}

/* =========================================================================
   13. Responsive overrides
   ========================================================================= */

/* Medium screens (480px+) */
@media (min-width: 480px) {
	.mc-wizard__steps {
		gap: 0;
	}

	.mc-wizard__step-labels {
		display: flex;
	}

	.mc-wizard__step-dot {
		width: 32px;
		height: 32px;
		font-size: 0.8rem;
	}

	.mc-wizard__type-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.mc-wizard__type-card {
		padding: 26px 16px 22px;
	}

	.mc-wizard__type-icon {
		font-size: 2.4rem;
	}

	.mc-wizard__media-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Desktop screens (680px+) */
@media (min-width: 680px) {
	.mc-wizard {
		padding: 0 24px 60px;
	}

	.mc-wizard__header {
		padding: 36px 0 16px;
	}

	.mc-wizard__title {
		font-size: 1.8rem;
	}

	.mc-wizard__body {
		padding: 32px 36px 28px;
	}

	.mc-wizard__type-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.mc-wizard__category-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.mc-wizard__media-grid {
		grid-template-columns: repeat(5, 1fr);
	}

	.mc-wizard__inline-row {
		gap: 16px;
	}

	.mc-wizard__step-label {
		font-size: 0.72rem;
	}
}

/* =========================================================================
   Phase 17: Autosave indicator
   ========================================================================= */

.mc-wizard__autosave-indicator {
	display: inline-block;
	margin-left: 10px;
	font-size: 0.75rem;
	color: #28a745;
	opacity: 0;
	transition: opacity 0.3s ease;
	vertical-align: middle;
}

.mc-wizard__autosave-indicator--visible {
	opacity: 1;
}

/* =========================================================================
   Phase 17: Resume / discard draft banner
   ========================================================================= */

.mc-wizard__resume-banner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	padding: 12px 16px;
	margin-bottom: 16px;
	background: #fff8e1;
	border: 1px solid #ffe082;
	border-radius: 8px;
	font-size: 0.875rem;
	color: #5d4037;
}

.mc-wizard__resume-icon {
	font-size: 1.2rem;
	flex-shrink: 0;
}

.mc-wizard__resume-text {
	flex: 1 1 200px;
}

.mc-wizard__resume-btn {
	display: inline-block;
	padding: 6px 14px;
	border: none;
	border-radius: 6px;
	font-size: 0.82rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s;
}

.mc-wizard__resume-btn--resume {
	background: #D52B1E;
	color: #fff;
}

.mc-wizard__resume-btn--resume:hover {
	background: #b72318;
}

.mc-wizard__resume-btn--reset {
	background: #f5f5f5;
	color: #333;
}

.mc-wizard__resume-btn--reset:hover {
	background: #e0e0e0;
}

/* =========================================================================
   Post a Listing header CTA button
   ========================================================================= */

.mc-header__post-btn {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 7px 14px;
	background: #D52B1E;
	color: #fff;
	border-radius: 6px;
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.15s, box-shadow 0.15s;
	flex-shrink: 0;
}

.mc-header__post-btn:hover,
.mc-header__post-btn:focus {
	background: #b72318;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(213,43,30,.28);
	outline: none;
}

/* In the drawer: full-width */
.mc-header__drawer .mc-header__post-btn {
	width: 100%;
	justify-content: center;
	padding: 11px 16px;
	font-size: 0.9rem;
	border-radius: 8px;
	margin-bottom: 12px;
}

/* On mobile (< 640px) hide the text label in the header bar brand row, keep "+" icon only.
   The mobile drawer shows the full "Post a Listing" CTA so no functionality is lost.
   This prevents the right slot from crowding out the logo at narrow widths. */
@media (max-width: 39.99em) {
	.mc-header__post-btn .mc-header__post-btn-text {
		display: none;
	}
}
