/* Tera Mera Bazar — OTP verification modal */
.pd-otp-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(8, 15, 30, .55);
}
.pd-otp-overlay.pd-otp-visible { display: flex; }

.pd-otp-box {
	position: relative;
	width: 100%;
	max-width: 380px;
	background: #fff;
	border-radius: 12px;
	padding: 26px 24px 22px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
	font-family: inherit;
}

.pd-otp-close {
	position: absolute;
	top: 10px;
	right: 12px;
	border: 0;
	background: none;
	font-size: 24px;
	line-height: 1;
	color: #9aa5b1;
	cursor: pointer;
}
.pd-otp-close:hover { color: #4b5563; }

.pd-otp-title { margin: 0 0 6px; font-size: 1.15rem; color: #0b1f3a; }
.pd-otp-lead { margin: 0 0 14px; font-size: .86rem; color: #6b7280; line-height: 1.5; }

.pd-otp-channels { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.pd-otp-channel-pill {
	padding: 6px 14px;
	border: 1px solid #d1d5db;
	border-radius: 16px;
	background: #f9fafb;
	font-size: .82rem;
	cursor: pointer;
}
.pd-otp-channel-pill.active { border-color: #0b3d91; background: #e8effb; color: #0b3d91; font-weight: 600; }

.pd-otp-dest-row { margin-bottom: 12px; }
.pd-otp-dest-label,
.pd-otp-code-label {
	display: block;
	font-size: .8rem;
	font-weight: 600;
	color: #374151;
	margin-bottom: 4px;
}
.pd-otp-dest-input,
.pd-otp-code-input {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: .95rem;
	box-sizing: border-box;
}
.pd-otp-code-input {
	letter-spacing: 8px;
	text-align: center;
	font-size: 1.3rem;
	font-weight: 700;
}

.pd-otp-send-btn,
.pd-otp-verify-btn {
	width: 100%;
	margin-top: 10px;
	padding: 11px 16px;
	border: 0;
	border-radius: 8px;
	background: #0b3d91;
	color: #fff;
	font-size: .92rem;
	font-weight: 600;
	cursor: pointer;
}
.pd-otp-send-btn:disabled,
.pd-otp-verify-btn:disabled { opacity: .6; cursor: default; }

.pd-otp-verify { margin-top: 14px; }

.pd-otp-resend {
	margin-top: 10px;
	text-align: center;
	font-size: .8rem;
	color: #6b7280;
}
.pd-otp-resend-btn {
	border: 0;
	background: none;
	color: #0b3d91;
	font-size: .8rem;
	font-weight: 600;
	cursor: pointer;
	padding: 0;
}
.pd-otp-resend-btn:disabled { color: #9aa5b1; cursor: default; }

.pd-otp-msg { margin: 12px 0 0; font-size: .82rem; line-height: 1.4; min-height: 1em; }
.pd-otp-msg[data-kind="err"] { color: #b32d2e; }
.pd-otp-msg[data-kind="ok"] { color: #0c7a6c; }
