/**
 * MerchFuse Wall Studio product-page entry point.
 */

.mf-wall-pdp {
	margin: 14px 0 0;
}

.mf-wall-pdp__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-height: 48px;
	padding: 13px 16px;
	border: 1px solid var(--mf-dark);
	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-align: center;
	text-decoration: none;
	text-transform: uppercase;
	box-shadow: none;
	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-pdp__button:visited {
	color: var(--mf-dark);
}

.mf-wall-pdp__button .mf-icon {
	width: 17px;
	height: 17px;
	flex: 0 0 auto;
}

.mf-wall-pdp__arrow {
	margin-left: auto;
}

.mf-wall-pdp__icon {
	margin-right: 2px;
}

@media (hover: hover) {
	.mf-wall-pdp__button:hover {
		transform: translateY(-1px);
		background: var(--mf-dark);
		color: var(--mf-white);
		box-shadow: var(--mf-shadow-sm);
	}
}

.mf-wall-pdp__button:focus-visible {
	outline: 2px solid var(--mf-dark);
	outline-offset: 3px;
}

@media (max-width: 640px) {
	.mf-wall-pdp {
		margin-top: 12px;
	}

	.mf-wall-pdp__button {
		min-height: 50px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mf-wall-pdp__button {
		transition-duration: 0.01ms !important;
	}
}

@media (prefers-contrast: more) {
	.mf-wall-pdp__button {
		border-width: 2px;
	}
}
