/* =========================================================
   TRUEVITAHUB — AFFILIATE DEALS HEADER NAV
   ========================================================= */

.tvh-affiliate-nav-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.tvh-affiliate-nav-link .tvh-affiliate-new {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 3px 8px;
	border-radius: 999px;
	background: #d1fae5;
	color: #047857;
	font-size: 10px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: .02em;
}

.tvh-affiliate-nav-link:hover .tvh-affiliate-new {
	background: #a7f3d0;
	color: #047857;
}


/* Active Affiliate Deals */

.tvh-affiliate-nav-link.is-active {
	color: #2563eb !important;
}


/* =========================================================
   HEADER ORDER
   Reviews → Affiliate Deals → Search → Login → Join Free
   ========================================================= */

.tvh-site-header .tvh-main-navigation {
	display: flex;
	align-items: center;
}

.tvh-site-header .tvh-main-navigation > ul {
	display: flex;
	align-items: center;
}


/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 1025px) {

	.tvh-affiliate-nav-link {
		margin-left: 4px;
		margin-right: 4px;
	}

	.tvh-affiliate-nav-link.is-active {
		padding: 10px 14px;
		border-radius: 12px;
		background: #f1f6ff;
	}

}


/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {

	.tvh-affiliate-nav-link {
		gap: 5px;
	}

	.tvh-affiliate-nav-link .tvh-affiliate-new {
		padding: 3px 6px;
		font-size: 9px;
	}

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

	.tvh-affiliate-nav-link {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
	}

	.tvh-affiliate-nav-link .tvh-affiliate-new {
		margin-left: auto;
	}

}