.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 32px;
	margin: 0 auto;
	max-width: 1200px;
}
.product-item {
	background: #ffffff;
	padding: 24px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.product-item img {
	width: 100%;
	object-fit: cover;
	border-radius: 4px;
}
.product-title {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin: 0;
	padding: 8px 0;
	text-align: center;
	max-width: 100%;
}
.product-item:hover .product-title {
	color: #747475;
}
.product-download {
	margin-top: auto;
	width: 100%;
	text-align: center;
	padding: 12px 0;
	background-color: #f9f9f9;
	border-top: 1px solid #ddd;
	border-radius: 0 0 6px 6px;
	font-weight: 500;
	color: #333;
	text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 0.5px;
	transition: background-color 0.3s ease, color 0.3s ease;
}
.product-download:hover {
	background-color: #fbb034;
	color: #ffffff;
	text-decoration: none;
}
.rev-header {
	padding-top: 50px;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	margin: 20px 0;
}
.brand-logo {
	opacity:0.3;
	text-align:center;
}
.brand-logo.active {
	opacity:1;
	transform: scale(1.1);
}
.brand-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 80px 32px 80px 12px;
	background-color: #fff;
	border-bottom: 1px solid #ccc;
}
.brand-logos img {
	height: auto;
	max-height: 50px;
	margin: 0 10px;
	transition: filter 0.3s ease;
}
.brand-logos img.active {
	filter: none;
	transform: scale(1.1);
}
.brand-logo img:not(.active) {
	filter: grayscale(50%);
	cursor: pointer;
}
.brand-categories {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}
.brand-category {
	display: none;
	background-color: #f0f0f0;
	border: 1px solid #ddd;
	padding: 10px 20px;
	margin-right: 10px;
}
.brand-category.show {
	display: block;
}

.brand-category.active,
.all.active {
	background-color: #ffffff;
	border-color: #000000;
}
.brand-category, .all {
	background-color: #ffffff;
	border: 2px solid #dddddd;
	color: #333;
	transition: background-color 0.3s ease, color 0.3s ease;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 4px;
	padding: 20px 30px;
	cursor:pointer;
}
.brand-category:hover, .all:hover {
	background-color: #fbb034;
	color: #ffffff;
	border-color: white;
}
.brand-category.active, .all.active {
	background-color: #fbb034;
	color: #ffffff;
	border-color: white;
	border-radius:4px;
}
.category-section {
	display: block;
}
.category-title {
	display: block;
	max-width:1200px;
	margin:60px auto 20px auto;
}
.product-item:hover .product-download {
	animation: pulse 1.5s infinite;
}
.product-item:hover .product-download:hover {
	animation: none;
}
.brand-logo img {
	transition: opacity 0.3s ease, transform 0.2s ease;
}

.brand-logo img:hover {
	transform: scale(1.02);
}
.small-logo img {
	width:80%;
}
.smaller-logo img {
	width:60%;
}
a.brand-logo.term-631 {
    display: none;
}
@keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(251, 176, 52, 0.7);
	}
	70% {
		transform: scale(1.05);
		box-shadow: 0 0 0 10px rgba(251, 176, 52, 0);
	}
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(251, 176, 52, 0);
	}
}
@media (max-width: 768px) {
	.brand-logos {
		text-align:center;
		display:block;
	}
	.brand-logo {
		display:block;
		width:100%;
		margin:20px auto;
	}
	.product-title {
		font-size: 14px;
	}
	.products-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 24px;
		padding: 24px;
	}
	.category-title {
		text-align:center;
	}
}
@media (max-width: 600px) {
	.products-grid {
		grid-template-columns: 1fr;
	}
	.product-title {
		font-size: 14px;
		padding: 4px 0;
	}
	.rev-header {
		padding-top: 20px;
		font-size: 20px;
	}
}