.furgoo-vc-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	box-sizing: border-box;
}

.furgoo-vc-modal[hidden] {
	display: none !important;
}

.furgoo-vc-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(18, 18, 18, 0.65);
	backdrop-filter: blur(4px);
}

.furgoo-vc-modal__panel {
	position: relative;
	width: 100%;
	max-width: 480px;
	height: min(92vh, 860px);
	background: #f5f6fa;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 24px 80px rgba(14, 35, 161, 0.25);
	display: flex;
	flex-direction: column;
}

.furgoo-vc-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 10;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	background: rgba(18, 18, 18, 0.08);
	color: #121212;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.furgoo-vc-modal__close:hover,
.furgoo-vc-modal__close:focus {
	background: rgba(18, 18, 18, 0.14);
	outline: none;
}

.furgoo-vc-fallback {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 32px 24px;
	text-align: center;
	color: #121212;
}

.furgoo-vc-fallback p {
	margin: 0 0 12px;
	line-height: 1.5;
}

.furgoo-vc-fallback code {
	display: inline-block;
	margin-top: 8px;
	padding: 8px 12px;
	border-radius: 8px;
	background: #eef0fb;
	color: #0e23a1;
	font-size: 13px;
}

.furgoo-vc-root {
	flex: 1;
	min-height: 0;
	overflow: hidden;
	height: 100%;
}

.furgoo-vc-root,
.furgoo-vc-root * {
	box-sizing: border-box;
}

.furgoo-vc-trigger-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border: none;
	border-radius: 999px;
	background: #fefa3e;
	color: #121212;
	font-weight: 800;
	font-size: 16px;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.furgoo-vc-trigger-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(14, 35, 161, 0.18);
}

body.furgoo-vc-modal-open {
	overflow: hidden;
}
