/*
 * LGCM Global visual direction 1.1
 * Real jobsite imagery + restrained European industrial UI.
 */

:root {
	--ink: #071a26;
	--ink-2: #102c3b;
	--ink-3: #263b46;
	--paper: #f3f4f2;
	--line: #d9dddc;
	--line-2: #c5cbca;
	--yellow: #f4b323;
	--red: #b7192b;
	--radius: 10px;
	--radius-md: 14px;
	--radius-lg: 20px;
	--shadow-sm: 0 8px 24px rgba(7, 26, 38, 0.08);
	--shadow: 0 18px 50px rgba(7, 26, 38, 0.14);
	--font-head: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
}

/* -------------------------------------------------------------------------
 * 1.3.8 sales-journey refinements
 * ---------------------------------------------------------------------- */

/* The photography should lead the page without consuming a full viewport. */
.hero__slide {
	min-height: clamp(540px, 48vw, 640px);
}

.hero__inner {
	padding-block: clamp(48px, 5.5vw, 72px);
}

.hero__content,
.hero__slide[data-align="center"] .hero__content,
.hero__slide[data-align="right"] .hero__content {
	max-width: 610px;
	padding: clamp(26px, 2.8vw, 38px);
}

.hero__title {
	font-size: clamp(2.35rem, 3.5vw, 3.45rem);
}

/* A compact build-style stage bar mirrors the benchmark configurator while
   keeping every destination on the current WordPress machine page. */
.product__subnav {
	position: sticky;
	top: 82px;
	z-index: 90;
	background: rgba(255, 255, 255, 0.98);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	box-shadow: 0 8px 24px rgba(7, 26, 38, 0.06);
	backdrop-filter: blur(10px);
}

.admin-bar .product__subnav {
	top: 114px;
}

.product__subnav-inner {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: 62px;
}

.product__subnav-model {
	max-width: 260px;
	margin-right: auto;
	overflow: hidden;
	color: var(--ink);
	font-family: var(--font-head);
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.product__subnav-links {
	display: flex;
	align-items: stretch;
	align-self: stretch;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.product__subnav-links a {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
	padding-inline: 16px;
	color: var(--muted);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	white-space: nowrap;
}

.product__subnav-links a::after {
	content: "";
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 0;
	height: 3px;
	background: var(--yellow);
	transform: scaleX(0);
	transition: transform 0.18s var(--ease);
}

.product__subnav-links a:hover,
.product__subnav-links a:focus-visible {
	color: var(--ink);
}

.product__subnav-links a:hover::after,
.product__subnav-links a:focus-visible::after {
	transform: scaleX(1);
}

.product__subnav-cta {
	flex: none;
	background: var(--yellow);
	border-color: var(--yellow);
	color: var(--ink);
}

#machine-top,
#overview,
#specifications,
#equipment,
#inquiry {
	scroll-margin-top: 156px;
}

/* Product hero: large machine canvas on the left, decision panel on the right. */
.product__hero {
	padding-block: clamp(40px, 4.5vw, 64px);
	background: #f3f4f2;
}

.product__hero-inner {
	grid-template-columns: minmax(0, 1.62fr) minmax(360px, 1fr);
	gap: clamp(34px, 4vw, 64px);
	align-items: stretch;
}

.product__gallery {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.product__stage {
	aspect-ratio: 16 / 10;
	flex: 1 1 auto;
	background: #fff;
	border: 1px solid #dfe2df;
	border-radius: 2px;
	box-shadow: 0 22px 54px rgba(7, 26, 38, 0.08);
}

.product__frame img {
	padding: clamp(18px, 2.5vw, 36px);
}

.product__summary {
	align-self: stretch;
	margin: 0;
	padding: clamp(28px, 3vw, 42px);
	background: #fff;
	border-top: 6px solid var(--yellow);
	box-shadow: 0 22px 54px rgba(7, 26, 38, 0.09);
}

.product__eyebrow {
	margin-bottom: 14px;
	color: var(--red);
}

.product__eyebrow a {
	color: inherit;
}

.product__title {
	font-size: clamp(2rem, 3vw, 3.25rem);
	line-height: 0.98;
	letter-spacing: -0.025em;
	overflow-wrap: anywhere;
}

.product__tagline {
	margin-top: 18px;
	font-size: 1.05rem;
}

.product__keyspecs {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 26px;
}

.product__keyspec {
	grid-template-columns: 36px minmax(0, 1fr);
	grid-template-areas:
		"icon label"
		"icon value";
	gap: 2px 12px;
	min-width: 0;
	padding: 16px;
	background: #f3f4f2;
	border-top: 3px solid var(--yellow);
	border-radius: 0;
}

.product__keyspec-icon {
	grid-area: icon;
	align-self: center;
}

.product__keyspec dt {
	grid-area: label;
}

.product__keyspec dd {
	grid-area: value;
	overflow-wrap: anywhere;
}

.product__actions {
	margin-top: 28px;
}

.product__actions .btn {
	flex: 1 1 180px;
	justify-content: center;
}

.product__quicklinks {
	margin-top: 24px;
	padding-top: 18px;
}

/* The feature list now lives beside the overview, keeping the first screen
   concise and making the page easier to scan like a machinery configurator. */
.product__overview {
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	gap: clamp(36px, 5vw, 72px);
}

.product__more-highlights {
	margin: 0;
	padding: clamp(26px, 3vw, 40px);
	background: var(--ink);
	border-top: 5px solid var(--yellow);
	color: #fff;
}

.product__more-highlights h3 {
	margin: 0 0 20px;
	color: var(--yellow);
	font-size: 1.05rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.product__more-highlights .product__highlights {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
}

.product__more-highlights .product__highlights li {
	color: rgba(255, 255, 255, 0.88);
}

.product__more-highlights .product__highlights svg {
	color: var(--yellow);
}

.section--specs .section__title {
	margin-bottom: 28px;
}

.spec-table {
	border: 0;
	box-shadow: 0 18px 46px rgba(7, 26, 38, 0.07);
}

.spec-table th,
.spec-table td {
	padding: 18px 22px;
}

.spec-table th {
	border-left: 3px solid transparent;
}

.spec-table tr:hover th {
	border-left-color: var(--yellow);
}

.equipment__col {
	padding: clamp(26px, 3vw, 40px);
	background: #f3f4f2;
	border-top: 4px solid var(--yellow);
}

@media (max-width: 1100px) {
	.product__subnav-inner {
		gap: 12px;
	}

	.product__subnav-model {
		display: none;
	}

	.product__subnav-links {
		margin-right: auto;
	}

	.product__hero-inner {
		grid-template-columns: minmax(0, 1.45fr) minmax(330px, 1fr);
		gap: 28px;
	}
}

@media (max-width: 960px) {
	.hero__slide {
		min-height: 580px;
	}

	.product__subnav {
		top: 70px;
	}

	.admin-bar .product__subnav {
		top: 102px;
	}

	.product__subnav-inner {
		min-height: 58px;
		overflow-x: auto;
	}

	.product__subnav-links {
		flex: none;
	}

	.product__subnav-cta {
		margin-left: auto;
	}

	.product__hero-inner,
	.product__overview {
		grid-template-columns: 1fr;
	}

	.product__summary {
		max-width: none;
	}

	#machine-top,
	#overview,
	#specifications,
	#equipment,
	#inquiry {
		scroll-margin-top: 138px;
	}
}

@media (max-width: 720px) {
	.hero__slide {
		min-height: 600px;
	}

	.hero__inner {
		padding: 180px var(--gutter) 76px;
	}

	.hero__title {
		font-size: clamp(2rem, 10vw, 2.8rem);
	}

	.product__subnav-inner {
		padding-right: 0;
	}

	.product__subnav-links a {
		padding-inline: 12px;
	}

	.product__subnav-links a::after {
		left: 12px;
		right: 12px;
	}

	.product__subnav-cta {
		display: none;
	}

	.product__hero {
		padding-block: 24px 40px;
	}

	.product__stage {
		aspect-ratio: 4 / 3;
	}

	.product__summary {
		padding: 24px 20px 28px;
	}

	.product__title {
		font-size: clamp(2rem, 11vw, 2.7rem);
	}

	.product__keyspecs {
		grid-template-columns: 1fr;
	}

	.product__actions .btn {
		width: 100%;
	}

	.product__overview {
		gap: 28px;
	}

	.spec-table th,
	.spec-table td {
		padding: 14px;
	}
}

/* -------------------------------------------------------------------------
 * News centre and article pages
 * ---------------------------------------------------------------------- */

.news-hero {
	position: relative;
	overflow: hidden;
	padding: 96px 0 82px;
	background:
		linear-gradient(110deg, rgba(7, 28, 41, 0.99) 0%, rgba(7, 28, 41, 0.93) 62%, rgba(20, 42, 54, 0.88) 100%),
		linear-gradient(135deg, transparent 64%, rgba(247, 177, 45, 0.18) 64% 66%, transparent 66%);
	color: var(--white);
}

.news-hero::after {
	content: "";
	position: absolute;
	right: -9vw;
	bottom: -130px;
	width: 42vw;
	height: 260px;
	border: 2px solid rgba(255, 255, 255, 0.07);
	transform: skewX(-26deg);
}

.news-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 72px;
}

.news-hero__copy {
	max-width: 850px;
}

.news-hero__eyebrow,
.news-related__eyebrow,
.news-cta-band__eyebrow {
	margin: 0 0 16px;
	color: var(--yellow);
	font-size: var(--fs-xs);
	font-weight: 850;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.news-hero__title {
	max-width: 900px;
	margin: 0;
	color: var(--white);
	font-size: clamp(3.25rem, 6.5vw, 6.7rem);
	letter-spacing: -0.055em;
	line-height: 0.92;
	text-transform: uppercase;
}

.news-hero__sub {
	max-width: 720px;
	margin: 28px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	line-height: 1.65;
}

.news-hero__signal {
	display: grid;
	gap: 12px;
	min-width: 220px;
	padding-left: 26px;
	border-left: 3px solid var(--yellow);
	color: rgba(255, 255, 255, 0.66);
	font-family: var(--font-head);
	font-size: var(--fs-sm);
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.news-index {
	padding-top: 82px;
}

.news-list {
	display: grid;
	gap: 44px;
}

.news-feature {
	display: grid;
	grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
	min-height: 480px;
	overflow: hidden;
	background: var(--ink);
	border-radius: var(--radius-lg);
	box-shadow: 0 22px 60px rgba(7, 28, 41, 0.15);
}

.news-feature__media {
	display: block;
	min-height: 100%;
	overflow: hidden;
	background: #e9edef;
}

.news-feature__img,
.news-card__img,
.news-detail-hero__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s var(--ease);
}

.news-feature:hover .news-feature__img,
.news-card:hover .news-card__img {
	transform: scale(1.035);
}

.news-feature__placeholder,
.news-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 280px;
	background: linear-gradient(135deg, #eef1f2, #dfe5e8);
	color: #a6b1b7;
}

.news-feature__placeholder svg,
.news-card__placeholder svg {
	width: 54px;
	height: 54px;
}

.news-feature__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 58px;
	color: var(--white);
}

.news-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 18px;
	margin: 0 0 22px;
	color: var(--muted-2);
	font-size: var(--fs-xs);
	font-weight: 750;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.news-card__meta span {
	color: var(--red);
}

.news-card__meta time {
	position: relative;
	padding-left: 18px;
}

.news-card__meta time::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--yellow);
	transform: translateY(-50%);
}

.news-feature .news-card__meta {
	color: rgba(255, 255, 255, 0.55);
}

.news-feature .news-card__meta span {
	color: var(--yellow);
}

.news-feature__title {
	margin: 0;
	font-size: clamp(2.1rem, 3.4vw, 3.55rem);
	letter-spacing: -0.035em;
	line-height: 1.03;
	text-transform: none;
}

.news-feature__title a,
.news-card__title a {
	color: inherit;
}

.news-feature__excerpt {
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 1rem;
	line-height: 1.72;
}

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

.news-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.news-card:hover {
	border-color: rgba(7, 28, 41, 0.4);
	box-shadow: 0 18px 42px rgba(7, 28, 41, 0.12);
	transform: translateY(-4px);
}

.news-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--paper);
}

.news-card__body {
	display: flex;
	min-height: 290px;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 30px;
}

.news-card__body .news-card__meta {
	margin-bottom: 16px;
}

.news-card__title {
	margin: 0;
	font-size: clamp(1.35rem, 1.8vw, 1.7rem);
	letter-spacing: -0.025em;
	line-height: 1.18;
	text-transform: none;
}

.news-card__excerpt {
	margin: 18px 0 0;
	color: var(--muted);
	font-size: var(--fs-sm);
	line-height: 1.7;
}

.news-card__cta {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 8px;
	margin-top: auto;
	padding-top: 28px;
	color: var(--red);
	font-size: var(--fs-xs);
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.news-card__cta svg {
	width: 17px;
	height: 17px;
	transition: transform 0.2s var(--ease);
}

.news-card__cta:hover svg,
.news-feature__title a:hover + .news-card__cta svg {
	transform: translateX(4px);
}

.news-feature .news-card__cta {
	color: var(--yellow);
}

.news-cta-band {
	padding: 64px 0;
	background: var(--paper);
	border-top: 1px solid var(--line);
}

.news-cta-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.news-cta-band h2 {
	max-width: 820px;
	margin: 0;
	font-size: clamp(2rem, 3.6vw, 3.6rem);
	letter-spacing: -0.04em;
	line-height: 1.05;
}

/* Single article. */
.news-detail-hero {
	padding: 78px 0 84px;
	background: var(--ink);
	color: var(--white);
}

.news-detail-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
	align-items: center;
	gap: 72px;
}

.news-detail-hero__inner--plain {
	grid-template-columns: minmax(0, 920px);
}

.news-detail-hero__back {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 38px;
	color: rgba(255, 255, 255, 0.72);
	font-size: var(--fs-xs);
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.news-detail-hero__back:hover {
	color: var(--yellow);
}

.news-detail-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	margin: 0 0 22px;
	color: rgba(255, 255, 255, 0.56);
	font-size: var(--fs-xs);
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.news-detail-hero__meta span {
	color: var(--yellow);
}

.news-detail-hero__title {
	margin: 0;
	color: var(--white);
	font-size: clamp(2.8rem, 5vw, 5.6rem);
	letter-spacing: -0.05em;
	line-height: 0.98;
	text-transform: none;
}

.news-detail-hero__excerpt {
	max-width: 760px;
	margin: 28px 0 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.08rem;
	line-height: 1.7;
}

.news-detail-hero__media {
	min-height: 460px;
	margin: 0;
	overflow: hidden;
	background: #e9edef;
	border-radius: var(--radius-lg);
	box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.news-article {
	padding-top: 84px;
}

.news-article__layout {
	display: grid;
	grid-template-columns: 190px minmax(0, 860px);
	justify-content: center;
	gap: 72px;
}

.news-article__rail {
	position: sticky;
	top: 130px;
	display: flex;
	height: max-content;
	flex-direction: column;
	gap: 8px;
	padding: 22px 0 0 22px;
	border-left: 3px solid var(--yellow);
	color: var(--muted-2);
	font-size: var(--fs-xs);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.news-article__rail strong {
	color: var(--ink);
	font-size: var(--fs-sm);
}

.news-article__rail a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
	color: var(--red);
	font-weight: 850;
}

.news-article__content {
	color: #26343d;
	font-size: 1.08rem;
	line-height: 1.82;
}

.news-article__content h2 {
	margin-top: 2.2em;
	font-size: clamp(2rem, 3.2vw, 2.85rem);
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.news-article__content h3 {
	margin-top: 2em;
	font-size: clamp(1.45rem, 2.3vw, 2rem);
	letter-spacing: -0.025em;
}

.news-article__content > p:first-child {
	margin-top: 0;
	color: var(--ink);
	font-size: 1.25rem;
	font-weight: 620;
	line-height: 1.7;
}

.news-article__content a {
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: rgba(189, 24, 41, 0.3);
	text-underline-offset: 3px;
}

.news-article__tags {
	margin-top: 44px;
}

.news-article__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 52px;
	padding-top: 34px;
	border-top: 1px solid var(--line);
}

.news-related {
	background: var(--paper);
	border-block: 1px solid var(--line);
}

.news-related__head {
	align-items: end;
}

.news-related__eyebrow {
	color: var(--red);
}

.news-related .news-card__body {
	min-height: 230px;
}

@media (max-width: 1120px) {
	.news-feature {
		grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
	}

	.news-feature__body {
		padding: 42px;
	}

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

	.news-detail-hero__inner {
		grid-template-columns: 1fr 0.9fr;
		gap: 44px;
	}

	.news-detail-hero__media {
		min-height: 390px;
	}

	.news-article__layout {
		grid-template-columns: minmax(0, 820px);
	}

	.news-article__rail {
		position: static;
		display: none;
	}
}

@media (max-width: 820px) {
	.news-hero {
		padding: 72px 0 62px;
	}

	.news-hero__inner,
	.news-detail-hero__inner {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.news-hero__signal {
		grid-template-columns: repeat(3, auto);
		justify-content: start;
		min-width: 0;
		padding: 18px 0 0;
		border-top: 2px solid var(--yellow);
		border-left: 0;
	}

	.news-feature {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.news-feature__media {
		aspect-ratio: 16 / 9;
	}

	.news-cta-band__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.news-detail-hero__media {
		min-height: 0;
		aspect-ratio: 16 / 10;
	}
}

@media (max-width: 620px) {
	.news-hero__title {
		font-size: clamp(2.8rem, 15vw, 4.5rem);
	}

	.news-hero__signal {
		grid-template-columns: 1fr;
	}

	.news-index,
	.news-article {
		padding-top: 58px;
	}

	.news-feature__body,
	.news-card__body {
		padding: 26px;
	}

	.news-grid {
		grid-template-columns: 1fr;
	}

	.news-card__body {
		min-height: 250px;
	}

	.news-detail-hero {
		padding: 54px 0 60px;
	}

	.news-detail-hero__back {
		margin-bottom: 28px;
	}

	.news-detail-hero__title {
		font-size: clamp(2.45rem, 12.5vw, 3.7rem);
	}

	.news-article__content {
		font-size: 1rem;
	}

	.news-article__content > p:first-child {
		font-size: 1.1rem;
	}

	.news-related__head {
		align-items: flex-start;
		flex-direction: column;
	}
}

body {
	background: #fff;
	color: var(--ink-3);
}

.wrap {
	max-width: 1440px;
}

.topbar {
	background: var(--yellow);
	color: var(--ink);
}

.topbar__inner {
	min-height: 34px;
}

.topbar__text,
.topbar__meta {
	margin: 0;
}

.topbar__meta {
	padding: 0;
	list-style: none;
}

.topbar__meta li,
.topbar__meta a {
	display: flex;
	align-items: center;
}

.topbar__text,
.topbar__meta a {
	line-height: 1.25;
}

.topbar__text::before {
	background: var(--red);
}

.topbar__meta a:hover {
	color: var(--red);
}

.site-header {
	background: rgba(255, 255, 255, 0.98);
	border: 0;
	box-shadow: 0 10px 28px rgba(7, 26, 38, 0.08);
}

.site-header__inner {
	min-height: 82px;
}

.custom-logo,
.lgcm-logo__img {
	max-height: 52px;
}

.nav-primary__list > li > a {
	padding-inline: 14px;
	color: var(--ink);
	font-size: 0.82rem;
	letter-spacing: 0.025em;
}

.nav-primary__list > li > a::after {
	bottom: 6px;
	height: 2px;
	background: var(--yellow);
}

.site-header__actions .btn--primary,
.site-header__cta {
	background: var(--ink);
	border-color: var(--ink);
	color: #fff;
}

.site-header__actions .btn--primary:hover,
.site-header__cta:hover {
	background: var(--red);
	border-color: var(--red);
}

/* Full-bleed jobsite hero. */
.hero {
	background: var(--ink);
}

.hero__slide {
	min-height: clamp(620px, 67vw, 790px);
	align-items: center;
}

.hero__media img {
	object-position: center center;
	filter: saturate(0.96) contrast(1.02);
}

.hero__scrim,
.hero__slide[data-align="center"] .hero__scrim,
.hero__slide[data-align="right"] .hero__scrim {
	opacity: 1 !important;
	background: linear-gradient(
		90deg,
		rgba(7, 26, 38, 0.9) 0%,
		rgba(7, 26, 38, 0.76) 28%,
		rgba(7, 26, 38, 0.2) 58%,
		rgba(7, 26, 38, 0.02) 78%
	);
}

.hero__inner {
	padding-block: clamp(72px, 8vw, 116px);
}

.hero__content,
.hero__slide[data-align="center"] .hero__content,
.hero__slide[data-align="right"] .hero__content {
	max-width: 650px;
	margin: 0;
	padding: clamp(30px, 3vw, 48px);
	background: rgba(7, 26, 38, 0.84);
	border-left: 6px solid var(--yellow);
	border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
	text-align: left;
	backdrop-filter: blur(5px);
}

.hero__eyebrow {
	margin: 0 0 18px;
	padding: 0;
	background: transparent;
	color: var(--yellow);
	font-size: 0.78rem;
	letter-spacing: 0.16em;
}

.hero__eyebrow::before {
	content: "";
	width: 32px;
	height: 2px;
	background: currentColor;
}

.hero__title {
	max-width: 14ch;
	font-size: clamp(2.65rem, 4vw, 4rem);
	line-height: 0.97;
	letter-spacing: -0.035em;
}

.hero__text {
	max-width: 46ch;
	margin-top: 22px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.05rem;
	line-height: 1.65;
}

.hero__actions,
.hero__slide[data-align="center"] .hero__actions,
.hero__slide[data-align="right"] .hero__actions {
	justify-content: flex-start;
	margin-top: 30px;
}

.hero .btn--primary {
	background: var(--yellow);
	border-color: var(--yellow);
	color: var(--ink);
}

.hero .btn--primary:hover {
	background: #ffc03c;
	border-color: #ffc03c;
	color: var(--ink);
}

.hero .btn--lg {
	padding: 16px 20px;
	font-size: 0.8rem;
}

.hero .btn--outline-light {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.7);
}

.hero__nav {
	top: auto;
	bottom: 24px;
	width: 42px;
	height: 42px;
	background: rgba(7, 26, 38, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	transform: none;
}

.hero__nav--prev {
	left: calc(50% - 104px);
}

.hero__nav--next {
	right: calc(50% - 104px);
}

.hero__dots {
	bottom: 41px;
	align-items: center;
	gap: 8px;
}

[data-slider-dot] {
	width: 9px;
	height: 9px;
	border-radius: 50%;
}

[data-slider-dot].is-active {
	width: 28px;
	border-radius: 10px;
}

/* Trust bar becomes the dark capability rail seen on equipment brands. */
.trust {
	background: var(--ink);
	border: 0;
}

.trust__list {
	gap: 0;
}

.trust__item {
	min-height: 132px;
	padding: 30px clamp(20px, 3vw, 44px);
	border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust__item:last-child {
	border-right: 0;
}

.trust__icon {
	width: 48px;
	height: 48px;
	background: rgba(244, 179, 35, 0.1);
	border: 1px solid rgba(244, 179, 35, 0.35);
	color: var(--yellow);
}

.trust__title {
	color: #fff;
	font-size: 1rem;
}

.trust__text {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	line-height: 1.5;
}

/* Product selection, inspired by configurator-first navigation. */
.section {
	padding-block: clamp(76px, 7vw, 112px);
}

.section--cats {
	background: var(--paper);
}

.section__head {
	margin-bottom: clamp(32px, 4vw, 54px);
}

.section__eyebrow {
	margin: 0 0 10px;
	color: var(--red);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.section__title {
	max-width: 18ch;
	font-size: clamp(2rem, 3.6vw, 3.7rem);
	letter-spacing: -0.025em;
	line-height: 1.02;
}

.section__title::after {
	width: 88px;
	height: 4px;
	background: linear-gradient(90deg, var(--yellow) 0 62%, var(--red) 62% 100%);
}

.section__sub {
	max-width: 760px;
	font-size: 1.05rem;
	line-height: 1.7;
}

.cat-grid,
.lgcm-front .cat-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.cat-card,
.lgcm-front .cat-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 0;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.cat-card:hover {
	box-shadow: var(--shadow);
	transform: translateY(-5px);
}

.cat-card__media {
	aspect-ratio: 16 / 9;
	background: linear-gradient(145deg, #fff 0%, #ecefed 100%);
}

.cat-card__img {
	padding: 18px;
	object-fit: contain;
}

.cat-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 26px 28px 30px;
	border-top: 4px solid var(--yellow);
}

.cat-card__title {
	font-size: 1.45rem;
	letter-spacing: -0.015em;
}

.cat-card__text {
	font-size: 0.98rem;
	line-height: 1.6;
}

.cat-card__link {
	margin-top: auto;
	color: var(--red);
	font-size: 0.86rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.cat-card__subs a {
	background: var(--paper);
	border-radius: 999px;
}

.cat-card__meta {
	margin: 0 0 18px;
	color: var(--muted);
	font-size: 0.88rem;
}

/* Product cards use a calm catalog treatment instead of a default grid. */
.card--product {
	border: 0;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.card--product:hover {
	box-shadow: var(--shadow);
	transform: translateY(-4px);
}

.card--product .card__media {
	background: linear-gradient(145deg, #fff, #f0f2f0);
}

.card--product .card__body {
	border-top: 4px solid var(--yellow);
}

.card--product .card__title {
	font-size: 1.3rem;
}

.card__specs {
	background: var(--paper);
	border: 0;
	border-radius: var(--radius);
	padding: 12px 14px;
}

/* Configurator section as the dark conversion anchor. */
.section--build {
	background: var(--ink);
	color: #fff;
}

.build {
	gap: clamp(40px, 6vw, 96px);
}

.section--build .section__title,
.section--build .build__steps li {
	color: #fff;
}

.section--build .build__text {
	color: rgba(255, 255, 255, 0.68);
	font-size: 1.05rem;
	line-height: 1.7;
}

.build__step-no {
	background: var(--yellow);
	color: var(--ink);
}

.build__media img {
	border-radius: var(--radius-lg);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.stats {
	background: var(--red);
}

.stats__number,
.stats__label {
	color: #fff;
}

.section--why,
.section--blog,
.section--inquiry {
	background: #fff;
}

.why-card,
.inquiry__contact li {
	background: var(--paper);
	border-color: var(--line);
}

.why-layout {
	display: grid;
	grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
	gap: clamp(48px, 7vw, 112px);
	align-items: start;
}

.why-layout__head {
	margin: 0;
}

.why-layout__head .section__sub {
	max-width: 510px;
	margin-top: 28px;
}

.why-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.why-card {
	min-height: 265px;
	padding: 30px;
	border: 0;
	border-top: 4px solid var(--yellow);
	border-radius: var(--radius-md);
	box-shadow: 0 8px 22px rgba(7, 26, 38, 0.05);
}

.why-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}

.why-card__icon {
	margin: 0;
	background: #fff;
}

.why-card__number {
	color: #b5bcbe;
	font-family: var(--font-head);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.why-card__title {
	font-size: 1.15rem;
	line-height: 1.18;
}

.why-card__text {
	font-size: 0.96rem;
	line-height: 1.65;
}

/* The location matrix moved to the contact path; the home page now proves the factory story on video. */
.section--factory-video {
	background: var(--ink);
	color: #fff;
}

.factory-video {
	display: grid;
	grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.32fr);
	gap: clamp(42px, 6vw, 92px);
	align-items: center;
}

.factory-video__copy .section__eyebrow {
	color: var(--yellow);
}

.factory-video__copy .section__title {
	max-width: 12ch;
	color: #fff;
}

.factory-video__text {
	max-width: 540px;
	margin-top: 26px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.04rem;
	line-height: 1.7;
}

.factory-video__text p {
	margin: 0;
}

.factory-video__stages {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 30px 0;
	padding: 0;
	list-style: none;
}

.factory-video__stages li {
	padding: 9px 13px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.factory-video__media {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #000;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-lg);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
	overflow: hidden;
}

.factory-video__media::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	z-index: 1;
	height: 4px;
	background: linear-gradient(90deg, var(--yellow) 0 72%, var(--red) 72% 100%);
	pointer-events: none;
}

.factory-video__media iframe,
.factory-video__media video {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.factory-video__media video {
	background: #000;
	object-fit: contain;
}

/* Attachment archive: task first, product second, details third. */
.attachment-browser {
	padding-top: 48px;
	padding-bottom: clamp(76px, 7vw, 108px);
}

.attachment-filter {
	display: block;
	padding: 28px 30px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
}

.attachment-filter__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
}

.attachment-filter__intro,
.attachment-results__head {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.attachment-filter__step {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: var(--yellow);
	border-radius: 50%;
	color: var(--ink);
	font-family: var(--font-head);
	font-size: 0.78rem;
	font-weight: 900;
}

.attachment-filter__title,
.attachment-results__head h2 {
	margin: 0;
	font-family: var(--font-head);
	font-size: 1.2rem;
	line-height: 1.2;
	text-transform: uppercase;
}

.attachment-filter__hint,
.attachment-results__head p {
	margin: 5px 0 0;
	color: var(--muted);
	font-size: 0.9rem;
	line-height: 1.5;
}

.attachment-filter .filters__chips {
	gap: 10px;
}

.attachment-filter .chip {
	background: #fff;
}

.attachment-filter .chip.is-active {
	background: var(--ink);
	border-color: var(--ink);
	color: #fff;
}

.attachment-filter__count {
	margin: 0;
	color: var(--muted);
	font-size: 0.82rem;
	white-space: nowrap;
}

.attachment-filter__group {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	margin-top: 26px;
}

.attachment-filter__label {
	margin: 0;
	color: var(--muted-2);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.attachment-filter .chip {
	gap: 8px;
}

.chip__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 21px;
	height: 21px;
	padding: 0 6px;
	background: var(--paper);
	border-radius: 999px;
	color: var(--muted);
	font-size: 0.7rem;
}

.attachment-filter .chip.is-active .chip__count {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

.attachment-filter__more {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
}

.attachment-filter__more summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	cursor: pointer;
	color: var(--ink);
	font-size: 0.86rem;
	font-weight: 700;
}

.attachment-filter__more summary strong {
	color: var(--red);
	font-size: 0.76rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.attachment-filter__more .filters__chips {
	margin-top: 18px;
}

.attachment-results__head {
	margin: 48px 0 24px;
}

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

.card--attachment {
	border: 0;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.card--attachment .card__media {
	aspect-ratio: 4 / 3;
}

.attachment-media {
	background: linear-gradient(145deg, #fff, #edf0ed);
}

.attachment-media__frame {
	position: absolute;
	inset: 0;
	display: block;
	overflow: hidden;
}

.product-gallery__main .attachment-media__frame {
  aspect-ratio: 4 / 3;
  min-height: 420px;
}

.attachment-media__img {
	display: block;
	transition: transform 0.4s var(--ease);
}

.attachment-media__frame--contain .attachment-media__img {
	width: 100%;
	height: 100%;
	padding: 18px;
	object-fit: contain;
}

.attachment-media__frame[class*="--crop-"] .attachment-media__img {
	position: absolute;
	width: 400%;
	max-width: none;
	height: auto;
}

.attachment-media__frame--crop-a-r1c1 .attachment-media__img,
.attachment-media__frame--crop-b-r1c1 .attachment-media__img {
	left: 0;
	top: -30%;
}

.attachment-media__frame--crop-a-r1c2 .attachment-media__img {
	left: -100%;
	top: -30%;
}

.attachment-media__frame--crop-b-r1c3 .attachment-media__img {
	left: -200%;
	top: -30%;
}

.attachment-media__frame--crop-a-r2c2 .attachment-media__img {
	left: -100%;
	top: -170%;
}

.attachment-media__frame--crop-b-r2c1 .attachment-media__img {
	left: 0;
	top: -168%;
}

.card:hover .attachment-media__img {
	transform: scale(1.025);
}

.card__type-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	padding: 7px 10px;
	background: rgba(7, 26, 38, 0.9);
	border-radius: 999px;
	color: #fff;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	box-shadow: 0 5px 14px rgba(7, 26, 38, 0.16);
}

.card--attachment .card__body {
	min-height: 190px;
	padding: 24px;
	border-top: 4px solid var(--yellow);
}

.card--attachment .card__eyebrow {
	min-height: 1.2em;
}

.card--attachment .card__title {
	font-size: 1.08rem;
	line-height: 1.25;
}

.card--attachment .card__link {
	color: var(--red);
	font-size: 0.75rem;
}

.inquiry__form {
	border: 0;
	box-shadow: var(--shadow);
}

.site-footer {
	background: var(--ink);
}

/* Material-sheet machine enquiry flow. */
.config {
	padding-bottom: 0;
}

.config .config__progress {
	padding-block: clamp(24px, 3vw, 34px);
	background: #fff;
	border-bottom: 1px solid var(--line);
}

.config .config__steps {
	padding: 0;
}

.config .config__panel {
	padding-block: clamp(44px, 5vw, 72px);
}

.config__alert {
	margin: 18px 0 0;
	padding: 12px 16px;
	background: rgba(196, 22, 42, 0.08);
	border-left: 4px solid var(--red);
	color: var(--red);
	font-weight: 700;
}

.config__filters {
	display: flex;
	gap: 10px;
	margin: 0 0 30px;
	padding-bottom: 8px;
	overflow-x: auto;
	scrollbar-width: thin;
}

.config-filter {
	display: inline-flex;
	flex: none;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 9px 15px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--ink);
	font: inherit;
	font-size: 0.86rem;
	font-weight: 750;
	cursor: pointer;
}

.config-filter span {
	display: inline-grid;
	place-items: center;
	min-width: 24px;
	height: 24px;
	padding-inline: 6px;
	background: var(--paper);
	border-radius: 999px;
	font-size: 0.72rem;
}

.config-filter:hover,
.config-filter.is-active {
	background: var(--ink);
	border-color: var(--ink);
	color: #fff;
}

.config-filter.is-active span {
	background: var(--yellow);
	color: var(--ink);
}

.config-card-wrap {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.config-card-wrap[hidden] {
	display: none;
}

.config-card-wrap .config-card {
	flex: 1 1 auto;
	border-radius: var(--radius) var(--radius) 0 0;
}

.config-card__detail {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 48px;
	padding: 11px 16px;
	background: #fff;
	border: 2px solid var(--line);
	border-top: 0;
	border-radius: 0 0 var(--radius) var(--radius);
	color: var(--red);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.config-card__detail:hover {
	background: var(--paper);
	color: var(--ink);
}

.config-card__detail svg {
	width: 18px;
	height: 18px;
}

.config-requirements {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	max-width: 1080px;
	padding: clamp(24px, 4vw, 42px);
	background: var(--paper);
	border-top: 4px solid var(--yellow);
}

.config-field {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 8px;
}

.config-field--wide {
	grid-column: 1 / -1;
}

.config-field label {
	color: var(--ink);
	font-size: 0.88rem;
	font-weight: 800;
}

.config-field input,
.config-field select,
.config-field textarea {
	width: 100%;
	min-height: 48px;
	padding: 11px 13px;
	background: #fff;
	border: 1px solid var(--line-2);
	border-radius: 3px;
	color: var(--ink);
	font: inherit;
}

.config-field textarea {
	min-height: 128px;
	resize: vertical;
}

.config-field input:focus,
.config-field select:focus,
.config-field textarea:focus {
	border-color: var(--yellow);
	box-shadow: 0 0 0 3px rgba(244, 179, 35, 0.18);
	outline: 0;
}

.config__summary-row {
	display: grid;
	grid-template-columns: minmax(120px, 0.7fr) minmax(0, 1.3fr);
	gap: 16px;
	padding: 13px 0;
	border-bottom: 1px solid var(--line);
}

.config__summary-row:last-child {
	border-bottom: 0;
}

.config__summary-label {
	color: var(--muted-2);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.config__summary-value {
	min-width: 0;
	color: var(--ink);
	font-weight: 700;
	overflow-wrap: anywhere;
}

/* The language selector is a compact site control, not another navigation item. */
.language-switcher {
	display: flex;
	align-items: center;
	min-width: 118px;
}

.site-header__actions {
	margin-left: auto;
}

.burger .burger__close {
	display: none;
}

.burger[aria-expanded="true"] .burger__open {
	display: none;
}

.burger[aria-expanded="true"] .burger__close {
	display: block;
}

.language-switcher .gtranslate_wrapper,
.drawer__language .gtranslate_wrapper {
	width: 100%;
	line-height: 1;
}

.language-switcher .gt_selector,
.drawer__language .gt_selector {
	width: 100%;
	height: 42px;
	padding: 0 34px 0 12px;
	border: 1px solid var(--line-2);
	border-radius: 4px;
	background-color: var(--white);
	color: var(--ink);
	font: inherit;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
}

.language-switcher .gt_selector:focus-visible,
.drawer__language .gt_selector:focus-visible {
	border-color: var(--yellow);
	outline: 3px solid rgba(249, 168, 37, 0.25);
	outline-offset: 1px;
}

.drawer__language {
	display: none;
	margin-top: 22px;
	padding: 18px;
	border: 1px solid var(--line);
	border-left: 4px solid var(--yellow);
	background: var(--paper);
}

.drawer__language-label {
	display: block;
	margin-bottom: 9px;
	color: var(--muted-2);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

/* FAQ: scan-friendly groups with native, keyboard-accessible disclosure rows. */
.faq-page__intro {
	max-width: 66ch;
	margin: 0 0 48px;
	color: var(--muted);
	font-size: clamp(1.05rem, 1.6vw, 1.25rem);
	line-height: 1.65;
}

.entry-content .faq-group {
	margin-top: 50px;
}

.entry-content .faq-group:first-of-type {
	margin-top: 0;
}

.entry-content .faq-group__title {
	margin: 0 0 18px;
	padding-bottom: 14px;
	border-bottom: 4px solid var(--ink);
	font-size: clamp(1.25rem, 2vw, 1.65rem);
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

.faq-item {
	margin: 0;
	border-bottom: 1px solid var(--line-2);
	background: var(--white);
}

.faq-item:first-of-type {
	border-top: 1px solid var(--line-2);
}

.faq-item summary {
	position: relative;
	padding: 22px 54px 22px 0;
	color: var(--ink);
	font-family: var(--font-head);
	font-size: clamp(1rem, 1.5vw, 1.18rem);
	font-weight: 800;
	line-height: 1.35;
	list-style: none;
	cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::before,
.faq-item summary::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 8px;
	width: 18px;
	height: 2px;
	background: var(--red);
	transform: translateY(-50%);
	transition: transform 0.2s ease;
}

.faq-item summary::after {
	transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary::after {
	transform: translateY(-50%) rotate(0deg);
}

.faq-item summary:focus-visible {
	outline: 3px solid rgba(249, 168, 37, 0.35);
	outline-offset: 3px;
}

.faq-item__answer {
	max-width: 74ch;
	padding: 0 54px 24px 0;
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.75;
}

.faq-item__answer p:last-child {
	margin-bottom: 0;
}

@media (max-width: 1180px) {
	.nav-primary,
	.site-header__cta,
	.language-switcher--desktop {
		display: none;
	}

	.burger {
		display: flex;
	}

	.drawer:not([hidden]) {
		display: block;
	}

	.drawer__language {
		display: block;
	}

	.nav-primary__list > li > a {
		padding-inline: 9px;
		font-size: 0.76rem;
	}

	.cat-grid,
	.lgcm-front .cat-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cat-card,
	.lgcm-front .cat-card {
		grid-column: auto;
	}

	.attachment-filter {
		padding: 26px;
	}

	.attachment-filter__count {
		white-space: normal;
	}

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

@media (max-width: 960px) {
	.language-switcher--desktop {
		display: none;
	}

	.drawer__language {
		display: block;
	}

	.site-header__inner {
		min-height: 70px;
	}

	.hero__slide {
		min-height: 700px;
	}

	.hero__content,
	.hero__slide[data-align="center"] .hero__content,
	.hero__slide[data-align="right"] .hero__content {
		max-width: 590px;
	}

	.trust__list {
		grid-template-columns: 1fr;
	}

	.trust__item {
		min-height: 0;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.why-layout,
	.factory-video {
		grid-template-columns: 1fr;
	}

	.why-layout__head .section__sub {
		max-width: 720px;
	}
}

@media (max-width: 720px) {
	.entry-content .faq-group {
		margin-top: 40px;
	}

	.faq-item summary {
		padding-block: 18px;
		padding-right: 42px;
	}

	.faq-item__answer {
		padding-right: 0;
	}
}

@media (max-width: 720px) {
	.config .config__progress {
		padding-block: 18px;
	}

	.config .config__panel {
		padding-block: 44px;
	}

	.config__steps {
		gap: 5px;
	}

	.config__step {
		gap: 7px;
		padding: 10px 8px;
	}

	.config__step-label {
		display: inline;
		font-size: 0.7rem;
		line-height: 1.2;
	}

	.config__step-no {
		width: 24px;
		height: 24px;
	}

	.config-requirements {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 22px 18px;
	}

	.config-field--wide {
		grid-column: auto;
	}

	.config__summary-row {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.custom-logo,
	.lgcm-logo__img {
		max-height: 42px;
	}

	.hero__slide {
		min-height: 720px;
		align-items: flex-end;
	}

	.hero__media img {
		object-position: 82% center;
	}

	.hero__scrim,
	.hero__slide[data-align="center"] .hero__scrim,
	.hero__slide[data-align="right"] .hero__scrim {
		background: linear-gradient(
			180deg,
			rgba(7, 26, 38, 0.04) 0%,
			rgba(7, 26, 38, 0.18) 35%,
			rgba(7, 26, 38, 0.96) 70%,
			rgba(7, 26, 38, 1) 100%
		);
	}

	.hero__inner {
		padding: 240px var(--gutter) 92px;
	}

	.hero__content,
	.hero__slide[data-align="center"] .hero__content,
	.hero__slide[data-align="right"] .hero__content {
		max-width: none;
		padding: 0;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		backdrop-filter: none;
	}

	.hero__title {
		font-size: clamp(2.15rem, 11vw, 3.2rem);
	}

	.hero__text {
		font-size: 0.98rem;
		line-height: 1.55;
	}

	.hero__actions {
		gap: 10px;
		margin-top: 22px;
	}

	.hero__actions .btn {
		width: 100%;
	}

	.hero__nav {
		display: none;
	}

	.hero__dots {
		bottom: 28px;
	}

	.section {
		padding-block: 72px;
	}

	.section__title {
		font-size: clamp(2rem, 10vw, 2.8rem);
	}

	.cat-grid,
	.lgcm-front .cat-grid {
		grid-template-columns: 1fr;
	}

	.cat-card__body {
		padding: 22px;
	}

	.why-grid,
	.grid--attachments {
		grid-template-columns: 1fr;
	}

	.why-card {
		min-height: 0;
	}

	.factory-video__copy .section__title {
		max-width: 15ch;
	}

	.attachment-browser {
		padding-top: 28px;
	}

	.attachment-filter {
		padding: 22px;
	}

	.attachment-filter__count {
		white-space: normal;
	}

	.attachment-filter__head,
	.attachment-filter__group {
		display: flex;
		flex-direction: column;
		align-items: stretch;
	}

	.attachment-filter__group {
		gap: 12px;
	}

	.attachment-filter .filters__chips {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.attachment-filter .chip {
		justify-content: center;
		width: 100%;
		text-align: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cat-card:hover,
	.card--product:hover,
	.card--attachment:hover,
	.why-card:hover,
	.news-card:hover {
		transform: none;
	}

	.news-feature__img,
	.news-card__img,
	.news-card__cta svg {
		transition: none;
	}
}

/* Banner height overrides stay last because the earlier redesign rules carry
   the original full-viewport dimensions. */
.hero__slide {
	min-height: clamp(540px, 48vw, 640px);
}

.hero__inner {
	padding-block: clamp(48px, 5.5vw, 72px);
}

.hero__content,
.hero__slide[data-align="center"] .hero__content,
.hero__slide[data-align="right"] .hero__content {
	max-width: 610px;
	padding: clamp(26px, 2.8vw, 38px);
}

.hero__title {
	font-size: clamp(2.35rem, 3.5vw, 3.45rem);
}

@media (max-width: 960px) {
	.hero__slide {
		min-height: 580px;
	}
}

@media (max-width: 720px) {
	.hero__slide {
		min-height: 600px;
	}

	.hero__inner {
		padding: 180px var(--gutter) 76px;
	}

	.hero__title {
		font-size: clamp(2rem, 10vw, 2.8rem);
	}
}

/* -------------------------------------------------------------------------
 * 1.3.9 product-page mobile alignment
 * ---------------------------------------------------------------------- */

@media (max-width: 720px) {
	body.single-product .breadcrumbs {
		overflow: hidden;
		padding-block: 0;
	}

	body.single-product .breadcrumbs__list {
		display: flex;
		flex-wrap: nowrap;
		gap: 0;
		overflow: hidden;
		padding-block: 11px;
	}

	body.single-product .breadcrumbs__item {
		flex: none;
		white-space: nowrap;
	}

	body.single-product .breadcrumbs__item:not(:first-child):not(:last-child) {
		display: none;
	}

	body.single-product .breadcrumbs__item:last-child {
		min-width: 0;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	body.single-product .product__subnav {
		top: 70px;
	}

	body.single-product .product__subnav-inner {
		display: block;
		width: 100%;
		min-height: 52px;
		padding: 0 8px;
		overflow: visible;
	}

	body.single-product .product__subnav-links {
		display: flex;
		align-items: stretch;
		width: 100%;
		min-width: 0;
		margin: 0;
	}

	body.single-product .product__subnav-links li {
		display: flex;
		flex: 1 1 0;
		min-width: 0;
	}

	body.single-product .product__subnav-links a {
		justify-content: center;
		width: 100%;
		min-height: 52px;
		padding: 6px 3px;
		font-size: clamp(0.56rem, 2.45vw, 0.66rem);
		line-height: 1.15;
		text-align: center;
		white-space: normal;
	}

	body.single-product .product__subnav-links a::after {
		left: 5px;
		right: 5px;
	}

	body.single-product .product__hero {
		padding-block: 18px 32px;
	}

	body.single-product .product__hero-inner {
		gap: 20px;
	}

	body.single-product .product__stage {
		border-radius: 0;
	}

	body.single-product .product__frame img {
		padding: 14px;
	}

	body.single-product .product__summary {
		padding: 22px 18px 24px;
	}

	body.single-product .product__eyebrow {
		margin-bottom: 10px;
	}

	body.single-product .product__title {
		font-size: clamp(2rem, 10.5vw, 2.45rem);
		line-height: 1;
	}

	body.single-product .product__tagline {
		margin-top: 14px;
		font-size: 0.98rem;
	}

	body.single-product .product__keyspecs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		margin-top: 20px;
	}

	body.single-product .product__keyspec {
		grid-template-columns: 28px minmax(0, 1fr);
		gap: 2px 8px;
		padding: 12px 10px;
	}

	body.single-product .product__keyspec-icon {
		width: 28px;
		height: 28px;
	}

	body.single-product .product__keyspec dt {
		font-size: 0.65rem;
		line-height: 1.2;
	}

	body.single-product .product__keyspec dd {
		font-size: 0.88rem;
		line-height: 1.25;
	}

	body.single-product .product__actions {
		gap: 10px;
		margin-top: 20px;
	}

	body.single-product .product__actions .btn {
		min-height: 54px;
		padding: 13px 16px;
		line-height: 1.25;
		text-align: center;
	}

	body.single-product .product__quicklinks {
		margin-top: 18px;
		padding-top: 16px;
	}

	body.single-product .section {
		padding-block: 48px;
	}

	body.single-product .section--tight {
		padding-block: 42px;
	}

	body.single-product .section__title,
	body.single-product .section__title--sm {
		font-size: clamp(1.75rem, 8vw, 2.15rem);
		line-height: 1.05;
		overflow-wrap: break-word;
	}

	body.single-product .product__overview {
		gap: 24px;
	}

	body.single-product .product__overview .entry-content,
	body.single-product .product__overview .entry-content > * {
		max-width: 100%;
	}

	body.single-product .product__more-highlights {
		padding: 22px 20px;
	}

	body.single-product .section--specs .section__title {
		margin-bottom: 22px;
	}

	body.single-product .spec-table {
		font-size: 0.9rem;
		table-layout: fixed;
	}

	body.single-product .spec-table th,
	body.single-product .spec-table td {
		padding: 12px 11px;
		overflow-wrap: anywhere;
	}

	body.single-product .equipment {
		gap: 20px;
	}

	body.single-product .equipment__col {
		padding: 22px 20px;
	}

	body.single-product .equipment__col .section__title--sm {
		margin-bottom: 18px;
		font-size: clamp(1.3rem, 5.6vw, 1.5rem);
	}

	body.single-product .inquiry {
		gap: 28px;
	}

	body.single-product .inquiry__form {
		padding: 22px 18px;
	}

	body.single-product .section--related .section__head {
		margin-bottom: 24px;
	}

	body.single-product .float-wa {
		display: none;
	}
}

@media (max-width: 360px) {
	body.single-product .product__keyspecs {
		grid-template-columns: 1fr;
	}

	body.single-product .product__subnav-links a {
		font-size: 0.54rem;
	}
}

/* -------------------------------------------------------------------------
 * 1.3.22 continuous responsive alignment
 * One sizing model for homepage/application cards, stats and narrow headers.
 * ---------------------------------------------------------------------- */

/* Reset list geometry once, instead of compensating for browser UL padding at
   individual breakpoints. */
.cat-grid,
.lgcm-front .cat-grid,
.trust__list,
.stats__list {
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
	list-style: none;
}

@media (max-width: 900px) {
	/* Keep medium and zoomed-tablet views compact enough to compare cards. */
	.cat-grid,
	.lgcm-front .cat-grid {
		position: static;
		left: auto;
		width: 100%;
		max-width: none;
		margin: 0;
		padding: 0;
		transform: none;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}

	.cat-card,
	.lgcm-front .cat-card {
		width: 100%;
		min-width: 0;
		margin: 0;
	}

	.cat-card__media,
	.lgcm-front .cat-card__media {
		aspect-ratio: 1.5 / 1;
	}

	.cat-card__body,
	.lgcm-front .cat-card__body {
		padding: 20px;
	}

	.cat-card__title {
		font-size: clamp(1.15rem, 3.1vw, 1.4rem);
	}

	.cat-card__text {
		font-size: 0.92rem;
	}

	/* The red statistics rail fills its section and uses one continuous grid. */
	.stats .wrap {
		padding-inline: 0;
	}

	.stats__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0;
		width: 100%;
		max-width: none;
		margin: 0;
		padding: 34px clamp(16px, 4vw, 32px);
	}

	.stats__item,
	.stats__item:nth-child(odd),
	.stats__item:nth-child(3),
	.stats__item:nth-child(4) {
		min-width: 0;
		padding: 22px 14px;
		border: 0;
	}

	.stats__item:nth-child(even) {
		border-left: 1px solid rgba(255, 255, 255, 0.18);
	}

	.stats__item:nth-child(n + 3) {
		border-top: 1px solid rgba(255, 255, 255, 0.18);
	}

	.stats__number {
		font-size: clamp(2.25rem, 9vw, 3.6rem);
	}

	.stats__label {
		max-width: 18ch;
		margin: 8px auto 0;
		font-size: clamp(0.72rem, 2.25vw, 0.9rem);
		line-height: 1.35;
		letter-spacing: 0.035em;
		overflow-wrap: normal;
	}

	/* Trust rows use the same full content rail as the sections around them. */
	.trust .wrap {
		padding-inline: 0;
	}

	.trust__list {
		width: 100%;
		max-width: none;
		margin: 0;
		padding: 16px;
	}

	.trust__item {
		display: grid;
		grid-template-columns: 52px minmax(0, 1fr);
		align-items: center;
		gap: 16px;
		min-height: 0;
		padding: 18px 0;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.trust__item:last-child {
		border-bottom: 0;
	}

	.trust__icon {
		width: 52px;
		height: 52px;
	}
}

@media (max-width: 520px) {
	.cat-grid,
	.lgcm-front .cat-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 16px;
	}

	.cat-card__media,
	.lgcm-front .cat-card__media {
		aspect-ratio: 1.55 / 1;
	}

	.cat-card__body,
	.lgcm-front .cat-card__body {
		flex: 0 0 auto;
		padding: 18px;
	}

	.cat-card__link,
	.lgcm-front .cat-card__link {
		margin-top: 12px;
	}
}

/* -------------------------------------------------------------------------
 * 1.5.0 — accessory choice is a required configurator step
 * ---------------------------------------------------------------------- */

.config-accessories {
	min-height: 280px;
}

.config-accessory-set[hidden] {
	display: none;
}

.config-accessory-set__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
	padding: 18px 22px;
	background: var(--ink);
	border-top: 4px solid var(--yellow);
	color: #fff;
}

.config-accessory-set__head span,
.config-accessory-set__head strong {
	display: block;
}

.config-accessory-set__head span:first-child {
	margin-bottom: 4px;
	color: rgb(255 255 255 / 68%);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.config-accessory-set__head strong {
	font-family: var(--font-head);
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	text-transform: uppercase;
}

.config-accessory-set__head .product-accessories__currency {
	background: var(--yellow);
	color: var(--ink);
}

.config-accessory-set .config__grid--att {
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.config-accessory-set .config-card--att {
	min-width: 0;
}

.config-accessory-set .config-card__media {
	aspect-ratio: 16 / 10;
}

.config-card__media--standard {
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, #eef1f2, #fff);
}

.config-accessory__description {
	display: -webkit-box;
	margin-top: 6px;
	color: var(--muted);
	font-size: 0.78rem;
	line-height: 1.5;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.config-accessory-set .config-card__code {
	margin-top: auto;
	padding-top: 12px;
}

.config-accessory-total {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 22px;
	margin-top: 24px;
	padding: 18px 22px;
	background: var(--paper);
	border-right: 4px solid var(--yellow);
}

.config-accessory-total span {
	color: var(--muted-2);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.config-accessory-total strong {
	color: var(--red);
	font-family: var(--font-head);
	font-size: 1.55rem;
}

.product-config-entry {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
	gap: clamp(30px, 6vw, 90px);
	align-items: center;
	padding-block: clamp(42px, 6vw, 84px);
}

.product-config-entry__actions {
	display: flex;
	align-items: stretch;
	flex-direction: column;
	gap: 12px;
	padding: 24px;
	background: var(--ink);
	border-top: 4px solid var(--yellow);
	color: #fff;
}

.product-config-entry__actions > span {
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

@media (max-width: 900px) {
	.config__steps {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.product-config-entry {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 520px) {
	.config__steps {
		grid-template-columns: 1fr;
		gap: 5px;
	}

	.config__step {
		min-height: 48px;
	}

	.config-accessory-set__head,
	.config-accessory-total {
		align-items: flex-start;
		flex-direction: column;
	}

	.config-accessory-set .config__grid--att {
		grid-template-columns: 1fr;
	}

	.product-config-entry__actions {
		padding: 20px;
	}
}

/* At high browser zoom the effective CSS viewport can be below 340px even on
   a normal phone. Stack the brand and controls instead of clipping either. */
@media (max-width: 340px) {
	.topbar__inner {
		justify-content: center;
	}

	.topbar__meta {
		justify-content: center;
		gap: 0;
	}

	.topbar__meta li:nth-child(n + 2) {
		display: none;
	}

	.site-header__inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		justify-items: center;
		gap: 10px;
		min-height: 0;
		padding-block: 12px;
	}

	.site-header__actions {
		justify-self: center;
		margin: 0;
	}

	.site-header .lgcm-logo {
		justify-self: center;
	}

	.stats__list {
		grid-template-columns: minmax(0, 1fr);
		padding-block: 22px;
	}

	.stats__item,
	.stats__item:nth-child(even),
	.stats__item:nth-child(n + 3) {
		padding: 18px 10px;
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.18);
	}

	.stats__item:first-child {
		border-top: 0;
	}
}

/* -------------------------------------------------------------------------
 * 1.3.24 archive card containment
 * Prevent the product grid's intrinsic width from expanding a stacked archive
 * column beyond the viewport on application/category detail pages.
 * ---------------------------------------------------------------------- */

.archive-main {
	min-width: 0;
}

@media (max-width: 1080px) {
	.archive-layout > .filters,
	.archive-main,
	.grid--products {
		width: 100%;
		min-width: 0;
	}
}

/* -------------------------------------------------------------------------
 * 1.3.25 mobile header control alignment
 * Keep both menu SVG states on the button centre line and retain an actually
 * one-pixel assistive label after the legacy span-based burger styles.
 * ---------------------------------------------------------------------- */

.burger {
	align-items: center;
}

.burger > .screen-reader-text {
	width: 1px;
	height: 1px;
	margin: -1px;
	background: transparent;
}

@media (max-width: 1080px) {
	/* Machine-type chips remain swipeable without exposing a desktop-style
	   scrollbar in the mobile header/filter composition. */
	.filters__list {
		padding-bottom: 0;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.filters__list::-webkit-scrollbar {
		display: none;
		width: 0;
		height: 0;
	}
}

/* -------------------------------------------------------------------------
 * 1.4.0 per-machine priced accessory options
 * ---------------------------------------------------------------------- */

.section--accessories {
	background: var(--paper);
	border-block: 1px solid var(--line);
}

.product-accessories__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}

.product-accessories__head .section__sub {
	max-width: 760px;
}

.product-accessories__currency {
	flex: none;
	padding: 8px 12px;
	background: var(--ink);
	border-radius: 999px;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.product-accessories__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
	gap: clamp(28px, 5vw, 64px);
	align-items: start;
	margin-top: 32px;
}

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

.accessory-option {
	position: relative;
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	min-width: 0;
	background: #fff;
	border: 2px solid transparent;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	cursor: pointer;
	transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease), transform 0.18s var(--ease);
}

.accessory-option:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

.accessory-option:has(.accessory-option__input:checked) {
	border-color: var(--red);
}

.accessory-option:has(.accessory-option__input:focus-visible) {
	outline: 3px solid rgba(249, 168, 37, 0.42);
	outline-offset: 2px;
}

.accessory-option__input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.accessory-option__media {
	position: relative;
	display: block;
	min-height: 148px;
	background: linear-gradient(145deg, #fff, #edf0ed);
}

.accessory-option__img,
.accessory-option__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 12px;
	object-fit: contain;
}

.accessory-option__placeholder svg {
	width: 42px;
	height: 42px;
	color: var(--line-2);
}

.accessory-option__body {
	position: relative;
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: 20px 18px 18px;
}

.accessory-option__check {
	position: absolute;
	top: 14px;
	right: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	background: var(--paper);
	border: 1px solid var(--line-2);
	border-radius: 50%;
	color: transparent;
}

.accessory-option__check svg {
	width: 14px;
	height: 14px;
}

.accessory-option__input:checked ~ .accessory-option__body .accessory-option__check {
	background: var(--red);
	border-color: var(--red);
	color: #fff;
}

.accessory-option__name {
	padding-right: 30px;
	color: var(--ink);
	font-family: var(--font-head);
	font-size: 1.04rem;
	line-height: 1.25;
	text-transform: uppercase;
	overflow-wrap: anywhere;
}

.accessory-option__description {
	margin-top: 8px;
	color: var(--muted);
	font-size: 0.84rem;
	line-height: 1.45;
}

.accessory-option__price {
	margin-top: auto;
	padding-top: 16px;
	color: var(--red);
	font-size: 0.95rem;
	font-weight: 800;
}

.product-accessories__summary {
	position: sticky;
	top: calc(var(--header-h) + 24px);
	padding: 28px;
	background: var(--ink);
	border-top: 4px solid var(--yellow);
	border-radius: var(--radius-md);
	color: #fff;
}

.product-accessories__summary h3 {
	margin: 0;
	color: #fff;
	font-family: var(--font-head);
	font-size: 1.25rem;
	text-transform: uppercase;
}

.product-accessories__empty,
.product-accessories__note {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.86rem;
}

.product-accessories__selected {
	margin: 18px 0;
	padding: 0;
	list-style: none;
}

.product-accessories__selected li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.86rem;
}

.product-accessories__selected strong {
	flex: none;
}

.product-accessories__total {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.product-accessories__total span {
	max-width: 15ch;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.product-accessories__total strong {
	color: var(--yellow);
	font-size: 1.35rem;
}

.product-accessories__summary .btn {
	width: 100%;
	margin-top: 14px;
}

.product-accessories__summary .btn--ghost {
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}

@media (max-width: 1080px) {
	.product-accessories__layout {
		grid-template-columns: 1fr;
	}

	.product-accessories__summary {
		position: static;
	}
}

@media (max-width: 720px) {
	.product-accessories__head {
		align-items: flex-start;
	}

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

	.accessory-option {
		grid-template-columns: 108px minmax(0, 1fr);
	}

	.accessory-option__media {
		min-height: 138px;
	}

	.product-accessories__summary {
		padding: 22px 18px;
	}
}

@media (max-width: 380px) {
	.accessory-option {
		grid-template-columns: 1fr;
	}

	.accessory-option__media {
		aspect-ratio: 16 / 9;
		min-height: 0;
	}
}
