/* ============================================
   CATEGORY SIDEBAR STYLES
   Original: From homepage sidebar section
   Optimized: Duplicates removed, organized
   Last Updated: Without breaking UI
============================================ */

/* All Categories Header Styles with hover animation */
.all-categories-header {
	padding: 10px 15px;
	margin-bottom: 5px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	background: #5fa30f;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.3s ease;
	cursor: default;
}

.all-categories-header:hover {
	background: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.all-categories-header i {
	font-size: 16px;
	color: #ffffff;
	transition: all 0.3s ease;
}

.all-categories-header:hover i {
	color: #5fa30f;
	transform: rotate(15deg);
}

.all-categories-header:hover h4 {
	color: #5fa30f;
}

.all-categories-header h4 {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

/* Category Items - Zero gap */
.hideshow > li {
	margin: 0 !important;
	padding: 0 !important;
}

.hideshow > li > a {
	padding: 8px 12px !important;
	margin: 0 !important;
	display: block;
	border-bottom: 1px solid #f0f0f0;
}

.hideshow > li:last-child > a {
	border-bottom: none;
}

/* See More/Less Links */
.see-more-item, .see-less-item {
	border-top: 1px solid #e0e0e0;
	margin-top: 0 !important;
	padding-top: 0 !important;
	margin-bottom: 0 !important;
}

.see-more-link, .see-less-link {
	display: flex !important;
	justify-content: center;
	align-items: center;
	gap: 6px;
	color: #5fa30f !important;
	font-weight: 500;
	padding: 8px 12px !important;
	text-decoration: none !important;
	transition: all 0.3s ease;
	border-radius: 0;
	background: #f8f9fa;
	font-size: 13px;
	margin: 0 !important;
}

.see-more-link:hover, .see-less-link:hover {
	color: #5fa30f !important;
	background: #e9ecef;
}

.see-more-link span, .see-less-link span {
	font-size: 13px;
}

.see-more-link .fa-chevron-down,
.see-less-link .fa-chevron-up {
	font-size: 11px;
	transition: transform 0.3s ease;
}

.see-more-link:hover .fa-chevron-down {
	transform: translateY(1px);
}

.see-less-link:hover .fa-chevron-up {
	transform: translateY(-1px);
}

/* Submenus */
.sidebar-submenu, .sidebar-childmenu {
	margin: 0 !important;
	padding: 0 !important;
}

.sidebar-submenu li, .sidebar-childmenu li {
	margin: 0 !important;
	padding: 0 !important;
}

/* ============================================
   UNUSED BUT KEPT FOR REFERENCE (commented)
============================================ */