/* =========================================================
   SOLIDO — аккордеон категорий (+/-)
   Работает в паре с solido-category-accordion.js
   ========================================================= */

.solido-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	margin-right: 8px;
	border: 1px solid #d6d6d6;
	border-radius: 3px;
	font-size: 13px;
	line-height: 1;
	color: #333;
	cursor: pointer;
	user-select: none;
	transition: background 0.15s ease, border-color 0.15s ease;
	vertical-align: middle;
}

.solido-toggle:hover {
	background: #f5f4f1;
	border-color: #c9a35a;
	color: #c9a35a;
}

.solido-has-children > .solido-sub-list {
	overflow: hidden;
	max-height: 1000px;
	transition: max-height 0.25s ease, opacity 0.2s ease;
	opacity: 1;
	margin-top: 4px;
	padding-left: 18px;
}

.solido-has-children.solido-closed > .solido-sub-list {
	max-height: 0;
	opacity: 0;
	margin-top: 0;
}
