
 .category-list .category {
    width: calc(100% / 7 - 180px / 7);
    text-align: center;
}
 .category-list .category .image {
    width: 100%;
    height: 150px;
    align-items: center;
    justify-content: center;
    display: flex;
    background: #F5F5F5;
    border-radius: 20px;
}
.category-list .category.active .image {
    box-shadow: 0 0 20px -5px #4058af;
}
 .category-list .category .image img {
    height: 60%;
}
 .category-list .category .name {
    font-weight: 200;
    margin-top: 10px;
}
 .items-block {
    margin-bottom: 80px;
}
 .items-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
 .items-list .item {
    width: calc(100% / 5 - 120px / 5);
    padding: 30px 5px 5px;
    background: #F5F5F5;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
 .items-list .item::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 35px;
    background: #4058AF;
    z-index: 0;
    left: 0;
    bottom: 0;
}
 .items-list .item .inner-info {
    background: #fff;
    border-radius: 5px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    z-index: 1;
}
 .items-list .item .item-name {
    text-align: center;
    font-weight: 200;
}
 .items-list .item .item-icon {
    text-align: center;
    font-size: 50px;
    color: #4058AF;
    font-weight: 300;
    margin: 30px 0;
	min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}
 .items-list .item .item-icon.big-name {
	font-size: 35px;
}
 .items-list .item .price {
    font-weight: 300;
    text-align: center;
}

@media screen and (max-width: 768px) {
	.content-page .aside-menu {
		position: relative;
		overflow: hidden; /* Важно: скрываем выходящий контент */
		transition: height 0.3s ease; /* Плавное изменение высоты */
		width: 100%;
		background: #fff;
		margin: 20px 0;
	}
	
	.content-page .menu-content {
		position: relative;
		width: 100%;
	}

	/* Стили для всех списков уровней */
	.content-page .aside-menu ul {
		list-style: none;
		padding: 0;
		margin: 0;
		transition: transform 0.3s ease-in-out;
		width: 100%;
		background: #fff;
	}
	
	/* Скрываем уровни 2 и 3 и сдвигаем их вправо */
	.content-page .level_2, .level_3 {
		position: absolute;
		top: 0;
		left: 0;
		transform: translateX(100%);
		z-index: 10;
		display: none; /* Прячем, чтобы не мешали кликам */
	}
	
	/* Состояние активного уровня */
	.content-page .aside-menu ul.active {
		display: block;
		transform: translateX(0);
	}
	
	/* Стили для ссылок и кнопок назад */
	.content-page .aside-menu li {
		border-bottom: 1px solid #eee;
		padding: 5px 10px;
		cursor: pointer;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.content-page .aside-menu li a {
		width: 100%;
		font-size: 14px;
	}
	
	/* Маркер наличия подменю (стрелочка) */
	.content-page .has-children::after {
		content: '→';
		color: #28a745;
	}
	
	/* Кнопка "Назад" */
	.content-page .back-link {
		background: #f9f9f9;
		font-weight: 200;
		color: #4058af;
		font-size: 14px;
	}
	.content-page .aside-menu ul li:nth-last-of-type(1) {
		border-bottom: none;
	}.category-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
	.category-list {
	gap: 10px;
	}
	.category-list .category {
	width: calc(100% / 3 - 20px / 3);););
	}
	.category-list .category .image {
	height: 100px;
	}
	.category-list .category .name {
	margin-top: 5px;
	font-size: 14px;
	}
	.items-list {
	gap: 10px;
	justify-content: flex-start;
	}
	.items-list .item {
	width: calc(100% / 2 - 5px);
	}
	.items-list .item .inner-info {
	padding: 10px;
	}
	.items-list .item .item-name {
	font-size: 14px;
	}
	.items-list .item .item-icon {
	margin: 15px 0;
	font-size: 40px;
	min-height: 60px;
	}
	.items-list .item .price {
	font-size: 14px;
	}


	.content-page .title-menu {
		cursor: pointer;
		display: flex; /* Чтобы выровнять иконку */
		justify-content: space-between;
		align-items: center;
		background: #4058af;
		color: #fff;
		padding: 10px 15px;
		 /* Убираем отступ, чтобы меню прилегало */
		margin: 0 10px 10px;
		border-radius: 10px;
		font-size: 14px;
		font-weight: 200;
	}
	
	/* Иконка стрелочки */
	.content-page .title-menu::after {
		content: '▼';
		font-size: 12px;
		transition: transform 0.3s ease;
	}
	
	/* Поворот стрелочки при открытии */
	.content-page .title-menu.is-active::after {
		transform: rotate(180deg);
	}
	
	/* Основной контейнер для скрытия */
	.content-page .menu-collapsible {
		height: 0;
		overflow: hidden;
		display: none; /* Полностью скрыт изначально */
		transition: height 0.3s ease-in-out;
		border: 1px solid #eee;
		border-top: none;
	}
	.content-page .aside-menu {
		position: relative;
		overflow: hidden; /* Важно: скрываем выходящий контент */
		transition: height 0.3s ease; /* Плавное изменение высоты */
		width: 100%;
		background: #fff;
		margin: 20px 0 10px;
	}
	
	.content-page .menu-content {
		position: relative;
		width: 100%;
	}

	/* Стили для всех списков уровней */
	.content-page .aside-menu ul {
		list-style: none;
		padding: 0;
		margin: 0;
		transition: transform 0.3s ease-in-out;
		width: 100%;
		background: #fff;
	}
	
	/* Скрываем уровни 2 и 3 и сдвигаем их вправо */
	.content-page .level_2, .level_3 {
		position: absolute;
		top: 0;
		left: 0;
		transform: translateX(100%);
		z-index: 10;
		display: none; /* Прячем, чтобы не мешали кликам */
	}
	
	/* Состояние активного уровня */
	.content-page .aside-menu ul.active {
		display: block;
		transform: translateX(0);
	}
	
	/* Стили для ссылок и кнопок назад */
	.content-page .aside-menu li {
		border-bottom: 1px solid #eee;
		padding: 5px 10px;
		cursor: pointer;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.content-page .aside-menu li a {
		width: 100%;
		font-size: 14px;
	}
	
	/* Маркер наличия подменю (стрелочка) */
	.content-page .has-children::after {
		content: '→';
		color: #28a745;
	}
	
	/* Кнопка "Назад" */
	.content-page .back-link {
		background: #f9f9f9;
		font-weight: 200;
		color: #4058af;
		font-size: 14px;
	}
	.content-page .aside-menu ul li:nth-last-of-type(1) {
		border-bottom: none;
	}
}
@media (max-width: 1024px) {
		.content-page .level_2, .level_3 {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		transform: translateX(100%);
		display: none;
		z-index: 100;
		transition: transform 0.3s ease;
	}
}
.category-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
 .category-list .category {
    width: calc(100% / 7 - 180px / 7);
    );
    text-align: center;
}
 .category-list .category .image {
    width: 100%;
    height: 150px;
    align-items: center;
    justify-content: center;
    display: flex;
    background: #F5F5F5;
    border-radius: 20px;
}
.category-list .category.active .image {
    box-shadow: 0 0 20px -5px #4058af;
}
 .category-list .category .image img {
    height: 60%;
}
 .category-list .category .name {
    font-weight: 200;
    margin-top: 10px;
}
 .items-block {
    margin-bottom: 80px;
}
 .items-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
 .items-list .item {
    width: calc(100% / 5 - 120px / 5);
    padding: 30px 5px 5px;
    background: #F5F5F5;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
 .items-list .item::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 35px;
    background: #4058AF;
    z-index: 0;
    left: 0;
    bottom: 0;
}
 .items-list .item .inner-info {
    background: #fff;
    border-radius: 5px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    z-index: 1;
}
 .items-list .item .item-name {
    text-align: center;
    font-weight: 200;
}
 .items-list .item .item-icon {
    text-align: center;
    font-size: 50px;
    color: #4058AF;
    font-weight: 300;
    margin: 30px 0;
	min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}
 .items-list .item .item-icon.big-name {
	font-size: 30px;
}
 .items-list .item .price {
    font-weight: 300;
    text-align: center;
}
@media screen and (max-width: 768px) {
	.category-list {
	gap: 10px;
	}
	.category-list .category {
	width: calc(100% / 3 - 20px / 3);););
	}
	.category-list .category .image {
	height: 100px;
	}
	.category-list .category .name {
	margin-top: 5px;
	font-size: 14px;
	}
	.items-list {
	gap: 10px;
	justify-content: flex-start;
	}
	.items-list .item {
	width: calc(100% / 2 - 5px);
	}
	.items-list .item .inner-info {
	padding: 10px;
	}
	.items-list .item .item-name {
	font-size: 14px;
	}
	.items-list .item .item-icon {
	margin: 15px 0;
	font-size: 40px;
	min-height: 60px;
	}
	.items-list .item .item-icon.big-name {
		font-size: 22px;
	}
	.items-list .item .price {
	font-size: 14px;
	}
	.items-block {
		margin-bottom: 25px;
	}
}
@media screen and (min-width: 768px) {
	.content-page {
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: flex-start;
}
	.content-page .aside-menu {
    width: 200px;
    z-index: 2;
    position: relative;
	display: block;
}
	.content-page .catalog-content .container {
    width: 1150px;
}
	.content-page .aside-menu .menu-content {
    display: flex;
    width: 100%;
}
.content-page .aside-menu .title-menu {
    font-weight: 300;
    font-size: 18px;
    text-transform: uppercase;
    padding: 0 0 10px;
}
.content-page .aside-menu .menu-content .level_1 {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    flex: none;
    font-size: 14px;
    flex-direction: column;
    align-items: flex-start;
}
.content-page .aside-menu .menu-content .level_1 li {
	padding: 5px 0;
    cursor: pointer;
}
.content-page .aside-menu .menu-content .level_1 li.active {
	color: #4058af;
    font-weight: 200;
}
.content-page .aside-menu .menu-content .level_2 {
    display: none;
    margin: 0;
    list-style: none;
    width: 220px;
    flex: none;
    font-size: 18px;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffffd4;
    position: absolute;
    top: 0;
    left: 200px;
    height: 100%;
    padding: 0 0 0 20px;
    box-sizing: border-box;
    padding-top: 31px;
    backdrop-filter: blur(5px);
    box-shadow: 12px 5px 13px -18px #6f6f6f;
}
.content-page .aside-menu .menu-content .level_2.active {
	display: flex;
}
.content-page .aside-menu .menu-content .level_2 li,
.content-page .aside-menu .menu-content .level_3 li {
	padding: 5px 0;
	cursor: pointer;
	font-size: 14px;
}
.content-page .aside-menu .menu-content li a:hover {
	color: #4058af;
}
.content-page .aside-menu .menu-content .level_2 li.active {
	color: #4058af;
}
.content-page .aside-menu .menu-content .level_3 {
    display: none;
    margin: 0;
    list-style: none;
    width: 220px;
    flex: none;
    font-size: 18px;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffffd4;
    position: absolute;
    top: 0;
    left: 420px;
    height: 100%;
    padding: 0 0 0 20px;
    box-sizing: border-box;
    padding-top: 31px;
	backdrop-filter: blur(5px);
    box-shadow: 12px 5px 13px -18px #6f6f6f;
}
.content-page .aside-menu .menu-content .level_3.active {
	display: flex;
}
}