/* Widget Wrapper */
.cat-browser-wrapper_cc83bf22 {
	display: flex;
	flex-direction: column;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #333;
	max-width: 1400px;
	margin: 0 auto;
}

/* Top Bar (Search & Filters) */
.cat-topbar_cc83bf22 {
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
	align-items: center;
}

.cat-search-wrap_cc83bf22 {
	flex-grow: 1;
	position: relative;
}

.cat-search-icon_cc83bf22 {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #888;
}

.cat-search-input_cc83bf22 {
	width: 100%;
	padding: 12px 12px 12px 40px;
	border: 1px solid #eaeaea;
	border-radius: 8px;
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s;
}

.cat-search-input_cc83bf22:focus {
	border-color: #007a8a;
}

.cat-filter-select_cc83bf22 {
	padding: 12px 30px 12px 15px;
	border: 1px solid #eaeaea;
	border-radius: 8px;
	font-size: 14px;
	background-color: #fff;
	cursor: pointer;
	outline: none;
	min-width: 160px;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 16px;
}

/* Main Layout (Sidebar + Grid) */
.cat-main-layout_cc83bf22 {
	display: flex;
	gap: 30px;
}

/* Sidebar */
.cat-sidebar_cc83bf22 {
	width: 250px;
	flex-shrink: 0;
	border-right: 1px solid #eaeaea;
	padding-right: 20px;
}

.cat-sidebar-title_cc83bf22 {
	font-size: 13px;
	font-weight: 700;
	color: #007a8a;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.cat-sidebar-list_cc83bf22 {
	list-style: none;
	padding: 0;
	margin: 0;
}

.cat-sidebar-item_cc83bf22 {
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 500;
}

.cat-sidebar-link_cc83bf22 {
	text-decoration: none;
	color: #1a2b49;
	display: block;
	padding: 8px 12px;
	border-radius: 6px;
	transition: background 0.2s, color 0.2s;
	cursor: pointer;
}

.cat-sidebar-link_cc83bf22:hover,
.cat-sidebar-link_cc83bf22.active {
	background-color: #eef7f8;
	color: #007a8a;
}

.cat-sidebar-icon_cc83bf22 {
	margin-right: 8px;
}

/* Main Grid */
.cat-main-content_cc83bf22 {
	flex-grow: 1;
}

.cat-grid_cc83bf22 {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 24px;
}

.cat-no-results_cc83bf22 {
	grid-column: 1 / -1;
	text-align: center;
	padding: 40px;
	color: #666;
	font-size: 16px;
	display: none;
}

/* Card */
.cat-card_cc83bf22 {
	background: #fff;
	border: 1px solid #eaeaea;
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	display: flex;
	flex-direction: column;
}

.cat-card_cc83bf22.hidden {
	display: none;
}

.cat-card_cc83bf22:hover {
	box-shadow: 0 10px 25px rgba(0,0,0,0.05);
	transform: translateY(-2px);
}

.cat-card-link_cc83bf22 {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 16px;
}

.cat-card-image-wrap_cc83bf22 {
	background: #f8fbfa;
	border-radius: 8px;
	padding: 30px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	height: 160px;
}

.cat-card-img_cc83bf22 {
	max-width: 120px;
	max-height: 120px;
	object-fit: contain;
}

.cat-card-placeholder_cc83bf22 {
	width: 80px;
	height: 80px;
	background: #e0e0e0;
	border-radius: 50%;
}

.cat-card-title_cc83bf22 {
	font-size: 16px;
	font-weight: 700;
	color: #1a2b49;
	margin: 0 0 8px 0;
}

.cat-card-desc_cc83bf22 {
	font-size: 13px;
	color: #555;
	line-height: 1.5;
	margin: 0 0 20px 0;
	flex-grow: 1;
}

.cat-card-footer_cc83bf22 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid #f0f0f0;
}

.cat-card-count_cc83bf22 {
	font-size: 12px;
	color: #888;
	font-weight: 500;
}

.cat-card-explore_cc83bf22 {
	font-size: 13px;
	color: #007a8a;
	font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
	.cat-topbar_cc83bf22 {
		flex-direction: column;
		align-items: stretch;
	}
	.cat-main-layout_cc83bf22 {
		flex-direction: column;
	}
	.cat-sidebar_cc83bf22 {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid #eaeaea;
		padding-right: 0;
		padding-bottom: 20px;
	}
}