.hec-catalogue,
.hec-live-search,
.hec-quote-modal,
.hec-industry-block,
.hec-category-block {
	--hec-bg: #0d1117;
	--hec-surface: rgba(15, 22, 30, 0.88);
	--hec-surface-strong: rgba(20, 28, 38, 0.96);
	--hec-line: rgba(158, 181, 190, 0.18);
	--hec-line-strong: rgba(0, 198, 82, 0.46);
	--hec-text: #f4f8f9;
	--hec-muted: #9eabb2;
	--hec-soft: #cbd7dc;
	--hec-accent: #00c652;
	--hec-accent-strong: #38f58d;
	--hec-blue: #6ea7ff;
	--hec-warning: #f7c86b;
	--hec-radius: 8px;
	--hec-radius-soft: 6px;
	--hec-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
	--hec-card: #121922;
	--hec-card-strong: #161f29;
	--hec-image-bg: #eef1ed;
	--hec-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
	--hec-transition: 180ms var(--hec-ease);
}

.hec-catalogue {
	background:
		linear-gradient(180deg, rgba(18, 28, 36, 0.58), rgba(13, 17, 23, 0.96) 220px),
		var(--hec-bg);
	border: 1px solid rgba(158, 181, 190, 0.1);
	border-radius: var(--hec-radius);
	box-shadow: var(--hec-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.035);
	color: var(--hec-text);
	font-family: inherit;
	overflow: clip;
	padding: clamp(18px, 2.2vw, 28px);
	position: relative;
}

.hec-catalogue *,
.hec-catalogue *::before,
.hec-catalogue *::after,
.hec-live-search *,
.hec-live-search *::before,
.hec-live-search *::after,
.hec-quote-modal *,
.hec-quote-modal *::before,
.hec-quote-modal *::after,
.hec-industry-block *,
.hec-industry-block *::before,
.hec-industry-block *::after,
.hec-category-block *,
.hec-category-block *::before,
.hec-category-block *::after {
	box-sizing: border-box;
}

.hec-catalogue a {
	color: inherit;
}

.hec-live-search {
	color: var(--hec-text);
	font-family: inherit;
	position: relative;
	width: 100%;
	z-index: 20;
}

.hec-live-search a {
	color: inherit;
}

.hec-industry-block {
	color: var(--hec-text);
	font-family: inherit;
	width: 100%;
}

.hec-category-block {
	color: var(--hec-text);
	font-family: inherit;
	width: 100%;
}

.hec-category-block__head {
	margin: 0 0 18px;
	max-width: 760px;
}

.hec-category-block__head h2 {
	color: var(--hec-text);
	font-size: clamp(28px, 3vw, 44px);
	font-weight: 860;
	line-height: 1.05;
	margin: 0 0 8px;
}

.hec-category-block__head p {
	color: var(--hec-soft);
	font-size: clamp(15px, 1.2vw, 18px);
	line-height: 1.5;
	margin: 0;
}

.hec-category-grid {
	display: grid;
	gap: clamp(14px, 1.6vw, 22px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hec-category-card {
	background:
		radial-gradient(circle at 10% 0%, rgba(0, 198, 82, 0.045), transparent 32%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
		var(--hec-card);
	border: 1px solid rgba(158, 181, 190, 0.1);
	border-radius: var(--hec-radius);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.035);
	color: inherit;
	display: grid;
	gap: 18px;
	grid-template-rows: auto 1fr auto;
	min-height: 218px;
	padding: clamp(20px, 2vw, 30px);
	position: relative;
	text-decoration: none;
	transition: background 220ms var(--hec-ease), border-color 220ms var(--hec-ease), box-shadow 220ms var(--hec-ease), transform 220ms var(--hec-ease);
}

.hec-category-card:hover,
.hec-category-card:focus-visible {
	background:
		radial-gradient(circle at 10% 0%, rgba(0, 198, 82, 0.075), transparent 34%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
		var(--hec-card-strong);
	border-color: rgba(0, 198, 82, 0.28);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22), 0 0 26px rgba(0, 198, 82, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.045);
	transform: translateY(-1.5px);
}

.hec-category-card:focus-visible {
	outline: 3px solid rgba(0, 198, 82, 0.76);
	outline-offset: 3px;
}

.hec-category-card__icon {
	color: var(--hec-accent);
	display: inline-flex;
	height: 40px;
	width: 40px;
}

.hec-category-card__icon svg {
	display: block;
	fill: none;
	height: 100%;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 3.2;
	width: 100%;
}

.hec-category-card__body {
	align-self: end;
	display: grid;
	gap: 14px;
}

.hec-category-card__body strong {
	color: #ffffff;
	display: block;
	font-size: clamp(20px, 1.45vw, 27px);
	font-weight: 850;
	line-height: 1.12;
}

.hec-category-card__body em {
	color: rgba(244, 248, 249, 0.86);
	display: block;
	font-size: clamp(14px, 1vw, 16px);
	font-style: normal;
	line-height: 1.48;
}

.hec-category-card__action {
	align-items: center;
	color: var(--hec-accent);
	display: inline-flex;
	font-size: 14px;
	font-weight: 760;
	gap: 8px;
	justify-self: end;
	line-height: 1;
	transition: color var(--hec-transition), transform var(--hec-transition);
}

.hec-category-card__action::after,
.hec-category-card--full-range span::after {
	border-right: 3px solid currentColor;
	border-top: 3px solid currentColor;
	content: "";
	display: inline-block;
	height: 8px;
	transform: rotate(45deg);
	width: 8px;
}

.hec-category-card:hover .hec-category-card__action,
.hec-category-card:focus-visible .hec-category-card__action {
	color: var(--hec-accent-strong);
	transform: translateX(2px);
}

.hec-category-card--full-range {
	align-items: center;
	background: linear-gradient(135deg, #00b94d, #00c652);
	border-color: rgba(0, 198, 82, 0.52);
	box-shadow: 0 20px 46px rgba(0, 198, 82, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	display: flex;
	justify-content: center;
}

.hec-category-card--full-range:hover,
.hec-category-card--full-range:focus-visible {
	background: linear-gradient(135deg, #00c652, #19e875);
	border-color: rgba(56, 245, 141, 0.72);
	box-shadow: 0 22px 54px rgba(0, 198, 82, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.hec-category-card--full-range span {
	align-items: center;
	color: #ecfff6;
	display: inline-flex;
	font-size: clamp(22px, 1.9vw, 32px);
	font-weight: 860;
	gap: 16px;
	line-height: 1.12;
	text-align: center;
}

.hec-category-card--full-range span::after {
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8H12M12 8L8.5 4.5M12 8L8.5 11.5' stroke='%2300B94D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 16px 16px no-repeat,
		rgba(255, 255, 255, 0.92);
	border: 0;
	border-radius: 50%;
	box-sizing: border-box;
	height: 30px;
	width: 30px;
}

.hec-industry-block__head {
	margin: 0 0 18px;
	max-width: 760px;
}

.hec-industry-block__head h2 {
	color: var(--hec-text);
	font-size: clamp(28px, 3.2vw, 48px);
	font-weight: 860;
	line-height: 1.02;
	margin: 0 0 8px;
}

.hec-industry-block__head p {
	color: var(--hec-soft);
	font-size: clamp(15px, 1.3vw, 18px);
	line-height: 1.5;
	margin: 0;
}

.hec-industry-grid {
	background: rgba(158, 181, 190, 0.14);
	border: 1px solid rgba(158, 181, 190, 0.18);
	border-radius: var(--hec-radius);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.035);
	display: grid;
	gap: 1px;
	grid-auto-flow: dense;
	grid-auto-rows: minmax(172px, 16vw);
	grid-template-columns: repeat(12, minmax(0, 1fr));
	overflow: hidden;
}

.hec-industry-tile {
	align-items: flex-end;
	background-color: #111820;
	background-image:
		linear-gradient(180deg, rgba(7, 11, 16, 0.08), rgba(7, 11, 16, 0.82)),
		var(--hec-industry-image, linear-gradient(135deg, rgba(0, 198, 82, 0.16), rgba(110, 167, 255, 0.1))),
		linear-gradient(135deg, #17212b, #0d1117);
	background-position: center;
	background-size: cover;
	color: inherit;
	display: flex;
	grid-column: span 4;
	min-height: 190px;
	overflow: hidden;
	padding: clamp(18px, 2.1vw, 30px);
	position: relative;
	text-decoration: none;
	transition: filter 220ms var(--hec-ease), transform 220ms var(--hec-ease), box-shadow 220ms var(--hec-ease);
}

.hec-industry-tile::after {
	background: linear-gradient(90deg, rgba(0, 198, 82, 0), rgba(0, 198, 82, 0.9), rgba(0, 198, 82, 0));
	bottom: 0;
	content: "";
	height: 2px;
	left: 22px;
	opacity: 0;
	position: absolute;
	right: 22px;
	transform: scaleX(0.55);
	transition: opacity 220ms var(--hec-ease), transform 220ms var(--hec-ease);
	z-index: 2;
}

.hec-industry-tile__shade {
	background:
		radial-gradient(circle at 80% 12%, rgba(0, 198, 82, 0.18), transparent 28%),
		linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.36));
	inset: 0;
	opacity: 0.74;
	position: absolute;
	transition: opacity 220ms var(--hec-ease);
	z-index: 0;
}

.hec-industry-tile__content {
	display: grid;
	gap: 7px;
	position: relative;
	z-index: 1;
}

.hec-industry-tile__content span {
	color: var(--hec-accent-strong);
	font-size: 11px;
	font-weight: 820;
	line-height: 1;
	text-transform: uppercase;
}

.hec-industry-tile__content strong {
	color: #ffffff;
	font-size: clamp(28px, 3vw, 54px);
	font-weight: 920;
	letter-spacing: 0;
	line-height: 0.96;
	text-transform: uppercase;
	text-shadow: 0 5px 24px rgba(0, 0, 0, 0.5);
}

.hec-industry-tile__content em {
	color: rgba(244, 248, 249, 0.8);
	font-size: 13px;
	font-style: normal;
	font-weight: 760;
	line-height: 1.2;
	opacity: 0;
	transform: translateY(4px);
	transition: opacity 220ms var(--hec-ease), transform 220ms var(--hec-ease);
}

.hec-industry-tile:hover,
.hec-industry-tile:focus-visible {
	box-shadow: inset 0 0 0 1px rgba(0, 198, 82, 0.5), 0 18px 44px rgba(0, 0, 0, 0.28);
	filter: brightness(1.06) contrast(1.03);
	transform: translateY(-1px);
	z-index: 3;
}

.hec-industry-tile:hover::after,
.hec-industry-tile:focus-visible::after {
	opacity: 1;
	transform: scaleX(1);
}

.hec-industry-tile:hover .hec-industry-tile__shade,
.hec-industry-tile:focus-visible .hec-industry-tile__shade {
	opacity: 0.92;
}

.hec-industry-tile:hover .hec-industry-tile__content em,
.hec-industry-tile:focus-visible .hec-industry-tile__content em {
	opacity: 1;
	transform: translateY(0);
}

.hec-industry-tile:focus-visible {
	outline: 3px solid rgba(0, 198, 82, 0.78);
	outline-offset: -3px;
}

.hec-industry-tile--agriculture {
	grid-column: 1 / 7;
	grid-row: 1 / span 2;
}

.hec-industry-tile--construction {
	grid-column: 7 / 13;
	grid-row: 1;
}

.hec-industry-tile--manufacturing {
	grid-column: 7 / 13;
	grid-row: 2;
}

.hec-industry-tile--mining {
	grid-column: 1 / 6;
	grid-row: 3;
}

.hec-industry-tile--energy {
	grid-column: 1 / 6;
	grid-row: 4;
}

.hec-industry-tile--marine-offshore {
	grid-column: 6 / 13;
	grid-row: 3 / span 2;
}

.hec-live-search__box {
	align-items: center;
	background: rgba(21, 29, 38, 0.96);
	border: 1px solid rgba(158, 181, 190, 0.22);
	border-radius: var(--hec-radius);
	box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
	display: flex;
	min-height: 58px;
	padding: 0 18px;
	transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hec-live-search__box:focus-within {
	background: rgba(24, 34, 44, 0.98);
	border-color: var(--hec-line-strong);
	box-shadow: 0 0 0 3px rgba(0, 198, 82, 0.14), 0 18px 48px rgba(0, 0, 0, 0.28);
}

.hec-live-search__box input {
	background: transparent;
	border: 0;
	color: var(--hec-text);
	font: inherit;
	font-size: 16px;
	font-weight: 600;
	outline: 0;
	width: 100%;
}

.hec-live-search__box input::placeholder {
	color: rgba(203, 215, 220, 0.58);
}

.hec-live-search__panel {
	background:
		linear-gradient(145deg, rgba(18, 28, 38, 0.98), rgba(8, 13, 19, 0.98)),
		#0d1117;
	border: 1px solid rgba(158, 181, 190, 0.2);
	border-radius: var(--hec-radius);
	box-shadow: 0 24px 72px rgba(0, 0, 0, 0.44), 0 0 28px rgba(0, 198, 82, 0.08);
	left: 0;
	margin-top: 10px;
	max-height: min(620px, 70vh);
	overflow: auto;
	padding: 10px;
	position: absolute;
	right: 0;
	top: 100%;
}

.hec-live-search__panel[hidden] {
	display: none;
}

.hec-live-search__meta,
.hec-live-search__empty {
	color: var(--hec-muted);
	font-size: 13px;
	line-height: 1.45;
	padding: 10px 12px;
}

.hec-live-search__results {
	display: grid;
	gap: 8px;
}

.hec-live-result {
	align-items: center;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(158, 181, 190, 0.14);
	border-radius: var(--hec-radius);
	display: grid;
	gap: 14px;
	grid-template-columns: 76px minmax(0, 1fr) minmax(130px, 168px);
	padding: 12px;
	transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.hec-live-result[hidden] {
	display: none;
}

.hec-live-result:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(0, 198, 82, 0.3);
	transform: translateY(-1px);
}

.hec-live-result__media {
	align-items: center;
	aspect-ratio: 1 / 1;
	background: #f4f5f1;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: var(--hec-radius);
	display: flex;
	justify-content: center;
	padding: 8px;
}

.hec-live-result__media img {
	display: block;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.hec-live-result__media span {
	background: #0d1a21;
	border: 1px solid rgba(0, 198, 82, 0.32);
	border-radius: 6px;
	color: var(--hec-accent-strong);
	font-size: 16px;
	font-weight: 900;
	padding: 8px;
}

.hec-live-result__body {
	min-width: 0;
}

.hec-live-result__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 6px;
}

.hec-live-result__tags span {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(158, 181, 190, 0.16);
	border-radius: 999px;
	color: var(--hec-soft);
	font-size: 10px;
	font-weight: 800;
	line-height: 1.2;
	padding: 4px 7px;
	text-transform: uppercase;
}

.hec-live-result h4 {
	color: var(--hec-text);
	font-size: 17px;
	line-height: 1.15;
	margin: 0 0 5px;
	overflow-wrap: anywhere;
}

.hec-live-result h4 strong {
	color: var(--hec-accent);
	margin-right: 6px;
}

.hec-live-result p {
	color: var(--hec-soft);
	font-size: 13px;
	line-height: 1.35;
	margin: 0;
}

.hec-live-result__specs {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 12px;
	margin: 8px 0 0;
}

.hec-live-result__specs div {
	display: flex;
	gap: 5px;
}

.hec-live-result__specs dt {
	color: var(--hec-muted);
	font-size: 10px;
	font-weight: 800;
	margin: 0;
	text-transform: uppercase;
}

.hec-live-result__specs dd {
	color: var(--hec-text);
	font-size: 11px;
	font-weight: 800;
	margin: 0;
}

.hec-live-result__actions {
	display: grid;
	gap: 7px;
}

.hec-catalogue__topbar {
	align-items: center;
	display: flex;
	gap: 12px;
	margin-bottom: 22px;
}

.hec-search {
	align-items: center;
	background: rgba(18, 27, 36, 0.86);
	border: 1px solid rgba(158, 181, 190, 0.18);
	border-radius: var(--hec-radius);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
	display: flex;
	flex: 1;
	min-height: 60px;
	padding: 0 18px;
	transition: border-color var(--hec-transition), box-shadow var(--hec-transition), background var(--hec-transition);
}

.hec-search:focus-within {
	background: rgba(22, 33, 43, 0.94);
	border-color: var(--hec-line-strong);
	box-shadow: 0 0 0 3px rgba(0, 198, 82, 0.13), 0 16px 38px rgba(0, 0, 0, 0.18);
}

.hec-search__icon {
	border: 2px solid var(--hec-accent);
	border-radius: 50%;
	display: inline-block;
	height: 17px;
	margin-right: 14px;
	position: relative;
	width: 17px;
}

.hec-search__icon::after {
	background: var(--hec-accent);
	content: "";
	display: block;
	height: 2px;
	position: absolute;
	right: -7px;
	top: 11px;
	transform: rotate(45deg);
	width: 8px;
}

.hec-search input,
.hec-filter-control select,
.hec-quote-form input,
.hec-quote-form select,
.hec-quote-form textarea {
	background: transparent;
	border: 0;
	color: var(--hec-text);
	font: inherit;
	outline: 0;
	width: 100%;
}

.hec-search input::placeholder,
.hec-quote-form input::placeholder,
.hec-quote-form textarea::placeholder {
	color: rgba(203, 215, 220, 0.52);
}

.hec-filter-toggle {
	background: rgba(0, 198, 82, 0.1);
	border: 1px solid var(--hec-line-strong);
	border-radius: var(--hec-radius);
	color: var(--hec-accent-strong);
	cursor: pointer;
	display: none;
	font: inherit;
	font-weight: 700;
	min-height: 44px;
	padding: 0 14px;
	transition: background var(--hec-transition), border-color var(--hec-transition), transform var(--hec-transition);
}

.hec-filter-toggle:hover {
	background: rgba(0, 198, 82, 0.14);
	transform: translateY(-0.75px);
}

.hec-filter-toggle__count {
	align-items: center;
	background: var(--hec-accent);
	border-radius: 999px;
	color: #04100d;
	display: inline-flex;
	font-size: 11px;
	font-weight: 900;
	height: 20px;
	justify-content: center;
	line-height: 1;
	min-width: 20px;
	padding: 0 6px;
}

.hec-filter-toggle__count[hidden],
.hec-filter-scrim[hidden] {
	display: none;
}

.hec-filter-scrim {
	display: none;
}

.hec-catalogue__layout {
	align-items: flex-start;
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(228px, 268px) minmax(0, 1fr);
}

.hec-catalogue--search .hec-catalogue__layout,
.hec-catalogue--featured .hec-catalogue__layout {
	display: block;
}

.hec-filters {
	backdrop-filter: blur(18px);
	background:
		linear-gradient(180deg, rgba(18, 28, 37, 0.96), rgba(9, 18, 24, 0.92)),
		var(--hec-bg);
	border: 1px solid rgba(158, 181, 190, 0.18);
	border-radius: var(--hec-radius);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.035);
	padding: 20px;
	position: sticky;
	top: 24px;
}

.hec-filters__head {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 18px;
}

.hec-filters__head-actions {
	align-items: center;
	display: flex;
	gap: 12px;
}

.hec-filters__head strong {
	font-size: 13px;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hec-filters__head button,
.hec-link-btn {
	background: transparent;
	border: 0;
	color: var(--hec-accent);
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	padding: 0;
	text-align: left;
	transition: color var(--hec-transition), opacity var(--hec-transition);
}

.hec-filters__head button:hover {
	color: var(--hec-accent-strong);
}

.hec-filters__close {
	display: none;
	height: 32px;
	position: relative;
	width: 32px;
}

.hec-filters__close::before,
.hec-filters__close::after {
	background: currentColor;
	border-radius: 999px;
	content: "";
	height: 2px;
	left: 8px;
	position: absolute;
	top: 15px;
	width: 16px;
}

.hec-filters__close::before {
	transform: rotate(45deg);
}

.hec-filters__close::after {
	transform: rotate(-45deg);
}

.hec-filter-control {
	display: block;
	margin: 0 0 18px;
}

.hec-filter-control span,
.hec-quote-form label span {
	color: rgba(203, 215, 220, 0.72);
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.hec-filter-control select,
.hec-quote-form input,
.hec-quote-form select,
.hec-quote-form textarea {
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(158, 181, 190, 0.2);
	border-radius: var(--hec-radius);
	min-height: 42px;
	padding: 10px 12px;
	transition: border-color var(--hec-transition), box-shadow var(--hec-transition), background var(--hec-transition);
}

.hec-filter-control select {
	-webkit-appearance: none;
	appearance: none;
	-moz-appearance: none;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23F4F8F9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 20px center / 20px 20px no-repeat,
		linear-gradient(135deg, #17212b, #111820);
	border-color: rgba(158, 181, 190, 0.24);
	color-scheme: dark;
	color: var(--hec-text);
	cursor: pointer;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	min-height: 52px;
	padding: 13px 46px 13px 18px;
}

.hec-filter-control select:hover {
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23F4F8F9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 20px center / 20px 20px no-repeat,
		linear-gradient(135deg, #1b2732, #141d26);
	border-color: rgba(158, 181, 190, 0.34);
}

.hec-filter-control select::-ms-expand {
	display: none;
}

.hec-filter-control select option {
	background: #111820;
	color: #f4f8f9;
	font-size: 16px;
	padding: 12px 18px;
}

.hec-filter-control select option:checked {
	background: #00c652;
	color: #06110a;
}

.hec-quote-form select {
	-webkit-appearance: none;
	appearance: none;
	-moz-appearance: none;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23F4F8F9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 16px center / 18px 18px no-repeat,
		linear-gradient(135deg, #17212b, #111820);
	color: var(--hec-text);
	color-scheme: dark;
	cursor: pointer;
	font-weight: 700;
	padding-right: 44px;
}

.hec-quote-form select option {
	background: #111820;
	color: #f4f8f9;
	font-size: 15px;
	padding: 10px 14px;
}

.hec-quote-form select option:checked {
	background: #00c652;
	color: #06110a;
}

.hec-filter-control select:focus,
.hec-quote-form input:focus,
.hec-quote-form select:focus,
.hec-quote-form textarea:focus {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--hec-line-strong);
	box-shadow: 0 0 0 3px rgba(0, 198, 82, 0.13);
}

.hec-filter-control select:focus {
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23F4F8F9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 20px center / 20px 20px no-repeat,
		linear-gradient(135deg, #18222c, #121b24);
}

.hec-quote-form select:focus {
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23F4F8F9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 16px center / 18px 18px no-repeat,
		linear-gradient(135deg, #18222c, #121b24);
}

.hec-results {
	align-items: stretch;
	display: flex;
	flex-direction: column;
	gap: 30px;
	min-width: 0;
}

.hec-family-group {
	display: flex;
	flex-direction: column;
	margin-bottom: 0;
	min-width: 0;
}

.hec-family-group:last-child {
	margin-bottom: 0;
}

.hec-family-group__head {
	align-items: center;
	border-bottom: 1px solid rgba(158, 181, 190, 0.11);
	display: flex;
	justify-content: space-between;
	margin-bottom: 14px;
	padding: 0 2px 10px;
}

.hec-family-group__head span {
	color: var(--hec-accent);
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0;
	margin-bottom: 3px;
	text-transform: uppercase;
}

.hec-family-group__head h3 {
	color: var(--hec-text);
	font-size: clamp(18px, 1.35vw, 21px);
	font-weight: 760;
	line-height: 1.15;
	margin: 0;
}

.hec-family-group__head p {
	color: rgba(203, 215, 220, 0.68);
	font-size: 12px;
	font-weight: 650;
	line-height: 1.35;
	margin: 5px 0 0;
	max-width: 720px;
}

.hec-family-group__head strong {
	align-items: center;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(158, 181, 190, 0.16);
	border-radius: 999px;
	color: var(--hec-soft);
	display: inline-flex;
	font-size: 12px;
	height: 28px;
	justify-content: center;
	min-width: 28px;
	padding: 0 10px;
}

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

.hec-product-card {
	background:
		radial-gradient(circle at 18% 0%, rgba(0, 198, 82, 0.055), transparent 34%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.025)),
		var(--hec-card);
	border: 1px solid rgba(158, 181, 190, 0.18);
	border-radius: var(--hec-radius);
	box-shadow:
		0 10px 24px rgba(0, 0, 0, 0.16),
		inset 0 1px 0 rgba(255, 255, 255, 0.045),
		inset 0 -1px 0 rgba(0, 0, 0, 0.18);
	contain: layout paint;
	cursor: pointer;
	height: 100%;
	overflow: clip;
	position: relative;
	transition: border-color 120ms var(--hec-ease);
}

.hec-product-card::before {
	background: linear-gradient(145deg, rgba(0, 198, 82, 0.055), rgba(255, 255, 255, 0.018));
	content: "";
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transition: opacity 140ms var(--hec-ease);
	z-index: 0;
}

.hec-product-card > * {
	position: relative;
	z-index: 1;
}

@supports (content-visibility: auto) {
	.hec-product-card,
	.hec-category-card,
	.hec-industry-tile {
		content-visibility: auto;
	}

	.hec-product-card {
		contain-intrinsic-size: 260px;
	}

	.hec-category-card,
	.hec-industry-tile {
		contain-intrinsic-size: 220px;
	}
}

.hec-product-card:hover {
	border-color: rgba(0, 198, 82, 0.34);
}

.hec-product-card:hover::before,
.hec-product-card.is-specs-open::before {
	opacity: 1;
}

.hec-product-card.is-specs-open {
	border-color: rgba(0, 198, 82, 0.34);
}

.hec-product-card a,
.hec-product-card button {
	cursor: pointer;
}

.hec-product-card .hec-btn:hover {
	transform: none;
}

.hec-product-card .hec-btn--primary:hover,
.hec-product-card .hec-btn--quote-list:hover,
.hec-product-card .hec-btn--quote-list.is-added,
.hec-product-card .hec-btn--secondary:hover {
	box-shadow: none;
	filter: none;
}

.hec-spec-drawer {
	cursor: auto;
}

.hec-product-card__main {
	align-items: center;
	display: grid;
	gap: 18px;
	grid-template-columns: 132px minmax(0, 1fr) minmax(158px, 174px);
	min-height: 242px;
	padding: 18px;
}

.hec-product-card__media {
	align-self: start;
	min-height: 132px;
}

.hec-product-card__image {
	aspect-ratio: 1 / 1;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(226, 231, 225, 0.96)),
		var(--hec-image-bg);
	border: 1px solid rgba(255, 255, 255, 0.38);
	border-radius: var(--hec-radius-soft);
	box-shadow:
		inset 0 0 0 1px rgba(13, 17, 23, 0.06),
		inset 0 -18px 34px rgba(13, 17, 23, 0.045),
		0 10px 24px rgba(0, 0, 0, 0.14);
	display: block;
	height: auto;
	max-width: 100%;
	object-fit: contain;
	padding: 9px;
	transition: border-color 140ms var(--hec-ease);
	width: 100%;
}

.hec-product-card:hover .hec-product-card__image {
	border-color: rgba(0, 198, 82, 0.22);
}

.hec-product-card__placeholder {
	aspect-ratio: 1 / 1;
	background: linear-gradient(145deg, rgba(110, 167, 255, 0.12), rgba(0, 198, 82, 0.11));
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--hec-radius-soft);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 10px 24px rgba(0, 0, 0, 0.12);
	display: block;
	height: auto;
	max-width: 100%;
	padding: 12px;
	transition: border-color 140ms var(--hec-ease);
	width: 100%;
}

.hec-product-card__placeholder {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 0;
	position: relative;
}

.hec-product-card__placeholder::before,
.hec-product-card__placeholder::after {
	background: rgba(0, 198, 82, 0.36);
	content: "";
	position: absolute;
}

.hec-product-card__placeholder::before {
	height: 1px;
	left: 18%;
	right: 18%;
	top: 50%;
}

.hec-product-card__placeholder::after {
	bottom: 18%;
	left: 50%;
	top: 18%;
	width: 1px;
}

.hec-product-card__placeholder span {
	background: #0d1a21;
	border: 1px solid rgba(0, 198, 82, 0.32);
	border-radius: var(--hec-radius);
	color: var(--hec-accent-strong);
	font-size: 22px;
	font-weight: 800;
	line-height: 1;
	max-width: calc(100% - 20px);
	overflow-wrap: anywhere;
	padding: 10px;
	position: relative;
	z-index: 1;
}

.hec-product-card:hover .hec-product-card__placeholder {
	border-color: rgba(0, 198, 82, 0.28);
}

.hec-product-card__body {
	align-self: stretch;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding-top: 0;
}

.hec-product-card__subcategory {
	color: rgba(203, 215, 220, 0.76);
	display: grid;
	gap: 2px;
	margin-bottom: 9px;
}

.hec-product-card__subcategory span {
	color: var(--hec-accent);
	font-size: 10px;
	font-weight: 760;
	line-height: 1.15;
	text-transform: uppercase;
}

.hec-product-card__subcategory strong {
	color: #ffffff;
	font-size: 13px;
	font-weight: 820;
	line-height: 1.2;
}

.hec-product-card__eyebrow {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 9px;
}

.hec-product-card__eyebrow span,
.hec-product-card__labels span {
	background: rgba(255, 255, 255, 0.052);
	border: 1px solid rgba(158, 181, 190, 0.18);
	border-radius: 999px;
	color: rgba(203, 215, 220, 0.82);
	font-size: 10px;
	font-weight: 760;
	letter-spacing: 0;
	line-height: 1.2;
	padding: 4px 7px;
	text-transform: uppercase;
}

.hec-product-card h4 {
	color: var(--hec-text);
	font-size: clamp(20px, 1.36vw, 24px);
	font-weight: 820;
	line-height: 1.14;
	margin: 0 0 9px;
	overflow-wrap: anywhere;
}

.hec-product-card h4 span {
	color: var(--hec-accent-strong);
	display: inline-block;
	font-weight: 900;
	margin-right: 8px;
}

.hec-product-card p {
	color: rgba(203, 215, 220, 0.84);
	font-size: 13.5px;
	line-height: 1.5;
	margin: 0 0 13px;
}

.hec-product-card__labels {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 11px;
}

.hec-product-card__aside {
	align-self: stretch;
	border-left: 1px solid rgba(158, 181, 190, 0.12);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 18px;
}

.hec-summary-specs {
	display: grid;
	gap: 0 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
	width: 100%;
}

.hec-summary-specs div {
	border-top: 1px solid rgba(158, 181, 190, 0.11);
	display: grid;
	gap: 4px;
	min-width: 0;
	padding: 7px 0;
}

.hec-summary-specs dt {
	color: rgba(158, 171, 178, 0.78);
	font-size: 9.5px;
	font-weight: 760;
	line-height: 1.15;
	margin: 0;
	text-transform: uppercase;
}

.hec-summary-specs dd {
	color: #ffffff;
	font-size: 12.5px;
	font-weight: 860;
	line-height: 1.25;
	margin: 0;
	overflow-wrap: anywhere;
	text-align: left;
}

.hec-product-card__variant {
	border-top: 1px solid rgba(158, 181, 190, 0.11);
	display: grid;
	gap: 6px;
	margin-top: 9px;
	padding-top: 10px;
}

.hec-product-card__variant span {
	color: rgba(158, 171, 178, 0.82);
	font-size: 9.5px;
	font-weight: 760;
	line-height: 1.15;
	text-transform: uppercase;
}

.hec-product-card__variant select {
	-webkit-appearance: none;
	appearance: none;
	-moz-appearance: none;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23F4F8F9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 11px center / 17px 17px no-repeat,
		linear-gradient(135deg, rgba(23, 33, 43, 0.96), rgba(17, 24, 32, 0.96));
	border: 1px solid rgba(158, 181, 190, 0.2);
	border-radius: var(--hec-radius-soft);
	color: var(--hec-text);
	color-scheme: dark;
	cursor: pointer;
	font: inherit;
	font-size: 12px;
	font-weight: 760;
	line-height: 1.25;
	min-height: 34px;
	padding: 8px 34px 8px 10px;
	transition: border-color var(--hec-transition), box-shadow var(--hec-transition), background var(--hec-transition);
	width: 100%;
}

.hec-product-card__variant select:hover {
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23F4F8F9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 11px center / 17px 17px no-repeat,
		linear-gradient(135deg, rgba(27, 39, 50, 0.98), rgba(20, 29, 38, 0.98));
	border-color: rgba(0, 198, 82, 0.28);
}

.hec-product-card__variant select:focus,
.hec-product-card__variant select.is-error {
	border-color: rgba(0, 198, 82, 0.55);
	box-shadow: 0 0 0 3px rgba(0, 198, 82, 0.13);
	outline: none;
}

.hec-product-card__variant select option {
	background: #111820;
	color: #f4f8f9;
}

.hec-product-card__variant select option:checked {
	background: #00c652;
	color: #06110a;
}

.hec-product-card__variant-message {
	background: rgba(0, 198, 82, 0.1);
	border: 1px solid rgba(0, 198, 82, 0.34);
	border-radius: var(--hec-radius-soft);
	color: var(--hec-accent-strong);
	display: block;
	font-size: 11px;
	font-weight: 740;
	line-height: 1.35;
	padding: 8px 10px;
}

.hec-product-card__variant-message[hidden] {
	display: none;
}

.hec-product-card__actions {
	display: flex;
	flex-direction: column;
	gap: 7px;
	width: 100%;
}

.hec-btn,
.hec-link-btn {
	border-radius: var(--hec-radius);
	min-height: 36px;
	text-decoration: none;
}

.hec-btn {
	align-items: center;
	border: 1px solid transparent;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 12.5px;
	font-weight: 800;
	justify-content: center;
	line-height: 1.2;
	padding: 9px 12px;
	text-align: center;
	transition: border-color var(--hec-transition), box-shadow var(--hec-transition), transform var(--hec-transition), background var(--hec-transition), filter var(--hec-transition);
	width: 100%;
}

.hec-btn:hover {
	transform: translateY(-0.75px);
}

.hec-btn:focus-visible,
.hec-link-btn:focus-visible,
.hec-product-card__links a:focus-visible,
.hec-product-card__variant select:focus-visible,
.hec-filter-control select:focus-visible {
	outline: 2px solid rgba(0, 198, 82, 0.72);
	outline-offset: 2px;
}

.hec-btn--primary {
	background: linear-gradient(135deg, #00c652, #22df73);
	box-shadow: 0 8px 20px rgba(0, 198, 82, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.24);
	color: #04100d;
}

.hec-btn--primary:hover {
	box-shadow: 0 10px 26px rgba(0, 198, 82, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.3);
	filter: brightness(1.035);
}

.hec-btn--secondary {
	background: rgba(19, 32, 45, 0.82);
	border-color: rgba(110, 167, 255, 0.24);
	color: #dbe9ff;
}

.hec-btn--secondary:hover {
	background: rgba(27, 45, 63, 0.94);
	border-color: rgba(110, 167, 255, 0.42);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.hec-btn--quote-list {
	background: rgba(0, 198, 82, 0.065);
	border-color: rgba(0, 198, 82, 0.22);
	color: var(--hec-accent-strong);
}

.hec-btn--quote-list:hover,
.hec-btn--quote-list.is-added {
	background: rgba(0, 198, 82, 0.12);
	border-color: rgba(0, 198, 82, 0.38);
	box-shadow: 0 8px 20px rgba(0, 198, 82, 0.12);
}

.hec-btn--ghost,
.hec-link-btn {
	background: rgba(255, 255, 255, 0.028);
	border: 1px solid rgba(158, 181, 190, 0.16);
	color: var(--hec-accent);
	font-size: 12.5px;
	justify-content: center;
	padding: 9px 12px;
	text-align: center;
}

.hec-btn--ghost:hover,
.hec-link-btn:hover {
	background: rgba(0, 198, 82, 0.08);
	border-color: rgba(0, 198, 82, 0.28);
}

.hec-product-card__links,
.hec-spec-drawer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 11px;
	justify-content: center;
	padding-top: 3px;
}

.hec-product-card__links a,
.hec-spec-drawer__links a {
	align-items: center;
	color: rgba(203, 215, 220, 0.76);
	display: inline-flex;
	font-size: 11px;
	font-weight: 700;
	gap: 5px;
	line-height: 1.2;
	text-decoration: none;
	transition: color var(--hec-transition), opacity var(--hec-transition);
}

.hec-product-card__links a::before {
	border: 1.5px solid currentColor;
	border-radius: 1.5px;
	content: "";
	display: inline-block;
	height: 11px;
	opacity: 0.7;
	position: relative;
	width: 8px;
}

.hec-product-card__links a:hover,
.hec-spec-drawer__links a:hover {
	color: var(--hec-accent);
	opacity: 1;
}

.hec-spec-drawer {
	background: rgba(2, 9, 13, 0.38);
	border-top: 1px solid var(--hec-line);
	max-height: 900px;
	overflow: hidden;
	transition: max-height 220ms ease, opacity 180ms ease;
}

.hec-spec-drawer[hidden] {
	display: block;
	max-height: 0;
	opacity: 0;
	pointer-events: none;
}

.hec-spec-drawer__grid {
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.8fr);
	padding: 18px;
}

.hec-spec-drawer h5 {
	color: var(--hec-text);
	font-size: 13px;
	letter-spacing: 0;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.hec-table-wrap {
	border: 1px solid var(--hec-line);
	border-radius: var(--hec-radius);
	overflow: auto;
}

.hec-tech-table__filter-note {
	background: rgba(0, 198, 82, 0.08);
	border-bottom: 1px solid rgba(0, 198, 82, 0.18);
	color: var(--hec-accent-strong);
	font-size: 12px;
	font-weight: 760;
	line-height: 1.35;
	margin: 0;
	padding: 10px 12px;
}

.hec-tech-table__filter-note[hidden],
.hec-tech-table tr[hidden] {
	display: none;
}

.hec-tech-table {
	border-collapse: collapse;
	font-size: 13px;
	min-width: 480px;
	width: 100%;
}

.hec-tech-table th,
.hec-tech-table td {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding: 11px 12px;
	text-align: left;
	white-space: nowrap;
}

.hec-tech-table th {
	background: rgba(0, 198, 82, 0.1);
	color: var(--hec-accent-strong);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.hec-tech-table td {
	color: var(--hec-soft);
}

.hec-tech-table tr:last-child td {
	border-bottom: 0;
}

.hec-muted,
.hec-empty {
	color: var(--hec-muted);
}

.hec-empty {
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid var(--hec-line);
	border-radius: var(--hec-radius);
	grid-column: 1 / -1;
	padding: 18px;
	text-align: center;
}

.hec-quote-tray {
	align-items: center;
	backdrop-filter: blur(18px);
	background:
		linear-gradient(145deg, rgba(18, 30, 39, 0.96), rgba(7, 14, 18, 0.96)),
		var(--hec-bg);
	border: 1px solid rgba(0, 198, 82, 0.34);
	border-radius: var(--hec-radius);
	bottom: 18px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44), 0 0 26px rgba(0, 198, 82, 0.1);
	color: var(--hec-text);
	display: flex;
	font-family: inherit;
	gap: 18px;
	justify-content: space-between;
	max-width: min(520px, calc(100vw - 36px));
	padding: 14px;
	position: fixed;
	right: 18px;
	z-index: 99970;
}

.hec-quote-tray[hidden] {
	display: none;
}

.hec-quote-tray strong {
	color: var(--hec-text);
	display: block;
	font-size: 14px;
	font-weight: 850;
	line-height: 1.2;
	margin-bottom: 3px;
}

.hec-quote-tray span {
	color: var(--hec-muted);
	font-size: 12px;
	line-height: 1.3;
}

.hec-quote-tray__actions {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	gap: 8px;
}

.hec-quote-tray .hec-btn {
	min-height: 34px;
	padding: 8px 12px;
	white-space: nowrap;
}

.hec-quote-tray .hec-link-btn {
	min-height: 34px;
	padding: 8px 10px;
}

.hec-quote-modal {
	align-items: center;
	display: flex;
	font-family: inherit;
	inset: 0;
	justify-content: center;
	padding: 18px;
	position: fixed;
	z-index: 99999;
}

.hec-quote-modal[hidden] {
	display: none;
}

.hec-quote-modal__backdrop {
	backdrop-filter: blur(8px);
	background: rgba(0, 0, 0, 0.74);
	inset: 0;
	position: fixed;
}

.hec-quote-modal__panel {
	background:
		linear-gradient(145deg, rgba(18, 28, 38, 0.98), rgba(8, 13, 19, 0.98)),
		#0d1117;
	border: 1px solid rgba(0, 198, 82, 0.3);
	border-radius: var(--hec-radius);
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58), 0 0 36px rgba(0, 198, 82, 0.1);
	color: var(--hec-text);
	max-height: min(840px, calc(100vh - 36px));
	max-width: 920px;
	overflow: auto;
	padding: clamp(18px, 2.2vw, 26px);
	position: relative;
	width: min(920px, calc(100vw - 36px));
}

.hec-quote-modal__head {
	align-items: flex-start;
	display: flex;
	justify-content: space-between;
	margin-bottom: 16px;
}

.hec-quote-modal__head span {
	color: var(--hec-accent);
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.hec-quote-modal__head h3 {
	color: var(--hec-text);
	font-size: 26px;
	line-height: 1.1;
	margin: 0 0 6px;
}

.hec-quote-modal__head p {
	color: var(--hec-muted);
	font-size: 14px;
	line-height: 1.45;
	margin: 0;
	max-width: 620px;
}

.hec-quote-modal__close {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--hec-line);
	border-radius: var(--hec-radius);
	cursor: pointer;
	height: 38px;
	position: relative;
	width: 38px;
}

.hec-quote-modal__close::before,
.hec-quote-modal__close::after {
	background: var(--hec-soft);
	content: "";
	height: 2px;
	left: 10px;
	position: absolute;
	top: 18px;
	width: 16px;
}

.hec-quote-modal__close::before {
	transform: rotate(45deg);
}

.hec-quote-modal__close::after {
	transform: rotate(-45deg);
}

.hec-quote-form {
	display: grid;
	gap: 16px;
}

.hec-quote-product {
	align-items: center;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(158, 181, 190, 0.16);
	border-radius: var(--hec-radius);
	display: grid;
	gap: 14px;
	grid-template-columns: 96px minmax(0, 1fr);
	padding: 14px;
}

.hec-quote-product.is-general {
	grid-template-columns: 1fr;
}

.hec-quote-product__media {
	align-self: start;
	background: #f4f5f1;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--hec-radius);
	padding: 10px;
}

.hec-quote-product__media img {
	aspect-ratio: 1 / 1;
	display: block;
	height: auto;
	object-fit: contain;
	width: 100%;
}

.hec-quote-product__code {
	color: var(--hec-accent);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.hec-quote-product h4 {
	color: var(--hec-text);
	font-size: 21px;
	line-height: 1.15;
	margin: 0 0 6px;
}

.hec-quote-product p {
	color: var(--hec-soft);
	font-size: 13px;
	line-height: 1.45;
	margin: 0;
}

.hec-quote-product__specs {
	display: grid;
	gap: 0 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 10px 0 0;
}

.hec-quote-product__specs div {
	border-top: 1px solid rgba(158, 181, 190, 0.12);
	display: grid;
	gap: 2px;
	padding: 7px 0 0;
}

.hec-quote-product__specs dt {
	color: var(--hec-muted);
	font-size: 10px;
	font-weight: 800;
	margin: 0;
	text-transform: uppercase;
}

.hec-quote-product__specs dd {
	color: var(--hec-text);
	font-size: 12px;
	font-weight: 800;
	margin: 0;
}

.hec-quote-list-modal {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(158, 181, 190, 0.16);
	border-radius: var(--hec-radius);
	display: grid;
	gap: 12px;
	padding: 14px;
}

.hec-quote-list-modal[hidden] {
	display: none;
}

.hec-quote-list-modal__head {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
}

.hec-quote-list-modal__head strong {
	color: var(--hec-text);
	display: block;
	font-size: 14px;
	font-weight: 850;
	margin-bottom: 2px;
}

.hec-quote-list-modal__head span {
	color: var(--hec-muted);
	display: block;
	font-size: 12px;
}

.hec-quote-list-modal__items {
	display: grid;
	gap: 10px;
}

.hec-quote-list-item {
	align-items: center;
	background: rgba(13, 17, 23, 0.46);
	border: 1px solid rgba(158, 181, 190, 0.12);
	border-radius: var(--hec-radius-soft);
	display: grid;
	gap: 12px;
	grid-template-columns: 66px minmax(0, 1fr) minmax(132px, auto);
	padding: 10px;
}

.hec-quote-list-item__media {
	align-items: center;
	aspect-ratio: 1 / 1;
	background: #eef1ed;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 6px;
	color: #0d1117;
	display: flex;
	font-size: 12px;
	font-weight: 900;
	justify-content: center;
	overflow: hidden;
	padding: 6px;
}

.hec-quote-list-item__media img {
	display: block;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.hec-quote-list-item__body {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.hec-quote-list-item__body strong {
	color: var(--hec-accent-strong);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.15;
}

.hec-quote-list-item__body span {
	color: var(--hec-text);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.hec-quote-list-item__body small {
	color: var(--hec-muted);
	font-size: 11px;
	line-height: 1.3;
	overflow-wrap: anywhere;
}

.hec-quote-list-item__controls {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: flex-end;
}

.hec-quote-list-item__controls label {
	align-items: center;
	display: inline-flex;
	gap: 6px;
	margin: 0;
}

.hec-quote-list-item__controls label span {
	color: var(--hec-muted);
	font-size: 10px;
	font-weight: 800;
	margin: 0;
	text-transform: uppercase;
}

.hec-quote-list-item__controls input,
.hec-quote-list-item__controls select {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(158, 181, 190, 0.2);
	border-radius: 6px;
	color: var(--hec-text);
	font: inherit;
	font-size: 13px;
	font-weight: 800;
	min-height: 34px;
	padding: 6px 8px;
}

.hec-quote-list-item__controls input {
	width: 66px;
}

.hec-quote-list-item__controls select {
	max-width: 240px;
	min-width: 180px;
}

.hec-quote-form__grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hec-quote-form label em {
	color: var(--hec-accent);
	font-style: normal;
}

.hec-quote-form textarea {
	min-height: 116px;
	resize: vertical;
}

.hec-quote-form__consent {
	align-items: flex-start;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(158, 181, 190, 0.14);
	border-radius: var(--hec-radius);
	display: flex;
	gap: 10px;
	padding: 12px;
}

.hec-quote-form__consent input {
	flex: 0 0 auto;
	height: 16px;
	margin-top: 2px;
	min-height: 0;
	padding: 0;
	width: auto;
}

.hec-quote-form__consent span {
	color: var(--hec-soft);
	font-size: 13px;
	line-height: 1.4;
	margin: 0;
	text-transform: none;
}

.hec-quote-form__footer {
	align-items: center;
	display: flex;
	gap: 14px;
	justify-content: space-between;
}

.hec-quote-form__buttons {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	min-width: 300px;
}

.hec-quote-form__status {
	color: var(--hec-muted);
	font-size: 13px;
}

.hec-quote-form__status.is-error {
	color: #ffb3b3;
}

.hec-quote-form__status.is-success {
	color: var(--hec-accent-strong);
}

.hec-quote-success {
	align-items: center;
	display: grid;
	justify-items: center;
	min-height: 360px;
	padding: 36px 18px;
	text-align: center;
}

.hec-quote-success[hidden] {
	display: none;
}

.hec-quote-success__icon {
	border: 2px solid var(--hec-accent);
	border-radius: 50%;
	box-shadow: 0 0 28px rgba(0, 198, 82, 0.18);
	height: 58px;
	margin-bottom: 16px;
	position: relative;
	width: 58px;
}

.hec-quote-success__icon::after {
	border-bottom: 3px solid var(--hec-accent);
	border-right: 3px solid var(--hec-accent);
	content: "";
	height: 20px;
	left: 20px;
	position: absolute;
	top: 13px;
	transform: rotate(45deg);
	width: 11px;
}

.hec-quote-success h3 {
	color: var(--hec-text);
	font-size: 26px;
	line-height: 1.15;
	margin: 0 0 8px;
}

.hec-quote-success p {
	color: var(--hec-soft);
	margin: 0 0 18px;
	max-width: 460px;
}

.hec-product-card.is-hidden,
.hec-family-group.is-hidden {
	display: none;
}

body.hec-modal-open {
	overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
	.hec-catalogue *,
	.hec-live-search *,
	.hec-quote-modal *,
	.hec-industry-block *,
	.hec-category-block * {
		animation-duration: 0.01ms !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

@media (max-width: 1180px) {
	.hec-product-list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 980px) {
	body.hec-filter-drawer-open {
		overflow: hidden;
	}

	.hec-industry-grid {
		grid-auto-rows: minmax(168px, 28vw);
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hec-industry-tile,
	.hec-industry-tile--agriculture,
	.hec-industry-tile--construction,
	.hec-industry-tile--manufacturing,
	.hec-industry-tile--mining,
	.hec-industry-tile--energy,
	.hec-industry-tile--marine-offshore {
		grid-column: auto;
		grid-row: auto;
	}

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

	.hec-catalogue__layout {
		gap: 18px;
		grid-template-columns: 1fr;
	}

	.hec-filter-toggle {
		align-items: center;
		display: inline-flex;
		gap: 8px;
		justify-content: center;
	}

	.hec-filter-scrim {
		backdrop-filter: blur(5px);
		background: rgba(2, 7, 11, 0.62);
		border: 0;
		display: block;
		inset: 0;
		padding: 0;
		position: fixed;
		z-index: 99980;
	}

	.hec-filter-scrim[hidden] {
		display: none;
	}

	.hec-filters {
		border-radius: 0;
		bottom: 0;
		display: block;
		left: auto;
		opacity: 0;
		overflow-y: auto;
		padding: 20px;
		pointer-events: none;
		position: fixed;
		right: 0;
		top: 0;
		transform: translateX(104%);
		transition: opacity 180ms var(--hec-ease), transform 220ms var(--hec-ease);
		width: min(380px, calc(100vw - 34px));
		z-index: 99981;
	}

	.hec-filters.is-open {
		display: block;
		opacity: 1;
		pointer-events: auto;
		transform: translateX(0);
	}

	.hec-filters__head {
		border-bottom: 1px solid rgba(158, 181, 190, 0.12);
		margin-bottom: 16px;
		padding-bottom: 14px;
	}

	.hec-filters__close {
		align-items: center;
		display: inline-flex;
		justify-content: center;
	}

	.hec-filter-control {
		margin-bottom: 14px;
	}

	.hec-filter-control select {
		font-size: 14px;
		min-height: 46px;
		padding: 11px 44px 11px 14px;
	}

	.hec-product-card__main {
		gap: 16px;
		grid-template-columns: 132px minmax(0, 1fr);
		min-height: 0;
	}

	.hec-product-card__aside {
		border-left: 0;
		border-top: 1px solid var(--hec-line);
		grid-column: 1 / -1;
		justify-content: flex-start;
		padding-left: 0;
		padding-top: 14px;
	}

	.hec-spec-drawer__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.hec-category-block__head {
		margin-bottom: 12px;
	}

	.hec-category-block__head h2 {
		font-size: 26px;
	}

	.hec-category-block__head p {
		font-size: 14px;
	}

	.hec-category-grid {
		gap: 12px;
		grid-template-columns: 1fr;
	}

	.hec-category-card {
		gap: 14px;
		min-height: 174px;
		padding: 18px;
	}

	.hec-category-card__icon {
		height: 34px;
		width: 34px;
	}

	.hec-category-card__body {
		gap: 9px;
	}

	.hec-category-card__body strong {
		font-size: 20px;
	}

	.hec-category-card__body em {
		font-size: 13.5px;
	}

	.hec-category-card__action {
		font-size: 13px;
		justify-self: start;
	}

	.hec-category-card--full-range {
		min-height: 118px;
	}

	.hec-category-card--full-range span {
		font-size: 22px;
		gap: 12px;
	}

	.hec-category-card--full-range span::after {
		height: 26px;
		width: 26px;
	}

	.hec-industry-block__head {
		margin-bottom: 12px;
	}

	.hec-industry-block__head h2 {
		font-size: 26px;
	}

	.hec-industry-block__head p {
		font-size: 14px;
	}

	.hec-industry-grid {
		border-radius: 7px;
		grid-auto-rows: minmax(148px, 42vw);
		grid-template-columns: 1fr;
	}

	.hec-industry-tile {
		min-height: 148px;
		padding: 18px;
	}

	.hec-industry-tile__content {
		gap: 5px;
	}

	.hec-industry-tile__content span {
		font-size: 9.5px;
	}

	.hec-industry-tile__content strong {
		font-size: clamp(26px, 10vw, 38px);
	}

	.hec-industry-tile__content em {
		font-size: 12px;
		opacity: 1;
		transform: none;
	}

	.hec-catalogue {
		padding: 12px;
	}

	.hec-live-search__box {
		min-height: 48px;
		padding: 0 14px;
	}

	.hec-live-search__box input {
		font-size: 14px;
	}

	.hec-live-search__panel {
		max-height: 72vh;
		position: absolute;
	}

	.hec-live-result {
		align-items: start;
		grid-template-columns: 64px minmax(0, 1fr);
	}

	.hec-live-result__actions {
		grid-column: 1 / -1;
		grid-template-columns: 1fr;
	}

	.hec-catalogue__topbar {
		align-items: stretch;
		flex-direction: column;
		gap: 10px;
		margin-bottom: 14px;
	}

	.hec-search {
		min-height: 46px;
		padding: 0 13px;
	}

	.hec-search__icon {
		height: 14px;
		margin-right: 12px;
		width: 14px;
	}

	.hec-search__icon::after {
		right: -6px;
		top: 9px;
		width: 7px;
	}

	.hec-search input {
		font-size: 14px;
	}

	.hec-filter-toggle {
		justify-content: center;
		min-height: 40px;
		padding: 0 12px;
		width: 100%;
	}

	.hec-filters {
		padding: 16px;
		width: min(340px, calc(100vw - 24px));
	}

	.hec-filters__head strong {
		font-size: 12px;
	}

	.hec-filter-control span,
	.hec-quote-form label span {
		font-size: 10px;
		margin-bottom: 6px;
	}

	.hec-filter-control select {
		background:
			url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23F4F8F9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 14px center / 18px 18px no-repeat,
			linear-gradient(135deg, #17212b, #111820);
		min-height: 44px;
		padding: 10px 40px 10px 13px;
	}

	.hec-results {
		gap: 18px;
	}

	.hec-family-group__head {
		margin-bottom: 9px;
		padding: 0 1px 7px;
	}

	.hec-family-group__head span {
		font-size: 9px;
		margin-bottom: 2px;
	}

	.hec-family-group__head h3 {
		font-size: 16px;
	}

	.hec-family-group__head p {
		font-size: 10.5px;
		line-height: 1.3;
		margin-top: 4px;
	}

	.hec-family-group__head strong {
		font-size: 10px;
		height: 22px;
		min-width: 22px;
		padding: 0 7px;
	}

	.hec-product-list {
		gap: 12px;
	}

	.hec-product-card {
		border-radius: 7px;
		box-shadow:
			0 12px 26px rgba(0, 0, 0, 0.2),
			inset 0 1px 0 rgba(255, 255, 255, 0.04);
	}

	.hec-product-card:hover {
		transform: none;
	}

	.hec-product-card__main {
		align-items: start;
		gap: 10px 12px;
		grid-template-columns: 76px minmax(0, 1fr);
		min-height: 0;
		padding: 12px;
	}

	.hec-product-card__media {
		grid-column: 1;
		min-height: 0;
		width: 76px;
	}

	.hec-product-card__image,
	.hec-product-card__placeholder {
		border-radius: 6px;
		padding: 6px;
	}

	.hec-product-card__placeholder span {
		font-size: 14px;
		padding: 7px;
	}

	.hec-product-card__body {
		display: contents;
	}

	.hec-product-card__body > .hec-product-card__subcategory {
		grid-column: 2;
		margin: 0;
	}

	.hec-product-card__subcategory span {
		font-size: 8.5px;
	}

	.hec-product-card__subcategory strong {
		font-size: 11.5px;
	}

	.hec-product-card__body > .hec-product-card__eyebrow {
		align-self: end;
		gap: 4px;
		grid-column: 2;
		margin: 0;
	}

	.hec-product-card__eyebrow span,
	.hec-product-card__labels span {
		font-size: 8.5px;
		padding: 3px 5.5px;
	}

	.hec-product-card h4 {
		font-size: 16px;
		line-height: 1.18;
		margin: -2px 0 0;
	}

	.hec-product-card__body > h4 {
		grid-column: 2;
	}

	.hec-product-card h4 span {
		margin-right: 5px;
	}

	.hec-product-card__body > p {
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		display: -webkit-box;
		font-size: 12px;
		grid-column: 2;
		line-height: 1.36;
		margin: 2px 0 0;
		overflow: hidden;
	}

	.hec-product-card__body > .hec-product-card__labels {
		display: none;
	}

	.hec-summary-specs {
		gap: 0 10px;
		grid-column: 1 / -1;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 4px;
	}

	.hec-summary-specs div {
		gap: 3px;
		padding: 6px 0;
	}

	.hec-summary-specs dt {
		font-size: 8.75px;
	}

	.hec-summary-specs dd {
		font-size: 11.5px;
		line-height: 1.2;
	}

	.hec-product-card__body > .hec-product-card__variant {
		grid-column: 1 / -1;
		margin-top: 2px;
		padding-top: 8px;
	}

	.hec-product-card__variant select {
		font-size: 11.5px;
		min-height: 33px;
		padding: 7px 32px 7px 10px;
	}

	.hec-product-card__aside {
		border-top-color: rgba(158, 181, 190, 0.1);
		grid-column: 1 / -1;
		padding-top: 9px;
	}

	.hec-product-card__actions {
		gap: 6px;
	}

	.hec-btn,
	.hec-link-btn {
		border-radius: 7px;
		min-height: 34px;
	}

	.hec-btn {
		font-size: 12px;
		padding: 8px 10px;
	}

	.hec-btn--secondary,
	.hec-btn--ghost,
	.hec-link-btn {
		min-height: 32px;
	}

	.hec-product-card__links,
	.hec-spec-drawer__links {
		gap: 6px 10px;
		justify-content: flex-start;
		padding-top: 0;
	}

	.hec-product-card__links a,
	.hec-spec-drawer__links a {
		font-size: 10.5px;
	}

	.hec-spec-drawer__grid {
		gap: 16px;
		padding: 12px;
	}

	.hec-tech-table {
		font-size: 12px;
		min-width: 420px;
	}

	.hec-quote-modal__panel {
		padding: 18px;
	}

	.hec-quote-tray {
		align-items: stretch;
		bottom: 10px;
		flex-direction: column;
		gap: 10px;
		left: 10px;
		max-width: none;
		padding: 12px;
		right: 10px;
	}

	.hec-quote-tray__actions {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.hec-quote-list-modal__head {
		align-items: flex-start;
		flex-direction: column;
	}

	.hec-quote-list-item {
		align-items: start;
		grid-template-columns: 58px minmax(0, 1fr);
	}

	.hec-quote-list-item__controls {
		grid-column: 1 / -1;
		justify-content: space-between;
	}

	.hec-quote-product,
	.hec-quote-form__grid {
		grid-template-columns: 1fr;
	}

	.hec-quote-product__media {
		width: min(132px, 100%);
	}

	.hec-quote-form__grid,
	.hec-quote-form__footer {
		grid-template-columns: 1fr;
	}

	.hec-quote-form__footer {
		align-items: stretch;
		flex-direction: column;
	}

	.hec-quote-form__buttons {
		flex-direction: column-reverse;
		min-width: 0;
		width: 100%;
	}
}

@media (max-width: 390px) {
	.hec-product-card__main {
		grid-template-columns: 68px minmax(0, 1fr);
		gap: 9px 10px;
		padding: 11px;
	}

	.hec-product-card__media {
		width: 68px;
	}

	.hec-product-card h4 {
		font-size: 15px;
	}

	.hec-summary-specs {
		gap: 0 8px;
	}
}

@media (max-width: 782px) {
	.hec-catalogue {
		max-width: 100vw !important;
		overflow-x: hidden !important;
		padding: 10px !important;
		width: 100% !important;
	}

	.hec-catalogue__layout,
	.hec-results,
	.hec-family-group,
	.hec-product-list,
	.hec-product-card,
	.hec-product-card__main,
	.hec-product-card__aside,
	.hec-product-card__actions,
	.hec-summary-specs {
		box-sizing: border-box !important;
		max-width: 100% !important;
		min-width: 0 !important;
		width: 100% !important;
	}

	.hec-results,
	.hec-product-list,
	.hec-product-card,
	.hec-product-card__main {
		overflow-x: hidden !important;
	}

	.hec-product-card {
		overflow: hidden !important;
	}

	.hec-catalogue__topbar {
		gap: 10px !important;
		margin-bottom: 14px !important;
	}

	.hec-search {
		min-height: 46px !important;
		padding: 0 13px !important;
	}

	.hec-search input {
		font-size: 14px !important;
	}

	.hec-family-group__head {
		margin-bottom: 10px !important;
		padding-bottom: 8px !important;
	}

	.hec-family-group__head h3 {
		font-size: 16px !important;
	}

	.hec-family-group__head p {
		font-size: 10.5px !important;
		line-height: 1.3 !important;
		margin-top: 4px !important;
	}

	.hec-product-list {
		gap: 12px !important;
	}

	.hec-product-card__main {
		align-items: start !important;
		gap: 9px 11px !important;
		grid-template-columns: 72px minmax(0, 1fr) !important;
		min-height: 0 !important;
		padding: 11px !important;
	}

	.hec-product-card__media {
		grid-column: 1 !important;
		min-height: 0 !important;
		width: 72px !important;
	}

	.hec-product-card__image,
	.hec-product-card__placeholder {
		border-radius: 6px !important;
		max-width: 72px !important;
		padding: 6px !important;
		width: 72px !important;
	}

	.hec-product-card__placeholder span {
		font-size: 14px !important;
		padding: 7px !important;
	}

	.hec-product-card__body {
		display: contents !important;
	}

	.hec-product-card__body > .hec-product-card__subcategory,
	.hec-product-card__body > .hec-product-card__eyebrow,
	.hec-product-card__body > h4,
	.hec-product-card__body > p {
		grid-column: 2 !important;
		max-width: 100% !important;
		min-width: 0 !important;
		overflow-wrap: anywhere !important;
	}

	.hec-product-card__body > .hec-product-card__subcategory {
		margin: 0 !important;
	}

	.hec-product-card__subcategory span {
		font-size: 8.5px !important;
	}

	.hec-product-card__subcategory strong {
		font-size: 11.5px !important;
	}

	.hec-product-card__eyebrow {
		gap: 4px !important;
		margin: 0 !important;
	}

	.hec-product-card__eyebrow span,
	.hec-product-card__labels span {
		font-size: 8.5px !important;
		padding: 3px 5px !important;
	}

	.hec-product-card h4 {
		font-size: 16px !important;
		line-height: 1.18 !important;
		margin: -1px 0 0 !important;
		max-width: 100% !important;
		min-width: 0 !important;
		white-space: normal !important;
	}

	.hec-product-card h4 span {
		margin-right: 5px !important;
	}

	.hec-product-card__body > p {
		-webkit-box-orient: vertical !important;
		-webkit-line-clamp: 2 !important;
		display: -webkit-box !important;
		font-size: 12px !important;
		line-height: 1.35 !important;
		margin: 2px 0 0 !important;
		max-width: 100% !important;
		min-width: 0 !important;
		overflow: hidden !important;
		white-space: normal !important;
	}

	.hec-product-card__body > .hec-product-card__labels {
		display: none !important;
	}

	.hec-summary-specs {
		gap: 0 10px !important;
		grid-column: 1 / -1 !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		margin-top: 4px !important;
		overflow: hidden !important;
	}

	.hec-summary-specs div {
		gap: 3px !important;
		min-width: 0 !important;
		overflow: hidden !important;
		padding: 6px 0 !important;
	}

	.hec-summary-specs dt {
		font-size: 8.75px !important;
		min-width: 0 !important;
		overflow-wrap: anywhere !important;
		white-space: normal !important;
	}

	.hec-summary-specs dd {
		font-size: 11.5px !important;
		line-height: 1.2 !important;
		min-width: 0 !important;
		overflow-wrap: anywhere !important;
		white-space: normal !important;
		word-break: break-word !important;
	}

	.hec-product-card__body > .hec-product-card__variant {
		grid-column: 1 / -1 !important;
		margin-top: 2px !important;
		max-width: 100% !important;
		min-width: 0 !important;
		padding-top: 8px !important;
	}

	.hec-product-card__variant select {
		font-size: 11.5px !important;
		min-height: 33px !important;
		min-width: 0 !important;
		padding: 7px 32px 7px 10px !important;
		width: 100% !important;
	}

	.hec-product-card__aside {
		border-left: 0 !important;
		border-top: 1px solid rgba(158, 181, 190, 0.1) !important;
		grid-column: 1 / -1 !important;
		padding: 9px 0 0 !important;
	}

	.hec-product-card__actions {
		gap: 6px !important;
		min-width: 0 !important;
	}

	.hec-btn {
		font-size: 12px !important;
		min-height: 34px !important;
		min-width: 0 !important;
		overflow: hidden !important;
		padding: 8px 10px !important;
		white-space: normal !important;
	}

	.hec-btn--secondary,
	.hec-btn--ghost,
	.hec-link-btn {
		min-height: 32px !important;
	}

	.hec-product-card__links,
	.hec-spec-drawer__links {
		justify-content: flex-start !important;
		max-width: 100% !important;
		min-width: 0 !important;
		overflow: hidden !important;
		padding-top: 0 !important;
	}

	.hec-product-card__links a,
	.hec-spec-drawer__links a {
		font-size: 10.5px !important;
		max-width: 100% !important;
		min-width: 0 !important;
		overflow-wrap: anywhere !important;
		white-space: normal !important;
	}
}

@media (max-width: 390px) {
	.hec-product-card__main {
		grid-template-columns: 68px minmax(0, 1fr) !important;
		gap: 9px 10px !important;
	}

	.hec-product-card__media,
	.hec-product-card__image,
	.hec-product-card__placeholder {
		max-width: 68px !important;
		width: 68px !important;
	}

	.hec-product-card h4 {
		font-size: 15px !important;
	}

	.hec-summary-specs {
		gap: 0 8px !important;
	}
}
