#catalog_widget {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

#catalog_widget .catalog_item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	border: 1px solid var(--border);
	width: 100%;
	aspect-ratio: 1/1;
	margin: 10px;
	text-decoration-line: none;
	overflow: hidden;
	transition: all 0.2s ease-in-out;
}

#catalog_widget .catalog_item:hover {
	box-shadow: 0 0 15px -5px var(--main);
}

#catalog_widget .catalog_item .image {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

#catalog_widget .catalog_item .image img {
	scale: 1.5;
	transition: all 0.2s ease-in-out;
}

#catalog_widget .catalog_item .image img:hover {
	scale: 1.6;
}

#catalog_widget .catalog_item .name {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: var(--main);
	color: var(--main-text);
	width: 100%;
	height: 40px;
}


@media (max-width: 992px) {

}

@media (max-width: 768px) {
	#catalog_widget {
		flex-direction: column;
	}
}

@media (max-width: 480px) {

}
