.vft-try-on-shortcode {
	display: block;
	width: 100%;
	margin: 15px 0;
}

.vft-try-on-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 10px 22px;
	border-radius: var(--btn-default-brd-radius, 0);
	cursor: pointer;
	text-align: center;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		opacity 0.2s ease,
		transform 0.2s ease;
}

.vft-try-on-button:hover {
	transform: translateY(-1px);
}

.vft-try-on-button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.vft-button-style-secondary {
	background: #ffffff;
	border: 1px solid currentColor;
	color: inherit;
}

.vft-button-style-outline {
	background: transparent;
	border: 1px solid currentColor;
	color: inherit;
}

.vft-button-style-link {
	min-height: auto;
	padding: 0;
	background: transparent;
	border: 0;
	color: inherit;
	text-decoration: underline;
}

.vft-button-style-link:hover {
	background: transparent;
}
/* Automatic Virtual Try-On placement above Add to Cart. */
.single-product .vft-try-on-shortcode {
	display: block;
	width: 100%;
	margin: 0 0 1rem;
	clear: both;
}

.single-product .vft-try-on-shortcode .vft-try-on-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
@media screen and (max-width: 767px) {
	.vft-try-on-button {
		width: 100%;
	}
}