.pneu-pn-popup {
	position: fixed;
	z-index: 99999;
	max-width: 360px;
	padding: 16px;
	background: #222;
	color: #fff;
	border-radius: 8px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.pneu-pn-popup--bottom-left { left: 16px; bottom: 16px; }
.pneu-pn-popup--bottom-right { right: 16px; bottom: 16px; }
.pneu-pn-popup--top-left { left: 16px; top: 16px; }
.pneu-pn-popup--top-right { right: 16px; top: 16px; }
.pneu-pn-popup__actions { display: flex; gap: 8px; margin-top: 12px; }
.pneu-pn-popup__accept,
.pneu-pn-popup__decline {
	border: 0;
	border-radius: 4px;
	padding: 8px 14px;
	cursor: pointer;
}
.pneu-pn-popup__accept { background: #2271b1; color: #fff; }
.pneu-pn-popup__decline { background: transparent; color: #ccc; }

.wd-pn-tray {
	display: none;
	flex-direction: column;
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	width: 320px;
	max-height: min(420px, calc(100vh - 120px));
	overflow: hidden;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	z-index: 9999;
}
.wd-pn-tray.is-open {
	display: flex;
}
.wd-pn-tray-header {
	flex-shrink: 0;
}
.wd-pn-tray-list {
	flex: 1 1 auto;
	min-height: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
}
.wd-pn-tray-close {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #666;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}
.wd-pn-tray-close:hover,
.wd-pn-tray-close:focus-visible {
	background: rgba(0, 0, 0, 0.06);
	color: #111;
	outline: none;
}
.wd-pn-tray-close svg {
	display: none;
}
.wd-pn-tray-close::before,
.wd-pn-tray-close::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 2px;
	background: currentColor;
	border-radius: 1px;
}
.wd-pn-tray-close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.wd-pn-tray-close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.wd-pn-bell-wrap { position: relative; }
.wd-pn-bell-badge {
	display: none;
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: 999px;
	background: rgb(27, 97, 231);
	color: #fff;
	font-size: 10px;
	line-height: 16px;
	text-align: center;
}
.wd-pn-bell-badge.is-visible { display: inline-block; }
.wd-pn-tray-item { padding: 12px 16px; border-bottom: 1px solid #f0f0f0; cursor: pointer; }
.wd-pn-tray-item.is-unread { background: #f7fbff; }
.wd-pn-tray-empty { padding: 24px 16px; color: #777; text-align: center; }
.wd-pn-tray-item--has-banner,
.wd-pn-tray-item--rich {
	flex-direction: column;
	align-items: stretch;
}
.wd-pn-tray-item-row {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	width: 100%;
}
.wd-pn-tray-item-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	object-fit: cover;
	flex-shrink: 0;
	background: #f0f0f1;
}
.wd-pn-tray-item-icon--fallback {
	background: linear-gradient(135deg, #2271b1, #135e96);
}
.wd-pn-tray-item-content {
	flex: 1 1 auto;
	min-width: 0;
}
.wd-pn-tray .wd-pn-tray-item-toggle {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin-top: 2px;
	padding: 0;
	border: 0 !important;
	border-radius: 6px;
	background: transparent !important;
	box-shadow: none !important;
	color: #50575e !important;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	transition: background-color 0.15s ease;
}
.wd-pn-tray .wd-pn-tray-item-toggle::before {
	content: "";
	display: block;
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
	margin-top: -3px;
}
.wd-pn-tray .wd-pn-tray-item-toggle:hover,
.wd-pn-tray .wd-pn-tray-item-toggle:focus {
	background: rgba(0, 0, 0, 0.06) !important;
	outline: none;
}
.wd-pn-tray .wd-pn-tray-item.is-expanded .wd-pn-tray-item-toggle::before {
	transform: rotate(-135deg);
	margin-top: 3px;
}
.wd-pn-tray-item-banner-wrap {
	display: none;
	margin-top: 10px;
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
}
.wd-pn-tray-item.is-expanded .wd-pn-tray-item-banner-wrap {
	display: block;
}
.wd-pn-tray-item-banner {
	display: block;
	width: 100%;
	max-height: 180px;
	object-fit: cover;
}
