/* ─── WPEPP Menu "NEW" Badge ───────────────────────────────── */

.wpepp-menu-new-badge {
	display: inline-block;
	font-size: 9px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #fff;
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
	padding: 3px 6px;
	border-radius: 3px;
	margin-left: 6px;
	vertical-align: middle;
	animation: wpepp-badge-pulse 2s ease-in-out infinite;
	position: relative;
}

@keyframes wpepp-badge-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%      { opacity: 0.75; transform: scale(1.08); }
}

/* ─── Menu Tooltip Popup ───────────────────────────────────── */

.wpepp-menu-tooltip {
	position: fixed;
	z-index: 999999;
	width: 320px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.08);
	padding: 0;
	opacity: 0;
	transform: translateX(-10px);
	animation: wpepp-tooltip-in .4s ease forwards;
	overflow: visible;
}

@keyframes wpepp-tooltip-in {
	to { opacity: 1; transform: translateX(0); }
}

/* Arrow pointing left toward the menu */
.wpepp-menu-tooltip__arrow {
	position: absolute;
	left: -8px;
	top: 24px;
	width: 16px;
	height: 16px;
	background: #5b4ef0;
	transform: rotate(45deg);
	border-radius: 3px 0 0 0;
}

/* Header */
.wpepp-menu-tooltip__header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 16px 18px 10px;
	background: linear-gradient(135deg, #5b4ef0, #7c3aed);
	border-radius: 10px 10px 0 0;
	color: #fff;
}

.wpepp-menu-tooltip__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: rgba(255,255,255,.15);
	border-radius: 8px;
}

.wpepp-menu-tooltip__header strong {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
}

/* Description */
.wpepp-menu-tooltip__desc {
	padding: 14px 18px 10px;
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
	color: #475569;
}

.wpepp-menu-tooltip__desc a {
	color: #6366f1;
	text-decoration: none;
	font-weight: 600;
}

.wpepp-menu-tooltip__desc a:hover {
	text-decoration: underline;
}

/* Actions */
.wpepp-menu-tooltip__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 10px 18px 16px;
}

.wpepp-menu-tooltip__btn-got-it {
	display: inline-block;
	background: #4f46e5;
	color: #fff !important;
	font-size: 13px;
	font-weight: 600;
	padding: 8px 20px;
	border-radius: 5px;
	text-decoration: none !important;
	border: none;
	cursor: pointer;
	transition: background .2s;
}

.wpepp-menu-tooltip__btn-got-it:hover {
	background: #4338ca;
}

.wpepp-menu-tooltip__btn-dismiss {
	background: none;
	border: none;
	color: #94a3b8;
	font-size: 12.5px;
	cursor: pointer;
	padding: 4px 0;
	transition: color .2s;
}

.wpepp-menu-tooltip__btn-dismiss:hover {
	color: #475569;
}

/* ─── Pro Upgrade Notice ───────────────────────────────────── */

.wpepp-pro-notice {
	position: relative;
	background: #fff;
	border: 1px solid rgba(99, 102, 241, .2);
	border-radius: 10px;
	overflow: hidden;
	margin: 20px 20px 10px 2px;
	box-shadow: 0 2px 12px rgba(99, 102, 241, .06);
}

/* Gradient top bar — indigo to purple to cyan */
.wpepp-pro-notice__top-bar {
	height: 4px;
	background: linear-gradient(90deg, #6366f1 0%, #a855f7 50%, #06b6d4 100%);
}

/* Body */
.wpepp-pro-notice__body {
	padding: 22px 24px 0 24px;
}

/* ── Header ── */
.wpepp-pro-notice__header {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 18px;
}

.wpepp-pro-notice__badge {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1px;
	color: #fff;
	background: linear-gradient(135deg, #6366f1, #a855f7);
	border-radius: 20px;
	padding: 6px 16px;
	margin-top: 2px;
	box-shadow: 0 2px 8px rgba(99, 102, 241, .3);
}

.wpepp-pro-notice__header-text h3 {
	margin: 0 0 5px;
	font-size: 17px;
	font-weight: 700;
	color: #1e293b;
}

.wpepp-pro-notice__header-text p {
	margin: 0;
	font-size: 13.5px;
	color: #64748b;
	line-height: 1.55;
}

/* ── Feature pills ── */
.wpepp-pro-notice__features {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
	padding: 14px 18px;
	border: 1px solid rgba(99, 102, 241, .12);
	border-radius: 8px;
	background: #f5f3ff;
	margin-bottom: 18px;
}

.wpepp-pro-notice__features span {
	font-size: 13px;
	color: #4338ca;
	white-space: nowrap;
}

/* ── Offer bar ── */
.wpepp-pro-notice__offer-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	padding: 16px 0 18px;
	border-top: 1px solid rgba(99, 102, 241, .1);
}

.wpepp-pro-notice__offer-left {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.wpepp-pro-notice__limited-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.8px;
	color: #fff;
	background: linear-gradient(135deg, #f59e0b, #ef4444);
	padding: 5px 12px;
	border-radius: 4px;
	box-shadow: 0 2px 6px rgba(245, 158, 11, .25);
}

.wpepp-pro-notice__offer-text {
	font-size: 13.5px;
	color: #475569;
}

.wpepp-pro-notice__coupon {
	display: inline-block;
	background: #fffbeb;
	border: 1px dashed #f59e0b;
	border-radius: 4px;
	padding: 2px 8px;
	font-size: 12px;
	font-weight: 700;
	color: #92400e;
	letter-spacing: 0.5px;
}

/* ── Buttons ── */
.wpepp-pro-notice__offer-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.wpepp-pro-notice__btn-upgrade {
	display: inline-block;
	background: linear-gradient(135deg, #6366f1, #a855f7);
	color: #fff !important;
	font-size: 13px;
	font-weight: 600;
	padding: 10px 24px;
	border-radius: 6px;
	text-decoration: none !important;
	transition: box-shadow .2s, transform .2s;
	box-shadow: 0 3px 12px rgba(99, 102, 241, .3);
}

.wpepp-pro-notice__btn-upgrade:hover {
	box-shadow: 0 5px 20px rgba(99, 102, 241, .45);
	transform: translateY(-1px);
}

.wpepp-pro-notice__btn-details {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	padding: 9px 20px;
	border-radius: 6px;
	border: 1px solid rgba(99, 102, 241, .3);
	color: #6366f1 !important;
	background: #fff;
	text-decoration: none !important;
	transition: border-color .2s, background .2s;
}

.wpepp-pro-notice__btn-details:hover {
	border-color: #6366f1;
	background: #f5f3ff;
}

/* ── Footer dismiss ── */
.wpepp-pro-notice__footer {
	display: flex;
	justify-content: center;
	padding: 2px 24px 14px;
	border-top: 1px solid rgba(99, 102, 241, .08);
}

.wpepp-pro-notice__dismiss {
	background: none;
	border: none;
	color: #94a3b8;
	font-size: 12.5px;
	cursor: pointer;
	padding: 6px 16px;
	border-radius: 4px;
	transition: color .2s, background .2s;
}

.wpepp-pro-notice__dismiss:hover {
	color: #6366f1;
	background: #f5f3ff;
}

/* ── Responsive ── */
@media (max-width: 782px) {
	.wpepp-pro-notice__offer-bar {
		flex-direction: column;
		align-items: flex-start;
	}

	.wpepp-pro-notice__features {
		gap: 6px 14px;
	}

	.wpepp-pro-notice__header {
		flex-direction: column;
	}
}
/* ─── 5-Star Review Notice ─────────────────────────────────── */

.wpepp-review-notice {
	display: flex;
	align-items: center;
	gap: 20px;
	background: linear-gradient(135deg, #fffbf0 0%, #fff8e6 100%);
	border: 1px solid #f5c842;
	border-radius: 8px;
	padding: 18px 22px;
	margin: 12px 20px 0 2px;
	box-shadow: 0 2px 8px rgba(245, 166, 35, 0.12);
	position: relative;
}

.wpepp-review-notice__stars {
	font-size: 32px;
	letter-spacing: 2px;
	color: #f5a623;
	line-height: 1;
	flex-shrink: 0;
	text-shadow: 0 1px 3px rgba(245, 166, 35, 0.3);
}

.wpepp-review-notice__content {
	flex: 1;
}

.wpepp-review-notice__title {
	font-weight: 700;
	font-size: 14px;
	color: #1e1e1e;
	margin: 0 0 5px;
	line-height: 1.4;
}

.wpepp-review-notice__body {
	margin: 0 0 12px;
	color: #555;
	font-size: 13px;
	line-height: 1.5;
}

.wpepp-review-notice__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.wpepp-review-notice__btn-rate {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: linear-gradient(135deg, #f5a623, #e8920e) !important;
	border: none !important;
	border-radius: 6px !important;
	color: #fff !important;
	font-weight: 600 !important;
	font-size: 13px !important;
	padding: 8px 18px !important;
	text-decoration: none !important;
	text-shadow: none !important;
	cursor: pointer;
	transition: box-shadow 0.2s, transform 0.1s;
	box-shadow: 0 2px 6px rgba(245, 166, 35, 0.4);
}

.wpepp-review-notice__btn-rate:hover {
	box-shadow: 0 4px 12px rgba(245, 166, 35, 0.5) !important;
	transform: translateY(-1px);
	color: #fff !important;
}

.wpepp-review-notice__btn-remind {
	background: transparent !important;
	border: 1px solid #ccc !important;
	border-radius: 6px !important;
	color: #555 !important;
	font-size: 12px !important;
	padding: 7px 14px !important;
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s;
}

.wpepp-review-notice__btn-remind:hover {
	border-color: #999 !important;
	color: #333 !important;
}

.wpepp-review-notice__btn-done {
	background: none;
	border: none;
	padding: 0;
	color: #aaa;
	font-size: 12px;
	cursor: pointer;
	text-decoration: underline;
	transition: color 0.2s;
}

.wpepp-review-notice__btn-done:hover {
	color: #666;
}