.nofarpharm-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99999;
}
.nofarpharm-modal.is-open {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}
.nofarpharm-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba( 17, 24, 39, .55 );
	backdrop-filter: blur( 2px );
}
.nofarpharm-modal__dialog {
	position: relative;
	direction: rtl;
	text-align: center;
	width: 100%;
	max-width: 440px;
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 18px;
	padding: 32px 28px 28px;
	box-shadow: 0 20px 60px rgba( 0, 0, 0, .25 );
	animation: nofarpharm-modal-in .25s ease-out;
}
@keyframes nofarpharm-modal-in {
	from { opacity: 0; transform: translateY( 16px ) scale( .98 ); }
	to   { opacity: 1; transform: translateY( 0 ) scale( 1 ); }
}
.nofarpharm-modal__close {
	position: absolute;
	top: 14px;
	left: 14px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f3f4f6;
	border: 0;
	border-radius: 50%;
	font-size: 20px;
	line-height: 1;
	color: #6b7280;
	cursor: pointer;
	transition: background .15s ease, color .15s ease;
}
.nofarpharm-modal__close:hover {
	background: #e5e7eb;
	color: #111827;
}
.nofarpharm-modal__icon {
	width: 64px;
	height: 64px;
	margin: 4px auto 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	background: #e8f6ef;
	border-radius: 50%;
}
.nofarpharm-modal__title {
	margin: 0 0 8px;
	font-size: 22px;
	font-weight: 700;
	color: #111827;
}
.nofarpharm-modal__lead {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.5;
	color: #4b5563;
}
.nofarpharm-modal__zones {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	display: grid;
	gap: 8px;
	text-align: right;
}
.nofarpharm-modal__zones li {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #f9fafb;
	border-radius: 10px;
	padding: 10px 14px;
	font-size: 15px;
	color: #1f2937;
}
.nofarpharm-modal__zones li::before {
	content: "\2713";
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #2e9e6b;
	color: #fff;
	border-radius: 50%;
	font-size: 13px;
	font-weight: 700;
}
.nofarpharm-modal__hint {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.5;
	color: #6b7280;
}
.nofarpharm-shipping-terms {
	margin-inline-start: 6px;
	font-size: 13px;
	font-weight: 600;
	color: #2e9e6b;
	text-decoration: underline;
	cursor: pointer;
}
.nofarpharm-shipping-terms:hover {
	color: #1f7a51;
}
