/* 产品筛选列表页 /products/filter/... — 仅 UI，不改数据逻辑 */

.page-products-filter {
	background: #fff;
	padding-bottom: clamp(32px, 5vw, 56px);
	margin-bottom: 0 !important;
}

/*
 * 宽度对齐：外层已是 `.layout-container .app-container`（1220 + 左右 padding），
 * 面包屑里再嵌套一层 `.app-container` 会多出一遍 padding，看起来「上面窄、下面宽」。
 * 筛选区内统一用满宽内容列，不再二次缩进。
 */
.page-products-filter .page-breadcrumb-nav .page-breadcrumb-strip .app-container {
	width: 100%;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
	box-sizing: border-box;
}

.page-products-filter .content-container {
	display: flex;
	flex-direction: column;
	gap: clamp(16px, 2vw, 22px);
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.page-products-filter #app-filter {
	min-width: 0;
	width: 100%;
	box-sizing: border-box;
}

.page-products-filter .product-list-box {
	width: 100%;
	box-sizing: border-box;
}

.page-products-filter .filter-container .filter-actions .el-button--primary {
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(64, 102, 184, 0.25);
}

.page-products-filter .filter-container .filter-actions .el-button--warning {
	border-radius: 8px;
}

.page-products-filter .filter-page-list-panel {
	border-radius: 12px;
	box-shadow: 0 4px 28px rgba(15, 23, 42, 0.07);
	border: 1px solid rgba(0, 0, 0, 0.05);
	background: #fff;
	padding: clamp(18px, 2.5vw, 28px) !important;
}

.page-products-filter .filter-page-product-head {
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 16px 24px;
	margin-bottom: clamp(16px, 2vw, 22px);
	padding-bottom: clamp(14px, 2vw, 18px);
	border-bottom: 1px solid #eef2f8;
}

.page-products-filter .filter-page-eyebrow {
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #8892a6;
	font-weight: 600;
	margin: 0 0 8px;
	line-height: 1.3;
}

.page-products-filter .filter-page-category-line {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 16px;
	line-height: 1.35;
}

.page-products-filter .filter-page-category-name {
	font-size: clamp(20px, 2.2vw, 26px);
	font-weight: 700;
	color: #1a1a1a;
	margin: 0;
}

.page-products-filter .filter-page-count-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	padding: 4px 12px;
	font-size: 13px;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	color: #214c96;
	background: #fff;
	border: 1px solid rgba(64, 102, 184, 0.35);
	border-radius: 999px;
	line-height: 1.2;
}

.page-products-filter .filter-page-product-head .actions {
	display: flex;
	align-items: center;
}

.page-products-filter .filter-page-product-head .actions > div {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px 12px;
	padding: 8px 12px;
	background: #fff;
	border-radius: 10px;
	border: 1px solid #e8ecf4;
	font-size: 13px;
	color: #555;
}

.page-products-filter .filter-page-product-head .actions i {
	margin-left: 0 !important;
	padding: 8px;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.page-products-filter .filter-page-product-head .actions i:hover {
	background-color: #f5f5f5;
}

.page-products-filter .filter-page-product-head .actions i.active {
	color: var(--primary-color, #4066b8) !important;
	background-color: transparent;
	box-shadow: inset 0 0 0 1px rgba(64, 102, 184, 0.35);
}

.page-products-filter .filter-page-pagination {
	margin-top: clamp(12px, 2vw, 20px);
	padding-top: 8px;
}

/* 表格区域：与卡片区统一顶部分隔已在 head 完成；表头略柔化 */
.page-products-filter .app-product-list table {
	border-radius: 8px;
	overflow: hidden;
}

@media (max-width: 991.98px) {
	.page-products-filter .filter-page-product-head {
		flex-direction: column;
		align-items: stretch;
	}

	.page-products-filter .filter-page-product-head .actions > div {
		justify-content: center;
	}
}
