.wccm-wrapper {
	position: relative;
	display: flex;
	max-width: 260px;
	font-family: inherit;
}

.wccm-sidebar {
	width: 100%;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.wccm-header {
	background: #e6f4f1;
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.wccm-header span {
	font-weight: 700;
	font-size: 15px;
	color: #1f2937;
}

.wccm-see-all {
	font-size: 12px;
	color: #0f9d78;
	text-decoration: none;
}

.wccm-see-all:hover {
	text-decoration: underline;
}

.wccm-cat-list {
	list-style: none;
	margin: 0;
	padding: 8px 0;
}

.wccm-cat-item a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 16px;
	color: #374151;
	text-decoration: none;
	font-size: 14px;
	transition: background 0.15s ease, color 0.15s ease;
}

.wccm-cat-item:hover a,
.wccm-cat-item.wccm-active a {
	background: #f0fdf9;
	color: #0f9d78;
}

.wccm-icon {
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 18px;
}

.wccm-icon img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.wccm-icon-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #d1d5db;
	display: inline-block;
}

.wccm-name {
	flex: 1;
}

/* Flyout panel */
.wccm-flyout {
	position: absolute;
	top: 0;
	left: 100%;
	min-width: 640px;
	z-index: 50;
}

.wccm-panel {
	display: none;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
	padding: 24px;
}

.wccm-panel.wccm-panel-active {
	display: block;
}

.wccm-columns {
	display: grid;
	grid-template-columns: repeat(var(--wccm-cols, 3), minmax(160px, 1fr));
	gap: 32px;
}

.wccm-col {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.wccm-l2 {
	padding-bottom: 6px;
	border-bottom: 1px solid #f0f0f0;
}

.wccm-l2 a {
	font-weight: 600;
	font-size: 14px;
	color: #1f2937;
	text-decoration: none;
}

.wccm-l2 a:hover {
	color: #0f9d78;
}

.wccm-l3 {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.wccm-l3 a {
	font-size: 13px;
	color: #6b7280;
	text-decoration: none;
}

.wccm-l3 a:hover {
	color: #0f9d78;
}

/* Mobile: flyout না দেখিয়ে ক্লিকে নিচে খুলবে */
@media (max-width: 782px) {
	.wccm-wrapper {
		max-width: 100%;
		display: block;
	}

	.wccm-flyout {
		position: static;
		min-width: 100%;
	}

	.wccm-panel {
		border-radius: 0;
		box-shadow: none;
		border-top: none;
	}

	.wccm-columns {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}
