/* يعتمد على متغيرات Sticky Mobile إن كانت محمّلة، مع بديل احتياطي بسيط بحال عدم توفرها */
.tbo-wrap { direction: rtl; max-width: 480px; margin: 0 auto; font-family: 'Cairo', sans-serif; }

.tbo-form.card-style {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 16px rgba(0,0,0,.06);
	padding: 4px;
}

.tbo-req { color: #d9534f; }

.tbo-price-banner {
	background: #faf6f0;
	border: 1px solid #e8d5b7;
	border-radius: 12px;
	padding: 12px 16px;
}
.tbo-price-desc { font-size: 12px; color: #6b6b6b; margin: 0 0 4px; }
.tbo-price-value { font-size: 16px; font-weight: 700; color: #8a6d3b; margin: 0; }

.tbo-phone-row { display: flex; gap: 8px; align-items: flex-start; }
.tbo-country-select select.tbo-country {
	height: 52px;
	border: 2px solid #e8e0d5;
	border-radius: 12px;
	padding: 0 8px;
	background: #fff;
	font-size: 14px;
}

.tbo-upload-box {
	display: flex;
	align-items: center;
	gap: 10px;
	border: 2px dashed #e8d5b7;
	border-radius: 16px;
	padding: 16px;
	cursor: pointer;
	background: #faf6f0;
	color: #8a6d3b;
}
.tbo-upload-box.done { border-color: #28a745; background: #e6f9ed; color: #1e7e34; }
.tbo-upload-box i { font-size: 20px; }

/* نافذة OTP المنبثقة */
.tbo-otp-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.55);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s ease;
}
.tbo-otp-overlay.active { opacity: 1; pointer-events: auto; }

.tbo-otp-box {
	width: 90%;
	max-width: 380px;
	background: #fff;
	border-radius: 18px;
	position: relative;
	direction: rtl;
	font-family: 'Cairo', sans-serif;
}
.tbo-otp-box .content { padding: 24px; }
.tbo-otp-close { position: absolute; left: 16px; top: 16px; color: #999; font-size: 18px; }

.tbo-otp-inputs { display: flex; gap: 8px; justify-content: center; margin: 20px 0; }
.tbo-otp-digit {
	width: 42px;
	height: 52px;
	text-align: center;
	font-size: 22px;
	border: 2px solid #e8e0d5;
	border-radius: 10px;
}
.tbo-otp-digit:focus { border-color: #cfae7c; outline: none; }

#tbo-otp-resend.disabled { opacity: .5; pointer-events: none; }
