@charset "UTF-8";

/* --------------------------------------------------------------------------
   Font declarations
   -------------------------------------------------------------------------- */
/* Fonts are loaded via Google Fonts in the template head. */

/* --------------------------------------------------------------------------
   CSS variables
   -------------------------------------------------------------------------- */
:root {
	--poh-green-bright: #44cc00;
	--poh-green-primary: #339900;
	--poh-green-dark: #277500;
	--poh-grey-light: #e7f5e1;
	--poh-grey-medium: #c4d7be;
	--poh-grey-dark: #333333;
	--poh-text-colour: #1f2a1f;
	--poh-font-body: "Encode Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--poh-font-heading: "Encode Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--poh-container-max: 1200px;
	--poh-site-max: 1400px;
	/* Spec sheet / product UI — same greens as POH brand (no separate palette) */
	--spec-green: var(--poh-green-primary);
	--spec-green-light: var(--poh-grey-light);
	--spec-green-border: var(--poh-grey-medium);
	--spec-text: var(--poh-text-colour);
	--spec-radius: 6px;
}

/* --------------------------------------------------------------------------
   Base styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	margin: 0;
	padding: 0;
	min-height: 100%;
	background-color: #f0f0f0;
}

body {
	margin: 0;
	padding: 0;
	min-height: 100%;
	font-family: var(--poh-font-body);
	color: var(--poh-text-colour);
	background-color: #f0f0f0;
}

a {
	color: var(--poh-green-primary);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--poh-green-dark);
	text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--poh-font-heading);
	font-weight: 800;
	color: var(--poh-green-primary);
	margin: 0 0 0.75rem;
	line-height: 1.2;
}

p {
	margin: 0 0 1rem;
	line-height: 1.6;
	font-weight: 400;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

b, strong {
	font-weight: 800;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	border-radius: 999px;
	background-color: var(--poh-green-primary);
	color: #fff;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.btn:hover,
.btn:focus {
	background-color: var(--poh-green-dark);
	color: #fff;
	text-decoration: none;
}

.section-heading {
	text-align: center;
	margin-bottom: 1.5rem;
}

.section-heading h2 {
	font-size: clamp(2rem, 4vw, 2.75rem);
	letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   Layout – Site wrapper (caps entire page on wide screens)
   -------------------------------------------------------------------------- */
.site-wrapper {
	position: relative;
	max-width: var(--poh-site-max);
	width: 100%;
	margin: 0 auto;
	background-color: #fff;
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

/* --------------------------------------------------------------------------
   Layout – Site header (mobile-first)
   -------------------------------------------------------------------------- */
.site-header {
	position: relative;
	z-index: 200;
}

.header-container {
	max-width: var(--poh-container-max);
	margin: 0 auto;
	padding: 0 1rem;
}


/* ---- Topbar ---- */
.header-topbar {
	background-color: rgba(39, 117, 0, 0.85);
	color: #fff;
	padding: 0.4rem 0;
}

/* ---- Main header row ---- */
.header-main {
	position: relative;
	background-color: #339900;
	border-bottom: 5px solid var(--poh-green-bright);
}

.header-main .header-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	padding-block: 0.5rem;
}

.header-logo-link {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	padding: 0.35rem 0;
}

.header-logo {
	width: clamp(160px, 42vw, 260px);
	height: auto;
}

/* ---- Mobile hamburger toggle ---- */
.nav-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 8px;
	background: none;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 6px;
	cursor: pointer;
	z-index: 210;
}

.nav-toggle__bar {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #fff;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

/* ---- Navigation panel (mobile: absolute overlay) ---- */
.site-navigation {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: rgba(231, 245, 225, 0.9);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding: 0.5rem 1rem 1rem;
	z-index: 250;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	max-height: calc(100vh - 60px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.site-navigation.is-open {
	display: block;
}

.subnav-source {
	display: none !important;
}

/* ---- Tablet (≥576px) ---- */
@media (min-width: 576px) {
	.header-logo {
		width: clamp(200px, 30vw, 300px);
	}
}

/* ---- Tablet landscape / small desktop (≥768px) ---- */
@media (min-width: 768px) {
	.header-logo {
		width: clamp(220px, 26vw, 340px);
	}
}

/* ---- Desktop (≥992px) ---- */
@media (min-width: 992px) {
	.site-header {
		background-image: url("../images/BG-Header-All.svg");
		background-repeat: no-repeat;
		background-position: bottom left;
		background-size: 100% auto;
	}


	.header-topbar {
		background-color: transparent;
	}

	.header-main {
		position: relative;
		z-index: 1;
		background: none;
		border-bottom: none;
	}

	.header-main .header-container {
		flex-wrap: nowrap;
		align-items: flex-end;
		padding-bottom: 0.5rem;
	}

	.header-logo-link {
		padding: 0;
	}

	.header-logo {
		width: clamp(220px, 28vw, 380px);
	}

	.nav-toggle {
		display: none;
	}

	.site-navigation {
		display: flex;
		position: static;
		width: auto;
		margin: 0 0 0 clamp(1rem, 4vw, 3rem);
		padding: 0;
		flex: 0 0 auto;
		justify-content: flex-end;
		background: none;
		box-shadow: none;
		max-height: none;
		overflow: visible;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.subnav-source {
		display: none !important;
	}
}

/* ---- Wide desktop (≥1200px) ---- */
@media (min-width: 1200px) {
	.header-logo {
		width: clamp(350px, 30vw, 470px);
	}
}

@media (min-width: 1400px) {
	.header-logo {
		width: 470px;
	}
}

@media (min-width: 1800px) {
	.site-navigation {
		margin: 0 0 0 auto;
	}

	.site-navigation .mod-menu > li > a,
	.site-navigation .nav > li > a {
		flex-direction: column;
		text-align: center;
		gap: 0.3rem;
	}

	.site-navigation .mod-menu > li,
	.site-navigation .nav > li {
		text-align: center;
	}

	.site-navigation .mod-menu > li > a img,
	.site-navigation .nav > li > a img {
		width: 36px;
	}
}

/* --------------------------------------------------------------------------
   Primary navigation menu (mobile-first)
   -------------------------------------------------------------------------- */
.site-navigation .mod-menu,
.site-navigation .nav {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	padding: 0;
}

.site-navigation .mod-menu > li,
.site-navigation .nav > li {
	position: relative;
}

.site-navigation .mod-menu > li > a,
.site-navigation .mod-menu > li > span,
.site-navigation .nav > li > a,
.site-navigation .nav > li > span {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	color: var(--poh-grey-dark);
	font-weight: 600;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	padding: 0.7rem 0;
	border-bottom: 1px solid rgba(51, 153, 0, 0.15);
	transition: color 0.2s ease;
	text-decoration: none;
}

.site-navigation .mod-menu > li:last-child > a,
.site-navigation .mod-menu > li:last-child > span,
.site-navigation .nav > li:last-child > a,
.site-navigation .nav > li:last-child > span {
	border-bottom: none;
}

.site-navigation .mod-menu > li > a img,
.site-navigation .nav > li > a img {
	width: 28px;
	height: auto;
	border-radius: 50%;
	transition: transform 0.2s ease;
}

.site-navigation .mod-menu > li > a .image-title,
.site-navigation .nav > li > a .image-title {
	display: block;
}

.site-navigation .mod-menu > li:hover > a,
.site-navigation .mod-menu > li:hover > span,
.site-navigation .mod-menu > li:focus-within > a,
.site-navigation .mod-menu > li:focus-within > span,
.site-navigation .mod-menu > li.active > a,
.site-navigation .mod-menu > li.active > span,
.site-navigation .mod-menu > li.current > a,
.site-navigation .mod-menu > li.current > span,
.site-navigation .nav > li:hover > a,
.site-navigation .nav > li:hover > span,
.site-navigation .nav > li:focus-within > a,
.site-navigation .nav > li:focus-within > span,
.site-navigation .nav > li.active > a,
.site-navigation .nav > li.active > span,
.site-navigation .nav > li.current > a,
.site-navigation .nav > li.current > span {
	color: var(--poh-green-primary);
	text-decoration: none;
}

.site-navigation .mod-menu > li:hover > a img,
.site-navigation .mod-menu > li:focus-within > a img,
.site-navigation .nav > li:hover > a img,
.site-navigation .nav > li:focus-within > a img {
	transform: translateY(-2px);
}

/* ---- Mobile sub-menu (children of parent items like Products) ---- */
.site-navigation .mod-menu ul,
.site-navigation .nav ul {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0 0 0 1rem;
}

.site-navigation .mod-menu li.is-subnav-open > ul,
.site-navigation .nav li.is-subnav-open > ul {
	display: block;
}

#primary-nav .mod-menu ul li a,
#primary-nav .mod-menu ul li span,
#primary-nav .nav ul li a,
#primary-nav .nav ul li span {
	display: block;
	padding: 0.5rem 0;
	color: var(--poh-text-colour);
	font-size: 0.88rem;
	font-weight: 500;
	text-transform: none;
	letter-spacing: normal;
	text-decoration: none;
	border-bottom: 1px solid rgba(51, 153, 0, 0.1);
	transition: color 0.2s ease;
}

#primary-nav .mod-menu ul ul,
#primary-nav .nav ul ul {
	padding-left: 1rem;
}

#primary-nav .mod-menu ul li:last-child > a,
#primary-nav .mod-menu ul li:last-child > span,
#primary-nav .nav ul li:last-child > a,
#primary-nav .nav ul li:last-child > span {
	border-bottom: none;
}

#primary-nav .mod-menu ul li a:hover,
#primary-nav .mod-menu ul li a:focus,
#primary-nav .mod-menu ul li span:hover,
#primary-nav .mod-menu ul li span:focus,
#primary-nav .nav ul li a:hover,
#primary-nav .nav ul li a:focus,
#primary-nav .nav ul li span:hover,
#primary-nav .nav ul li span:focus {
	color: var(--poh-green-primary);
}

/* ---- Chevron on parent items ---- */
.site-navigation .mod-menu li.parent > a,
.site-navigation .mod-menu li.parent > span,
.site-navigation .mod-menu li.deeper > a,
.site-navigation .mod-menu li.deeper > span,
.site-navigation .nav li.parent > a,
.site-navigation .nav li.parent > span,
.site-navigation .nav li.deeper > a,
.site-navigation .nav li.deeper > span {
	position: relative;
	padding-right: 1.5rem;
	cursor: pointer;
}

.site-navigation .mod-menu li.parent > a::after,
.site-navigation .mod-menu li.parent > span::after,
.site-navigation .mod-menu li.deeper > a::after,
.site-navigation .mod-menu li.deeper > span::after,
.site-navigation .nav li.parent > a::after,
.site-navigation .nav li.parent > span::after,
.site-navigation .nav li.deeper > a::after,
.site-navigation .nav li.deeper > span::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 0.45rem;
	height: 0.45rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-50%) rotate(45deg);
	transition: transform 0.2s ease;
}

.site-navigation .mod-menu li.is-subnav-open > a::after,
.site-navigation .mod-menu li.is-subnav-open > span::after,
.site-navigation .nav li.is-subnav-open > a::after,
.site-navigation .nav li.is-subnav-open > span::after {
	transform: translateY(-50%) rotate(225deg);
}

/* --------------------------------------------------------------------------
   Primary nav – desktop (≥992px)
   -------------------------------------------------------------------------- */
@media (min-width: 992px) {
	.site-navigation .mod-menu,
	.site-navigation .nav {
		flex-direction: row;
		align-items: center;
		justify-content: flex-end;
		gap: clamp(0.75rem, 2vw, 2.5rem);
	}

	.site-navigation .mod-menu > li,
	.site-navigation .nav > li {
		text-align: left;
		white-space: nowrap;
	}

	.site-navigation .mod-menu > li > a,
	.site-navigation .nav > li > a {
		flex-direction: row;
		align-items: center;
		gap: 0.4rem;
		color: var(--poh-grey-dark);
		font-size: clamp(0.6rem, 0.95vw, 0.8rem);
		font-weight: 700;
		padding: 0.25rem 0;
		border-bottom: none;
		letter-spacing: 0.04em;
	}

	.site-navigation .mod-menu > li > a img,
	.site-navigation .nav > li > a img {
		width: clamp(24px, 2.5vw, 32px);
	}

	.site-navigation .mod-menu > li:hover > a,
	.site-navigation .mod-menu > li:focus-within > a,
	.site-navigation .mod-menu > li.active > a,
	.site-navigation .mod-menu > li.current > a,
	.site-navigation .nav > li:hover > a,
	.site-navigation .nav > li:focus-within > a,
	.site-navigation .nav > li.active > a,
	.site-navigation .nav > li.current > a {
		color: var(--poh-green-primary);
	}

	.site-navigation .mod-menu li.parent > a::after,
	.site-navigation .mod-menu li.deeper > a::after,
	.site-navigation .nav li.parent > a::after,
	.site-navigation .nav li.deeper > a::after {
		display: none;
	}

	.site-navigation .mod-menu ul,
	.site-navigation .nav ul {
		display: none;
	}

	.site-navigation .subnav-merged {
		display: none;
	}
}

/* --------------------------------------------------------------------------
   Secondary navigation menu
   -------------------------------------------------------------------------- */
.visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.site-subnavigation {
	display: none;
	position: relative;
	background-color: rgba(231, 245, 225, 0.9);
	border-top: 1px solid rgba(51, 153, 0, 0.15);
	border-bottom: 1px solid rgba(51, 153, 0, 0.15);
	backdrop-filter: blur(4px);
	z-index: 210;
}

@media (min-width: 992px) {
	.site-subnavigation {
		display: block;
	}
}

.site-subnavigation__toggle {
	display: none;
}


.site-subnavigation__inner {
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: stretch;
	padding: 0 1rem;
	z-index: 150;
}

.site-subnavigation .mod-menu,
.site-subnavigation .nav {
	display: flex;
	align-items: stretch;
	gap: clamp(0.75rem, 2.2vw, 1.75rem);
	list-style: none;
	margin: 0;
	padding: 0.35rem 0;
	font-family: inherit;
}

.site-subnavigation .mod-menu li,
.site-subnavigation .nav li {
	position: relative;
}

.site-subnavigation .mod-menu > li,
.site-subnavigation .nav > li {
	padding-left: 0;
	z-index: 150;
}

.site-subnavigation .mod-menu > li > a,
.site-subnavigation .nav > li > a, .site-subnavigation .nav > li > span{
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.55rem 0;
	color: var(--poh-grey-dark);
	font-size: clamp(0.75rem, 1.6vw, 0.9rem);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-decoration: none;
	transition: color 0.2s ease;
	border-left: 2px solid rgba(255, 255, 255, 0.9);
	padding-left: clamp(1rem, 2.2vw, 1.6rem);
}
.site-subnavigation .nav > li > span {
	margin-right: 20px;
}
.site-subnavigation .mod-menu > li:first-child,
.site-subnavigation .nav > li:first-child {
	padding-left: 0;
}

.site-subnavigation .mod-menu > li:first-child > a,
.site-subnavigation .nav > li:first-child > a {
	border-left: none;
}

.site-subnavigation .mod-menu > li:hover > a,
.site-subnavigation .mod-menu > li:focus-within > a,
.site-subnavigation .mod-menu > li.active > a,
.site-subnavigation .mod-menu > li.current > a,
.site-subnavigation .nav > li:hover > a,
.site-subnavigation .nav > li:focus-within > a,
.site-subnavigation .nav > li.active > a,
.site-subnavigation .nav > li.current > a {
	color: var(--poh-green-primary);
	text-decoration: none;
}

.site-subnavigation .mod-menu li.has-dropdown > a,
.site-subnavigation .mod-menu li.has-dropdown > span,
.site-subnavigation .nav li.has-dropdown > a,
.site-subnavigation .nav li.has-dropdown > span {
	position: relative;
	padding-right: 1.5rem;
}

.site-subnavigation .mod-menu li.has-dropdown > a::after,
.site-subnavigation .mod-menu li.has-dropdown > span::after,
.site-subnavigation .nav li.has-dropdown > a::after,
.site-subnavigation .nav li.has-dropdown > span::after {
	content: "";
	position: absolute;
	right: 0.25rem;
	top: 50%;
	width: 0.55rem;
	height: 0.55rem;
	border-right: 2px solid var(--poh-grey-dark);
	border-bottom: 2px solid var(--poh-grey-dark);
	transform: translateY(-50%) rotate(45deg);
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.site-subnavigation .mod-menu li.has-dropdown:hover > a::after,
.site-subnavigation .mod-menu li.has-dropdown:focus-within > a::after,
.site-subnavigation .mod-menu li.has-dropdown:hover > span::after,
.site-subnavigation .mod-menu li.has-dropdown:focus-within > span::after,
.site-subnavigation .nav li.has-dropdown:hover > a::after,
.site-subnavigation .nav li.has-dropdown:focus-within > a::after,
.site-subnavigation .nav li.has-dropdown:hover > span::after,
.site-subnavigation .nav li.has-dropdown:focus-within > span::after {
	border-color: var(--poh-green-primary);
	transform: translateY(-50%) rotate(225deg);
}

.site-subnavigation .mod-menu li.parent > a,
.site-subnavigation .mod-menu li.deeper > a,
.site-subnavigation .nav li.parent > a,
.site-subnavigation .nav li.deeper > a,
.site-subnavigation .nav li.parent > span,
.site-subnavigation .nav li.deeper > span {
	position: relative;
	padding-right: 1.5rem;
}

.site-subnavigation .mod-menu li.parent > a::after,
.site-subnavigation .mod-menu li.deeper > a::after,
.site-subnavigation .nav li.parent > a::after,
.site-subnavigation .nav li.deeper > a::after,
.site-subnavigation .nav li.parent > span::after,
.site-subnavigation .nav li.deeper > span::after {
	content: "";
	position: absolute;
	right: 0.25rem;
	top: 45%;
	width: 0.55rem;
	height: 0.55rem;
	border-right: 2px solid var(--poh-grey-dark);
	border-bottom: 2px solid var(--poh-grey-dark);
	transform: translateY(-50%) rotate(45deg);
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.site-subnavigation .mod-menu li.parent:hover > a::after,
.site-subnavigation .mod-menu li.parent:focus-within > a::after,
.site-subnavigation .mod-menu li.parent.active > a::after,
.site-subnavigation .mod-menu li.parent.current > a::after,
.site-subnavigation .mod-menu li.deeper:hover > a::after,
.site-subnavigation .mod-menu li.deeper:focus-within > a::after,
.site-subnavigation .mod-menu li.deeper.active > a::after,
.site-subnavigation .mod-menu li.deeper.current > a::after,
.site-subnavigation .nav li.parent:hover > a::after,
.site-subnavigation .nav li.parent:focus-within > a::after,
.site-subnavigation .nav li.parent.active > a::after,
.site-subnavigation .nav li.parent.current > a::after,
.site-subnavigation .nav li.deeper:hover > a::after,
.site-subnavigation .nav li.deeper:focus-within > a::after,
.site-subnavigation .nav li.deeper.active > a::after,
.site-subnavigation .nav li.deeper.current > a::after {
	border-color: var(--poh-green-primary);
	transform: translateY(-50%) rotate(45deg);
}

.site-subnavigation .mod-menu ul,
.site-subnavigation .nav ul {
	position: absolute;
	min-width: clamp(160px, 18vw, 220px);
	margin: 0;
	padding: 0.5rem 0;
	list-style: none;
	background-color: rgba(231, 245, 225, 0.95);
	border-radius: 0;
	box-shadow: none;
	display: none;
	z-index: 300;
}

.site-subnavigation .mod-menu > li > ul,
.site-subnavigation .nav > li > ul {
	top: calc(100% - 0.25rem);
	left: 0;
	right: auto;
}

.site-subnavigation .mod-menu ul ul,
.site-subnavigation .nav ul ul {
	top: 0;
	left: 100%;
	right: auto;
}

.site-subnavigation .mod-menu ul li.parent > a::after,
.site-subnavigation .mod-menu ul li.deeper > a::after,
.site-subnavigation .mod-menu ul li.parent > span::after,
.site-subnavigation .mod-menu ul li.deeper > span::after,
.site-subnavigation .nav ul li.parent > a::after,
.site-subnavigation .nav ul li.deeper > a::after,
.site-subnavigation .nav ul li.parent > span::after,
.site-subnavigation .nav ul li.deeper > span::after {
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}

.site-subnavigation .mod-menu ul li.parent:hover > a::after,
.site-subnavigation .mod-menu ul li.parent:focus-within > a::after,
.site-subnavigation .mod-menu ul li.deeper:hover > a::after,
.site-subnavigation .mod-menu ul li.deeper:focus-within > a::after,
.site-subnavigation .mod-menu ul li.parent:hover > span::after,
.site-subnavigation .mod-menu ul li.parent:focus-within > span::after,
.site-subnavigation .mod-menu ul li.deeper:hover > span::after,
.site-subnavigation .mod-menu ul li.deeper:focus-within > span::after,
.site-subnavigation .nav ul li.parent:hover > a::after,
.site-subnavigation .nav ul li.parent:focus-within > a::after,
.site-subnavigation .nav ul li.deeper:hover > a::after,
.site-subnavigation .nav ul li.deeper:focus-within > a::after,
.site-subnavigation .nav ul li.parent:hover > span::after,
.site-subnavigation .nav ul li.parent:focus-within > span::after,
.site-subnavigation .nav ul li.deeper:hover > span::after,
.site-subnavigation .nav ul li.deeper:focus-within > span::after {
	transform: translateY(-50%) rotate(-45deg);
}

.site-subnavigation .mod-menu ul > li > a,
.site-subnavigation .mod-menu ul > li > span,
.site-subnavigation .nav ul > li > a,
.site-subnavigation .nav ul > li > span {
	display: block;
	padding: 0.5rem 1rem;
	color: var(--poh-grey-dark);
	font-size: 0.85rem;
	font-weight: 500;
	text-transform: none;
	letter-spacing: normal;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease;
	text-decoration: none;
	border-left: none;
	border-bottom: 1px solid rgba(68, 204, 0, 0.15);
}

.site-subnavigation .mod-menu ul > li:last-child > a,
.site-subnavigation .mod-menu ul > li:last-child > span,
.site-subnavigation .nav ul > li:last-child > a,
.site-subnavigation .nav ul > li:last-child > span {
	border-bottom: none;
}

.site-subnavigation .mod-menu ul > li > a:hover,
.site-subnavigation .mod-menu ul > li > a:focus,
.site-subnavigation .mod-menu ul > li > span:hover,
.site-subnavigation .mod-menu ul > li > span:focus,
.site-subnavigation .nav ul > li > a:hover,
.site-subnavigation .nav ul > li > a:focus,
.site-subnavigation .nav ul > li > span:hover,
.site-subnavigation .nav ul > li > span:focus {
	background-color: rgba(68, 204, 0, 0.08);
	color: var(--poh-green-primary);
}

.site-subnavigation .mod-menu li:hover > ul,
.site-subnavigation .mod-menu li:focus-within > ul,
.site-subnavigation .nav li:hover > ul,
.site-subnavigation .nav li:focus-within > ul {
	display: block;
}

.site-subnavigation .mod-menu ul > li.active > a,
.site-subnavigation .mod-menu ul > li.current > a,
.site-subnavigation .mod-menu ul > li.active > span,
.site-subnavigation .mod-menu ul > li.current > span,
.site-subnavigation .nav ul > li.active > a,
.site-subnavigation .nav ul > li.current > a,
.site-subnavigation .nav ul > li.active > span,
.site-subnavigation .nav ul > li.current > span {
	background-color: rgba(68, 204, 0, 0.08);
	color: var(--poh-green-primary);
}

.hero {
	position: relative;
	background-color: var(--poh-green-primary);
	color: #fff;
}



.welcome,
.site-main,
.product-carousel,
.proudly-supplying,
.learn-more,
.newsletter-signup {
	padding: clamp(25px, 10px, 20px) 1rem;
}

.site-main {
	max-width: var(--poh-container-max);
	margin: 0 auto;
}

.content-band {
	margin-block: clamp(2rem, 4vw, 3rem);
	/*! background: linear-gradient(135deg, rgba(68, 204, 0, 0.08), rgba(51, 153, 0, 0.04)); */
	/*! padding: clamp(2rem, 4vw, 3rem); */
	/*! border-radius: 32px; */
}

.content-band.content-bottom h3 {
	font-size: 2.5rem;
	color: var(--poh-green-primary);
}

/* --------------------------------------------------------------------------
   Products list (Our Products landing)
   -------------------------------------------------------------------------- */
.products-list-wrapper {
	max-width: var(--poh-container-max);
	margin: 0 auto;
	padding: 0 1rem;
}

.products-list-heading {
	margin-bottom: 1rem;
}

.products-list-title {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	color: var(--poh-green-primary);
	margin-bottom: 0.5rem;
}

.products-list-intro {
	margin-bottom: 1.5rem;
}

.products-list-intro p {
	margin-bottom: 0.75rem;
}

.products-list-grid-wrap {
	overflow: visible;
	border: none;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

/* Two columns on wider screens; single column on small viewports */
.products-list-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem 1.25rem;
	width: 100%;
	align-items: stretch;
}

@media (max-width: 768px) {
	.products-list-grid {
		grid-template-columns: 1fr;
		gap: 0.85rem;
	}
}

.products-list-card {
	margin: 0;
	min-width: 0;
}

/* Product cards: bordered “shop” tile */
.products-list-grid .products-list-card:nth-child(odd) .products-list-card__inner,
.products-list-grid .products-list-card:nth-child(even) .products-list-card__inner {
	background-color: #fff;
}

.products-list-card__inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	min-height: 100%;
	padding: 0;
	border-radius: 10px;
	box-sizing: border-box;
	overflow: hidden;
	border: 1px solid var(--poh-grey-medium);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.products-list-card:hover .products-list-card__inner,
.products-list-card:focus-within .products-list-card__inner {
	border-color: var(--poh-green-primary);
	box-shadow: 0 6px 20px rgba(51, 153, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
	.products-list-card__inner,
	.products-list-card__overlay {
		transition: none;
	}
}

.products-list-card__media {
	width: 100%;
	flex-shrink: 0;
}

.products-list-card__media-frame {
	position: relative;
	width: 100%;
}

/* Hover / focus: CTAs centered over image — POH green scrim */
.products-list-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	/* Fallback: --poh-green-dark #277500 */
	background: rgba(39, 117, 0, 0.88);
	background: linear-gradient(
		165deg,
		color-mix(in srgb, var(--poh-green-primary) 82%, transparent) 0%,
		color-mix(in srgb, var(--poh-green-dark) 90%, transparent) 100%
	);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.22s ease, visibility 0.22s ease;
}

.products-list-card:hover .products-list-card__overlay,
.products-list-card:focus-within .products-list-card__overlay {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* Overlay: only “Find Out More” — shrink-to-content, centred (must beat .products-list-cta-stack if any) */
.products-list-card__overlay .products-list-cta-stack--overlay {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-top: 0;
	width: fit-content;
	max-width: calc(100% - 2rem);
	gap: 0;
	align-self: center;
	flex: 0 0 auto;
}

.products-list-card__overlay .products-list-cta--overlay {
	width: fit-content;
	max-width: 100%;
	min-width: 0;
	flex: 0 0 auto;
	align-self: center;
	display: inline-flex;
	padding: 0.55rem 1.25rem;
	background: #fff;
	color: var(--poh-green-primary);
	border: 2px solid #fff;
	box-shadow: 0 2px 12px rgba(39, 117, 0, 0.35);
}

.products-list-cta--overlay:hover,
.products-list-cta--overlay:focus {
	background: var(--poh-grey-light);
	color: var(--poh-green-dark);
	border-color: var(--poh-grey-light);
}

/* Touch: same bar under image, button still centred and not full width */
@media (hover: none) {
	.products-list-card__overlay {
		position: relative;
		inset: auto;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		background: var(--poh-grey-light);
		border-bottom: 1px solid var(--poh-grey-medium);
		padding: 0.85rem 1rem;
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.products-list-card__overlay .products-list-cta-stack--overlay {
		width: fit-content;
		max-width: calc(100% - 1.5rem);
		align-self: center;
	}

	.products-list-card__overlay .products-list-cta--overlay {
		width: fit-content;
		max-width: 100%;
	}
}

.products-list-card__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	align-items: stretch;
	justify-content: flex-start;
	padding: 1rem 1.25rem;
}

/* Title + PDF on one row (PDF right) */
.products-list-card__title-row {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem 1rem;
	width: 100%;
}

.products-list-title-main {
	flex: 1;
	min-width: 0;
}

.products-list-pdf-link--title-row {
	flex-shrink: 0;
	align-self: flex-start;
	text-align: right;
	max-width: 48%;
	font-size: 0.85rem;
	line-height: 1.25;
}


/* Product-card image: full-width top block with aspect ratio */
.products-list-wrapper--thumb-sm .products-list-thumb {
	aspect-ratio: 1;
	max-height: 160px;
}

.products-list-wrapper--thumb-md .products-list-thumb {
	aspect-ratio: 1;
	max-height: 200px;
}

.products-list-wrapper--thumb-lg .products-list-thumb {
	aspect-ratio: 1;
	max-height: 260px;
}

.products-list-thumb {
	width: 100%;
	display: block;
	overflow: hidden;
	/*! background: #fafcfa; */
	border-bottom: 1px solid var(--poh-grey-medium);
}

.products-list-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.products-list-card__media .products-list-thumb {
	border-radius: 0;
}

.products-list-thumb--placeholder {
	display: block;
	min-height: 140px;
	background: var(--poh-grey-light);
}

.products-list-subtitle {
	margin: 0;
	font-weight: 400;
	font-size: 0.9rem;
	line-height: 1.45;
	color: #555;
}

.products-list-name-link,
.products-list-name {
	color: var(--poh-text-colour);
	font-weight: 600;
	font-size: 1.1rem;
	line-height: 1.3;
}

.products-list-name-link:hover,
.products-list-name-link:focus {
	color: var(--poh-green-primary);
	text-decoration: none;
}

/* Legacy stack class only used on overlay — do not set width:100% or stretch (breaks centred button) */
.products-list-cta {
	text-align: center;
	white-space: nowrap;
	box-sizing: border-box;
}

.products-list-pdf-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--poh-green-primary);
	text-decoration: none;
}

.products-list-pdf-link:hover,
.products-list-pdf-link:focus {
	color: var(--poh-green-dark);
	text-decoration: underline;
}

.products-list-pdf-icon {
	flex-shrink: 0;
	display: block;
}

/* --------------------------------------------------------------------------
   SDS (Safety Data Sheets) article table
   -------------------------------------------------------------------------- */
.sds-list-wrap {
	width: 100%;
	margin: 1.5rem 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.sds-list-table {
	width: 100%;
	min-width: 280px;
	border-collapse: collapse;
	border: none;
	background: transparent;
}

.sds-list-table tbody tr {
	border: none;
}

.sds-list-table tbody tr:nth-child(odd) {
	background-color: #fff;
}

.sds-list-table tbody tr:nth-child(even) {
	background-color: var(--poh-grey-light);
}

.sds-cell {
	padding: 0.85rem 1rem;
	vertical-align: middle;
	border: none;
}

.sds-cell--icon {
	width: 1%;
	min-width: 52px;
	white-space: nowrap;
	text-align: center;
}

.sds-icon-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.sds-icon-link:hover,
.sds-icon-link:focus {
	opacity: 0.85;
}

.sds-pdf-icon {
	display: block;
	width: 40px;
	height: auto;
	max-height: 40px;
	object-fit: contain;
}

.sds-cell--title {
	font-weight: 600;
	color: var(--poh-text-colour);
}

.sds-cell--cta {
	text-align: right;
	white-space: nowrap;
}

.btn-sds {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	background: var(--poh-green-primary);
	color: #fff;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	border: none;
	cursor: pointer;
}

.btn-sds:hover,
.btn-sds:focus {
	background: var(--poh-green-dark);
	color: #fff;
	text-decoration: none;
}

@media (max-width: 576px) {
	.sds-list-wrap {
		margin-left: -0.5rem;
		margin-right: -0.5rem;
	}
	.sds-cell {
		padding: 0.65rem 0.75rem;
	}
	.sds-cell--icon {
		min-width: 44px;
	}
	.sds-pdf-icon {
		width: 32px;
		max-height: 32px;
	}
	.btn-sds {
		padding: 0.4rem 0.85rem;
		font-size: 0.85rem;
	}
}

@media (max-width: 576px) {
	.products-list-card__body {
		padding: 0.85rem 1rem;
	}

	.products-list-card__overlay {
		padding: 0.65rem 0.85rem;
	}

	.products-list-wrapper--thumb-sm .products-list-thumb {
		max-height: 120px;
	}

	.products-list-wrapper--thumb-md .products-list-thumb {
		max-height: 160px;
	}

	.products-list-wrapper--thumb-lg .products-list-thumb {
		max-height: 200px;
	}

	.products-list-cta,
	.products-list-cta--overlay {
		padding: 0.5rem 1rem;
		font-size: 0.9rem;
	}
}

.system-feedback {
	margin: 1rem 0;
}

.system-feedback .alert {
	border-radius: 16px;
}

/* --------------------------------------------------------------------------
   Feature sections
   -------------------------------------------------------------------------- */
.product-carousel,
.proudly-supplying,
.learn-more {
	background-color: var(--poh-grey-light);
}

.product-carousel .section-heading h2 {
	color: var(--poh-green-primary);
}

.newsletter-signup {
	background-color: var(--poh-green-primary);
	color: #fff;
}

.newsletter-signup .btn {
	background-color: #fff;
	color: var(--poh-green-primary);
}

.newsletter-signup .btn:hover,
.newsletter-signup .btn:focus {
	color: #fff;
	background-color: var(--poh-green-dark);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
	color: #fff;
	background-color: var(--poh-green-dark);
}

.footer-container {
	max-width: var(--poh-container-max);
	margin: 0 auto;
}

.footer-cta {
	margin-bottom: clamp(2rem, 4vw, 3rem);
	text-align: center;
}

.footer-main .footer-col h3,
.footer-main .footer-col h4,
.footer-main .footer-col h5 {
	color: #fff;
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

.footer-main .footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.5rem;
}

.footer-main .footer-col a {
	color: rgba(255, 255, 255, 0.85);
}

.footer-main .footer-col a:hover,
.footer-main .footer-col a:focus {
	color: #fff;
}

.footer-col-group {
	display: flex;
	flex-direction: column;
	gap: clamp(2rem, 4vw, 3rem);
}

/* Keep Facebook embed below the copyright row in the stacking order so
   iframe / plugin hit areas cannot block clicks on footer-bottom links. */
.footer-main {
	position: relative;
	z-index: 0;
}

.footer-links-group .footer-links-column {
	text-align: center;
}

.footer-facebook {
	text-align: center;
	position: relative;
	z-index: 0;
}

.poh-facebook-widget {
	max-width: 100%;
}

.poh-facebook-widget .fb-page,
.poh-facebook-widget iframe {
	width: 100% !important;
}

/* Match Page Plugin data-height (500); avoid extra empty iframe height that
   can overlap the row below in some layouts. */
.poh-facebook-widget iframe {
	min-height: 500px;
	max-height: 560px;
	border: none;
}

.footer-bottom {
	position: relative;
	z-index: 2;
	margin-top: clamp(2rem, 4vw, 3rem);
	padding-top: 1.5rem;
	color: rgba(255, 255, 255, 0.77);
	font-size: 0.75rem;
	text-align: center;
}
.footer-bottom a {
	position: relative;
	z-index: 1;
	color: #ffffff;
	text-decoration: none;
}
.footer-bottom a:hover,
.footer-bottom a:focus{
color:#fff;
text-decoration: underline;
}
.footer-container {
	background: var(--poh-green-dark);
	color: #fff;
	padding: clamp(2.5rem, 5vw, 4rem) 1rem 1.5rem;
	background-image: url("../images/footer-bg.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left;
}
.footer-about-logo {
	max-width: 140px;
}

.footer-prebanner-wrapper {
	margin: 0;
	padding: 0;
}

.footer-prebanner__inner,
.footer-prebanner .container {
	max-width: var(--poh-container-max);
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.footer-prebanner__headline,
.footer-prebanner__tagline {
	font-weight: 800;
	text-transform: lowercase;
	line-height: 1.2;
}

.footer-prebanner__headline {
	font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.footer-prebanner__tagline {
	font-size: clamp(1.3rem, 2.4vw, 1.9rem);
	color: #ffffff;
}

.footer-prebanner__social {
	display: inline-flex;
	align-items: center;
	gap: clamp(0.75rem, 2vw, 1.5rem);
	font-weight: 600;
	text-transform: lowercase;
	letter-spacing: 0.02em;
}

.footer-prebanner__social img {
	width: clamp(32px, 4vw, 40px);
	height: auto;
	display: block;
}

.footer-prebanner__legal {
	font-size: clamp(0.85rem, 1.6vw, 0.95rem);
	font-weight: 500;
}
/* --------------------------------------------------------------------------
   Utility classes
   -------------------------------------------------------------------------- */
.module-position {
	max-width: var(--poh-container-max);
	margin: 0 auto;
}

.debug {
	max-width: var(--poh-container-max);
	margin: 2rem auto;
	padding: 1rem;
	background-color: #f2f2f2;
	border-radius: 12px;
}

/* --------------------------------------------------------------------------
   Responsive tweaks
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.footer-grid {
		gap: 1.5rem;
	}

}

@media (max-width: 992px) {
	.site-subnavigation__inner {
		justify-content: flex-start;
		overflow-x: auto;
		scrollbar-width: none;
	}

	.site-subnavigation__inner::-webkit-scrollbar {
		display: none;
	}

	.site-subnavigation .mod-menu,
	.site-subnavigation .nav {
		flex-wrap: nowrap;
	}

	.site-subnavigation .mod-menu > li,
	.site-subnavigation .nav > li {
		flex: 0 0 auto;
	}
}

@media (max-width: 991.98px) {
	.footer-prebanner {
		text-align: center;
	}

	.footer-prebanner__social {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.footer-about-logo {
		margin: 0 auto 1rem;
	}

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

	.scroll-to-top {
		right: 1rem;
		bottom: 1rem;
		width: 3rem;
		height: 3rem;
	}
}


@media (min-width: 768px) {
	.footer-links-group .footer-links-column {
		text-align: left;
	}

	.footer-about-logo {
		max-width: 120px;
	}
}

@media (min-width: 992px) {
	.footer-links-group .footer-links-column + .footer-links-column {
		border-left: 1px solid rgba(255, 255, 255, 0.25);
		padding-left: 1.5rem;
	}

	.footer-facebook {
		text-align: left;
	}
}
.product-card__body {
	margin-top: auto;
}

.product-card__cta {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1.25rem;
	border-radius: 999px;
	background: var(--poh-green-primary);
	color: #fff;
	font-weight: 600;
	transition: background 0.3s ease;
}

/* Article / content: PDF download control (icon: /images/Icon-Green-PDF.svg) */
.article-pdf-download {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.45rem 1.1rem 0.45rem 0.85rem;
	border-radius: 999px;
	background: var(--poh-green-primary);
	color: #fff;
	font-weight: 600;
	font-size: clamp(0.9rem, 2vw, 1rem);
	text-decoration: none;
	line-height: 1.2;
	transition: background 0.25s ease, color 0.25s ease;
}

.article-pdf-download:hover,
.article-pdf-download:focus-visible {
	background: var(--poh-green-dark);
	color: #fff;
	text-decoration: none;
}

.article-pdf-download::before {
	content: "";
	display: block;
	width: 1.35rem;
	height: 1.35rem;
	flex-shrink: 0;
	background: url("../../../images/Icon-Green-PDF.svg") no-repeat center / contain;
	/* SVG is poh green; invert so it reads on the green pill background */
	filter: brightness(0) invert(1);
}

.pdf-feature-list {
	display: grid;
	gap: clamp(1rem, 2vw, 1.5rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.pdf-feature {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: clamp(0.75rem, 2vw, 1.15rem);
	align-items: flex-start;
	color: var(--poh-text-colour);
}

.pdf-feature__icon {
	width: clamp(40px, 6vw, 52px);
	height: clamp(40px, 6vw, 52px);
	flex: 0 0 auto;
}

.pdf-feature__content {
	display: grid;
	gap: 0.25rem;
}

.pdf-feature__title {
	margin: 0;
	font-weight: 700;
	color: var(--poh-green-primary);
	font-size: clamp(1rem, 2.3vw, 1.1rem);
}

.pdf-feature__content p {
	margin: 0;
	line-height: 1.5;
	font-size: clamp(0.95rem, 2vw, 1rem);
}

.pdf-feature-block {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(1.5rem, 4vw, 2.5rem);
	align-items: start;
}

.pdf-feature-block__image {
	max-width: clamp(160px, 40vw, 240px);
	margin: 0 auto;
}

.pdf-feature-block__image img {
	width: 100%;
	height: auto;
	display: block;
}

@media (min-width: 768px) {
	.pdf-feature-block {
		grid-template-columns: minmax(0, 1fr) minmax(0, 280px);
		align-items: center;
	}

	.pdf-feature-block__image {
		margin: 0;
		justify-self: end;
	}
}

.error-page {
	min-height: 100vh;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(231, 245, 225, 0.75), rgba(255, 255, 255, 0.9));
	color: var(--poh-text-colour);
	font-family: var(--poh-font-body);
	padding: clamp(1.5rem, 5vw, 3rem);
	text-align: center;
}

.error-wrapper {
	max-width: 540px;
	width: 100%;
	background-color: #fff;
	border-radius: 24px;
	padding: clamp(1.75rem, 5vw, 2.75rem);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
	display: grid;
	gap: 1.5rem;
}

.error-header h1 {
	margin: 0;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	color: var(--poh-green-primary);
	font-weight: 800;
}

.error-code {
	margin: 0.35rem 0 0;
	font-size: clamp(1rem, 2.4vw, 1.2rem);
	font-weight: 600;
	color: var(--poh-green-dark);
}

.error-message p {
	margin: 0;
	line-height: 1.7;
	font-size: clamp(1rem, 2.2vw, 1.05rem);
}

.error-actions .btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 999px;
	background-color: var(--poh-green-primary);
	border: none;
	color: #fff;
	font-weight: 600;
	font-size: 1rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.error-actions .btn:hover,
.error-actions .btn:focus {
	text-decoration: none;
	background-color: var(--poh-green-dark);
	box-shadow: 0 8px 16px rgba(39, 117, 0, 0.18);
	transform: translateY(-1px);
}

.error-actions .btn:focus {
	outline: 3px solid rgba(68, 204, 0, 0.35);
	outline-offset: 3px;
}

.scroll-to-top {
	position: fixed;
	right: clamp(1rem, 3vw, 2rem);
	bottom: clamp(1.25rem, 4vw, 2.75rem);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 50%;
	border: none;
	background: var(--poh-green-primary);
	color: #fff;
	
	cursor: pointer;
	opacity: 0;
	transform: translateY(1rem);
	transition: opacity 0.3s ease, transform 0.3s ease;
	pointer-events: none;
	z-index: 400;
}

.scroll-to-top__icon {
	font-size: 1.3rem;
	line-height: 1;
}

.scroll-to-top.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.scroll-to-top:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.65);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	.scroll-to-top {
		transition: opacity 0.1s linear;
	}
}
.spec-sheet {
	
	line-height: 1.5;
	color: var(--spec-text);
	background: #fff;
  }
  

  
  /* ----- Page 1: Header ----- */
  .spec-sheet .spec-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--spec-green);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin-bottom: 0.25rem;
  }
  
  .spec-sheet .spec-subtitle {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--spec-green);
	margin-bottom: 1rem;
  }
  
  .spec-sheet .spec-intro p {
	margin-bottom: 0.75rem;
	color: var(--spec-text);
  }
  
  /* ----- Green header bar (rounded top, white icon + text) ----- */
  .spec-sheet .spec-header-bar {
	background: var(--spec-green);
	color: #fff;
	padding: 0.5rem 0.75rem;
	border-top-left-radius: var(--spec-radius);
	border-top-right-radius: var(--spec-radius);
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 700;
  }
  
  .spec-sheet .spec-header-bar img {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
  }
  
  /* ----- Card / box with green border ----- */
  .spec-sheet .spec-card {
	border: 1px solid var(--spec-green-border);
	border-top: none;
	border-radius: 0 0 var(--spec-radius) var(--spec-radius);
	overflow: hidden;
	background: #fff;
  }
  
  .spec-sheet .spec-card .spec-header-bar {
	border-radius: 0;
  }
  
  /* ----- Sizes bar (full-width green, icon + text) ----- */
  .spec-sheet .spec-sizes-bar {
	background: var(--spec-green);
	color: #fff;
	padding: 0.5rem 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 700;
	border-radius: 0 0 var(--spec-radius) var(--spec-radius);
  }
  
  .spec-sheet .spec-sizes-bar img {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
  }
  
  /* ----- Two-column layout ----- */
  .spec-sheet .spec-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	align-items: start;
  }
  
  @media (max-width: 768px) {
	.spec-sheet .spec-two-col {
	  grid-template-columns: 1fr;
	}
  }
  
  /* ----- Typical Analysis table: light green background, green row lines ----- */
  .spec-sheet .spec-analysis-wrap {
	background: var(--spec-green-light);
	border: 1px solid var(--spec-green-border);
	border-top: none;
	border-radius: 0 0 var(--spec-radius) var(--spec-radius);
	overflow: hidden;
  }
  
  .spec-sheet .spec-analysis-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--spec-green-light);
  }
  
  .spec-sheet .spec-analysis-table td {
	padding: 0.4rem 0.75rem;
	border-bottom: 1px solid var(--spec-green-border);
	vertical-align: middle;
  }

  /* Zebra striping (tbody is implicit when <table> has direct <tr> rows) */
  .spec-sheet .spec-analysis-table tbody tr:nth-child(odd) td {
	background-color: var(--spec-green-light);
  }
  .spec-sheet .spec-analysis-table tbody tr:nth-child(even) td {
	background-color: color-mix(in srgb, var(--spec-green-light) 68%, #ffffff);
  }
  
  .spec-sheet .spec-analysis-table td:last-child {
	text-align: right;
	font-weight: 500;
  }
  
  .spec-sheet .spec-analysis-table tr:last-child td {
	border-bottom: none;
  }
  
  .spec-sheet .spec-analysis-footer {
	padding: 0.5rem 0.75rem;
	font-size: 0.85rem;
	color: var(--spec-text);
	border-top: 2px solid var(--spec-green);
	border-bottom: 1px solid var(--spec-green-border);
  }
  
  .spec-sheet .spec-green-lines {
	height: 6px;
	background: repeating-linear-gradient(
	  to bottom,
	  var(--spec-green-border) 0,
	  var(--spec-green-border) 1px,
	  transparent 1px,
	  transparent 3px
	);
  }
  
  /* ----- Applications section: bold ALL-CAPS sub-headers ----- */
  .spec-sheet .spec-apps-body {
	padding: 1rem;
	border: 1px solid var(--spec-green-border);
	border-top: none;
	border-radius: 0 0 var(--spec-radius) var(--spec-radius);
	background: #fff;
  }
  
  .spec-sheet .spec-apps-body .spec-subhead {
	font-weight: 700;
	text-transform: uppercase;
	color: var(--spec-text);
	margin-top: 1rem;
	margin-bottom: 0.35rem;
	font-size: 0.9rem;
  }
  
  .spec-sheet .spec-apps-body .spec-subhead:first-child {
	margin-top: 0;
  }
  
  .spec-sheet .spec-apps-body ul {
	margin-bottom: 0.5rem;
	padding-left: 1.25rem;
  }
  
  .spec-sheet .spec-apps-body li {
	margin-bottom: 0.2rem;
  }
  
  .spec-sheet .spec-apps-body li p {
	margin-bottom: 0.2rem;
  }
  
  .spec-sheet .spec-apps-body p {
	margin-bottom: 0.5rem;
  }
  
  /* ----- Product image block ----- */
  .spec-sheet .spec-product-img-wrap {
	text-align: center;
	padding: 0.5rem 0;
  }
  
  .spec-sheet .spec-product-img-wrap img {
	max-width: 100%;
	height: auto;
	max-height: 320px;
	object-fit: contain;
  }
  
  /* ----- Footer / disclaimer ----- */
  .spec-sheet .spec-disclaimer {
	font-size: 0.85rem;
	color: #555;
	margin-top: 1.5rem;
	padding-top: 1rem;
  }
  
  .spec-sheet .spec-contact {
	margin-top: 0.5rem;
  }
  
  /* ----- Utility ----- */
  .spec-sheet .spec-section {
	margin-bottom: 1.5rem;
  }
  
  .spec-sheet table.spec-doc-table {
	width: auto;
	max-width: 100%;
  }
  
  .spec-sheet table.spec-doc-table img {
	max-width: 100%;
	height: auto;
  }
  
  @media print {
	.spec-sheet {
	  font-size: 11pt;
	  background: #fff !important;
	}
	.spec-sheet .spec-two-col {
	  break-inside: avoid;
	}
  }
.footer-links-column .item-185 {
	display: none;
}