/* Category Styles */
.category {
	margin-bottom: 30px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 15px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-header {
	padding: 15px 20px;
	background: linear-gradient(
		90deg,
		rgba(255, 165, 0, 0.2) 0%,
		rgba(255, 107, 53, 0.2) 100%
	);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.3s ease;
}

.category-header:hover {
	background: linear-gradient(
		90deg,
		rgba(255, 165, 0, 0.3) 0%,
		rgba(255, 107, 53, 0.3) 100%
	);
}

.category-title {
	font-size: 1.4em;
	font-weight: bold;
	color: #ffa500;
}

.category-count {
	color: #b8b8b8;
	font-size: 0.9em;
}

.chevron {
	display: inline-block;
	transform-origin: center;
	transition: transform 0.3s ease;
}

.category.collapsed .chevron {
	transform: rotate(90deg);
}

.category-content {
	padding: 8px;

	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 14px;
	opacity: 1;
	transition: all 0.3s ease;
}

.category.collapsed .category-content {
	max-height: 0;
	padding: 0 20px;
	opacity: 0;
	overflow: hidden;
}
