/* --------------------------------------------------------------------------
   5. Brand Logos
   -------------------------------------------------------------------------- */

.niu-nav-brands {
	width: 100%;
	padding: 0 30px 12px;
	margin: 12px 0 0;
}

/* Inside nested panels, no extra side padding needed */
.niu-nav-nested-panel .niu-nav-brands {
	padding-left: 0;
	padding-right: 0;
}

.niu-nav-brands__inner {
	background: #f9f9f9;
	border-radius: 12px;
	padding: 24px 28px 14px;
	overflow: visible;
}

.niu-nav-brands__title {
	color: #050404;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 14px;
	text-transform: capitalize;
}

.niu-nav-brands__list {
	margin-left: -9px;
	padding: 8px 8px 16px 8px;
	display: flex;
	gap: 28px;
	align-items: center;
	overflow-x: auto;
	scrollbar-width: none;
}

.niu-nav-brands__list::-webkit-scrollbar {
	display: none;
}

.niu-nav-brands__item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 50px;
	flex-shrink: 0;
	border: 1px solid #eaeaea;
	border-radius: 8px;
	padding: 10px;
	text-decoration: none;
	background: #fff;
	transition: box-shadow 0.3s ease;
	box-sizing: content-box;
}

.niu-nav-brands__item:hover,
.niu-nav-brands__item:focus,
.niu-nav-brands__item:active {
	border-color: #eaeaea !important;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	text-decoration: none !important;
	outline: none;
}

.niu-nav-brands__logo {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	opacity: 0.6;
	mix-blend-mode: luminosity;
	transition: opacity 0.3s ease, mix-blend-mode 0.3s ease;
}

.niu-nav-brands__item:hover .niu-nav-brands__logo {
	opacity: 1;
	mix-blend-mode: normal;
}

.niu-nav-brands__name {
	font-size: 11px;
	font-weight: 600;
	color: #1e1e1c;
	text-align: center;
}

/* Stagger animation — brands fade in one after another */
@keyframes niuBrandFadeIn {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.niu-nav-brands__item {
	opacity: 0;
	animation: niuBrandFadeIn 0.3s ease forwards;
}

.niu-nav-brands__item:nth-child(1)  { animation-delay: 0s; }
.niu-nav-brands__item:nth-child(2)  { animation-delay: 0.06s; }
.niu-nav-brands__item:nth-child(3)  { animation-delay: 0.06s; }
.niu-nav-brands__item:nth-child(4)  { animation-delay: 0.12s; }
.niu-nav-brands__item:nth-child(5)  { animation-delay: 0.12s; }
.niu-nav-brands__item:nth-child(6)  { animation-delay: 0.18s; }
.niu-nav-brands__item:nth-child(7)  { animation-delay: 0.18s; }
.niu-nav-brands__item:nth-child(8)  { animation-delay: 0.24s; }
.niu-nav-brands__item:nth-child(9)  { animation-delay: 0.24s; }
.niu-nav-brands__item:nth-child(10) { animation-delay: 0.3s; }
.niu-nav-brands__item:nth-child(11) { animation-delay: 0.3s; }
.niu-nav-brands__item:nth-child(12) { animation-delay: 0.36s; }
