.fcar-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px;
	color: rgba(255, 255, 255, 0.56);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.fcar-breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.fcar-breadcrumbs a:hover {
	color: #fff;
}

.catalogue-hero,
.comparison-hero {
	min-height: 520px;
	padding: 132px 0 76px;
	color: #fff;
}

.catalogue-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #fff 0%, #fbfaf8 58%, #f2f0eb 100%);
	color: var(--ink);
}

.catalogue-hero::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(16, 17, 22, 0.018) 1px, transparent 1px),
		linear-gradient(90deg, rgba(16, 17, 22, 0.018) 1px, transparent 1px);
	background-size: 52px 52px;
	content: "";
	pointer-events: none;
}

.catalogue-hero::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 28%;
	background: linear-gradient(0deg, rgba(232, 228, 219, 0.18), transparent);
	content: "";
	pointer-events: none;
}

.comparison-hero {
	background: #0b0c10;
}

.catalogue-hero__inner,
.comparison-hero .shell {
	position: relative;
	z-index: 1;
	display: flex;
	min-height: 310px;
	flex-direction: column;
	justify-content: space-between;
}

.catalogue-hero__copy,
.comparison-hero h1,
.comparison-hero p {
	max-width: 960px;
}

.catalogue-hero h1,
.comparison-hero h1 {
	margin: 0;
	font-size: clamp(48px, 6vw, 88px);
	font-weight: 700;
	letter-spacing: -0.05em;
	line-height: 0.98;
	text-wrap: balance;
}

.catalogue-hero p,
.comparison-hero p {
	max-width: 760px;
	margin: 24px 0 0;
	font-size: clamp(17px, 1.35vw, 20px);
	line-height: 1.65;
}

.catalogue-hero p {
	color: #5c5f66;
}

.comparison-hero p {
	color: #b8bbc3;
}

.catalogue-hero .fcar-breadcrumbs {
	color: #777a80;
}

.catalogue-hero .fcar-breadcrumbs a:hover {
	color: var(--ink);
}

.catalogue-content,
.comparison-content {
	padding-top: clamp(74px, 7vw, 110px);
	padding-bottom: clamp(88px, 8vw, 132px);
}

.catalogue-content {
	background: #fff;
}

.catalogue-content__inner {
	position: relative;
	z-index: 1;
}

.catalogue-toolbar {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 34px;
	margin-bottom: 42px;
}

.catalogue-toolbar h2,
.product-section-heading h2 {
	margin: 0;
	color: var(--ink);
	font-size: clamp(36px, 4vw, 58px);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.02;
}

.catalogue-toolbar p,
.product-section-heading p {
	margin: 12px 0 0;
	color: var(--muted);
	font-size: 15px;
}

.catalogue-filters {
	display: flex;
	max-width: 980px;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 9px;
}

.catalogue-filters button {
	padding: 10px 16px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
	color: var(--body);
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.catalogue-filters button:hover,
.catalogue-filters button.is-active {
	border-color: var(--ink);
	background: var(--ink);
	color: #fff;
}

.catalogue-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.catalog-product-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid #ebe9e4;
	border-radius: 25px;
	background: #fff;
	transition: box-shadow 220ms ease, transform 220ms ease;
}

.catalog-product-card:hover {
	box-shadow: 0 24px 55px rgba(19, 20, 25, 0.09);
	transform: translateY(-4px);
}

.catalog-product-card[hidden] {
	display: none;
}

.catalog-product-card__media {
	position: relative;
	display: flex;
	height: 310px;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: var(--surface);
}

.catalog-product-card__media > img {
	width: 78%;
	height: 78%;
	object-fit: contain;
	transition: transform 350ms ease;
}

.catalog-product-card:hover .catalog-product-card__media > img {
	transform: scale(1.035);
}

.catalog-product-card__placeholder {
	color: #c5c2bc;
	font-size: 70px;
}

.catalog-product-card__badges {
	position: absolute;
	top: 18px;
	left: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.product-badge {
	display: inline-flex;
	padding: 7px 10px;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 7px 24px rgba(15, 16, 20, 0.08);
	color: var(--ink);
	font-size: 10px;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.product-badge--new {
	background: var(--accent);
	color: #fff;
}

.catalog-product-card__body {
	display: flex;
	min-height: 270px;
	flex-direction: column;
	padding: 25px 27px 27px;
}

.catalog-product-card__category,
.product-hero__category {
	margin: 0 0 10px;
	color: var(--accent);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.catalog-product-card h2 {
	margin: 0;
	font-size: 23px;
	font-weight: 650;
	letter-spacing: -0.025em;
	line-height: 1.15;
}

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

.catalog-product-card__body > p:not(.catalog-product-card__category) {
	margin: 13px 0 22px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.6;
}

.catalog-product-card__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: auto;
	padding-top: 18px;
	border-top: 1px solid #efede8;
	color: var(--ink);
	font-size: 14px;
	font-weight: 750;
	text-decoration: none;
}

.catalog-product-card__link i {
	display: inline-flex;
	width: 34px;
	height: 34px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--surface);
	font-size: 15px;
}

.catalogue-empty {
	margin: 52px 0 0;
	padding: 38px;
	border: 1px dashed #d4d1ca;
	border-radius: 20px;
	color: var(--muted);
	text-align: center;
}

.catalogue-empty--initial {
	margin: 0;
}

.catalogue-empty h2 {
	margin: 0 0 9px;
	color: var(--ink);
}

.catalogue-empty p {
	margin: 0;
}

.catalogue-cta {
	background: #0d0e12;
	color: #fff;
}

.catalogue-cta__inner {
	display: flex;
	min-height: 350px;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
	padding-top: 70px;
	padding-bottom: 70px;
}

.catalogue-cta h2 {
	max-width: 790px;
	margin: 0;
	font-size: clamp(38px, 4vw, 62px);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1;
}

.catalogue-cta p {
	max-width: 690px;
	margin: 19px 0 0;
	color: #aeb1b8;
	font-size: 17px;
	line-height: 1.6;
}

.product-hero {
	position: relative;
	overflow: hidden;
	padding: 108px 0 68px;
	border-bottom: 1px solid var(--line);
	background: linear-gradient(180deg, #fff 0%, #fbfaf8 58%, #f2f0eb 100%);
	color: var(--ink);
}

.product-hero::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(16, 17, 22, 0.018) 1px, transparent 1px),
		linear-gradient(90deg, rgba(16, 17, 22, 0.018) 1px, transparent 1px);
	background-size: 52px 52px;
	content: "";
	pointer-events: none;
}

.product-hero::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 28%;
	background: linear-gradient(0deg, rgba(232, 228, 219, 0.18), transparent);
	content: "";
	pointer-events: none;
}

.product-hero > .shell {
	position: relative;
	z-index: 1;
}

.product-hero__grid {
	display: grid;
	min-height: 520px;
	grid-template-columns: minmax(0, 0.88fr) minmax(390px, 0.82fr);
	align-items: center;
	gap: clamp(48px, 5vw, 80px);
	padding-top: 40px;
}

.product-hero__media {
	display: flex;
	min-height: 460px;
	align-items: center;
	justify-content: center;
	padding: clamp(30px, 3.5vw, 54px);
	border: 1px solid #e8e5df;
	border-radius: 26px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(20, 20, 24, 0.055);
}

.product-hero__media img {
	width: 100%;
	max-height: 370px;
	object-fit: contain;
	filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.13));
}

.product-hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 18px;
}

.product-hero h1 {
	margin: 0;
	font-size: clamp(42px, 4.2vw, 60px);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 1;
}

.product-hero h2 {
	margin: 18px 0 0;
	color: var(--ink);
	font-size: clamp(18px, 1.5vw, 24px);
	font-weight: 500;
	letter-spacing: -0.015em;
	line-height: 1.3;
}

.product-hero__summary {
	max-width: 610px;
	margin: 18px 0 0;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.65;
}

.product-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 11px;
	margin-top: 26px;
}

.single-product-page .pill-button--soft {
	border: 1px solid #d8d5ce;
	background: transparent;
	color: var(--ink);
}

.single-product-page .pill-button--soft:hover {
	border-color: var(--ink);
}

.product-documents {
	display: grid;
	gap: 9px;
	margin-top: 26px;
}

.product-document-link,
.language-documents summary {
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr) auto;
	align-items: center;
	gap: 11px;
	min-height: 54px;
	padding: 10px 15px;
	border: 1px solid var(--line);
	border-radius: 13px;
	background: #fff;
	color: var(--ink);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: border-color 180ms ease, background-color 180ms ease;
}

.product-document-link:hover,
.language-documents summary:hover {
	border-color: #c8c4bc;
	background: #fbfaf8;
}

.product-document-link small {
	color: var(--muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.language-documents {
	position: relative;
}

.language-documents summary {
	grid-template-columns: minmax(0, 1fr) auto;
	cursor: pointer;
	list-style: none;
}

.language-documents summary::-webkit-details-marker {
	display: none;
}

.language-documents[open] summary i {
	transform: rotate(180deg);
}

.language-documents__menu {
	position: absolute;
	z-index: 6;
	top: calc(100% + 8px);
	right: 0;
	left: 0;
	overflow: hidden;
	border: 1px solid #dfdcd5;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.language-documents__menu a {
	display: grid;
	grid-template-columns: minmax(110px, 0.4fr) minmax(0, 1fr) 22px;
	align-items: center;
	gap: 10px;
	padding: 13px 15px;
	border-bottom: 1px solid #eeece7;
	color: var(--ink);
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
}

.language-documents__menu a:last-child {
	border-bottom: 0;
}

.language-documents__menu a:hover {
	background: var(--surface);
}

.language-documents__menu small {
	color: var(--muted);
	font-size: 12px;
	font-weight: 500;
}

.product-gallery-strip {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding-top: 18px;
	padding-bottom: 18px;
}

.product-gallery-strip button {
	display: flex;
	min-width: 120px;
	height: 82px;
	align-items: center;
	justify-content: center;
	padding: 10px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: #fff;
	cursor: pointer;
}

.product-gallery-strip img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-features,
.product-technical,
.related-products,
.product-video {
	width: min(100%, 1420px);
	padding-top: clamp(64px, 6vw, 92px);
	padding-bottom: clamp(64px, 6vw, 92px);
}

.product-section-heading {
	max-width: 760px;
	margin-bottom: 32px;
}

.single-product-page .product-section-heading h2 {
	font-size: clamp(30px, 3.1vw, 44px);
	line-height: 1.06;
}

.product-section-heading--row {
	display: flex;
	max-width: none;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}

.product-section-heading--row > a {
	color: var(--ink);
	font-weight: 750;
}

.product-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}

.product-feature-grid article {
	min-height: 174px;
	padding: 24px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.product-feature-grid article > i {
	display: inline-flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--surface);
	color: var(--accent);
	font-size: 19px;
}

.product-feature-grid h3 {
	margin: 20px 0 0;
	color: var(--ink);
	font-size: 18px;
	letter-spacing: -0.02em;
}

.product-feature-grid p {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.6;
}

.product-story {
	padding: clamp(64px, 6vw, 90px) 0;
}

.product-story--tinted {
	background: linear-gradient(175deg, #f6f5f2 0%, #fbfaf8 48%, #fff 100%);
}

.product-story__inner {
	display: grid;
	width: min(100%, 1360px);
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	align-items: center;
	gap: clamp(44px, 6vw, 90px);
}

.product-story--left .product-story__media {
	order: -1;
}

.product-story--full .product-story__inner {
	grid-template-columns: 1fr;
}

.product-story__copy h2 {
	margin: 0 0 19px;
	color: var(--ink);
	font-size: clamp(32px, 3.5vw, 48px);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.02;
}

.product-story__copy p,
.product-story__copy li {
	color: #55585f;
	font-size: 16px;
	line-height: 1.68;
}

.product-story__copy ul {
	padding-left: 21px;
}

.product-story__media,
.product-story__video,
.product-video__frame {
	overflow: hidden;
	border-radius: 22px;
	background: #eae8e3;
}

.product-story__media {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(20px, 3vw, 38px);
}

.product-story__media img {
	width: 100%;
	max-height: 450px;
	object-fit: contain;
}

.product-story__video,
.product-video__frame {
	grid-column: 1 / -1;
	aspect-ratio: 16 / 9;
}

.product-story__video iframe,
.product-video__frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.product-spec-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
	border-top: 1px solid var(--line);
}

.product-spec-list > div {
	display: grid;
	grid-template-columns: minmax(130px, 0.8fr) minmax(0, 1.2fr);
	gap: 24px;
	padding: 17px 0;
	border-bottom: 1px solid var(--line);
}

.product-spec-list > div:nth-child(odd) {
	padding-right: 38px;
}

.product-spec-list > div:nth-child(even) {
	padding-left: 38px;
	border-left: 1px solid var(--line);
}

.product-spec-list dt {
	color: var(--muted);
	font-size: 13px;
	font-weight: 650;
}

.product-spec-list dd {
	margin: 0;
	color: var(--ink);
	font-size: 14px;
	font-weight: 750;
}

.product-applications {
	padding: clamp(64px, 6vw, 92px) 0;
	background: linear-gradient(175deg, #f6f5f2 0%, #fbfaf8 48%, #fff 100%);
}

.product-application-list {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.product-application-list span {
	padding: 10px 15px;
	border: 1px solid #dcd9d2;
	border-radius: 999px;
	background: #fff;
	color: var(--ink);
	font-size: 13px;
	font-weight: 700;
}

.related-products {
	border-top: 1px solid var(--line);
}

.single-product-page .catalog-product-card__media {
	height: 240px;
}

.single-product-page .catalog-product-card__body {
	min-height: 230px;
	padding: 22px 24px 24px;
}

.single-product-page .catalog-product-card h2 {
	font-size: 20px;
}

.catalogue-grid--related {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-enquiry-section {
	padding: clamp(68px, 6vw, 96px) 0;
	background: #0d0e12;
	color: #fff;
}

.product-enquiry-section__grid {
	display: grid;
	grid-template-columns: minmax(270px, 0.65fr) minmax(0, 1.35fr);
	gap: clamp(56px, 8vw, 130px);
}

.product-enquiry-section__intro h2 {
	margin: 0;
	font-size: clamp(34px, 3.7vw, 52px);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 1;
}

.product-enquiry-section__intro > p:not(.product-hero__category) {
	margin: 18px 0 0;
	color: #aeb1b8;
	font-size: 16px;
	line-height: 1.65;
}

.product-enquiry-section__contact {
	display: grid;
	gap: 9px;
	margin-top: 32px;
}

.product-enquiry-section__contact a {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.product-enquiry-form {
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 25px;
	background: rgba(255, 255, 255, 0.04);
}

.single-fcar_product .site-header,
.post-type-archive-fcar_product .site-header {
	border-color: rgba(224, 221, 214, 0.9);
	background: rgba(255, 255, 255, 0.96);
	color: var(--ink);
	box-shadow: 0 6px 24px rgba(20, 20, 24, 0.035);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.single-fcar_product .site-header .brand__logo--light,
.post-type-archive-fcar_product .site-header .brand__logo--light {
	opacity: 0;
}

.single-fcar_product .site-header .brand__logo--dark,
.post-type-archive-fcar_product .site-header .brand__logo--dark {
	opacity: 1;
}

.single-fcar_product .site-header .brand__suffix,
.post-type-archive-fcar_product .site-header .brand__suffix {
	border-color: var(--line);
}

.single-fcar_product .primary-nav a,
.post-type-archive-fcar_product .primary-nav a {
	color: #5c5f66;
}

.single-fcar_product .primary-nav a:hover,
.single-fcar_product .primary-nav a.is-active,
.post-type-archive-fcar_product .primary-nav a:hover,
.post-type-archive-fcar_product .primary-nav a.is-active {
	color: var(--ink);
}

.single-fcar_product .language-pill,
.single-fcar_product .menu-toggle,
.post-type-archive-fcar_product .language-pill,
.post-type-archive-fcar_product .menu-toggle {
	border-color: var(--line);
}

.single-product-page .fcar-breadcrumbs {
	color: #777a80;
}

.single-product-page .fcar-breadcrumbs a:hover {
	color: var(--ink);
}

.product-enquiry-form .form-field label,
.product-enquiry-form .form-consent,
.product-enquiry-form .form-submit-row p {
	color: #bec0c6;
}

.product-enquiry-form .form-field input,
.product-enquiry-form .form-field textarea {
	border-color: rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
}

.product-enquiry-form .form-submit-row strong {
	color: #fff;
}

.comparison-hero .shell {
	justify-content: flex-end;
}

.comparison-hero .fcar-breadcrumbs {
	margin-bottom: auto;
}

.comparison-scroll {
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: 22px;
	outline: none;
}

.comparison-scroll:focus-visible {
	outline: 3px solid rgba(227, 6, 19, 0.28);
	outline-offset: 4px;
}

.comparison-table {
	width: 100%;
	min-width: 900px;
	border-collapse: collapse;
	table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
	padding: 18px 22px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	text-align: left;
	vertical-align: middle;
}

.comparison-table tr > *:last-child {
	border-right: 0;
}

.comparison-table tbody tr:last-child > * {
	border-bottom: 0;
}

.comparison-table thead th {
	background: var(--surface);
}

.comparison-table thead th:first-child {
	width: 220px;
	color: var(--muted);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.comparison-table thead a {
	display: grid;
	gap: 11px;
	color: var(--ink);
	text-decoration: none;
}

.comparison-table thead img {
	width: 100%;
	height: 150px;
	object-fit: contain;
}

.comparison-table thead strong {
	font-size: 19px;
	line-height: 1.2;
}

.comparison-table thead span {
	color: var(--accent);
	font-size: 12px;
	font-weight: 750;
}

.comparison-table tbody th {
	color: var(--muted);
	font-size: 13px;
	font-weight: 650;
}

.comparison-table tbody td {
	color: var(--ink);
	font-size: 14px;
	font-weight: 750;
}

@media (max-width: 1180px) {
	.catalogue-grid,
	.catalogue-grid--related {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.product-hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(370px, 0.85fr);
		gap: 50px;
	}

	.product-feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.catalogue-toolbar,
	.catalogue-cta__inner,
	.product-section-heading--row {
		align-items: flex-start;
		flex-direction: column;
	}

	.catalogue-filters {
		justify-content: flex-start;
	}

	.product-hero__grid,
	.product-story__inner,
	.product-enquiry-section__grid {
		grid-template-columns: 1fr;
	}

	.product-hero__grid {
		min-height: 0;
	}

	.product-hero__media {
		min-height: 380px;
	}

	.product-story__media {
		order: -1;
	}

	.product-spec-list {
		grid-template-columns: 1fr;
	}

	.product-spec-list > div:nth-child(odd),
	.product-spec-list > div:nth-child(even) {
		padding-right: 0;
		padding-left: 0;
		border-left: 0;
	}
}

@media (max-width: 680px) {
	.catalogue-hero,
	.comparison-hero {
		min-height: 440px;
		padding-top: 116px;
	}

	.catalogue-hero__inner,
	.comparison-hero .shell {
		min-height: 250px;
	}

	.catalogue-hero h1,
	.comparison-hero h1 {
		font-size: clamp(42px, 13vw, 60px);
	}

	.catalogue-content,
	.comparison-content {
		padding-top: 62px;
		padding-bottom: 80px;
	}

	.catalogue-grid,
	.catalogue-grid--related,
	.product-feature-grid {
		grid-template-columns: 1fr;
	}

	.catalog-product-card__media {
		height: 270px;
	}

	.product-hero {
		padding-top: 94px;
		padding-bottom: 54px;
	}

	.product-hero__grid {
		gap: 28px;
		padding-top: 30px;
	}

	.product-hero__media {
		min-height: 270px;
		padding: 24px;
		border-radius: 20px;
	}

	.product-hero h1 {
		font-size: clamp(36px, 10.5vw, 48px);
		line-height: 1.02;
	}

	.product-gallery-strip button {
		min-width: 98px;
		height: 72px;
	}

	.single-product-page .product-section-heading h2,
	.product-story__copy h2 {
		font-size: clamp(30px, 9vw, 38px);
	}

	.product-story__media {
		padding: 20px;
	}

	.product-hero__actions > a {
		width: 100%;
		justify-content: center;
	}

	.product-document-link {
		grid-template-columns: 22px minmax(0, 1fr);
	}

	.product-document-link small {
		grid-column: 2;
	}

	.language-documents__menu a {
		grid-template-columns: minmax(0, 1fr) 22px;
	}

	.language-documents__menu small {
		grid-column: 1;
	}

	.product-feature-grid {
		border-left: 0;
	}

	.product-feature-grid article {
		min-height: 0;
		padding: 27px 0;
		border-right: 0;
	}

	.product-spec-list > div {
		grid-template-columns: 1fr;
		gap: 7px;
	}

	.product-enquiry-form {
		padding: 24px;
		border-radius: 20px;
	}

	.catalogue-cta__inner {
		min-height: 0;
	}
}
