.product-card .product-image {
	aspect-ratio: 1 / 1;
	height: auto;
	padding: 0;
}

.product-card .product-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vazpo-menu > li {
	display: flex;
	height: 86px;
	align-items: center;
}

.vazpo-menu > .menu-item-has-children > a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.vazpo-menu > .menu-item-has-children > a::after {
	width: 13px;
	height: 13px;
	background: currentColor;
	content: "";
	mask: url("../icons/chevron-down.svg") center / contain no-repeat;
	-webkit-mask: url("../icons/chevron-down.svg") center / contain no-repeat;
	transition: transform .2s;
}

.vazpo-menu > .menu-item-has-children:hover > a::after,
.vazpo-menu > .menu-item-has-children:focus-within > a::after {
	transform: rotate(180deg);
}

.vazpo-menu .sub-menu {
	top: 100%;
	left: -22px;
	min-width: 270px;
	padding: 0;
	overflow: hidden;
	border-radius: 0 0 10px 10px;
}

.vazpo-menu .sub-menu a {
	padding: 14px 20px;
	border-bottom: 1px solid #edf2f7;
	font-size: 14px;
	font-weight: 600;
}

.vazpo-menu .sub-menu li:last-child a {
	border-bottom: 0;
}

.vazpo-menu .sub-menu a:hover,
.vazpo-menu .sub-menu .current-menu-item > a {
	background: #f5f8fc;
	color: var(--blue);
}

.product-catalog-layout {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: 34px;
	align-items: start;
}

.product-catalog-main {
	min-width: 0;
}

.product-catalog-main .product-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-category-sidebar {
	position: sticky;
	top: 24px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 12px 32px rgba(6, 52, 118, .08);
}

.product-category-sidebar h2 {
	margin: 0;
	padding: 17px 20px;
	background: var(--navy);
	color: #fff;
	font-size: 17px;
	line-height: 1.3;
}

.product-category-sidebar ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.product-category-sidebar li + li {
	border-top: 1px solid #edf2f7;
}

.product-category-sidebar a {
	display: block;
	padding: 14px 20px;
	color: #294663;
	font-size: 14px;
	font-weight: 700;
	transition: background-color .2s, color .2s;
}

.product-category-sidebar a:hover,
.product-category-sidebar .is-current a {
	background: #f1f6fd;
	color: var(--blue);
}

@media (max-width: 980px) {
	.vazpo-menu > li {
		display: block;
		height: auto;
	}

	.vazpo-menu > .menu-item-has-children > a {
		display: flex;
		justify-content: space-between;
	}

	.vazpo-menu > .menu-item-has-children > a::after {
		margin-left: auto;
	}

	.vazpo-menu > .menu-item-has-children:hover > a::after,
	.vazpo-menu > .menu-item-has-children:focus-within > a::after {
		transform: none;
	}

	.vazpo-menu .sub-menu {
		min-width: 0;
		overflow: visible;
		border-radius: 0;
	}

	.vazpo-menu .sub-menu a {
		padding: 10px 4px;
		border-bottom: 1px solid #edf2f7;
		font-size: 12px;
	}

	.product-catalog-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.product-category-sidebar {
		position: static;
	}

	.product-category-sidebar ul {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.product-category-sidebar li,
	.product-category-sidebar li + li {
		border-top: 0;
		border-bottom: 1px solid #edf2f7;
	}

	.product-category-sidebar li:nth-child(odd) {
		border-right: 1px solid #edf2f7;
	}

	.product-catalog-main .product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	.product-category-sidebar ul {
		grid-template-columns: 1fr;
	}

	.product-category-sidebar li:nth-child(odd) {
		border-right: 0;
	}

	.product-category-sidebar a {
		padding: 12px 16px;
	}
}
