/**
 * Yearly upsell modal — matches Winza registration overlay styling.
 */
#winza-yearly-upsell-overlay {
	display: none !important;
	position: fixed;
	inset: 0;
	z-index: 1000000;
	background: rgba(0, 0, 0, 0.65);
	align-items: center;
	justify-content: center;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	pointer-events: none;
	visibility: hidden;
}

#winza-yearly-upsell-overlay.winza-yearly-open {
	display: flex !important;
	pointer-events: auto;
	visibility: visible;
}

.winza-yearly-panel {
	background: #fff;
	border-radius: 12px;
	width: 92%;
	max-width: 420px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
	overflow: hidden;
}

.winza-yearly-head {
	background: #1a1a1a;
	padding: 20px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.winza-yearly-head span {
	color: #e8a33d;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
}

.winza-yearly-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	line-height: 1;
	padding: 0;
}

.winza-yearly-body {
	padding: 28px 24px 24px;
	color: #333;
	font-size: 15px;
	line-height: 1.5;
}

.winza-yearly-body p {
	margin: 0 0 16px;
}

.winza-yearly-highlight {
	color: #1a1a1a;
	font-weight: 700;
}

.winza-yearly-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
}

.winza-yearly-btn-yes {
	width: 100%;
	padding: 12px;
	background: linear-gradient(135deg, #e8a33d, #c97b1a);
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	letter-spacing: 0.5px;
}

.winza-yearly-btn-no {
	width: 100%;
	padding: 12px;
	background: #fff !important;
	color: #333 !important;
	border: 1px solid #d0d0d0 !important;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
}

.winza-yearly-hint {
	margin: 14px 0 0;
	text-align: center;
	font-size: 12px;
	color: #888;
}
