.vmax-brand-overview,
.vmax-tuning-nav {
	background: #111;
	border: 1px solid #2b2b2b;
	border-radius: 14px;
	padding: 18px;
	color: #e5e5e5;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.vmax-brand-overview__top,
.vmax-tuning-nav__topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid #2a2a2a;
}

.vmax-brand-overview__hint,
.vmax-tuning-nav__hint {
	font-size: 28px;
	line-height: 1.2;
	color: #cfcfcf;
	font-weight: 300;
}

.vmax-brand-overview__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 18px;
}

.vmax-brand-overview__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #e5e5e5;
	background: linear-gradient(180deg, #141414 0%, #101010 100%);
	border: 1px solid #2f2f2f;
	border-radius: 12px;
	padding: 18px;
	min-height: 170px;
	transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.vmax-brand-overview__card:hover {
	transform: translateY(-2px);
	background: linear-gradient(180deg, #181818 0%, #111111 100%);
	border-color: #444;
}

.vmax-brand-overview__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 90px;
	margin-bottom: 14px;
}

.vmax-brand-overview__logo img {
	max-width: 100%;
	max-height: 90px;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

.vmax-brand-overview__fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
}

.vmax-brand-overview__name {
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35;
}

.vmax-tuning-nav__breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-bottom: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid #2a2a2a;
	font-size: 14px;
}

.vmax-tuning-nav__crumb {
	color: #d7d7d7;
	text-decoration: none;
}

.vmax-tuning-nav__crumb:hover {
	color: #ffffff;
}

.vmax-tuning-nav__sep {
	color: #7d7d7d;
}

.vmax-tuning-nav__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 999px;
	background: linear-gradient(180deg, #D00000 0%, #9F0000 100%);
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	border: 1px solid rgba(255,255,255,0.08);
}

.vmax-tuning-nav__back:hover,
.vmax-tuning-nav__back:focus{
	background: #fff !important;
	color: #d00000 !important;
	border-color: #d00000 !important;
}

.vmax-tuning-nav__back:hover .vmax-tuning-nav__back-icon,
.vmax-tuning-nav__back:focus .vmax-tuning-nav__back-icon{
	color: #d00000 !important;
}

.vmax-tuning-nav__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	width: 100%;
}

.vmax-tuning-nav__column {
	background: linear-gradient(180deg, #141414 0%, #101010 100%);
	border: 1px solid #2f2f2f;
	border-radius: 12px;
	overflow: hidden;
	min-height: 260px;
}

.vmax-tuning-nav__column-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	font-size: 22px;
	font-weight: 700;
	color: #f1f1f1;
	background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
	border-bottom: 1px solid #2d2d2d;
}

.vmax-tuning-nav__column-title-text {
	display: block;
	min-width: 0;
	line-height: 1.2;
}

.vmax-tuning-nav__column-logo {
	width: 54px;
	height: 54px;
	object-fit: contain;
	flex: 0 0 54px;
	display: block;
}

.vmax-tuning-nav__list {
	padding: 8px 0;
}

.vmax-tuning-nav__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 16px;
	color: #cfcfcf;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	transition: background 0.18s ease, color 0.18s ease;
}

.vmax-tuning-nav__item:hover {
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
}

.vmax-tuning-nav__item.is-active {
	background: linear-gradient(90deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
	color: #fff;
}

.vmax-tuning-nav__item.is-product {
	font-weight: 600;
	align-items: center;
}

.vmax-tuning-nav__item.is-product .vmax-tuning-nav__item-label {
	flex: 1 1 auto;
	min-width: 0;
}

.vmax-tuning-nav__item-label {
	display: block;
	line-height: 1.35;
}

.vmax-tuning-nav__item-meta {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	flex: 0 0 auto;
	margin-left: 10px;
}

.vmax-tuning-nav__item-arrow {
	color: #9a9a9a;
	font-size: 18px;
	flex: 0 0 auto;
}

.vmax-tuning-nav__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 22px;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 15px;
	line-height: 1;
	font-weight: 700;
	white-space: nowrap;
}

.vmax-tuning-nav__badge--ps {
	background: linear-gradient(180deg, #D00000 0%, #9F0000 100%);
	color: #fff;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
	border: 1px solid rgba(255,255,255,0.08);
}

.vmax-tuning-nav__description {
	margin-top: 22px;
	padding: 18px 20px;
	background: linear-gradient(180deg, #141414 0%, #101010 100%);
	border: 1px solid #2f2f2f;
	border-radius: 12px;
	color: #d7d7d7;
	line-height: 1.7;
}

.vmax-tuning-nav__description p {
	margin: 0 0 1em;
}

.vmax-tuning-nav__description p:last-child {
	margin-bottom: 0;
}

.vmax-tuning-nav__description a {
	color: #ffffff;
	text-decoration: underline;
}

.vmax-tuning-nav__description strong {
	color: #ffffff;
}

.vmax-tuning-nav__empty,
.vmax-tuning-nav__loading {
	padding: 16px;
	color: #a0a0a0;
}

.vmax-tuning-nav__mobile-controls {
	display: none;
}

/* Standard-WooCommerce-Loop auf relevanten Tuning-Archiven ausblenden */
.vmax-tuning-archive ul.products,
.vmax-tuning-archive .woocommerce ul.products,
.vmax-tuning-archive .products,
.vmax-tuning-archive .woocommerce-no-products-found,
.vmax-tuning-archive .woocommerce-result-count,
.vmax-tuning-archive form.woocommerce-ordering,
.vmax-tuning-archive nav.woocommerce-pagination {
	display: none !important;
}

@media (max-width: 1400px) {
	.vmax-brand-overview__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 1200px) {
	.vmax-tuning-nav__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		width: 100%;
	}

	.vmax-brand-overview__hint,
	.vmax-tuning-nav__hint {
		font-size: 22px;
	}
}

@media (max-width: 767px) {
	.vmax-brand-overview__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
	}

	.vmax-tuning-nav__grid {
		grid-template-columns: 1fr;
	}

	.vmax-brand-overview__card {
		min-height: 140px;
		padding: 14px;
	}

	.vmax-brand-overview__top,
	.vmax-tuning-nav__topbar {
		flex-direction: column;
		align-items: flex-start;
	}

	.vmax-brand-overview__hint,
	.vmax-tuning-nav__hint {
		font-size: 18px;
	}

	.vmax-tuning-nav__column {
		min-height: auto;
	}

	.vmax-tuning-nav__column-title {
		font-size: 18px;
	}

	.vmax-tuning-nav__column-logo {
		width: 42px;
		height: 42px;
		flex: 0 0 42px;
	}

	.vmax-tuning-nav__badge {
		font-size: 13px;
		padding: 2px 7px;
	}

	.vmax-tuning-nav.is-mobile-steps .vmax-tuning-nav__topbar {
		display: none;
	}

	.vmax-tuning-nav.is-mobile-steps .vmax-tuning-nav__mobile-controls {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
		margin-bottom: 18px;
		padding: 12px 0 14px;
		border-bottom: 1px solid #2a2a2a;
	}

	.vmax-tuning-nav__mobile-back {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 10px 14px;
		border: 0;
		border-radius: 999px;
		background: linear-gradient(180deg, #D00000 0%, #9F0000 100%);
		color: #fff;
		font-size: 14px;
		font-weight: 600;
		white-space: nowrap;
		cursor: pointer;
		border: 1px solid rgba(255,255,255,0.08);
	}

	.vmax-tuning-nav__mobile-back:hover {
		filter: brightness(1.08);
	}

	.vmax-tuning-nav__mobile-back:disabled {
		opacity: 0.6;
		cursor: default;
	}

	.vmax-tuning-nav__mobile-meta {
		min-width: 0;
		text-align: right;
	}

	.vmax-tuning-nav__mobile-step {
		font-size: 12px;
		color: #9a9a9a;
		margin-bottom: 3px;
	}

	.vmax-tuning-nav__mobile-title {
		font-size: 18px;
		line-height: 1.2;
		color: #f1f1f1;
		font-weight: 700;
		word-break: break-word;
	}

	.vmax-tuning-nav.is-mobile-steps .vmax-tuning-nav__grid {
		grid-template-columns: 1fr;
	}

	.vmax-tuning-nav.is-mobile-steps .vmax-tuning-nav__column {
		display: none;
		min-height: auto;
	}

	.vmax-tuning-nav.is-mobile-steps .vmax-tuning-nav__column.is-mobile-active {
		display: block;
	}
}
.vmax-brand-overview__description {
	margin-top: 22px;
	padding: 18px 20px;
	background: linear-gradient(180deg, #141414 0%, #101010 100%);
	border: 1px solid #2f2f2f;
	border-radius: 12px;
	color: #d7d7d7;
	line-height: 1.7;
}

.vmax-brand-overview__description p {
	margin: 0 0 1em;
}

.vmax-brand-overview__description p:last-child {
	margin-bottom: 0;
}

.vmax-brand-overview__description a {
	color: #ffffff;
	text-decoration: underline;
}

.vmax-brand-overview__description strong {
	color: #ffffff;
}