.list-page {
	background: #fff
}
.list-cover {
	height: 400px;
	background: #fff url("../images/37423503.jpg") center/cover no-repeat
}
.product-list {
	max-width: 1500px;
	min-height: 1020px;
	margin: 0 auto;
	padding: 10px 20px 50px
}
.product-count {
	height: 28px;
	margin: 0;
	line-height: 28px;
	color: #333;
	font-size: 14px
}
.product-count strong {
	color: #d81b00;
	font-weight: 400
}
.list-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	margin-top: 0
}
.list-item {
	min-width: 0;
	overflow: hidden;
	text-align: center
}
.list-item a {
	display: block
}
.item-image {
	width: 100%;
	aspect-ratio: 1;
	overflow: hidden
}
.item-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform .3s linear
}
.list-item:hover .item-image img {
	transform: scale(1.1)
}
.list-item h1, .list-item h2 {
	height: 34px;
	margin: 5px 10px 0;
	overflow: hidden;
	color: #404040;
	font-family: inherit;
	font-size: 18px;
	font-weight: 700;
	line-height: 34px;
	white-space: nowrap;
	text-overflow: ellipsis;
	transition: color .2s linear
}
.list-item:hover h1, .list-item:hover h2 {
	color: #000
}
.list-item p {
	height: 20px;
	margin: 0 10px 10px;
	overflow: hidden;
	color: #777;
	font-family: inherit;
	font-size: 14px;
	line-height: 20px;
	white-space: nowrap;
	text-overflow: ellipsis
}
.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 36px
}
.page-numbers {
	display: flex;
	align-items: center;
	gap: 8px
}
.pagination button {
	display: flex;
	width: 34px;
	height: 34px;
	align-items: center;
	justify-content: center;
	border: 1px solid #d8d8d8;
	background: #fff;
	color: #555;
	font: 14px/1 inherit;
	cursor: pointer;
	transition: border-color .2s, color .2s, background-color .2s
}
.pagination button:hover:not(:disabled), .pagination button:focus-visible {
border-color:#111;
color:#111
}
.pagination .page-number.active {
	border-color: #111;
	background: #111;
	color: #fff
}
.pagination button:disabled {
	color: #bbb;
	cursor: not-allowed
}

@media(max-width:760px) {
.list-cover {
	height: 210px
}
.product-list {
	min-height: 0;
	padding: 10px 18px 44px
}
.list-grid {
	grid-template-columns: 1fr;
	gap: 28px
}
.product-count {
	margin-bottom: 8px
}
.list-item h1, .list-item h2 {
	margin-top: 7px
}
.list-item p {
	margin-bottom: 0
}
}
