/* Product detail V10. Loaded only on fb_product detail pages. */
.fb-product-detail {
	--pd-navy: #081f3d;
	--pd-navy-deep: #05162b;
	--pd-blue: #0b579d;
	--pd-copper: #c8752a;
	--pd-text: #102033;
	--pd-muted: #627187;
	--pd-line: #dee6ef;
	--pd-surface: #f5f7fa;
	color: var(--pd-text);
	background: #fff;
}

.fb-product-detail > .site-breadcrumbs {
	width: var(--fb-shell);
	margin: 0 auto;
	padding: 22px 0 14px;
	color: var(--pd-muted);
	font-size: 0.82rem;
}

.fb-product-detail > .site-breadcrumbs a {
	color: var(--pd-navy);
}

.fb-product-detail > .site-breadcrumbs a:hover,
.fb-product-detail > .site-breadcrumbs a:focus-visible {
	color: var(--pd-blue);
}

.fb-product-detail > .site-breadcrumbs .site-breadcrumbs__sep {
	color: var(--pd-muted);
	font-size: 1.08em;
	font-weight: 600;
}

.fb-product-section {
	padding: 68px 0;
}

.fb-product-section--soft {
	background: var(--pd-surface);
}

.fb-product-section-head {
	max-width: 880px;
	margin-bottom: 30px;
}

.fb-product-section-kicker,
.fb-product-kicker {
	margin: 0 0 9px;
	color: var(--pd-copper);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.fb-product-section-head h2 {
	display: flex;
	align-items: center;
	gap: 13px;
	margin: 0;
	color: var(--pd-navy);
	font-size: clamp(1.75rem, 2.4vw, 2.35rem);
	line-height: 1.12;
}

.fb-product-section-head h2::before {
	width: 36px;
	height: 2px;
	background: var(--pd-copper);
	content: "";
	flex: 0 0 auto;
}

.fb-product-section-head > p:last-child:not(.fb-product-section-kicker) {
	margin: 13px 0 0;
	color: var(--pd-muted);
	font-size: 0.98rem;
	line-height: 1.7;
}

.fb-product-intro {
	padding: 20px 0 62px;
}

.fb-product-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
	gap: clamp(38px, 5vw, 58px);
	align-items: start;
}

.fb-product-gallery {
	overflow: hidden;
	border: 1px solid var(--pd-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 44px rgba(8, 31, 61, 0.08);
}

.fb-product-gallery__main {
	position: relative;
	height: 460px;
	background: #fff;
}

.fb-product-gallery__main::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1;
	height: 3px;
	background: var(--pd-copper);
	content: "";
}

.fb-product-gallery__main-image {
	width: 100%;
	height: 100%;
	padding: 20px;
	object-fit: contain;
}

.fb-product-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	padding: 13px;
	border-top: 1px solid var(--pd-line);
	background: var(--pd-surface);
}

.fb-product-gallery__thumb {
	height: 76px;
	padding: 0;
	overflow: hidden;
	border: 2px solid transparent;
	border-radius: 4px;
	background: #fff;
	cursor: pointer;
}

.fb-product-gallery__thumb:hover,
.fb-product-gallery__thumb.is-active,
.fb-product-gallery__thumb:focus-visible {
	border-color: var(--pd-copper);
	outline: none;
}

.fb-product-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.fb-product-intro__copy {
	padding-top: 18px;
}

.fb-product-intro__copy h1 {
	max-width: 680px;
	margin: 0;
	color: var(--pd-navy);
	font-size: var(--fb-type-detail-title);
	line-height: 1.02;
}

.fb-product-intro__excerpt {
	max-width: 650px;
	margin: 22px 0;
	color: #435168;
	font-size: 1.08rem;
	line-height: 1.7;
}

.fb-product-quick-facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0 0 25px;
	overflow: hidden;
	border: 1px solid var(--pd-line);
	border-radius: 8px;
	background: var(--pd-surface);
}

.fb-product-quick-facts div {
	min-width: 0;
	padding: 16px;
	border-right: 1px solid var(--pd-line);
}

.fb-product-quick-facts div:last-child {
	border-right: 0;
}

.fb-product-quick-facts dt {
	margin-bottom: 7px;
	color: var(--pd-copper);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.fb-product-quick-facts dd {
	margin: 0;
	color: var(--pd-navy);
	font-size: 0.86rem;
	line-height: 1.5;
}

.fb-product-intro__actions,
.fb-product-quote__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.fb-product-detail .button {
	min-height: 48px;
	border-radius: 2px;
}

.fb-product-button-outline {
	border: 1px solid var(--pd-navy);
	background: transparent;
	color: var(--pd-navy);
}

.fb-product-capability-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	color: var(--pd-navy);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
}

.fb-product-capability-link svg,
.fb-product-relation-card__link svg {
	width: 18px;
	height: 18px;
}

.fb-product-description {
	padding-top: 58px;
	border-top: 1px solid var(--pd-line);
}

.fb-product-description__content {
	width: 100%;
	max-width: none;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.fb-product-description__content > *:first-child {
	margin-top: 0;
}

.fb-product-description__content > *:last-child {
	margin-bottom: 0;
}

.fb-product-description__content p,
.fb-product-description__content li {
	color: #405068;
	font-size: 1rem;
	line-height: 1.75;
}

.fb-custom-options__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.fb-option-card,
.fb-quality-card,
.fb-delivery-card {
	position: relative;
	padding: 25px;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(8, 31, 61, 0.065);
}

.fb-option-card::before,
.fb-quality-card::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 3px;
	background: var(--pd-copper);
	content: "";
}

.fb-option-card__icon,
.fb-quality-card__icon,
.fb-delivery-card > span {
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	margin-bottom: 17px;
	border: 1px solid rgba(11, 87, 157, 0.22);
	border-radius: 50%;
	color: var(--pd-blue);
}

.fb-option-card svg,
.fb-quality-card svg,
.fb-delivery-card svg {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.fb-option-card h3,
.fb-quality-card h3,
.fb-delivery-card h3 {
	margin: 0 0 8px;
	color: var(--pd-navy);
	font-size: 1.05rem;
}

.fb-option-card p,
.fb-quality-card p,
.fb-delivery-card p {
	margin: 0;
	color: var(--pd-muted);
	font-size: 0.88rem;
	line-height: 1.62;
}

.fb-manufacturing {
	background: var(--pd-navy-deep);
	color: #fff;
}

.fb-product-section-head--light h2,
.fb-product-section-head--light > p:last-child:not(.fb-product-section-kicker) {
	color: #fff;
}

.fb-product-section-head--light > p:last-child:not(.fb-product-section-kicker) {
	opacity: 0.76;
}

.fb-manufacturing__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 13px;
}

.fb-process-card {
	min-height: 190px;
	padding: 19px 16px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.055);
}

.fb-process-card__number {
	display: block;
	margin-bottom: 11px;
	color: #e18a45;
	font-size: 0.72rem;
	font-weight: 700;
}

.fb-process-card__icon {
	display: block;
	width: 32px;
	height: 32px;
	margin-bottom: 13px;
}

.fb-process-card__icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: #fff;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.fb-process-card h3 {
	margin: 0 0 7px;
	color: #fff;
	font-size: 0.92rem;
}

.fb-process-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.76rem;
	line-height: 1.5;
}

.fb-product-subsection-title {
	margin: 36px 0 16px;
	color: #e18a45;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.fb-production-evidence {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.fb-production-equipment {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.fb-equipment-card,
.fb-workshop-card {
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
}

.fb-equipment-card img {
	width: 100%;
	height: 155px;
	padding: 8px;
	background: #f2f5f8;
	object-fit: contain;
}

.fb-equipment-card figcaption,
.fb-workshop-card figcaption {
	padding: 12px 14px 14px;
	color: #fff;
	font-size: 0.82rem;
	line-height: 1.35;
}

.fb-equipment-card figcaption span,
.fb-workshop-card figcaption span {
	display: block;
	margin-bottom: 4px;
	color: #e18a45;
	font-size: 0.62rem;
	font-weight: 700;
	text-transform: uppercase;
}

.fb-production-workshops {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.fb-workshop-card img {
	width: 100%;
	height: 240px;
	object-fit: cover;
}

.fb-evidence-card {
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
}

.fb-evidence-card img {
	width: 100%;
	height: 170px;
	object-fit: cover;
}

.fb-evidence-card figcaption {
	padding: 13px 15px 15px;
	color: #fff;
	font-size: 0.88rem;
}

.fb-evidence-card figcaption span {
	display: block;
	margin-bottom: 4px;
	color: #e18a45;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
}

.fb-quality-control__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.fb-quality-card--primary {
	grid-column: span 1;
}

.fb-quality-card:nth-child(1),
.fb-quality-card:nth-child(2),
.fb-quality-card:nth-child(3) {
	grid-column: span 1;
}

.fb-quality-card:nth-child(3) {
	grid-column: span 2;
}

.fb-quality-card__options {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin-top: 15px;
}

.fb-quality-card__options span {
	padding: 5px 8px;
	border: 1px solid rgba(8, 31, 61, 0.07);
	border-radius: 3px;
	background: #f1f4f7;
	color: var(--pd-navy);
	font-size: 0.68rem;
	line-height: 1.25;
}

.fb-product-subsection-title--dark {
	color: var(--pd-copper);
}

.fb-inspection-evidence {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.fb-inspection-evidence-card,
.fb-testing-equipment-card {
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--pd-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 11px 26px rgba(8, 31, 61, 0.06);
}

.fb-inspection-evidence-card img {
	width: 100%;
	height: 205px;
	object-fit: cover;
}

.fb-inspection-evidence-card--contain img {
	padding: 10px;
	background: var(--pd-surface);
	object-fit: contain;
}

.fb-inspection-evidence-card figcaption,
.fb-testing-equipment-card figcaption {
	padding: 13px 15px 15px;
	color: var(--pd-navy);
	font-size: 0.86rem;
	line-height: 1.35;
}

.fb-inspection-evidence-card figcaption span,
.fb-testing-equipment-card figcaption span {
	display: block;
	margin-bottom: 4px;
	color: var(--pd-copper);
	font-size: 0.62rem;
	font-weight: 700;
	text-transform: uppercase;
}

.fb-testing-equipment {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.fb-testing-equipment-card img {
	width: 100%;
	height: 165px;
	padding: 10px;
	background: var(--pd-surface);
	object-fit: contain;
}

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

.fb-delivery-card {
	border-bottom: 3px solid var(--pd-copper);
}

.fb-packaging-evidence {
	display: grid;
	grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
	align-items: center;
	gap: 28px;
	margin: 28px 0 0;
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(8, 31, 61, 0.065);
}

.fb-packaging-evidence img {
	width: 100%;
	height: 250px;
	padding: 10px;
	object-fit: contain;
}

.fb-packaging-evidence figcaption {
	padding: 22px 28px 22px 0;
	color: var(--pd-navy);
	font-size: 1.15rem;
	font-weight: 700;
}

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

.fb-product-relation-card {
	overflow: hidden;
	border: 1px solid var(--pd-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(8, 31, 61, 0.06);
}

.fb-product-relation-card__image {
	display: block;
	height: 180px;
	background: #fff;
}

.fb-product-relation-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fb-product-relations--products .fb-product-relation-card__image img {
	padding: 10px;
	object-fit: contain;
}

.fb-product-relation-card__body {
	padding: 17px 18px 19px;
}

.fb-product-relation-card__body > p {
	margin: 0 0 7px;
	color: var(--pd-copper);
	font-size: 0.66rem;
	font-weight: 700;
	text-transform: uppercase;
}

.fb-product-relation-card h3 {
	margin: 0 0 13px;
	color: var(--pd-navy);
	font-size: 1.05rem;
	line-height: 1.28;
}

.fb-product-relation-card__link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--pd-blue);
	font-size: 0.74rem;
	font-weight: 700;
	text-transform: uppercase;
}

.fb-product-quote {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: center;
	margin-top: 18px;
	margin-bottom: 78px;
	padding-top: 34px;
	padding-bottom: 34px;
	border-top: 3px solid var(--pd-copper);
	border-radius: 8px;
	background: var(--pd-navy-deep);
	color: #fff;
	box-shadow: 0 22px 50px rgba(8, 31, 61, 0.16);
}

.fb-product-quote h2 {
	margin: 0 0 9px;
	color: #fff;
	font-size: clamp(1.6rem, 2.2vw, 2.15rem);
}

.fb-product-quote p {
	max-width: 760px;
	margin: 0;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.65;
}

.fb-product-button-outline--light {
	border-color: rgba(255, 255, 255, 0.6);
	color: #fff;
}

@media (max-width: 1099px) {
	.fb-product-intro__grid {
		grid-template-columns: 1fr;
	}

	.fb-product-gallery {
		max-width: 720px;
	}

	.fb-custom-options__grid,
	.fb-quality-control__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fb-quality-card:nth-child(3) {
		grid-column: span 2;
	}

	.fb-manufacturing__grid,
	.fb-production-equipment,
	.fb-production-evidence,
	.fb-inspection-evidence,
	.fb-testing-equipment,
	.fb-product-relations__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

@media (max-width: 619px) {
	.fb-product-section {
		padding: 48px 0;
	}

	.fb-product-intro {
		padding-top: 10px;
	}

	.fb-product-gallery__main {
		height: 300px;
	}

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

	.fb-product-intro__copy h1 {
		font-size: var(--fb-type-detail-title);
	}

	.fb-product-quick-facts,
	.fb-custom-options__grid,
	.fb-manufacturing__grid,
	.fb-production-equipment,
	.fb-production-workshops,
	.fb-production-evidence,
	.fb-inspection-evidence,
	.fb-testing-equipment,
	.fb-quality-control__grid,
	.fb-product-delivery__grid,
	.fb-product-relations__grid {
		grid-template-columns: 1fr;
	}

	.fb-product-quick-facts div {
		border-right: 0;
		border-bottom: 1px solid var(--pd-line);
	}

	.fb-product-quick-facts div:last-child {
		border-bottom: 0;
	}

	.fb-product-description__content {
		padding: 0;
	}

	.fb-quality-card:nth-child(3) {
		grid-column: auto;
	}

	.fb-product-intro__actions .button,
	.fb-product-quote__actions .button {
		width: 100%;
	}

	.fb-product-relation-card__image {
		height: 220px;
	}

	.fb-packaging-evidence {
		grid-template-columns: 1fr;
	}

	.fb-packaging-evidence figcaption {
		padding: 0 22px 22px;
	}
}
