/* UCAM Bundle Products */
.ucam-bundle-buy {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 22px;
	background: #1e90ff;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s;
}
.ucam-bundle-buy:hover { background: #0070e0; color: #fff; }

.ucam-bundle-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99999;
	align-items: center;
	justify-content: center;
}
.ucam-bundle-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.55);
}
.ucam-bundle-modal__inner {
	position: relative;
	z-index: 1;
	background: #fff;
	border-radius: 10px;
	width: 96vw;
	max-width: 680px;
	height: 80vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.ucam-bundle-modal__close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: none;
	font-size: 26px;
	cursor: pointer;
	line-height: 1;
	z-index: 2;
	color: #444;
}
.ucam-bundle-modal__iframe-wrap {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ucam-bundle-modal__loading { color: #555; font-size: 15px; }
.ucam-bundle-modal__iframe  { width: 100%; height: 100%; border: none; }
