/* India +91 guard — custom modal (order checkout) */
.ynaps-india-dial-overlay {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px 16px;
	background: rgba(15, 23, 42, 0.55);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.ynaps-india-dial-overlay.is-open {
	display: flex;
}
.ynaps-india-dial-card {
	position: relative;
	width: 100%;
	max-width: 400px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 24px 48px rgba(15, 23, 42, 0.22);
	border: 1px solid rgba(0, 0, 0, 0.06);
	padding: 1.5rem 1.35rem 1.35rem;
	text-align: center;
	animation: ynapsIndiaDialIn 0.28s ease-out;
}
@keyframes ynapsIndiaDialIn {
	from {
		opacity: 0;
		transform: translateY(12px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}
.ynaps-india-dial-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	border: none;
	background: #f1f5f9;
	color: #64748b;
	border-radius: 8px;
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}
.ynaps-india-dial-close:hover {
	background: #e2e8f0;
	color: #1a1d21;
}
.ynaps-india-dial-flag {
	width: 52px;
	height: 36px;
	border-radius: 8px;
	object-fit: cover;
	margin: 0 auto 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.ynaps-india-dial-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: #1a1d21;
	margin: 0 0 10px;
	line-height: 1.35;
	letter-spacing: -0.02em;
}
.ynaps-india-dial-lead {
	font-size: 0.92rem;
	color: #475569;
	line-height: 1.55;
	margin: 0 0 8px;
}
.ynaps-india-dial-sub {
	font-size: 0.82rem;
	color: #64748b;
	line-height: 1.45;
	margin: 0 0 1.25rem;
	padding: 10px 12px;
	background: #f8fafc;
	border-radius: 10px;
	border: 1px solid #e2e8f0;
}
.ynaps-india-dial-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.ynaps-india-dial-btn {
	display: block;
	width: 100%;
	padding: 13px 16px;
	border-radius: 12px;
	font-size: 0.95rem;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	border: none;
	line-height: 1.3;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ynaps-india-dial-btn:active {
	transform: scale(0.98);
}
.ynaps-india-dial-btn-primary {
	background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
	color: #fff !important;
	box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
}
.ynaps-india-dial-btn-primary:hover {
	box-shadow: 0 6px 18px rgba(234, 88, 12, 0.4);
	color: #fff !important;
}
.ynaps-india-dial-btn-secondary {
	background: #fff;
	color: #334155 !important;
	border: 2px solid #e2e8f0;
}
.ynaps-india-dial-btn-secondary:hover {
	background: #f8fafc;
	border-color: #94a3b8;
}
.ynaps-india-dial-foot {
	font-size: 0.75rem;
	color: #94a3b8;
	margin: 12px 0 0;
	line-height: 1.4;
}
.ynaps-india-dial-hint {
	display: none;
	margin-top: 10px;
	padding: 10px 12px;
	font-size: 0.85rem;
	color: #0f766e;
	background: #ecfdf5;
	border: 1px solid #86efac;
	border-radius: 10px;
	line-height: 1.4;
	text-align: left;
}
.ynaps-india-dial-hint.is-visible {
	display: block;
	animation: ynapsIndiaDialIn 0.2s ease-out;
}
