/* Product-only catalogue/search routes. */
body.igneos-storefront--catalog {
	background: #fff;
}

body.igneos-storefront--catalog .igneos-catalog-container {
	width: var(--igneos-container);
	margin-inline: auto;
}

body.igneos-storefront--catalog .igneos-catalog-main {
	color: var(--igneos-ink);
}

body.igneos-storefront--catalog .igneos-catalog-hero {
	padding: 18px 0 44px;
	border-bottom: 1px solid var(--igneos-line);
	background: linear-gradient(180deg, #fff 0%, #f5f9fe 100%);
}

body.igneos-storefront--catalog .igneos-catalog-breadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 30px;
	color: #53627a;
	font-size: 13px;
}

body.igneos-storefront--catalog .igneos-catalog-breadcrumb a {
	color: var(--igneos-navy);
	font-weight: 680;
	text-decoration: none;
}

body.igneos-storefront--catalog .igneos-catalog-kicker {
	display: block;
	margin-bottom: 8px;
	color: var(--igneos-blue);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

body.igneos-storefront--catalog .igneos-catalog-hero h1 {
	max-width: 900px;
	margin: 0;
	color: #101d34;
	font-size: clamp(38px, 5vw, 66px);
	font-weight: 820;
	letter-spacing: -0.058em;
	line-height: 1;
}

body.igneos-storefront--catalog .igneos-catalog-result-count {
	margin: 16px 0 0;
	color: #617189;
	font-size: 15px;
}

body.igneos-storefront--catalog .igneos-catalog-intro {
	max-width: 760px;
	margin: 18px 0 0;
	color: #52657d;
	font-size: clamp(16px, 1.8vw, 19px);
	line-height: 1.55;
}

body.igneos-storefront--catalog .igneos-catalog-content {
	padding-block: 48px 72px;
}

body.igneos-storefront--catalog .igneos-catalog-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

body.igneos-storefront--catalog .igneos-catalog-card {
	display: grid;
	grid-template-rows: auto 1fr;
	min-width: 0;
	border: 1px solid #dce6f1;
	border-radius: 18px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 8px 22px rgba(20, 52, 87, 0.055);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

body.igneos-storefront--catalog .igneos-catalog-card:hover {
	border-color: #a9c9ef;
	box-shadow: 0 16px 34px rgba(20, 52, 87, 0.11);
	transform: translateY(-3px);
}

body.igneos-storefront--catalog .igneos-catalog-card__media {
	display: grid;
	place-items: center;
	aspect-ratio: 1.25 / 1;
	padding: 10px;
	background: #fff;
	overflow: hidden;
}

body.igneos-storefront--catalog .igneos-catalog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

body.igneos-storefront--catalog .igneos-catalog-card__body {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	padding: 18px;
	border-top: 1px solid #edf2f7;
}

body.igneos-storefront--catalog .igneos-catalog-card__mode {
	display: inline-flex;
	min-height: 23px;
	margin-bottom: 9px;
	padding: 4px 8px;
	border-radius: 999px;
	background: #e7f6f3;
	color: #075d55;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

body.igneos-storefront--catalog .igneos-catalog-card h2 {
	margin: 0;
	font-size: 19px;
	font-weight: 820;
	letter-spacing: -0.035em;
	line-height: 1.15;
}

body.igneos-storefront--catalog .igneos-catalog-card h2 a {
	color: var(--igneos-ink);
	text-decoration: none;
}

body.igneos-storefront--catalog .igneos-catalog-card p {
	margin: 10px 0 16px;
	color: #62738a;
	font-size: 13px;
	line-height: 1.5;
}

body.igneos-storefront--catalog .igneos-catalog-card__action {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid #e8eef5;
	color: var(--igneos-navy);
	font-size: 13px;
	font-weight: 820;
	text-decoration: none;
}

body.igneos-storefront--catalog .igneos-catalog-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 7px;
	margin-top: 38px;
}

body.igneos-storefront--catalog .igneos-catalog-pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 42px;
	min-height: 42px;
	padding: 0 12px;
	border: 1px solid #cfdded;
	border-radius: 10px;
	background: #fff;
	color: var(--igneos-navy);
	font-weight: 760;
	text-decoration: none;
}

body.igneos-storefront--catalog .igneos-catalog-pagination .current {
	border-color: var(--igneos-navy);
	background: var(--igneos-navy);
	color: #fff;
}

body.igneos-storefront--catalog .igneos-catalog-empty {
	max-width: 720px;
	margin-inline: auto;
	padding: 48px 30px;
	border: 1px solid #d8e4f1;
	border-radius: 20px;
	background: #f7faff;
	text-align: center;
}

body.igneos-storefront--catalog .igneos-catalog-empty > span {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin: 0 auto 17px;
	border-radius: 14px;
	background: #e4f1ff;
	color: var(--igneos-blue);
	font-size: 26px;
}

body.igneos-storefront--catalog .igneos-catalog-empty h2 {
	margin: 0;
	font-size: clamp(27px, 4vw, 38px);
	letter-spacing: -0.04em;
}

body.igneos-storefront--catalog .igneos-catalog-empty p {
	margin: 12px 0 22px;
	color: #607188;
}

body.igneos-storefront--catalog .igneos-catalog-empty a {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 46px;
	padding: 0 18px;
	border-radius: 11px;
	background: var(--igneos-navy);
	color: #fff;
	font-weight: 780;
	text-decoration: none;
}

body.igneos-storefront--catalog .igneos-catalog-families {
	margin-top: 46px;
	padding-top: 26px;
	border-top: 1px solid var(--igneos-line);
}

body.igneos-storefront--catalog .igneos-catalog-families--top {
	margin: 0 0 32px;
	padding: 0 0 24px;
}

body.igneos-storefront--catalog .igneos-catalog-families > strong {
	display: block;
	margin-bottom: 13px;
	font-size: 15px;
}

body.igneos-storefront--catalog .igneos-catalog-families ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.igneos-storefront--catalog .igneos-catalog-families a {
	display: inline-flex;
	min-height: 38px;
	align-items: center;
	padding: 0 13px;
	border: 1px solid #d3e0ee;
	border-radius: 999px;
	color: var(--igneos-navy);
	font-size: 13px;
	font-weight: 720;
	text-decoration: none;
}

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

@media (max-width: 900px) {
	body.igneos-storefront--catalog .igneos-catalog-hero { padding-bottom: 34px; }
	body.igneos-storefront--catalog .igneos-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
	body.igneos-storefront--catalog .igneos-catalog-hero h1 { font-size: 36px; }
	body.igneos-storefront--catalog .igneos-catalog-content { padding-block: 34px 54px; }
	body.igneos-storefront--catalog .igneos-catalog-grid { grid-template-columns: 1fr; }
	body.igneos-storefront--catalog .igneos-catalog-card__media { aspect-ratio: 1.55 / 1; }
	body.igneos-storefront--catalog .igneos-catalog-empty { padding: 38px 20px; }
}

@media (prefers-reduced-motion: reduce) {
	body.igneos-storefront--catalog .igneos-catalog-card { transition: none; }
}
