/* Zoonum Pair & Save — Frontend Modal Style
 * Petratide Montserrat-Glassmorphic
 * All selectors namespaced under .zps-root to avoid theme conflicts.
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

.zps-root {
	--zps-bg: #0e0c1a;
	--zps-brand: #a43fff;
	--zps-accent: #c280ff;
	--zps-glass-border: rgba(164, 63, 255, 0.25);
	--zps-glass-border-strong: rgba(164, 63, 255, 0.45);
	--zps-muted: #9b90b8;
	--zps-success: #3ddc97;
	--zps-danger: #ff5d73;
	--zps-gold: #ffd166;
	--zps-surface: rgba(255, 255, 255, 0.04);
	--zps-surface-2: rgba(255, 255, 255, 0.06);
	font-family: 'Montserrat', system-ui, sans-serif;
}

.zps-root *, .zps-root *::before, .zps-root *::after { box-sizing: border-box; }
.zps-root[aria-hidden="true"] .zps-modal-overlay { opacity: 0; pointer-events: none; }
.zps-root[aria-hidden="false"] .zps-modal-overlay { opacity: 1; pointer-events: auto; }

/* ====== OVERLAY ====== */
.zps-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(14, 12, 26, 0.78);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	transition: opacity 0.35s ease;
}

/* ====== MODAL ====== */
.zps-modal {
	width: 100%;
	max-width: 980px;
	max-height: 92vh;
	background: linear-gradient(180deg, rgba(28, 22, 48, 0.95), rgba(18, 14, 32, 0.95));
	border: 1px solid var(--zps-glass-border-strong);
	border-radius: 28px;
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	box-shadow: 0 40px 80px -20px rgba(164, 63, 255, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
	overflow: hidden;
	transform: scale(0.92) translateY(20px);
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	display: flex;
	flex-direction: column;
	position: relative;
	color: #fff;
	min-height: 0;            /* allow flex children to shrink properly */
}
.zps-root[aria-hidden="false"] .zps-modal { transform: scale(1) translateY(0); }

/* Lock header, trigger strip, and footer so they ALWAYS render.
   Only the carousel/grid area scrolls internally. This is what prevents
   the "Add Selected" button from being clipped off the bottom. */
.zps-modal-header,
.zps-trigger-product,
.zps-modal-footer {
	flex-shrink: 0;
}
.zps-carousel-wrap {
	flex: 1 1 auto;
	min-height: 0;          /* critical for flex children to enable scroll */
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-width: thin;
	scrollbar-color: var(--zps-glass-border-strong) transparent;
}
.zps-carousel-wrap::-webkit-scrollbar { width: 6px; }
.zps-carousel-wrap::-webkit-scrollbar-track { background: transparent; }
.zps-carousel-wrap::-webkit-scrollbar-thumb {
	background: var(--zps-glass-border-strong);
	border-radius: 3px;
}

.zps-modal::before {
	content: '';
	position: absolute;
	top: -150px;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 300px;
	background: radial-gradient(ellipse, rgba(164, 63, 255, 0.4), transparent 60%);
	pointer-events: none;
	z-index: 0;
}

.zps-modal-close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--zps-glass-border);
	color: var(--zps-muted);
	font-size: 22px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	z-index: 5;
	line-height: 1;
}
.zps-modal-close:hover {
	background: rgba(255, 93, 115, 0.15);
	border-color: var(--zps-danger);
	color: var(--zps-danger);
	transform: rotate(90deg);
}

/* Header */
.zps-modal-header { padding: 36px 40px 24px; text-align: center; position: relative; z-index: 2; }
.zps-modal-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(255, 209, 102, 0.12);
	color: var(--zps-gold);
	border: 1px solid rgba(255, 209, 102, 0.3);
	border-radius: 100px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	margin-bottom: 14px;
	text-transform: uppercase;
}
.zps-modal-badge svg { width: 12px; height: 12px; }

.zps-modal-title {
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -0.5px;
	margin: 0 0 10px;
	color: #fff;
	background: linear-gradient(135deg, #fff, var(--zps-accent));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.15;
}

.zps-modal-subtitle {
	color: var(--zps-muted);
	font-size: 15px;
	font-weight: 500;
	max-width: 620px;
	margin: 0 auto;
	line-height: 1.55;
}
.zps-modal-subtitle strong { color: var(--zps-gold); font-weight: 700; }
.zps-modal-subtitle .zps-trig-inline { color: var(--zps-success); font-weight: 700; }

/* Trigger product confirmation strip */
.zps-trigger-product {
	margin: 24px 40px 0;
	padding: 14px 18px;
	background: rgba(61, 220, 151, 0.08);
	border: 1px solid rgba(61, 220, 151, 0.25);
	border-radius: 14px;
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 13px;
	position: relative;
	z-index: 2;
}
.zps-check {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--zps-success);
	color: var(--zps-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	flex-shrink: 0;
	font-size: 14px;
}
.zps-trigger-name { font-weight: 600; color: #fff; }
.zps-trigger-suffix { color: var(--zps-muted); font-weight: 500; margin-left: 8px; }

/* Carousel */
.zps-carousel-wrap { padding: 24px 0 8px; position: relative; z-index: 2; }
.zps-carousel-header { display: flex; align-items: center; justify-content: space-between; padding: 0 40px 16px; }
.zps-carousel-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: var(--zps-muted);
	text-transform: uppercase;
}
.zps-carousel-nav { display: flex; gap: 8px; }
.zps-nav-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--zps-surface-2);
	border: 1px solid var(--zps-glass-border);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	font-family: inherit;
	font-size: 16px;
}
.zps-nav-btn:hover {
	background: var(--zps-brand);
	border-color: var(--zps-brand);
	transform: scale(1.08);
}

/* Default carousel container (gets layout-specific properties below) */
.zps-carousel {
	padding: 8px 40px 24px;
}

/* ----- GRID LAYOUT (default) -----
   All paired products visible at once, wraps to multiple rows.
   Vertical scroll inside .zps-carousel-wrap when overflow occurs. */
.zps-modal[data-layout="grid"] .zps-carousel,
.zps-modal:not([data-layout]) .zps-carousel {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
	gap: 16px;
}
.zps-modal[data-layout="grid"] .zps-carousel-nav,
.zps-modal:not([data-layout]) .zps-carousel-nav {
	display: none;             /* nav arrows meaningless in grid mode */
}
.zps-modal[data-layout="grid"] .zps-upsell-card,
.zps-modal:not([data-layout]) .zps-upsell-card {
	flex: initial;              /* don't apply carousel-mode flex sizing */
	width: 100%;                /* fill the grid cell */
}

/* ----- CAROUSEL LAYOUT (opt-in) -----
   Horizontal scroll with snap, original behavior. */
.zps-modal[data-layout="carousel"] .zps-carousel {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
}
.zps-modal[data-layout="carousel"] .zps-carousel::-webkit-scrollbar { display: none; }
.zps-modal[data-layout="carousel"] .zps-upsell-card {
	flex: 0 0 230px;
	scroll-snap-align: start;
}
.zps-modal[data-layout="carousel"] .zps-carousel-nav { display: flex; }

/* Card */
.zps-upsell-card {
	background: var(--zps-surface-2);
	border: 2px solid var(--zps-glass-border);
	border-radius: 18px;
	padding: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.zps-upsell-card:hover {
	transform: translateY(-3px);
	border-color: var(--zps-glass-border-strong);
}
.zps-upsell-card.selected {
	border-color: var(--zps-brand);
	background: linear-gradient(180deg, rgba(164, 63, 255, 0.18), rgba(164, 63, 255, 0.06));
	box-shadow: 0 10px 30px -8px rgba(164, 63, 255, 0.5);
}
.zps-upsell-card.selected::before {
	content: '✓';
	position: absolute;
	top: 10px;
	right: 10px;
	width: 26px;
	height: 26px;
	background: var(--zps-brand);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 13px;
	box-shadow: 0 4px 12px rgba(164, 63, 255, 0.6);
	animation: zpsPopIn 0.3s ease;
}
.zps-upsell-card.in-cart { opacity: 0.55; cursor: not-allowed; border-style: dashed; border-color: rgba(61, 220, 151, 0.4); }
.zps-upsell-card.in-cart::after {
	content: 'ALREADY EARNING +$' attr(data-saving);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-6deg);
	background: rgba(0, 0, 0, 0.78);
	color: var(--zps-success);
	padding: 6px 12px;
	border-radius: 8px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 1px;
	border: 1px dashed var(--zps-success);
	white-space: nowrap;
}
@keyframes zpsPopIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.zps-upsell-img {
	width: 100%;
	height: 120px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(164, 63, 255, 0.22), rgba(194, 128, 255, 0.08));
	border: 1px solid var(--zps-glass-border);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.zps-upsell-img img { width: 100%; height: 100%; object-fit: cover; }
.zps-upsell-img-fallback {
	font-weight: 800;
	letter-spacing: 1.5px;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.85);
}
.zps-upsell-name { font-size: 14px; font-weight: 700; margin: 0 0 4px; line-height: 1.3; color: #fff; }
.zps-upsell-cat {
	font-size: 10px;
	color: var(--zps-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 12px;
	font-weight: 600;
}
.zps-upsell-bottom { display: flex; flex-direction: column; gap: 8px; }
.zps-upsell-price { font-size: 18px; font-weight: 800; color: #fff; }
.zps-extra-off-pill {
	background: linear-gradient(135deg, var(--zps-gold), #ffb649);
	color: var(--zps-bg);
	font-size: 11px;
	font-weight: 800;
	padding: 6px 10px;
	border-radius: 8px;
	letter-spacing: 0.5px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	align-self: flex-start;
	box-shadow: 0 4px 12px -2px rgba(255, 209, 102, 0.3);
	white-space: nowrap;
}
.zps-extra-off-pill svg { width: 11px; height: 11px; }

/* Footer */
.zps-modal-footer {
	padding: 20px 40px 28px;
	border-top: 1px solid var(--zps-glass-border);
	background: linear-gradient(180deg, rgba(14, 12, 26, 0.4), rgba(14, 12, 26, 0.85));
	backdrop-filter: blur(20px);
	position: relative;
	z-index: 2;
}
.zps-savings-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 20px;
	background: rgba(255, 209, 102, 0.08);
	border: 1px solid rgba(255, 209, 102, 0.25);
	border-radius: 14px;
	margin-bottom: 16px;
	transition: all 0.3s ease;
}
.zps-savings-bar.active {
	background: linear-gradient(90deg, rgba(61, 220, 151, 0.18), rgba(61, 220, 151, 0.08));
	border-color: rgba(61, 220, 151, 0.4);
}
.zps-savings-left { display: flex; align-items: center; gap: 12px; }
.zps-savings-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 209, 102, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: all 0.3s;
}
.zps-savings-bar.active .zps-savings-icon { background: rgba(61, 220, 151, 0.2); }
.zps-savings-text { font-size: 13px; font-weight: 600; color: var(--zps-muted); }
.zps-savings-text strong { color: #fff; font-weight: 700; }
.zps-savings-amount {
	font-size: 22px;
	font-weight: 800;
	color: var(--zps-gold);
	transition: color 0.3s;
}
.zps-savings-bar.active .zps-savings-amount { color: var(--zps-success); }

.zps-footer-actions { display: flex; gap: 12px; }
.zps-btn {
	cursor: pointer;
	border: none;
	font-family: inherit;
	font-weight: 700;
	letter-spacing: 0.5px;
	transition: all 0.25s ease;
	position: relative;
	overflow: hidden;
}
.zps-btn-skip {
	flex: 0 0 auto;
	padding: 16px 24px;
	border-radius: 14px;
	background: transparent;
	color: var(--zps-muted);
	font-size: 13px;
	border: 1px solid var(--zps-glass-border);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.zps-btn-skip:hover { color: #fff; border-color: var(--zps-glass-border-strong); }
.zps-btn-add {
	flex: 1;
	padding: 16px 24px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--zps-brand), var(--zps-accent));
	color: #fff !important;
	font-size: 14px;
	text-transform: uppercase;
	box-shadow: 0 12px 28px -8px rgba(164, 63, 255, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.zps-btn-add:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 16px 36px -8px rgba(164, 63, 255, 0.8);
}
.zps-btn-add:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.zps-total-pill {
	background: rgba(0, 0, 0, 0.25);
	padding: 4px 10px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 700;
}

/* ====== TOAST ====== */
.zps-toast {
	position: fixed;
	top: 30px;
	right: 30px;
	background: linear-gradient(135deg, var(--zps-success), #2ab87a);
	color: var(--zps-bg);
	padding: 14px 20px;
	border-radius: 14px;
	font-weight: 700;
	box-shadow: 0 20px 40px -10px rgba(61, 220, 151, 0.5);
	z-index: 999998;
	transform: translateX(500px);
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 380px;
	font-family: 'Montserrat', system-ui, sans-serif;
}
.zps-toast.active { transform: translateX(0); }
.zps-toast.clickable { cursor: pointer; }
.zps-toast.clickable:hover { transform: translateX(-4px) scale(1.02); }
.zps-toast-icon { font-size: 20px; flex-shrink: 0; }
.zps-toast-content { flex: 1; min-width: 0; }
.zps-toast-text { font-size: 13.5px; line-height: 1.35; }
.zps-toast-action {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-top: 3px;
	opacity: 0.85;
	display: none;
}
.zps-toast.clickable .zps-toast-action { display: block; }

/* ====== CART RE-ENTRY (consolidated single banner, two states) ======
   v1.0.5: combined the old cart banner + CTA into one element with
   two states (unlocked / potential). Cleaner, less visual noise. */
.zps-cart-banner {
	margin: 16px 0;
	padding: 16px 20px;
	border-radius: 14px;
	font-family: 'Montserrat', system-ui, sans-serif;
	font-weight: 600;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 14px;
	cursor: pointer;
	transition: all 0.2s;
	border: 1px solid;
	line-height: 1.4;
}
.zps-cart-banner .zps-cb-icon { font-size: 22px; flex-shrink: 0; }
.zps-cart-banner .zps-cb-text { flex: 1; min-width: 0; }
.zps-cart-banner .zps-cb-text strong { font-weight: 800; }
.zps-cart-banner .zps-cb-arrow {
	margin-left: auto;
	opacity: 0.7;
	transition: all 0.2s;
	flex-shrink: 0;
	font-size: 18px;
	font-weight: 700;
}
.zps-cart-banner:hover .zps-cb-arrow { opacity: 1; transform: translateX(4px); }

/* Unlocked state — bundle is active, green */
.zps-cart-banner[data-state="unlocked"] {
	background: linear-gradient(90deg, rgba(61, 220, 151, 0.18), rgba(61, 220, 151, 0.05));
	border-color: rgba(61, 220, 151, 0.4);
	color: #d4f5e5;
}
.zps-cart-banner[data-state="unlocked"]:hover {
	background: linear-gradient(90deg, rgba(61, 220, 151, 0.26), rgba(61, 220, 151, 0.1));
	transform: translateY(-1px);
	box-shadow: 0 8px 20px -6px rgba(61, 220, 151, 0.3);
}
.zps-cart-banner[data-state="unlocked"] .zps-cb-text strong { color: #5fd99a; }

/* Potential state — has trigger but no paireds, purple */
.zps-cart-banner[data-state="potential"] {
	background: linear-gradient(90deg, rgba(164, 63, 255, 0.16), rgba(164, 63, 255, 0.05));
	border-color: rgba(164, 63, 255, 0.4);
	color: #e9d9ff;
}
.zps-cart-banner[data-state="potential"]:hover {
	background: linear-gradient(90deg, rgba(164, 63, 255, 0.24), rgba(164, 63, 255, 0.08));
	transform: translateY(-1px);
	box-shadow: 0 8px 20px -6px rgba(164, 63, 255, 0.4);
}
.zps-cart-banner[data-state="potential"] .zps-cb-text strong { color: #c280ff; }

/* ====== MOBILE — BOTTOM SHEET ====== */
@media (max-width: 768px) {
	.zps-modal-overlay {
		align-items: flex-end;
		padding: 0;
	}
	.zps-modal {
		max-width: 100%;
		max-height: 92vh;
		border-radius: 24px 24px 0 0;
		border-bottom: none;
		transform: translateY(100%);
		transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	}
	.zps-root[aria-hidden="false"] .zps-modal { transform: translateY(0); }

	/* Drag handle indicator */
	.zps-modal::after {
		content: '';
		position: absolute;
		top: 8px;
		left: 50%;
		transform: translateX(-50%);
		width: 40px;
		height: 4px;
		background: var(--zps-glass-border-strong);
		border-radius: 2px;
		z-index: 3;
	}

	.zps-modal-close { top: 12px; right: 12px; width: 32px; height: 32px; font-size: 18px; }
	.zps-modal-header { padding: 28px 20px 16px; }
	.zps-modal-title { font-size: 24px; }
	.zps-modal-subtitle { font-size: 13px; }
	.zps-trigger-product { margin: 16px 20px 0; font-size: 12px; padding: 12px 14px; }
	.zps-carousel-header { padding: 0 20px 12px; }
	.zps-carousel { padding: 8px 20px 20px; gap: 12px; }

	/* Grid mode on mobile: 2 columns */
	.zps-modal[data-layout="grid"] .zps-carousel,
	.zps-modal:not([data-layout]) .zps-carousel {
		grid-template-columns: repeat(2, 1fr);
	}
	/* Carousel mode on mobile: smaller card width */
	.zps-modal[data-layout="carousel"] .zps-upsell-card { flex: 0 0 180px; }

	.zps-upsell-card { padding: 12px; }
	.zps-upsell-img { height: 90px; }
	.zps-upsell-name { font-size: 13px; }
	.zps-modal-footer { padding: 16px 20px 22px; padding-bottom: calc(22px + env(safe-area-inset-bottom)); }
	.zps-footer-actions { flex-direction: column; }
	.zps-btn-skip { order: 2; width: 100%; }
	.zps-savings-amount { font-size: 18px; }
	.zps-toast { top: auto; bottom: 20px; left: 20px; right: 20px; max-width: none; transform: translateY(200px); }
	.zps-toast.active { transform: translateY(0); }
}

/* ====== Ripple ====== */
.zps-ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	transform: scale(0);
	animation: zpsRipple 0.6s linear;
	pointer-events: none;
}
@keyframes zpsRipple {
	to { transform: scale(4); opacity: 0; }
}

/* ====== SIDE CART BANNER (Astra mobile drawer integration) ======
   Injected via JS into #astra-mobile-cart-drawer, styled to fit
   alongside the existing #pt-ship-bar / #pt-savings-bar / #pt-discount-tiers
   from PS Nudges. Two states: unlocked (green) and potential (purple). */
#zps-side-banner {
	margin: 10px 14px 0;
	padding: 9px 12px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	gap: 9px;
	font-family: 'Montserrat', system-ui, sans-serif;
	font-size: 11.5px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	border: 1px solid;
	line-height: 1.3;
	color: #fff;
}
#zps-side-banner .zps-sb-icon {
	font-size: 15px;
	flex-shrink: 0;
}
#zps-side-banner .zps-sb-text {
	flex: 1;
	min-width: 0;
}
#zps-side-banner .zps-sb-text strong {
	color: #fff;
	font-weight: 800;
}
#zps-side-banner .zps-sb-arrow {
	margin-left: auto;
	opacity: 0.7;
	transition: all 0.2s;
	flex-shrink: 0;
	font-size: 13px;
}
#zps-side-banner:hover .zps-sb-arrow { opacity: 1; transform: translateX(3px); }

/* Unlocked state — green, bundle is active */
#zps-side-banner[data-state="unlocked"] {
	background: linear-gradient(90deg, rgba(61, 220, 151, 0.16), rgba(61, 220, 151, 0.06));
	border-color: rgba(61, 220, 151, 0.4);
	color: #d4f5e5;
}
#zps-side-banner[data-state="unlocked"]:hover {
	background: linear-gradient(90deg, rgba(61, 220, 151, 0.24), rgba(61, 220, 151, 0.1));
}
#zps-side-banner[data-state="unlocked"] strong { color: #5fd99a; }

/* Potential state — purple, has trigger but no paireds yet */
#zps-side-banner[data-state="potential"] {
	background: linear-gradient(90deg, rgba(164, 63, 255, 0.14), rgba(164, 63, 255, 0.05));
	border-color: rgba(164, 63, 255, 0.35);
	color: #e9d9ff;
}
#zps-side-banner[data-state="potential"]:hover {
	background: linear-gradient(90deg, rgba(164, 63, 255, 0.22), rgba(164, 63, 255, 0.08));
}
#zps-side-banner[data-state="potential"] strong { color: #c280ff; }
