.touchtry-ar-wrapper {
	margin: 15px 0;
}

.touchtry-ar-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: opacity 0.2s;
}

.touchtry-ar-btn:hover {
	opacity: 0.9;
}

.touchtry-ar-badge-wrap {
	margin-top: 8px;
}

.touchtry-ar-badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 600;
}

.touchtry-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	z-index: 999999;
	display: flex;
	flex-direction: column;
}

.touchtry-overlay-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 20px;
	background: rgba(0, 0, 0, 0.5);
}

.touchtry-overlay-header span {
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
}

.touchtry-overlay-close {
	background: rgba(255, 255, 255, 0.15);
	border: none;
	color: #ffffff;
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 14px;
	cursor: pointer;
}

.touchtry-overlay-close:hover {
	background: rgba(255, 255, 255, 0.25);
}

.touchtry-overlay iframe {
	flex: 1;
	width: 100%;
	border: none;
}

.touchtry-overlay-loading {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 16px;
}