/* BazaarKit Notifications — /notifications/ bell page. Server-side rendered
   list of bazaarkit_notifications rows + empty/logged-out state.
   Self-contained: brand accents themeable via --bzk-primary / --bzk-primary-dark
   (neutral teal fallbacks; no external design-system dependency). */

.bzk-notifications {
	max-width: 760px;
	margin: 0 auto;
	padding: 8px 16px 56px;
}
.bzk-notifications__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 16px;
}
.bzk-notifications__title {
	font-size: 24px;
	font-weight: 700;
	color: #16202a;
	margin: 0;
}
.bzk-notifications__mark-form { margin: 0; }
.bzk-notifications__mark-btn {
	border: 0;
	background: transparent;
	color: var(--bzk-primary, #1f8fb2);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	padding: 6px 10px;
	border-radius: 8px;
}
.bzk-notifications__mark-btn:hover { background: #eaf6fa; }

.bzk-notifications__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.bzk-notifications__item {
	background: #fff;
	border: 1px solid #e6ebf0;
	border-radius: 14px;
	overflow: hidden;
}
.bzk-notifications__item.is-unread { background: #f4fbfd; border-color: #cfe8f1; }

.bzk-notifications__row {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 14px 16px;
	color: inherit;
	text-decoration: none;
}
a.bzk-notifications__row:hover { background: #f6f9fb; }

.bzk-notifications__dot {
	width: 8px;
	height: 8px;
	margin-top: 7px;
	border-radius: 50%;
	background: transparent;
	flex: 0 0 auto;
}
.is-unread .bzk-notifications__dot { background: var(--bzk-primary, #1f8fb2); }

.bzk-notifications__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	flex: 1 1 auto;
}
.bzk-notifications__row-title {
	font-size: 14px;
	font-weight: 700;
	color: #16202a;
	line-height: 1.3;
}
.bzk-notifications__msg {
	font-size: 14px;
	color: #4b5563;
	line-height: 1.4;
}
.bzk-notifications__time {
	font-size: 12px;
	color: #9aa6b2;
	margin-top: 4px;
}

/* Empty + logged-out — centred card with calm bell icon, title, helper
   copy and CTA. Max-height capped so the state doesn't orphan in the
   middle of a tall white page. */
.bzk-notifications--empty {
	text-align: center;
	padding: 40px 24px;
	margin: 24px auto;
	max-width: 480px;
	min-height: 320px;
	max-height: 400px;
	background: #fff;
	border: 1px solid #e6ebf0;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.bzk-notifications__empty-icon {
	color: #b6c2cf;
	margin: 0 auto 6px;
	display: block;
}
.bzk-notifications__empty-title {
	color: #16202a;
	font-size: 17px;
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
}
.bzk-notifications__empty-help {
	color: #6b7785;
	font-size: 14px;
	margin: 0 auto 12px;
	max-width: 320px;
	line-height: 1.45;
}
/* Backward-compat — older shortcode renders may still emit this class. */
.bzk-notifications__empty-msg {
	color: #6b7785;
	font-size: 15px;
	margin: 0 auto 18px;
	max-width: 360px;
}
.bzk-notifications__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 22px;
	min-height: 44px;
	border-radius: 999px;
	background: var(--bzk-primary, #1f8fb2);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	font-size: 14px;
}
.bzk-notifications__cta:hover { background: var(--bzk-primary-dark, #197a96); color: #fff; }
