html {
    background: #edf2f7;
}

h1, h2, h3, h4 {
    font-family: "Lilita One", serif;
    font-weight: 400;
    font-style: normal;
}

.petal-color-0 { background-color: none; }
.petal-color-1 { background-color: #F24822; }
.petal-color-2 { background-color: #FFA629; }
.petal-color-3 { background-color: #FFCD29; }
.petal-color-4 { background-color: #BC0; }
.petal-color-5 { background-color: #14AE5C; }


.rotate {   
    animation-name: spin;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear; 
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

	/* Success message - Green gradient */
	.message-gradient-success {
		background: linear-gradient(135deg, #0097b2 0%, #7ed957 100%);
		color: #064e3b;
		border: none;
	}

	/* Error message - Red gradient */
	.message-gradient-error {
		background: linear-gradient(135deg, #fecaca 0%, #f87171 100%);
		color: #7f1d1d;
		border: none;
	}

	/* Warning message - Yellow gradient */
	.message-gradient-warning {
		background: linear-gradient(135deg, #fde68a 0%, #fbbf24 100%);
		color: #78350f;
		border: none;
	}

	/* Info message - Blue gradient */
	.message-gradient-info {
		background: linear-gradient(135deg, #bfdbfe 0%, #60a5fa 100%);
		color: #1e3a8a;
		border: none;
	}

	/* Common styles for all message alerts */
	[class*='message-gradient-'] {
		margin-bottom: 1rem;
	}

	/* Style for close button */
	[class*='message-gradient-'] .uk-alert-close {
		color: currentColor;
		opacity: 0.7;
	}

	[class*='message-gradient-'] .uk-alert-close:hover {
		opacity: 1;
	}

/* Increase tooltip padding by 10px over UIKit default (3px 6px) */
.uk-tooltip {
    padding: 13px 16px;
}

/* ── Upgrade card – Plus upsell (billing_plan == 0) ── */
.plus-upgrade-eyebrow {
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #ec4899;
	margin-bottom: 6px;
}
.plus-upgrade-title {
	font-size: 26px;
	line-height: 1.1;
	color: #111;
	margin-top: 0;
	margin-bottom: 20px;
}
.plus-upgrade-title span { color: #ec4899; }
.plus-feature-box {
	background: #fdf2f8;
	border-radius: 14px;
	padding: 16px;
	margin-bottom: 20px;
}
.plus-feature-label {
	font-size: 9px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #ec4899;
	text-align: center;
	margin-bottom: 14px;
}
.plus-feature-row {
	display: grid;
	grid-template-columns: 1fr 28px 1fr;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #fce7f3;
	gap: 8px;
}
.plus-feature-row:last-child { border-bottom: none; }
.plus-feature-free {
	font-size: 12px;
	color: #9ca3af;
	text-align: right;
	text-decoration: line-through;
}
.plus-feature-arrow {
	width: 28px;
	height: 28px;
	background: #ec4899;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	color: #fff;
	font-weight: 700;
}
.plus-feature-plus {
	font-size: 13px;
	font-weight: 700;
	color: #111;
}
.plus-billing-label {
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #6b7280;
	margin-bottom: 10px;
}
.plus-options {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 16px;
}
.plus-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 14px;
	border-radius: 10px;
	border: 2px solid #e5e7eb;
	cursor: pointer;
	transition: border-color 0.15s, background 0.15s;
}
.plus-option:has(input[type="radio"]:checked) {
	border-color: #ec4899;
	background: #fdf2f8;
}
.plus-option input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
.plus-option-inner {
	display: flex;
	align-items: center;
	gap: 10px;
}
.plus-option-radio {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid #d1d5db;
	flex-shrink: 0;
	box-sizing: border-box;
	background: #fff;
	transition: border-color 0.15s, background 0.15s;
}
.plus-option:has(input[type="radio"]:checked) .plus-option-radio {
	border-color: #ec4899;
	background: radial-gradient(circle, #ec4899 4px, #fff 5px);
}
.plus-option-name { font-size: 13px; font-weight: 600; color: #111; }
.plus-option-price { font-size: 12px; color: #6b7280; }
.plus-save-badge {
	font-size: 9px;
	background: #10b981;
	color: #fff;
	padding: 2px 6px;
	border-radius: 20px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	white-space: nowrap;
}
.plus-trial-notice {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: #10b981;
	margin-bottom: 14px;
	font-weight: 500;
}
.plus-cta {
	display: block;
	width: 100%;
	background: #ec4899;
	color: #fff;
	border: none;
	border-radius: 12px;
	padding: 15px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.15s;
}
.plus-cta:hover { background: #db2777; color: #fff; }