/* body styles removed - layout provides navbar and structure */
/* gloves page: figma export with asset paths fixed for astro */

/* restore transparent navbar to match home and solutions pages */
body.layout-figma-gloves .site-header {
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/*
 * centered layout for all viewports (replaces fixed 352px figma gutters that left hero/content in a corner on laptop widths).
 * matches site container max width used elsewhere.
 */
:root {
	--gloves-page-max: 1280px;
	--gloves-page-gutter: clamp(16px, 4vw, 48px);
}

/* button utility classes (from products-page figma export) */
.btn-brown {
	display: inline-flex;
	background-color: rgba(242, 194, 129, 0.2);
	padding: 4px 13px 4px 12px;
	border-radius: 9999px;
	border: none;
}

.btn-white {
	display: inline-flex;
	background-color: #fff;
	padding: 16px 32px;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	text-decoration: none;
	color: #0f172a;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.btn-white:hover {
	border-color: #cbd5e1;
	background-color: #f8fafc;
}

.btn-blue {
	display: inline-flex;
	background-color: #0f172a;
	padding: 9px 24px;
	border-radius: 8px;
	border: none;
	color: var(--white);
	cursor: pointer;
	transition: background-color 0.2s ease, filter 0.2s ease;
}

.btn-blue:hover {
	background-color: #1e293b;
	filter: brightness(1.1);
}

/* container-a */
.container-a {
	display: flex;
	flex-direction: column;
	gap: 16px;
	color: #1e293b;
	--min-font-size: 18; --max-font-size: 36; font-size: var(--interpolate);
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.111;
	text-align: center;
}

.container-text1 {
	color: #475569;
	--min-font-size: 15; --max-font-size: 16; font-size: var(--interpolate);
	font-family: var(--font-family-font-1);
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0px;
	text-align: center;
}

.btn-background {
	position: absolute; top: 24px; left: 24px;
	display: flex;
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: left;
	padding: 4px 13px 4px 12px;
	border-radius: 9999px;
}

.btn-background-plus-border {
	width: 56px; height: 56px;
	display: flex;
	justify-content: center;
	flex-shrink: 0;
	color: #3d6652;
	font-size: 18px;
	font-family: var(--font-family-font-1);
	font-style: normal;
	font-weight: 700;
	line-height: 1.556;
	letter-spacing: 0px;
	text-align: center;
	background-color: var(--white);
	padding: 12px 5px;
	border: 2px solid #3d6652;
	border-radius: 50%;
}

.container-b {
	width: 428px;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
}

.container-text-heading {
	color: #0f172a;
	font-size: 16px;
	font-family: var(--font-family-font-1);
	font-style: normal;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0px;
	text-align: left;
}

.container-text2 {
	color: rgba(66, 66, 66, 1);
	text-align: left;
}

/* ensure product-specs text wins over .inter-regular2 (var(--color-border-light)) */
.group-back2 .container-text2,
.group-back2 .group-text-container7 {
	color: rgba(66, 66, 66, 1);
}

.container-d {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.container-text4,
.container-text5 {
	font-size: 14px;
	font-family: var(--font-family-font-1);
	font-style: normal;
	font-weight: 700;
	line-height: 1.429;
	letter-spacing: 0px;
	text-align: left;
}

.card-over-background {
	height: 12px;
	border-radius: 9999px;
}

.group {
	width: 100%;
	max-width: 1920px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	background-color: #fff;
}

.group-back1 {
	position: relative;
	bottom: auto;
	right: auto;
	display: flex;
	align-items: center;
	gap: 16px;
	background-color: var(--white);
	padding: 7px 38px 7px 24px;
	border-radius: 16px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	margin: 0;
}

/* narrow: badge under mobile glove image; wide: desktop badge under right column image */
.group-back1--mobile {
	display: none;
	margin-top: 4px;
	align-self: center;
}

.group-back1--desktop {
	display: flex;
	margin-top: 0;
	align-self: center;
}

@media (min-width: 1284px) {
	.group-back1--mobile {
		display: none !important;
	}
}

@media (max-width: 1283px) {
	.group-back1--desktop {
		display: none !important;
	}
	.group-back1--mobile {
		display: flex !important;
	}
}

.group-circle-overlay1 {
	width: 40px;
	height: 40px;
	min-width: 40px;
	min-height: 40px;
	aspect-ratio: 1;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	box-sizing: border-box;
	border-radius: 50%;
	background-color: #fff;
	border: 1px solid rgba(203, 213, 225, 0.85);
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.group-container1 {
	display: block;
	width: 30px;
	height: 30px;
	flex-shrink: 0;
	border: 0;
	pointer-events: none;
}

.group-container2 {
	width: 162px;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	text-align: left;
}

.group-text-container1 {
	font-size: var(--text-xs);
	color: rgba(94, 94, 94, 1);
	text-transform: uppercase;
}

.group-text-container2 {
	color: #1e293b;
	font-weight: 700;
	text-align: left;
}

.group-section1 {
	container: group-section1 / inline-size;
	position: relative; z-index: 4;
	margin-top: -1px;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: var(--font-sans);
	font-weight: 400;
	overflow: hidden;
	min-height: 520px;
}

/* smaller viewports: lift hero band (matches container query + mobile narrow layouts) */
@media (max-width: 1283px) {
	body.layout-figma-gloves .group-section1 {
		margin-top: calc(-1px - 100px);
	}
}

/*
 * narrow hero (media fallback + polish): mirrors @container so laptop/tablet always center.
 * fixes flex-grow stretching column, left-aligned title, oversized glove, badge pushed below fold.
 */
@media (max-width: 1283px) {
	body.layout-figma-gloves .group-container6 {
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		min-height: 0 !important;
		height: auto;
		padding-bottom: 48px;
	}

	body.layout-figma-gloves .group-container6 > .group-container7 {
		flex: none !important;
		align-items: center;
		width: 100%;
		max-width: min(36rem, calc(100% - 2 * var(--gloves-page-gutter)));
		margin-inline: auto;
		margin-top: 24px;
		padding-top: 0;
		gap: 16px;
	}

	body.layout-figma-gloves .group-container6 > .group-container10 {
		display: none !important;
	}

	body.layout-figma-gloves .group-section1 .group-title,
	body.layout-figma-gloves .group-section1 #gloves-hero-heading {
		text-align: center;
		align-self: center;
	}

	body.layout-figma-gloves .group-section1 .group-text-container4 {
		text-align: center;
		margin-inline: auto;
	}

	body.layout-figma-gloves .group-section1 .hero-glove-mobile {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	body.layout-figma-gloves .group-section1 .hero-glove-mobile__img {
		width: min(260px, 58vw);
		max-height: 280px;
		height: auto;
		transform: translate(-50px, 30px) scale(1.32);
		transform-origin: bottom center;
	}

	body.layout-figma-gloves .group-section1 .group-back1--mobile {
		margin-top: 4px;
		flex-shrink: 0;
	}

	body.layout-figma-gloves .group-section1 .group-container8 {
		justify-content: center;
		flex-wrap: wrap;
	}

	body.layout-figma-gloves .group-section1 .group-bg1 {
		align-self: center;
		max-width: 100%;
	}
}

/* products hero bg: webp with jpg fallback. run npm run optimize-images to generate .webp */
.group-section1 .hero-bg-carousel__slide.hero__bg-products {
	background-image: image-set(
		url(/assets/productshero-960w.webp) 1x,
		url(/assets/productshero-1920w.webp) 2x
	);
}

/* narrow viewport: hero background same as other pages (cover, center) instead of products zoom/right */
@media (max-width: 1283px) {
	.group-section1 .hero-bg-carousel__slide {
		background-size: cover !important;
		background-position: center calc(50% + var(--hero-gloves-mobile-bg-shift-y, 0px)) !important;
	}
}

/* gradients should affect only the hero background image, not foreground content */
body.layout-figma-gloves .group-section1::before,
body.layout-figma-gloves .group-section1::after {
	content: none;
}

body.layout-figma-gloves .group-section1 .hero-bg-carousel__slide.hero__bg-products {
	position: absolute;
	top: 0;
	right: 0;
	bottom: calc(-1 * var(--hero-gloves-mobile-bg-overlap-y, 0px));
	left: 0;
	z-index: 0;
	overflow: hidden;
}

/* top wash over image only */
body.layout-figma-gloves .group-section1 .hero-bg-carousel__slide.hero__bg-products::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0.97) 0,
		rgba(255, 255, 255, 0.92) 80px,
		rgba(255, 255, 255, 0.5) 180px,
		transparent 280px
	);
}

/* bottom fade over image only */
body.layout-figma-gloves .group-section1 .hero-bg-carousel__slide.hero__bg-products::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: calc(
		-5px
		- var(--hero-gloves-mobile-bg-overlap-y, 0px)
		+ var(--hero-gloves-mobile-gradient-bottom-shift-y, 0px)
	);
	left: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		transparent 0%,
		rgba(255, 255, 255, 0.24) 28%,
		rgba(255, 255, 255, 0.55) 50%,
		rgba(255, 255, 255, 0.82) 72%,
		rgba(255, 255, 255, 0.95) 88%,
		var(--hero-gloves-mobile-section-bg, #fff) 100%
	);
}

.group-container6 {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 48px;
	padding: 80px var(--gloves-page-gutter) 80px;
	min-height: 950px;
	height: auto;
	width: 100%;
	max-width: var(--gloves-page-max);
	align-self: center;
	box-sizing: border-box;
}

@media (min-width: 1024px) {
	.group-container6 {
		padding-top: 128px;
		padding-bottom: 0;
	}
}

/*
 * macbook / small laptop (not mobile, not ultrawide): nudge hero 50px right + 50px up.
 */
@media (min-width: 1024px) and (max-width: 1536px) {
	body.layout-figma-gloves .group-container6 {
		padding-left: calc(var(--gloves-page-gutter) + 50px);
		padding-right: var(--gloves-page-gutter);
		margin-top: -50px;
	}
}

.group-container7 {
	container: group-container7 / inline-size;
	/* do not use width: 100% in the hero row or the text column steals the full flex row and breaks centering */
	width: auto;
	max-width: 643px;
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
	text-align: left;
	margin-top: 50px;
	padding-top: 10px;
}

.group-container7 .hero__tagline {
	margin: 0;
}

.group-btn-overlay {
	text-transform: uppercase;
	text-align: left;
}

.group-title {
	align-self: stretch;
	color: var(--color-hero-headline);
	font-size: clamp(2.5rem, 4.8vw, var(--text-hero));
	font-family: var(--font-display);
	font-weight: 900;
	line-height: var(--leading-none);
	letter-spacing: var(--tracking-hero);
}

.sub-text-gray {
	color: #64748b;
}

.sub-text-green {
	color: rgba(41, 41, 41, 1);
}

.sub-text-yellow {
	color: rgb(47, 47, 47);
}
.group-text-container4 {
	width: 100%;
	max-width: 576px;
	color: #212121;
	text-align: left;
	padding-top: 30px;
}

.group-container8 {
	container: group-container8 / inline-size;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	align-self: stretch;
	padding: 8px 0;
}

.btn-component-a {
	width: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-shrink: 0;
	text-align: unset;
	background-color: #628a7d;
	padding: 14px 9px;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-component-a:hover {
	background-color: #547a6d;
	transform: translateY(-1px);
}

.btn-component-label1 {
	color: var(--white);
	text-align: center;
}

.btn-component-icon1 {
	width: 24px; height: 28px;
	flex-shrink: 0;
}

.btn-component-icon-cart {
	width: 20px; height: 20px;
	color: var(--white);
	flex-shrink: 0;
}

.group-btn-component3 {
	justify-content: center;
	color: #0f172a;
	text-align: center;
}

.group-bg1 {
	display: flex;
	align-items: center;
	gap: 12px;
	align-self: stretch;
	color: #92400e;
	font-size: 14px;
	line-height: 1.429;
	background-color: #fffbeb;
	padding: 16px;
	border: 1px solid #fef3c7;
	border-radius: 12px;
}

/* mobile-only glove: shown under description text on small viewports */
.hero-glove-mobile {
	display: none;
	width: 100%;
	justify-content: center;
	align-items: center;
}

.hero-glove-mobile__img {
	width: min(260px, 58vw);
	max-height: 280px;
	height: auto;
	object-fit: contain;
	object-position: center;
	transform: translate(-50px, 30px) scale(1.32);
	transform-origin: bottom center;
}

.group-container9 {
	width: 24px; height: 28px;
	flex-shrink: 0;
}

.group-bg1 .lead-time-notice__icon {
	width: 24px;
	height: 24px;
	color: currentColor;
}

.group-text-container5 {
	text-align: left;
}

.group-container10 {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	width: auto;
	max-width: 900px;
	flex: 1 1 0;
	min-width: 0;
	background: none;
	border-radius: 24px;
	overflow: visible;
}

/*
 * 1.5x visual size without shifting layout (badge / copy stay put): transform does not change flex layout box.
 * desktop right column: grow mostly away from the text column.
 */
.group-container11 {
	position: relative;
	left: auto;
	top: auto;
	width: auto;
	max-width: min(720px, 46vw);
	height: auto;
	max-height: min(58vh, 640px);
	object-fit: contain;
	object-position: center bottom;
	display: block;
	margin: 0;
	transform: translate(-50px, 30px) scale(1.32);
	transform-origin: bottom left;
}

.group-container12 {
	margin-bottom: -2px;
	flex-shrink: 0;
	width: 100%;
}

.group-rect-bottom {
	position: relative; z-index: 2;
	filter: blur(66.6px);
	margin: -127px -98px -248px 0;
	height: 373px;
	flex-shrink: 0;
	align-self: stretch;
	width: 100%;
	background-color: #fff;
}

.group-col {
	container: group-col / inline-size;
	position: relative;
	/* stack above .group-section1 (z-index: 4) so hero bleed / overlap does not paint over product cards */
	z-index: 5;
	display: flex;
	flex-direction: column;
	gap: 64px;
	margin-top: -90px;
	margin-bottom: -160px;
	background: linear-gradient(180deg, #fff 0%, #f5f4ed 100%) top left / auto auto no-repeat;
	padding: 80px var(--gloves-page-gutter) 114px;
	width: 100%;
	box-sizing: border-box;
}

/* keep lineup + cards aligned to same max width as hero (full-bleed gradient on .group-col) */
.group-col > .container-a.container2,
.group-col > .group-container13 {
	max-width: var(--gloves-page-max);
	margin-inline: auto;
	width: 100%;
	box-sizing: border-box;
}

.group-container13 {
	display: flex;
	align-items: stretch;
	gap: 48px;
	flex-wrap: nowrap;
}

/* desktop: equal column widths + equal card height (stretch to tallest); align top media bands */
@media (min-width: 768px) {
	.group-container13 > .card-component,
	.group-container13 > .card-back {
		flex: 1 1 0;
		min-width: 0;
		align-self: stretch;
	}

	.group-container13 .card-back-bg {
		height: 320px;
		min-height: 320px;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		overflow: hidden;
	}
}

.card-component,
.card-back {
	flex: 1 1 auto;
	min-width: 280px;
}

.card-component {
	min-height: 688px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	font-weight: 700;
	text-align: left;
	background-color: #fff;
	border: 1px solid #f1f5f9;
	border-radius: 40px;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-component:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.card-component-bg {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 320px;
	color: var(--white);
	font-size: 10px;
	font-family: var(--font-sans);
	line-height: 1.5;
	background-color: #fff;
	padding: 0 104px;
	overflow: hidden;
}

.card-component-bvm {
	display: block;
	margin: 0 auto;
	flex-shrink: 0;
	width: auto;
	max-width: min(420px, 78%);
	max-height: 330px;
	height: auto;
	object-fit: contain;
	object-position: center bottom;
}

.card-component-btn-bg {
	z-index: 1;
	background-color: #3d6652;
}

.card-component-container {
	container: card-component-container / inline-size;
	margin: 50px 40px;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 16px;
	color: #1e293b;
	font-size: 24px;
	font-family: var(--font-display);
	line-height: 1.333;
}

.card-component-container .btn-component-b {
	margin-top: auto;
}

.card-component-container .btn-component-b .btn-component-label2 {
	font-family: var(--font-sans);
	font-size: 20px;
}

.card-component-container .btn-component-b .btn-component-icon-arrow {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	filter: brightness(0) invert(1);
}

.btn-component-b {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	text-align: unset;
	background-color: #628a7d;
	padding: 12px 24px;
	border-radius: 12px;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-component-b:hover {
	background-color: #547a6d;
	transform: translateY(-1px);
}

.btn-component-label2 {
	color: var(--white);
	text-align: center;
}

.btn-component-icon2 {
	width: 24px; height: 28px;
	flex-shrink: 0;
	filter: brightness(0) invert(1);
}

.card-component-list-margin {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 40px;
	padding-bottom: 40px;
}

.item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.item-container {
	width: 20px; height: 28px;
	flex-shrink: 0;
}

.item-text {
	color: #475569;
	font-size: 16px;
	font-family: var(--font-family-font-1);
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0px;
	text-align: left;
}

.card-back {
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
	opacity: 0.9;
	min-height: 688px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	text-align: left;
	background-color: var(--white);
	border: 1px solid #f1f5f9;
	border-radius: 40px;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-back:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.card-back-bg {
	position: relative;
	color: #3d6652;
	font-size: 10px;
	font-family: var(--font-sans);
	font-weight: 700;
	line-height: 1.5;
	background-color: #f1f5f9;
	padding: 64px 211px;
}

.card-back-container1 {
	height: 192px;
}

.card-back-btn-bg {
	background-color: #f2c281;
}

.card-back-container2 {
	margin: 50px 40px;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 16px;
}

.card-back-text-heading,
.card-component-container h3 {
	color: var(--color-hero-headline, #292929);
	font-size: var(--text-2xl);
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.333;
	margin-bottom: 20px;
	text-align: left;
}

.card-back-text-margin {
	text-align: left;
	color: var(--color-slate-600);
	font-size: var(--text-base);
	font-family: var(--font-sans);
	font-weight: 400;
	line-height: 1.5;
	padding-top: 40px;
	padding-bottom: 40px;
}

.card-back-margin {
	container: card-back-margin / inline-size;
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.card-back-text-label {
	color: var(--color-slate-500);
	font-size: var(--text-sm);
	font-family: var(--font-sans);
	font-weight: 400;
	text-align: left;
}

.input-group-container {
	display: flex;
	align-items: stretch;
	gap: 8px;
}

.input-group-container-input {
	min-height: 48px;
	height: 48px;
	flex: 1;
	min-width: 0;
	font-size: var(--text-base);
	font-family: var(--font-sans);
	font-style: normal;
	letter-spacing: 0px;
	text-align: left;
	background-color: #f8fafc;
	padding: 12px 16px;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	box-sizing: border-box;
}

.input-group-container-btn-component {
	min-height: 48px;
	height: 48px;
	padding: 12px 24px;
	justify-content: center;
	color: var(--white);
	text-align: center;
	box-sizing: border-box;
}

.group-section2 {
	margin-top: 90px;
	width: 100%;
	max-width: var(--gloves-page-max);
	display: flex;
	flex-direction: column;
	gap: 64px;
	align-self: center;
}

.group-container14 {
	container: group-container14 / inline-size;
	box-shadow: none;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.row {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	flex-wrap: nowrap;
}

.component {
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
	width: 100%;
	min-width: 200px;
	min-height: 126px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
	background-color: #fff;
	padding: 0 23px;
	border: 1px solid #f1f5f9;
	border-radius: 16px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.component:hover {
	transform: scale(1.02);
	box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.component-margin {
	margin-top: -1px;
	width: 36px; height: 58px;
	flex-shrink: 0;
}

.component-text {
	align-self: stretch;
	color: #1e293b;
	font-size: 14px;
	font-family: var(--font-family-font-1);
	font-style: normal;
	font-weight: 700;
	line-height: 1.429;
	letter-spacing: 0px;
	text-align: center;
}

.group-back2 {
	box-shadow: none;
	display: flex;
	flex-direction: column;
	gap: 24px;
	text-align: left;
	background-color: var(--white);
	padding: 96px 66px 72px 67px;
	border: 1px solid #f1f5f9;
	border-radius: 48px;
	overflow: hidden;
}

.btn-component-c {
	margin-left: 1px; margin-top: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	align-self: start;
	text-align: unset;
	background-color: #628a7d;
	padding: 14px 32px;
	border-radius: 12px;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-component-c:hover {
	background-color: #547a6d;
	transform: translateY(-1px);
}

.btn-component-icon3 {
	width: 24px; height: 28px;
	flex-shrink: 0;
	filter: brightness(0) invert(1);
}

.btn-component-label3 {
	color: var(--white);
	text-align: center;
}

.group-subtitle1 {
	margin-right: 1px;
	color: #1e293b;
	--min-font-size: 17; --max-font-size: 30; font-size: var(--interpolate);
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.2;
}

.group-text-container6 {
	margin-right: 1px;
	color: #475569;
	--min-font-size: 15; --max-font-size: 16; font-size: var(--interpolate);
	font-family: var(--font-sans);
	font-weight: 400;
	line-height: 1.625;
}

.group-container15 {
	container: group-container15 / inline-size;
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 35px;
}

.group-row-top,
.group-row-bottom {
	display: flex;
	align-items: flex-start;
	gap: 21px;
	flex-wrap: wrap;
}

.group-bg2,
.group-bg3,
.background-plus-border {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	flex-grow: 1;
	background-color: #f8fafc;
	padding: 19px 16px;
	border: 1px solid #f1f5f9;
	border-radius: 16px;
}

.group-bg2 { width: 97%; min-height: 103px; }
.group-bg3 { width: 103%; min-height: 103px; }

.group-container16 {
	margin-top: 19px;
	width: 100%;
	max-width: 436px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex-shrink: 0;
}

.group-text-heading1 {
	align-self: stretch;
	color: #0f172a;
	font-weight: 700;
	text-align: left;
}

.group-text-container7 {
	width: 100%;
	max-width: 416px;
	min-height: 40px;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	color: rgba(66, 66, 66, 1);
	text-align: left;
}

.bg-plus-border1 { width: 97%; }
.bg-plus-border2 { width: 103%; padding-right: 21px; }

.group-section3 {
	container: group-section3 / inline-size;
	position: relative; z-index: 3;
	background-color: #435a4f;
	padding: 96px var(--gloves-page-gutter) 102px;
	overflow: hidden;
}

.group-section3 .group-container17 {
	max-width: var(--gloves-page-max);
	margin-inline: auto;
	width: 100%;
	box-sizing: border-box;
}

.group-circle-overlay2 {
	position: absolute; top: 345px; right: -256px;
	filter: blur(60px);
	width: calc(100% - 0px); height: 500px;
	max-width: 500px;
	background-color: rgba(242, 194, 129, 0.1);
	border-radius: 50%;
}

.group-container17 {
	display: flex;
	align-items: center;
	gap: 80px;
	flex-wrap: wrap;
}

.group-container18 {
	container: group-container18 / inline-size;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 32px;
	flex-grow: 1;
	font-family: var(--font-sans);
	font-weight: 800;
	text-align: left;
}

.group-subtitle2 {
	color: var(--white);
	font-size: clamp(28px, 5vw, 48px);
	font-family: var(--font-display);
	line-height: 1;
}

.sub-text-brown {
	color: #f2c281;
	text-align: left;
}

.group-text-container8 {
	color: var(--white-80);
}

.group-container19 {
	margin-top: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	flex-wrap: nowrap;
	color: #f2c281;
	font-size: 36px;
	line-height: 1.111;
}

.container-c {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex-grow: 1;
	text-align: center;
}

.container-text3 {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	font-family: var(--font-family-font-1);
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.429;
	letter-spacing: 0.7px;
	text-align: center;
}

.container6 h3,
.container6 .container-text3 {
	text-align: center;
}

.card-over {
	backdrop-filter: blur(2px);
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 32px;
	flex-grow: 1;
	text-align: left;
	background-color: rgba(255, 255, 255, 0.05);
	padding: 40px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 48px;
	transition: transform 0.25s ease;
}

.card-over:hover {
	transform: translateY(-2px);
}

.card-over-text {
	color: var(--white);
	font-size: 20px;
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.4;
}

.card-over-container1 {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.card-over-container2,
.card-over-container3 {
	container: card-over-container2 / inline-size;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.container7 .container-text4 { color: var(--white); }
.container7 .container-text5 { color: #94a3b8; }
.container8 .container-text4 { color: #f2c281; }
.container8 .container-text5 { color: #f2c281; }

.card-over-overlay1,
.card-over-overlay2 {
	display: block;
}

.card-white {
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 9999px;
	overflow: hidden;
}

.card-over-bg1 {
	margin-right: auto;
	width: 90%;
	max-width: 413px;
	height: 12px;
	background-color: #94a3b8;
	border-radius: 9999px;
}

.card-over-bg2 {
	width: 146px;
	height: 12px;
	background-color: #f2c281;
	border-radius: 9999px;
}

.card-over-input-overlay {
	margin-top: 16px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
	font-family: var(--font-sans);
	font-style: italic;
	font-weight: 400;
	line-height: 1.625;
	letter-spacing: 0px;
	text-align: left;
	background-color: rgba(255, 255, 255, 0.05);
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	display: block;
	width: 100%;
	box-sizing: border-box;
}

/* container queries for responsive (mobile / narrow) */
@container group-section1 (width < 1284px) {
	.group-container6 {
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		gap: 24px;
		height: auto;
		min-height: 0;
	}
	.group-container6 > .group-container7 {
		align-items: center;
		width: 100%;
		max-width: min(36rem, calc(100% - 2 * var(--gloves-page-gutter)));
		flex: none;
		gap: 16px;
		margin-inline: auto;
	}
	.group-container6 > .group-container10 {
		width: 100%;
		max-width: 28rem;
		flex: none;
		margin-inline: auto;
	}
	.group-container6 > .group-container7 > * {
		text-align: center;
	}
	.group-container6 > .group-container7 > .group-text-container4 {
		text-align: left;
	}
	/* show glove under description text; hide the side glove block */
	.hero-glove-mobile {
		display: flex;
	}
	.group-container6 > .group-container10 {
		display: none;
	}
	/* center the two CTA buttons in a row */
	.group-container8 {
		flex-direction: row;
		justify-content: center;
		align-self: center;
	}
	/* hide lead time notice on mobile */
	.group-bg1 {
		display: none;
	}
}

@container group-section3 (width < 1215px) {
	.group-container17 {
		flex-direction: column;
		align-items: center;
		gap: 45px;
	}
	.group-container17 > * {
		text-align: center;
	}
	.group-container17 > .card-over > * {
		text-align: unset;
	}
}

/* mobile: product specs and certifications in column, centered */
@media (max-width: 767px) {
	.group-section1 .hero-bg-carousel__slide.hero__bg-products {
		background-image: image-set(
			url(/assets/productshero-640w.webp) 1x,
			url(/assets/productshero-1280w.webp) 2x
		);
	}

	/* remove mobile-only white haze that was bleeding into badge + next section */
	body.layout-figma-gloves .group-rect-bottom {
		display: none;
	}

	body.layout-figma-gloves .group-col {
		margin-top: 0;
		border-top: none;
		background: var(--hero-gloves-mobile-section-bg, #fff);
	}

	/* keep lower hero elements from getting clipped by section bounds */
	body.layout-figma-gloves .group-section1 {
		overflow: visible;
		box-shadow: none;
		border-bottom: none;
		background-color: var(--hero-gloves-mobile-section-bg, #fff);
	}

	/* seam cover: mirrors hero.css +1px overlap approach used on other hero pages */
	body.layout-figma-gloves .group-section1::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: -3px;
		height: 5px;
		z-index: 5;
		pointer-events: none;
		background: var(--hero-gloves-mobile-section-bg, #fff);
	}

	/* hide hero tagline on mobile; pull content up */
	body.layout-figma-gloves .group-section1 .hero__tagline.group-btn-overlay {
		display: none;
	}
	body.layout-figma-gloves .group-section1 .group-container7 {
		margin-top: var(--hero-gloves-mobile-stack-offset-y, -40px);
		align-items: flex-start;
	}

	body.layout-figma-gloves .group-section1 .group-container7 > * {
		text-align: left;
	}
	/* hero heading: same scale as home/solutions/reporting; left-aligned in centered column */
	body.layout-figma-gloves .group-section1 .group-title,
	body.layout-figma-gloves #gloves-hero-heading {
		margin-top: var(--hero-gloves-mobile-title-margin-top, 60px);
		font-size: var(--hero-m-title-font-size);
		line-height: var(--leading-none);
		letter-spacing: -1px;
		width: min(100%, var(--hero-mobile-heading-max-width));
		margin-inline: auto !important;
		text-align: left !important;
		transform: none;
		padding-left: var(--hero-gloves-mobile-shift-x, 15px);
		box-sizing: border-box;
	}

	/* mobile products hero accent: "purpose" uses green heading accent */
	body.layout-figma-gloves #gloves-hero-heading .sub-text-yellow {
		color: #375948;
	}
	/* hide hero description paragraph on mobile */
	body.layout-figma-gloves .group-section1 .group-container7 > .group-text-container4 {
		display: none;
	}
	/* pull glove image up 10px toward header */
	body.layout-figma-gloves .group-section1 .hero-glove-mobile {
		margin-top: var(--hero-gloves-mobile-glove-margin-top, -10px);
	}

	/* nudge glove right to center visually under left-aligned heading */
	body.layout-figma-gloves .group-section1 .hero-glove-mobile__img {
		transform: translate(
			var(--hero-gloves-mobile-glove-offset-x, -35px),
			var(--hero-gloves-mobile-glove-offset-y, 30px)
		) scale(var(--hero-gloves-mobile-glove-scale, 1.32));
	}

	/* keep tested-for badge above the bottom fade region */
	body.layout-figma-gloves .group-section1 .group-back1--mobile {
		position: relative;
		z-index: 6;
		margin-top: var(--hero-gloves-mobile-badge-margin-top, 16px);
		background-color: #fff;
		border: 1px solid rgba(203, 213, 225, 0.8);
		box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
	}
	/* hide Order Now and View Product Specs buttons on mobile */
	body.layout-figma-gloves .group-section1 .group-container8 {
		display: none;
	}
	/* product lineup cards: column and centered on mobile only */
	.group-container13 {
		flex-direction: column;
		align-items: center;
		gap: 48px;
	}
	.group-container13 > * {
		text-align: center;
		max-width: min(400px, 100%);
		width: 100%;
		box-sizing: border-box;
		flex: 0 1 auto;
		align-self: stretch;
		min-height: 0;
	}

	/*
	 * mobile: flagship image band height follows content (no min-height trap).
	 * gallery flex must not grow to fill empty space when images are slow to paint.
	 */
	.card-component-bg--flagship {
		height: auto;
		min-height: 0;
		padding-top: 20px;
		padding-bottom: 20px;
		box-sizing: border-box;
		justify-content: flex-start;
	}

	.card-component-bg--flagship .gloves-flagship-gallery {
		flex: 0 1 auto;
		justify-content: flex-start;
	}

	/* figma desktop min-height would trap a full-screen empty flagship band on phones */
	.group-container13 .card-component {
		min-height: 0;
	}

	.group-container13 .card-component-container {
		flex: 0 1 auto;
	}

	.card-component-bg--flagship .gloves-flagship-gallery__open-inner {
		padding-top: 8px;
	}

	.card-component-bg--flagship .gloves-flagship-gallery__img {
		object-position: center center;
	}

	.group-container14 .row {
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}
	.group-container14 .component {
		width: 100%;
		max-width: 320px;
		box-sizing: border-box;
	}
	.group-container15 .group-row-top,
	.group-container15 .group-row-bottom {
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}
	.group-container15 .group-row-top,
	.group-container15 .group-row-bottom {
		flex-direction: column;
		align-items: center;
		gap: 16px;
		width: 100%;
		max-width: 100%;
	}
	.group-container15 .group-bg2,
	.group-container15 .group-bg3,
	.group-container15 .background-plus-border {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		box-sizing: border-box;
		padding: 16px 14px;
	}
	/* let certification card text containers shrink and wrap */
	.group-back2 .container-b,
	.group-back2 .group-container16 {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		flex-shrink: 1;
	}
	.group-back2 .container-text2,
	.group-back2 .group-text-container7 {
		min-width: 0;
		overflow-wrap: break-word;
		word-wrap: break-word;
	}
	.group-back2 .group-text-container7 {
		max-width: 100%;
		flex-shrink: 1;
		min-height: 0;
		align-items: flex-start;
	}
	.group-back2 {
		padding: 32px 20px 40px;
		border-radius: 24px;
	}
	.group-back2 .group-subtitle1 {
		text-align: center;
	}
	.group-back2 .group-text-container6 {
		text-align: center;
	}
	.group-back2 .btn-component-c {
		align-self: center;
	}

	/* notify / coming soon card: responsive so all content fits */
	.group-container13 .card-back {
		min-height: 0;
	}
	.group-container13 .card-back-bg {
		padding: 32px 24px;
		min-height: 0;
	}
	.group-container13 .card-back-container1 {
		height: 120px;
		max-height: 28vw;
	}
	.group-container13 .card-back-container2 {
		margin: 24px 20px 24px;
		gap: 12px;
	}
	.group-container13 .card-back-text-margin {
		padding-top: 16px;
		padding-bottom: 16px;
	}
	.group-container13 .input-group-container {
		flex-direction: column;
		gap: 12px;
	}
	.group-container13 .input-group-container-input,
	.group-container13 .input-group-container-btn-component {
		width: 100%;
		min-width: 0;
		box-sizing: border-box;
	}
}

/* scroll-in: specs grid + cost card only (product lineup stays visible without IO) */
.component {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.2s ease;
}

.component.component--in-view {
	opacity: 1;
	transform: translateY(0);
}

.row-top .component:nth-child(1) { transition-delay: 0ms; }
.row-top .component:nth-child(2) { transition-delay: 50ms; }
.row-top .component:nth-child(3) { transition-delay: 100ms; }
.row-top .component:nth-child(4) { transition-delay: 150ms; }
.row-bottom .component:nth-child(1) { transition-delay: 200ms; }
.row-bottom .component:nth-child(2) { transition-delay: 250ms; }
.row-bottom .component:nth-child(3) { transition-delay: 300ms; }
.row-bottom .component:nth-child(4) { transition-delay: 350ms; }

.group-section3 .card-over {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.group-section3 .card-over.card-over--in-view {
	opacity: 1;
	transform: translateY(0);
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
	.card-component:hover,
	.card-back:hover,
	.component:hover,
	.card-over:hover,
	.btn-component-a:hover,
	.btn-component-b:hover,
	.btn-component-c:hover {
		transform: none;
	}
	.component,
	.group-section3 .card-over {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* hero subtext: strong light halo on busy photo */
.group-section1 .group-text-container4.text {
	text-shadow:
		0 0 1px rgba(255, 255, 255, 1),
		0 0 18px rgba(255, 255, 255, 0.98),
		0 0 36px rgba(255, 255, 255, 0.92),
		0 2px 14px rgba(255, 255, 255, 0.9),
		0 6px 28px rgba(255, 255, 255, 0.55);
}

/* flagship product carousel + lightbox */
.card-component-bg--flagship {
	padding-left: 24px;
	padding-right: 24px;
}

.gloves-flagship-gallery {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex: 0 1 auto;
	min-height: 0;
}

.gloves-flagship-gallery__open {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	width: 100%;
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	cursor: zoom-in;
	font: inherit;
	color: inherit;
}

.gloves-flagship-gallery__open:focus-visible {
	outline: 2px solid #3d6652;
	outline-offset: 3px;
	border-radius: 8px;
}

.gloves-flagship-gallery__open-inner {
	position: relative;
	display: block;
	width: 100%;
	min-height: 200px;
}

/* picture wrapper must not create a box; img visibility rules stay on .gloves-flagship-gallery__img */
.gloves-flagship-gallery__open-inner picture {
	display: contents;
}

.gloves-flagship-gallery__img {
	display: none;
	margin: 0 auto;
	width: auto;
	max-width: min(420px, 78%);
	max-height: 330px;
	height: auto;
	object-fit: contain;
	object-position: center bottom;
}

.gloves-flagship-gallery__img--active {
	display: block;
}

.gloves-flagship-gallery__hint {
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #64748b;
}

.gloves-flagship-gallery__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.gloves-flagship-gallery__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid rgba(61, 102, 82, 0.35);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	color: #375948;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
}

.gloves-flagship-gallery__btn:hover {
	background: #fff;
	border-color: rgba(61, 102, 82, 0.55);
}

.gloves-flagship-gallery__btn:focus-visible {
	outline: 2px solid #3d6652;
	outline-offset: 2px;
}

.gloves-flagship-gallery__counter {
	font-size: 0.8125rem;
	color: #64748b;
	min-width: 3ch;
	text-align: center;
}

.gloves-flagship-lightbox {
	border: none;
	padding: 0;
	margin: auto;
	max-width: min(96vw, 1100px);
	width: 100%;
	background: transparent;
	box-sizing: border-box;
}

.gloves-flagship-lightbox::backdrop {
	background: rgba(15, 23, 42, 0.78);
}

.gloves-flagship-lightbox__panel {
	position: relative;
	background: #fff;
	border-radius: 16px;
	padding: 12px 12px 16px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.gloves-flagship-lightbox__close {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 2;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 50%;
	background: rgba(15, 23, 42, 0.08);
	color: #0f172a;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
}

.gloves-flagship-lightbox__close:hover {
	background: rgba(15, 23, 42, 0.12);
}

.gloves-flagship-lightbox__close:focus-visible {
	outline: 2px solid #3d6652;
	outline-offset: 2px;
}

.gloves-flagship-lightbox__stage {
	position: relative;
	width: 100%;
	min-height: min(70vh, 800px);
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
}

.gloves-flagship-lightbox__stage picture {
	display: contents;
}

.gloves-flagship-lightbox__img {
	display: none;
	width: 100%;
	height: auto;
	max-height: min(70vh, 800px);
	object-fit: contain;
}

.gloves-flagship-lightbox__img--active {
	display: block;
}

.gloves-flagship-lightbox__bar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	margin-top: 12px;
}

.gloves-flagship-lightbox__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid #e2e8f0;
	border-radius: 50%;
	background: #fff;
	color: #374151;
	cursor: pointer;
}

.gloves-flagship-lightbox__nav:focus-visible {
	outline: 2px solid #3d6652;
	outline-offset: 2px;
}

.gloves-flagship-lightbox__count {
	font-size: 0.875rem;
	color: #64748b;
	font-weight: 600;
}
