
.premium-panel {
	position: relative;
	margin: 14px 0 4px;
	padding: 22px 18px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background:
		radial-gradient(120% 100% at 0% 0%, rgba(255, 45, 134, 0.13), transparent 55%),
		radial-gradient(120% 100% at 100% 0%, rgba(168, 85, 247, 0.15), transparent 55%),
		linear-gradient(180deg, rgba(16, 24, 43, 0.97), rgba(9, 14, 28, 0.97));
	color: var(--text);
	text-align: center;
}

.premium-panel .premium-title,
.premium-panel .modal-title {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 800;
	color: #fff;
	white-space: nowrap;
}

.premium-lead {
	max-width: 460px;
	margin: 0 auto 16px;
	color: var(--muted);
	font-size: 0.9rem;
	line-height: 1.45;
}

.premium-lead strong {
	color: #fff;
	font-weight: 700;
}

.premium-features {
	list-style: none;
	padding: 0;
	margin: 0 0 18px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	text-align: left;
}

@media (max-width: 560px) {
	.premium-features {
		grid-template-columns: 1fr;
	}
}

.premium-features li {
	position: relative;
	padding: 9px 12px 9px 30px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.045);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
	font-size: 0.85rem;
	line-height: 1.25;
	color: var(--muted);
	transition: background 0.16s ease;
}

.premium-features li::before {
	content: "";
	position: absolute;
	left: 12px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: linear-gradient(180deg, #ff4ba1, #ff2d86);
	box-shadow: 0 0 0 3px rgba(255, 45, 134, 0.16);
	transform: translateY(-50%);
}

.premium-features li:hover {
	background: rgba(255, 45, 134, 0.08);
}

.premium-features li strong {
	color: #fff;
	font-weight: 700;
}

.premium-cta {
	margin-top: 6px;
}

.premium-panel .btn-gradient-fill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 30px;
	border: 0;
	border-radius: 14px;
	background: linear-gradient(180deg, #ff4ba1 0%, #ff2d86 100%);
	color: #fff !important;
	font-weight: 800;
	font-size: 0.98rem;
	letter-spacing: 0.01em;
	text-decoration: none;
	transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.premium-panel .btn-gradient-fill:hover,
.premium-panel .btn-gradient-fill:focus {
	transform: translateY(-1px);
	box-shadow: 0 16px 32px rgba(255, 45, 134, 0.38);
	outline: none;
}

.premium-panel .btn-gradient-fill:active {
	transform: translateY(0);
}

.premium-note {
	margin: 12px 0 0;
	font-size: 0.82rem;
	color: var(--muted);
}

.premium-note strong {
	color: #fff;
	font-weight: 700;
}

.premium-panel .price-ribbon {
	display: flex;
	justify-content: center;
	gap: 6px;
	flex-wrap: wrap;
	margin: 12px 0 0;
	padding: 12px 0 0;
	position: relative;
	z-index: 1;
}

.premium-panel .price-chip {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 78px;
	padding: 0.5rem 0.7rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	text-align: center;
	transition: transform 0.12s ease, border-color 0.16s ease, background 0.16s ease;
}

.premium-panel .price-chip:hover {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.06);
}

.premium-panel .price-chip.favorite {
	border-color: rgba(255, 45, 134, 0.6);
	background: rgba(255, 45, 134, 0.09);
}

.premium-panel .price-amount {
	font-weight: 900;
	font-size: 0.98rem;
	background-image: linear-gradient(180deg, #e879f9, #d946ef);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: #e879f9;
}

.premium-panel .price-period {
	margin-top: 1px;
	font-weight: 600;
	font-size: 0.74rem;
	color: var(--muted);
}

.premium-panel .price-badge {
	position: absolute;
	top: -7px;
	right: -7px;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	display: grid;
	place-items: center;
	background: linear-gradient(180deg, #ff4ba1, #ff2d86);
	border: 1px solid rgba(255, 45, 134, 0.7);
	z-index: 2;
}

.premium-panel .price-badge svg {
	display: block;
	width: 13px;
	height: 13px;
}

.premium-panel .fav-pulse::before,
.premium-panel .fav-pulse::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 999px;
	background: rgba(255, 45, 134, 0.5);
	z-index: -1;
	opacity: 0;
	animation: premiumFavPulse 1.6s ease-out infinite;
}

.premium-panel .fav-pulse::after {
	animation-delay: 0.4s;
}

@keyframes premiumFavPulse {
	0% { opacity: 0.55; transform: scale(1); }
	35% { opacity: 0.35; transform: scale(1.6); }
	60% { opacity: 0.18; transform: scale(2.1); }
	100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
	.premium-panel .fav-pulse::before,
	.premium-panel .fav-pulse::after {
		animation: none;
	}

	.premium-panel .btn-gradient-fill,
	.premium-panel .price-chip {
		transition: none;
	}
}
