/* Tarieven — looptijdkiezer en abonnementskaarten */

.fh-actie {
	color: #c0392b;
	font-weight: 500;
}

/* Looptijdkiezer */
.fh-duration-toggle {
	display: inline-flex;
	background: #f1f3f5;
	border-radius: 999px;
	padding: 5px;
	gap: 4px;
}

.fh-duration-btn {
	position: relative;
	border: 0;
	background: transparent;
	color: #495057;
	font-weight: 600;
	font-size: 0.95rem;
	border-radius: 999px;
	padding: 10px 22px;
	transition: all 0.15s ease;
}

.fh-duration-btn:hover {
	color: #008ace;
}

.fh-duration-btn.active {
	background: #008ace;
	color: #fff;
	box-shadow: 0 2px 8px rgba(0, 138, 206, 0.35);
}

@media (max-width: 575px) {
	.fh-duration-btn {
		padding: 8px 12px;
		font-size: 0.85rem;
	}
}

.fh-duration-hint {
	position: absolute;
	top: -14px;
	right: -6px;
	font-size: 0.62rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #fff;
	background: #e67e22;
	border-radius: 999px;
	padding: 2px 8px;
}

/* Abonnementskaart */
.fh-plan {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #e9ecef;
	border-radius: 16px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	padding: 36px 28px 28px;
	text-align: center;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.fh-plan:hover {
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
	transform: translateY(-4px);
}

.fh-plan-featured {
	border: 2px solid #008ace;
	box-shadow: 0 8px 24px rgba(0, 138, 206, 0.18);
}

.fh-plan-badge {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: #008ace;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border-radius: 999px;
	padding: 4px 16px;
	white-space: nowrap;
}

.fh-plan-name {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	font-size: 1.05rem;
	color: #212529;
	margin-bottom: 14px;
	min-height: 2.6em;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fh-plan-price-row {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 4px;
	color: #212529;
}

.fh-plan-currency {
	font-size: 1.3rem;
	font-weight: 600;
	color: #008ace;
}

.fh-plan-price {
	font-size: 2.9rem;
	font-weight: 800;
	line-height: 1;
	color: #212529;
}

.fh-plan-period {
	font-size: 0.9rem;
	color: #868e96;
	white-space: nowrap;
}

.fh-plan-saving {
	min-height: 1.4em;
	font-size: 0.82rem;
	font-weight: 600;
	color: #16a085;
	margin: 8px 0 0;
}

.fh-plan-features {
	list-style: none;
	padding: 0;
	margin: 18px 0 24px;
	text-align: left;
	flex-grow: 1;
}

.fh-plan-features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.9rem;
	color: #495057;
	padding: 6px 0;
	border-bottom: 1px solid #f1f3f5;
}

.fh-plan-features li:last-child {
	border-bottom: 0;
}

.fh-plan-features .fa-check {
	color: #16a085;
	margin-top: 3px;
	flex-shrink: 0;
}
