.ncs-catalog-page {
	max-width: 1200px;
	margin: 0 auto;
	padding: 16px 14px 28px;
	box-sizing: border-box;
}

.ncs-catalog-header {
	margin-bottom: 16px;
}

.ncs-catalog-title {
	margin: 0;
	font-size: 1.35rem;
	line-height: 1.25;
	font-weight: 800;
	color: #0f172a;
}

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

.ncs-catalog-grid .ncs-homepage-product-card {
	width: 100%;
	min-width: 0;
	max-width: 100%;
}

.ncs-catalog-empty {
	padding: 20px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	color: #475569;
}

.ncs-catalog-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.ncs-catalog-page-link {
	min-width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	text-decoration: none;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	color: #0f172a;
	font-weight: 700;
}

.ncs-catalog-page-link.is-active {
	background: #C70039;
	border-color: #C70039;
	color: #ffffff;
}

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

@media (min-width: 1024px) {
	.ncs-catalog-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}