.apparel-catalog-wrap {
	margin: 20px 0 40px;
}

.catalog-header {
	margin-bottom: 18px;
}

.catalog-header h2 {
	margin: 0 0 8px;
	font-size: 30px;
	line-height: 1.2;
}

.catalog-header p {
	margin: 0;
	color: #666;
	font-size: 15px;
	line-height: 1.6;
}

.catalog-filter-panel {
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 16px;
	padding: 18px;
	margin: 0 0 24px;
	box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.catalog-filter-panel__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
	flex-wrap: wrap;
}

.catalog-filter-title {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #444;
}

.catalog-filter-count {
	font-size: 13px;
	font-weight: 700;
	color: #666;
}

.catalog-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.catalog-filter-btn {
	background: #f5f5f5;
	color: #111;
	border: 1px solid #e0e0e0;
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	cursor: pointer;
	border-radius: 999px;
	transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.catalog-filter-btn:hover,
.catalog-filter-btn:focus {
	background: #ececec;
	border-color: #d4d4d4;
	outline: none;
	transform: translateY(-1px);
}

.catalog-filter-btn.is-active {
	background: #111;
	border-color: #111;
	color: #fff;
	box-shadow: 0 8px 18px rgba(0,0,0,0.14);
}

.catalog-empty-state {
	background: #fafafa;
	border: 1px dashed #d7d7d7;
	border-radius: 16px;
	padding: 28px 20px;
	text-align: center;
	margin: 0 0 24px;
}

.catalog-empty-state.is-hidden {
	display: none;
}

.catalog-empty-state h3 {
	margin: 0 0 8px;
	font-size: 22px;
	line-height: 1.3;
}

.catalog-empty-state p {
	margin: 0;
	color: #666;
	font-size: 15px;
	line-height: 1.6;
}

.catalog-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.catalog-card {
	display: block;
}

.catalog-card.is-hidden {
	display: none;
}

.catalog-card-link {
	display: block;
	height: 100%;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 4px 14px rgba(0,0,0,0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.catalog-card-link:hover {
	text-decoration: none;
	color: inherit;
	transform: translateY(-4px);
	box-shadow: 0 10px 24px rgba(0,0,0,0.08);
	border-color: #d9d9d9;
}

.catalog-card-image {
	aspect-ratio: 1 / 1;
	background: #f7f7f7;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

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

.catalog-card-body {
	padding: 16px;
	text-align: center;
}

.catalog-card-body h3 {
	margin: 0 0 6px;
	font-size: 18px;
	line-height: 1.3;
	color: #111;
}

.catalog-card-model {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #666;
	margin-bottom: 10px;
}

.catalog-card-price {
	font-size: 20px;
	font-weight: 800;
	color: #111;
	margin-bottom: 10px;
}

.catalog-card-meta {
	font-size: 14px;
	line-height: 1.5;
	color: #555;
}

.catalog-card-meta + .catalog-card-meta {
	margin-top: 4px;
}

@media (max-width: 991px) {
	.catalog-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.catalog-filter-panel {
		padding: 16px;
	}

	.catalog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}

	.catalog-card-body {
		padding: 14px;
	}

	.catalog-card-body h3 {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.catalog-grid {
		grid-template-columns: 1fr;
	}
}
