/**
 * MerchFuse Wall Studio.
 */

.mf-wall {
	width: min(100% - 32px, 1560px);
	margin: 0 auto;
	padding: clamp(18px, 4vw, 48px) 0 clamp(42px, 6vw, 76px);
	color: var(--mf-dark);
	font-family: var(--mf-font-body);
}

.mf-wall__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 22px;
}

.mf-wall__eyebrow {
	margin: 0 0 8px;
	font-size: var(--mf-text-xs);
	font-weight: var(--mf-fw-semibold);
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--mf-muted);
}

.mf-wall__title {
	margin: 0;
	font-family: var(--mf-font-display);
	font-size: clamp(2.1rem, 5vw, 4.6rem);
	line-height: 0.96;
	letter-spacing: 0;
	color: var(--mf-dark);
}

.mf-wall__shop-link,
.mf-wall__selected a,
.mf-wall__more,
.mf-wall__filter-submit,
.mf-wall__reset,
.mf-wall__gallery-actions button,
.mf-wall__gallery-head button,
.mf-wall__ai-head button,
.mf-wall__ai-actions button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	border: 1px solid var(--mf-dark);
	border-radius: var(--mf-radius-sm);
	background: var(--mf-dark);
	color: var(--mf-white);
	font-size: var(--mf-text-xs);
	font-weight: var(--mf-fw-semibold);
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: transform var(--mf-dur-fast) var(--mf-ease), background var(--mf-dur-fast) var(--mf-ease), color var(--mf-dur-fast) var(--mf-ease), box-shadow var(--mf-dur-fast) var(--mf-ease);
}

.mf-wall__shop-link {
	gap: 8px;
	padding: 13px 16px;
	white-space: nowrap;
}

.mf-wall__shop-link .mf-icon {
	width: 16px;
	height: 16px;
}

.mf-wall__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
	gap: 18px;
	align-items: start;
}

.mf-wall__stage-panel,
.mf-wall__side {
	min-width: 0;
	border: 1px solid var(--mf-border);
	background: var(--mf-white);
}

.mf-wall__stage-panel {
	padding: 14px;
}

.mf-wall__mode-tabs,
.mf-wall__scene-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.mf-wall__mode-tabs {
	margin-bottom: 8px;
}

.mf-wall__mode-tabs button,
.mf-wall__scene-tabs button,
.mf-wall__frame-options button,
.mf-wall__layout-options button,
.mf-wall__stepper button,
.mf-wall__room-controls button,
.mf-wall__upload {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	border: 1px solid var(--mf-border-dk);
	border-radius: var(--mf-radius-sm);
	background: var(--mf-white);
	color: var(--mf-dark);
	font-size: var(--mf-text-xs);
	font-weight: var(--mf-fw-semibold);
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform var(--mf-dur-fast) var(--mf-ease), background var(--mf-dur-fast) var(--mf-ease), color var(--mf-dur-fast) var(--mf-ease), box-shadow var(--mf-dur-fast) var(--mf-ease);
}

.mf-wall__mode-tabs button {
	padding: 11px 14px;
}

.mf-wall__scene-tabs button {
	padding: 11px 13px;
}

.mf-wall__mode-tabs button[aria-pressed="true"],
.mf-wall__scene-tabs button[aria-pressed="true"],
.mf-wall__layout-options button[aria-pressed="true"] {
	background: var(--mf-dark);
	color: var(--mf-white);
}

.mf-wall__room-controls {
	display: grid;
	grid-template-columns: repeat(6, auto) minmax(120px, 1fr);
	gap: 8px;
	align-items: end;
	margin-bottom: 12px;
}

.mf-wall__room-controls[hidden] {
	display: none;
}

.mf-wall__room-controls button,
.mf-wall__upload {
	min-height: 42px;
	padding: 0 12px;
}

.mf-wall__upload {
	position: relative;
	overflow: hidden;
}

.mf-wall__upload input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.mf-wall__reference-field {
	width: 118px;
}

.mf-wall__reference-field input {
	min-height: 42px;
}

.mf-wall__room-status {
	min-width: 0;
	color: var(--mf-muted);
	font-size: var(--mf-text-xs);
	line-height: 1.35;
}

.mf-wall__room-status:empty {
	display: none;
}

.mf-wall__stage {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1600 / 1067;
	background: var(--mf-bg-subtle);
}

.mf-wall__canvas {
	width: 100%;
	height: 100%;
	display: block;
	background: var(--mf-bg-subtle);
	cursor: grab;
	touch-action: none;
}

.mf-wall__canvas.is-dragging {
	cursor: grabbing;
}

.mf-wall__canvas-empty {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 20px;
	pointer-events: none;
	color: var(--mf-muted);
}

.mf-wall__canvas-empty[hidden] {
	display: none;
}

.mf-wall__canvas-empty strong {
	font-size: var(--mf-text-sm);
	font-weight: var(--mf-fw-semibold);
	letter-spacing: 0;
	text-transform: uppercase;
}

.mf-wall__toolbar {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) minmax(240px, 1.2fr) auto auto;
	gap: 10px;
	align-items: end;
	margin-top: 12px;
}

.mf-wall__field,
.mf-wall__toolbar label,
.mf-wall__filters label {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.mf-wall__field span,
.mf-wall__frame-label {
	font-size: var(--mf-text-xs);
	font-weight: var(--mf-fw-semibold);
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--mf-muted);
}

.mf-wall__frames {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.mf-wall__frame-options {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	min-width: 0;
}

.mf-wall__frame-options button {
	gap: 7px;
	min-height: 42px;
	padding: 0 10px;
	white-space: nowrap;
}

.mf-wall__frame-options button[aria-pressed="true"] {
	background: var(--mf-dark);
	color: var(--mf-white);
}

.mf-wall__frame-swatch {
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
	border: 1px solid currentColor;
	background: var(--mf-white);
	box-shadow: inset 0 0 0 3px var(--mf-bg-subtle);
}

.mf-wall__frame-swatch--none {
	background: linear-gradient(135deg, transparent 0 44%, currentColor 46% 54%, transparent 56% 100%);
	box-shadow: none;
}

.mf-wall__frame-swatch--black {
	background: var(--mf-dark);
	box-shadow: inset 0 0 0 3px var(--mf-dark);
}

.mf-wall__frame-swatch--white {
	background: var(--mf-white);
	box-shadow: inset 0 0 0 3px var(--mf-white);
}

.mf-wall__frame-swatch--oak {
	background: #b68a5d;
	box-shadow: inset 0 0 0 3px #d8b98b;
}

.mf-wall__frame-swatch--natural {
	background: #d0ad78;
	box-shadow: inset 0 0 0 3px #ead5ac;
}

.mf-wall select,
.mf-wall input,
.mf-wall textarea {
	width: 100%;
	min-height: 42px;
	border: 1px solid var(--mf-border-dk);
	border-radius: var(--mf-radius-sm);
	background: var(--mf-white);
	color: var(--mf-dark);
	font-size: var(--mf-text-sm);
	line-height: 1.2;
	letter-spacing: 0;
}

.mf-wall select {
	padding: 0 34px 0 12px;
}

.mf-wall input {
	padding: 0 12px;
}

.mf-wall textarea {
	min-height: 92px;
	padding: 11px 12px;
	resize: vertical;
}

.mf-wall__stepper {
	display: grid;
	grid-template-columns: 40px 58px 40px;
	align-items: center;
	height: 42px;
	border: 1px solid var(--mf-border-dk);
	border-radius: var(--mf-radius-sm);
	overflow: hidden;
	background: var(--mf-white);
}

.mf-wall__stepper button {
	width: 40px;
	min-height: 40px;
	border: 0;
	border-radius: 0;
	background: transparent;
	font-size: var(--mf-text-lg);
}

.mf-wall__stepper span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	font-size: var(--mf-text-xs);
	font-weight: var(--mf-fw-semibold);
	line-height: 1;
	letter-spacing: 0;
	color: var(--mf-muted);
}

.mf-wall__reset {
	padding: 0 14px;
	background: var(--mf-white);
	color: var(--mf-dark);
}

.mf-wall__side {
	position: sticky;
	top: calc(var(--mf-header-height, 88px) + 18px);
	display: grid;
	gap: 14px;
	padding: 14px;
}

.mf-wall__filters {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 132px 42px;
	gap: 8px;
	align-items: end;
}

.mf-wall__filter-submit {
	width: 42px;
	padding: 0;
}

.mf-wall__filter-submit .mf-icon {
	width: 17px;
	height: 17px;
}

.mf-wall__status {
	min-height: 18px;
	font-size: var(--mf-text-xs);
	line-height: 1.4;
	color: var(--mf-muted);
}

.mf-wall__gallery-builder {
	display: grid;
	gap: 10px;
	padding: 12px;
	border: 1px solid var(--mf-border);
	background: var(--mf-bg-soft);
}

.mf-wall a:focus-visible,
.mf-wall button:focus-visible,
.mf-wall input:focus-visible,
.mf-wall select:focus-visible,
.mf-wall textarea:focus-visible,
.mf-wall__canvas:focus-visible {
	outline: 3px solid var(--mf-green);
	outline-offset: 2px;
}

.mf-wall__gallery-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.mf-wall__gallery-head span {
	min-width: 0;
	font-size: var(--mf-text-xs);
	font-weight: var(--mf-fw-semibold);
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--mf-muted);
}

.mf-wall__gallery-head button,
.mf-wall__gallery-actions button {
	min-height: 38px;
	padding: 0 12px;
	font-size: var(--mf-text-xs);
}

.mf-wall__layout-options {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 6px;
}

.mf-wall__layout-options button {
	min-width: 0;
	min-height: 36px;
	padding: 0 8px;
}

.mf-wall__gallery-list {
	display: grid;
	gap: 6px;
}

.mf-wall__gallery-item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
	align-items: center;
	min-height: 48px;
	padding: 6px;
	border: 1px solid var(--mf-border);
	background: var(--mf-white);
}

.mf-wall__gallery-item[aria-current="true"] {
	box-shadow: inset 0 0 0 2px var(--mf-dark);
}

.mf-wall__gallery-item img {
	width: 42px;
	height: 42px;
	object-fit: contain;
	background: var(--mf-bg-subtle);
}

.mf-wall__gallery-select {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 8px;
	align-items: center;
	min-width: 0;
	min-height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--mf-dark);
	text-align: left;
	cursor: pointer;
}

.mf-wall__gallery-item strong,
.mf-wall__gallery-item span,
.mf-wall__gallery-item em {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mf-wall__gallery-item strong {
	font-size: var(--mf-text-xs);
	font-weight: var(--mf-fw-semibold);
	line-height: 1.2;
	letter-spacing: 0;
}

.mf-wall__gallery-item em {
	margin-top: 3px;
	color: var(--mf-muted);
	font-size: var(--mf-text-xs);
	font-style: normal;
	line-height: 1.2;
}

.mf-wall__gallery-item > button:not(.mf-wall__gallery-select) {
	min-width: 34px;
	min-height: 34px;
	border: 1px solid var(--mf-border-dk);
	background: var(--mf-white);
	color: var(--mf-dark);
	font-size: var(--mf-text-xs);
	font-weight: var(--mf-fw-semibold);
	line-height: 1;
	cursor: pointer;
	transition: transform var(--mf-dur-fast) var(--mf-ease), background var(--mf-dur-fast) var(--mf-ease), color var(--mf-dur-fast) var(--mf-ease), box-shadow var(--mf-dur-fast) var(--mf-ease);
}

.mf-wall__gallery-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.mf-wall__gallery-actions button[hidden] {
	display: none;
}

.mf-wall__gallery-status {
	color: var(--mf-muted);
	font-size: var(--mf-text-xs);
	line-height: 1.35;
}

.mf-wall__gallery-status:empty {
	display: none;
}

.mf-wall__recommendations {
	display: grid;
	gap: 8px;
	padding: 12px;
	border: 1px solid var(--mf-border);
	background: var(--mf-white);
}

.mf-wall__recommendations[hidden] {
	display: none;
}

.mf-wall__recommendations-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.mf-wall__recommendations-head span {
	min-width: 0;
	font-size: var(--mf-text-xs);
	font-weight: var(--mf-fw-semibold);
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--mf-muted);
}

.mf-wall__recommendations-head button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	min-width: 34px;
	height: 34px;
	border: 1px solid var(--mf-border-dk);
	border-radius: var(--mf-radius-sm);
	background: var(--mf-white);
	color: var(--mf-dark);
	cursor: pointer;
	transition: transform var(--mf-dur-fast) var(--mf-ease), box-shadow var(--mf-dur-fast) var(--mf-ease);
}

.mf-wall__recommendations-head .mf-icon {
	width: 16px;
	height: 16px;
}

.mf-wall__recommendation-list {
	display: grid;
	gap: 8px;
}

.mf-wall-rec {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	gap: 9px;
	align-items: center;
	min-width: 0;
	min-height: 58px;
	padding: 6px;
	border: 1px solid var(--mf-border);
	border-radius: var(--mf-radius-sm);
	background: var(--mf-bg-subtle);
	color: var(--mf-dark);
	text-align: left;
	cursor: pointer;
	transition: transform var(--mf-dur-fast) var(--mf-ease), box-shadow var(--mf-dur-fast) var(--mf-ease), background var(--mf-dur-fast) var(--mf-ease);
}

.mf-wall-rec img {
	width: 52px;
	height: 52px;
	object-fit: contain;
	background: var(--mf-white);
}

.mf-wall-rec span,
.mf-wall-rec strong,
.mf-wall-rec em {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mf-wall-rec strong {
	font-size: var(--mf-text-xs);
	font-weight: var(--mf-fw-semibold);
	line-height: 1.2;
	letter-spacing: 0;
}

.mf-wall-rec em {
	margin-top: 4px;
	color: var(--mf-muted);
	font-size: var(--mf-text-xs);
	font-style: normal;
	line-height: 1.2;
}

.mf-wall__ai {
	display: grid;
	gap: 10px;
	padding: 12px;
	border: 1px solid var(--mf-border);
	background: var(--mf-bg-soft);
}

.mf-wall__ai-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.mf-wall__ai-head span {
	min-width: 0;
	font-size: var(--mf-text-xs);
	font-weight: var(--mf-fw-semibold);
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--mf-muted);
}

.mf-wall__ai-head button,
.mf-wall__ai-actions button {
	min-height: 38px;
	padding: 0 12px;
	font-size: var(--mf-text-xs);
}

.mf-wall__ai-output {
	min-height: 64px;
	padding: 10px;
	border: 1px solid var(--mf-border);
	background: var(--mf-white);
	color: var(--mf-dark);
	font-size: var(--mf-text-xs);
	line-height: 1.5;
	white-space: pre-wrap;
}

.mf-wall__ai-output:empty {
	display: none;
}

.mf-wall__ai-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.mf-wall__ai-actions button[hidden] {
	display: none;
}

.mf-wall__ai-status {
	color: var(--mf-muted);
	font-size: var(--mf-text-xs);
	line-height: 1.35;
}

.mf-wall__ai-status:empty {
	display: none;
}

.mf-wall__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	min-height: 180px;
}

.mf-wall-card {
	display: grid;
	gap: 8px;
	align-content: start;
	min-width: 0;
	padding: 0;
	border: 1px solid var(--mf-border);
	border-radius: var(--mf-radius-sm);
	background: var(--mf-white);
	color: var(--mf-dark);
	text-align: left;
	cursor: pointer;
	overflow: hidden;
	transition: transform var(--mf-dur-fast) var(--mf-ease), box-shadow var(--mf-dur-fast) var(--mf-ease), background var(--mf-dur-fast) var(--mf-ease);
}

.mf-wall-card[aria-pressed="true"] {
	box-shadow: inset 0 0 0 2px var(--mf-dark);
}

.mf-wall-card img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	background: var(--mf-bg-subtle);
}

.mf-wall-card span {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	min-height: 38px;
	padding: 0 10px 10px;
	overflow: hidden;
	font-size: var(--mf-text-xs);
	font-weight: var(--mf-fw-semibold);
	line-height: 1.35;
	letter-spacing: 0;
}

.mf-wall__more {
	width: 100%;
	padding: 0 16px;
}

.mf-wall__selected {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	padding-top: 14px;
	border-top: 1px solid var(--mf-border);
}

.mf-wall__selected[hidden] {
	display: none;
}

.mf-wall__selected p {
	margin: 0 0 4px;
	overflow: hidden;
	font-size: var(--mf-text-sm);
	font-weight: var(--mf-fw-semibold);
	line-height: 1.3;
	letter-spacing: 0;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mf-wall__selected div div {
	font-size: var(--mf-text-sm);
	color: var(--mf-muted);
}

.mf-wall__selected a {
	padding: 0 14px;
	white-space: nowrap;
}

.mf-wall__selected-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.mf-wall__selected-actions a[hidden] {
	display: none;
}

.mf-wall__noscript {
	margin: 18px 0 0;
	padding: 14px;
	border: 1px solid var(--mf-border);
	background: var(--mf-bg-soft);
	color: var(--mf-muted);
}

.mf-wall__faq {
	margin-top: 26px;
	padding-top: 20px;
	border-top: 1px solid var(--mf-border);
}

.mf-wall__faq h2 {
	margin: 0 0 12px;
	font-family: var(--mf-font-display);
	font-size: var(--mf-text-xl);
	line-height: 1.1;
	letter-spacing: 0;
	color: var(--mf-dark);
}

.mf-wall__faq-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.mf-wall__faq-item {
	min-width: 0;
	padding: 14px;
	border: 1px solid var(--mf-border);
	background: var(--mf-bg-soft);
}

.mf-wall__faq-item h3 {
	margin: 0 0 8px;
	font-size: var(--mf-text-sm);
	font-weight: var(--mf-fw-semibold);
	line-height: 1.25;
	letter-spacing: 0;
}

.mf-wall__faq-item p {
	margin: 0;
	color: var(--mf-muted);
	font-size: var(--mf-text-sm);
	line-height: 1.55;
}

@media (hover: hover) {
	.mf-wall__shop-link:hover,
	.mf-wall__selected a:hover,
	.mf-wall__more:hover,
	.mf-wall__filter-submit:hover,
	.mf-wall__gallery-actions button:hover,
	.mf-wall__gallery-head button:hover,
	.mf-wall__ai-head button:hover,
	.mf-wall__ai-actions button:hover {
		transform: translateY(-1px);
		background: var(--mf-white);
		color: var(--mf-dark);
		box-shadow: var(--mf-shadow-sm);
	}

	.mf-wall__reset:hover,
	.mf-wall__mode-tabs button:hover,
	.mf-wall__scene-tabs button:hover,
	.mf-wall__frame-options button:hover,
	.mf-wall__layout-options button:hover,
	.mf-wall__stepper button:hover,
	.mf-wall__room-controls button:hover,
	.mf-wall__upload:hover,
	.mf-wall__gallery-item > button:not(.mf-wall__gallery-select):hover,
	.mf-wall__gallery-select:hover,
	.mf-wall__recommendations-head button:hover,
	.mf-wall-rec:hover,
	.mf-wall-card:hover {
		transform: translateY(-1px);
		box-shadow: var(--mf-shadow-sm);
	}
}

@media (max-width: 1180px) {
	.mf-wall__layout {
		grid-template-columns: 1fr;
	}

	.mf-wall__side {
		position: static;
	}

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

	.mf-wall__room-controls {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.mf-wall__room-status {
		grid-column: 1 / -1;
	}
}

@media (max-width: 760px) {
	.mf-wall {
		width: min(100% - 24px, 1560px);
		padding-top: 10px;
	}

	.mf-wall__header {
		display: grid;
		align-items: start;
	}

	.mf-wall__shop-link {
		width: 100%;
	}

	.mf-wall__stage-panel,
	.mf-wall__side {
		padding: 10px;
	}

	.mf-wall__toolbar {
		grid-template-columns: 1fr;
	}

	.mf-wall__mode-tabs button,
	.mf-wall__room-controls button,
	.mf-wall__upload {
		flex: 1 1 auto;
	}

	.mf-wall__room-controls {
		grid-template-columns: 1fr 1fr;
	}

	.mf-wall__reference-field,
	.mf-wall__room-status {
		grid-column: 1 / -1;
		width: 100%;
	}

	.mf-wall__frame-options button {
		flex: 1 1 94px;
	}

	.mf-wall__stepper {
		grid-template-columns: 1fr 1.2fr 1fr;
	}

	.mf-wall__stepper button {
		width: auto;
	}

	.mf-wall__filters {
		grid-template-columns: 1fr 118px 42px;
	}

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

	.mf-wall__layout-options {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mf-wall__selected {
		grid-template-columns: 1fr;
	}

	.mf-wall__selected-actions {
		justify-content: stretch;
	}

	.mf-wall__selected-actions a {
		flex: 1 1 auto;
	}

	.mf-wall__faq-list {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mf-wall *,
	.mf-wall *::before,
	.mf-wall *::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media (prefers-contrast: more) {
	.mf-wall__stage-panel,
	.mf-wall__side,
	.mf-wall-card,
	.mf-wall select,
	.mf-wall input,
	.mf-wall textarea,
	.mf-wall__stepper,
	.mf-wall__frame-swatch,
	.mf-wall__upload,
	.mf-wall__gallery-builder,
	.mf-wall__gallery-item,
	.mf-wall__gallery-item > button:not(.mf-wall__gallery-select),
	.mf-wall__recommendations,
	.mf-wall-rec,
	.mf-wall__ai,
	.mf-wall__ai-output,
	.mf-wall__faq-item {
		border-width: 2px;
	}
}
