/* Site-wide customer notification modal (hhNotify). Matches region-popup look. */
#hh-notify-backdrop {
	display: none;
	position: fixed;
	z-index: 10040;
	inset: 0;
	background: rgba(15, 28, 12, 0.55);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	align-items: flex-start;
	justify-content: center;
	padding: 24px 16px;
	box-sizing: border-box;
	overflow-y: auto;
}
#hh-notify-backdrop.is-open {
	display: flex;
}
#hh-notify {
	background: #fff;
	width: min(420px, 100%);
	margin: 12vh auto 24px;
	border-radius: 14px;
	border: 1px solid #e2e4e7;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
	direction: rtl;
	position: relative;
	text-align: right;
	overflow: hidden;
	animation: hh-notify-in 0.22s ease-out;
}
@keyframes hh-notify-in {
	from {
		opacity: 0;
		transform: translateY(10px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
#hh-notify .hh-notify-accent {
	height: 4px;
	background: var(--hahishook-green, #699d21);
}
#hh-notify.is-error .hh-notify-accent {
	background: #b00020;
}
#hh-notify.is-warning .hh-notify-accent {
	background: #c47a00;
}
#hh-notify.is-success .hh-notify-accent {
	background: var(--hahishook-green, #699d21);
}
#hh-notify .hh-notify-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	padding: 14px 16px 0;
}
#hh-notify .hh-notify-title {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.35;
	color: #1f2a1a;
}
#hh-notify .hh-notify-close {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	border: 1px solid #dde2d8;
	background: #fff;
	color: #445;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}
#hh-notify .hh-notify-body {
	padding: 10px 16px 4px;
	font-size: 0.98rem;
	line-height: 1.55;
	color: #334433;
}
#hh-notify .hh-notify-body a {
	color: var(--hahishook-green, #699d21);
	font-weight: 700;
	text-decoration: underline;
}
#hh-notify.is-error .hh-notify-body a {
	color: #b00020;
}
#hh-notify .hh-notify-actions {
	padding: 12px 16px 16px;
}
#hh-notify .hh-notify-ok {
	appearance: none;
	border: 0;
	border-radius: 10px;
	width: 100%;
	background: var(--hahishook-green, #699d21);
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	padding: 12px 16px;
	cursor: pointer;
}
#hh-notify.is-error .hh-notify-ok {
	background: #b00020;
}
#hh-notify.is-warning .hh-notify-ok {
	background: #c47a00;
}
