/*
	Theme Name: Tetra
	Theme URI: ...
	Description: Custom theme.
	Author: Apex (JT)
	Author URI: https://apex.co.uk/
	Version: 1.0.4.7
*/

/* RESETS */
* { margin: 0; padding: 0; }
*, *:before, *:after { box-sizing: border-box; }

/* FONTS */
@font-face {
	font-family: 'GothamBook';
	font-style: normal;
	font-weight: 400;
	src: url('./assets/fonts/gotham_book_regular-webfont.woff2') format('woff2'),
	url('./assets/fonts/gotham_book_regular-webfont.woff') format('woff');
}


/* ELEMENTS */
html {font-size: 10px;}
@media screen and (min-width: 783px) {
	html { font-size: 13px; }
}

body {
	font-size: 16px;
}

a { text-decoration: none; }
a:link,
a:visited { color: #1A478F; }
a:hover,
a:active { color: #3DB54A; }

img {
	border: 0;
	height: auto;
	max-width: 100%;
}
b, strong { font-weight: 700; }

input,
select,
textarea {
	font: inherit;
	padding: 5px;
}

p, ul, ol, table, blockquote, dl, hr { margin-bottom: 25px; }

ul, ol, dl {
	margin-left: 0;
}

hr {
	background: #edefef;
	border: 0;
	height: 2px;
}

nav ul {
	line-height: 1;
	list-style: none;
	margin: 0 0;
}
nav li {
	display: inline-block;
	width: auto;
}
nav a {
	display: block;
}

nav li ul {
	position: absolute;
	background: #FCB64C;
	width: auto;
	left: -999em;
	z-index: 100;
}
nav li ul ul {
	margin: -1em 0 0 10em;
}

nav li:hover ul ul,
nav li.sfhover ul ul {
	left: -999em;
}

nav li:hover ul,
nav li li:hover ul,
nav li.sfhover ul,
nav li li.sfhover ul {
	left: auto;
}

/* MAIN STRUCTURE */

#body_wrap {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow: hidden;
}
.wrap {
	margin: 0 auto;
	width: 1200px;
	max-width: 100%;
}

.alignfull > .alignfull {
	max-width: none;
}

.site-header {
	padding-left: 2rem;
	padding-right: 2rem;
}

.site-header,
.site-content,
.site-footer { display: block; } /* old IE support */

.site-header .wrap,
.site-content .wrap,
.site-footer .wrap {
	display: flex;
}

.site-footer .wrap .widget:last-of-type {
	margin-bottom:0;
}

.site-header .header-content {
	display: flex;
	gap: 1rem;
}

@media screen and (max-width: 960px) {
	.site-header .header-content .menu {
		display: none;
	}
}

.site-header .icons-wrapper {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}

.site-header .icons-wrapper a {
	padding: 0.5rem 1rem;
}

.site-header,
.site-footer {
	flex-shrink: 0;
	font-family: 'GothamBook', Arial, sans-serif;
}

.site-header {
	background-color: #FCB64C;
	position: relative;
	padding-bottom: 7px;
}
.site-header .wrap {
	align-items: flex-end;
	justify-content: space-between;
	padding: 2rem 0 0;
}
.title { }
.site-title {
	line-height: 0;
	margin: 0;
}
.site-title a {
	position: relative;
	background: url(./assets/images/tetra_logo_higher_res.png) no-repeat center center / 100% auto;
	display: block;
	height: 140px;
	margin-bottom: -50px;
	overflow: hidden;
	text-indent: 200%;
	white-space: nowrap;
	width: 140px;
	z-index: 100;
	border: 5px solid white;
}

@media screen and (min-width: 786px) {
	.site-title a {
		margin-top: 1rem;
		margin-bottom: -105px;
	}
}

.shiftnav-toggle.shiftnav-toggle-button { display: none; }
.shiftnav-toggle.shiftnav-toggle-button {
	background: transparent;
	color: #1A478F;
}

.main-menu {
	font-size: 1.4rem;
	font-weight: 700;
	padding-top: 1rem;
	padding-left: 3rem;
	text-align: left;
}
.main-menu a,
.main-menu a:link {
	color: #1A478F;
	padding: 10px 15px;
}
.main-menu a:hover,
.main-menu li.current-menu-item a,
.main-menu li.current-menu-parent a,
.main-menu li.current-menu-ancestor a {
    color: #fff;
}

#menu-main-menu .sub-menu {
	box-shadow: -4px 6px 5px rgba(0, 0, 0, 0.2);
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	background-color: transparent;
	border: 6px solid var(--wp--preset--color--green);
}

#menu-main-menu .sub-menu li a {
	padding: 1.5rem 1.25rem;
	font-weight: 600;
}

#menu-main-menu .sub-menu li a {
	background-color: var(--wp--preset--color--blue);
	color: var(--wp--preset--color--white);
}

#menu-main-menu .sub-menu li:last-of-type a {
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}

#menu-main-menu .sub-menu li a:where(:hover, :active) {
	background-color: var(--wp--preset--color--green);
	color: var(--wp--preset--color--blue);
	font-weight: 600;
	text-decoration: none;
}

.main-menu .sub-menu li {
	display: block;
	font-weight: 500;
}

/* Target the "Training" menu item*/
.menu > li:nth-child(2) {
	position: relative;
}

/* Add a vertical green line to the right of "Training" */
.menu > li:nth-child(2)::after {
	content: '';
	position: absolute;
	top: 50%; /* Align the line vertically to the text */
	right: -13px; /* Space between the menu item and the line */
	transform: translateY(-50%); /* Center the line vertically */
	height: 18px; /* Set the line height */
	width: 2px; /* Thickness of the line */
	background-color: var(--wp--preset--color--green); /* Green color for the line */
}

.menu > li:nth-child(3) {
	margin-left: 13px;
}

div.shiftnav-inner {
	background-color: #FCB64C;
}
body .shiftnav:after {
	box-shadow: 0 0 15px rgba(0, 0, 0, .4);
}

body .shiftnav .menu-item .shiftnav-target {
	font-weight: 600;
}

body .shiftnav ul.shiftnav-menu {
	padding-top: 6rem;
}

body .shiftnav-inner .shiftnav-panel-close {
	background-color: var(--wp--preset--color--blue);
	color: var(--wp--preset--color--white);
	font-size: 3rem;
	padding: 1rem 1.7rem;
}

a.shiftnav-toggle.shiftnav-toggle-button {
	text-transform: uppercase;
	color: var(--wp--preset--color--blue);
}

a.shiftnav-toggle.shiftnav-toggle-button:where(:hover, :active) {
	color: var(--wp--preset--color--white);
	background-color: var(--wp--preset--color--blue);
}

@media screen and (max-width: 600px) {
	.wp-block-navigation__responsive-container ul.wp-block-navigation__container.is-responsive.wp-block-navigation {
		padding-left: 2rem;
		padding-right: 2rem;
		font-size: 2rem;
		gap: 3rem;
	}
}
footer	.wp-block-navigation__responsive-container-close {
	right: 2rem;
}

body .shiftnav-panel-close i {
	opacity: 0.8;
}

body .shiftnav .shiftnav-inner ul.shiftnav-menu li.menu-item > .shiftnav-target,
body .shiftnav .shiftnav-inner ul.shiftnav-menu ul.sub-menu li.menu-item > .shiftnav-target {
	padding: 1.3rem 2rem;
}

body .shiftnav .shiftnav-inner ul.shiftnav-menu ul.sub-menu {
	margin-left: 0 !important;
}


body .shiftnav .shiftnav-inner ul.shiftnav-menu ul.sub-menu li.menu-item > .shiftnav-target {
	padding-left: 4rem !important;
}

body .shiftnav .shiftnav-inner .current-menu-item > .shiftnav-target,
body .shiftnav .shiftnav-inner .shiftnav-target:where(:hover, :active) {
	background-color: var(--wp--preset--color--blue);
	color: white;
}

body .shiftnav .shiftnav-inner ul.shiftnav-menu .menu-item-has-children > .shiftnav-target {
	pointer-events: none;
}

body .shiftnav .shiftnav-inner ul.shiftnav-menu .menu-item-has-children > .shiftnav-target:after {
	content: "";
	height: 7px;
	border-top: 7px solid var(--wp--preset--color--blue);
	border-right: 7px solid transparent;
	border-left: 7px solid transparent;
	width: 7px;
	display: inline-block;
	margin-left: 9px;
	line-height: 1em;
	vertical-align: middle;
}


.shiftnav .shiftnav-inner ul.shiftnav-menu ul.sub-menu {
	margin-left: 25px;
}
.shiftnav .shiftnav-inner ul.shiftnav-menu li.menu-item { display: block; }
.shiftnav .shiftnav-inner ul.shiftnav-menu li.menu-item > .shiftnav-target { padding: 10px 20px; }
.shiftnav .shiftnav-inner ul.shiftnav-menu ul.sub-menu li.menu-item > .shiftnav-target { padding: 5px 20px; }


.search-social-wrapper {
	display: flex;
	flex-direction: column;
}

.search-social-wrapper .wpmenucart-contents {
	display: none;
}
.search-social-wrapper .menu {
	align-items: center;
	display: flex;
	flex-direction: row;
	justify-content: center;
	list-style: none;
	margin: 0 0 10px;
}
.search-social-wrapper .menu li a {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	display: block;
	height: 24px;
	margin: 0 3px;
	overflow: hidden;
	text-indent: 200%;
	white-space: nowrap;
	width: 24px;
}
.search-social-wrapper .menu li.twitter a { background-image: url(assets/images/twitter.svg); }
.search-social-wrapper .menu li.facebook a { background-image: url(assets/images/facebook.svg);}
.search-social-wrapper .menu li.linkedin a { background-image: url(assets/images/linkedin.svg);}
.search-social-wrapper .menu li.instagram a { background-image: url(assets/images/instagram.svg);}
.search-social-wrapper .menu li.youtube a { background-image: url(assets/images/youtube.svg);}
.search-social-wrapper .menu li.basket a { background-image: url(assets/images/basket.svg);}

.search-social-wrapper .menu li.basket { margin-left: 15px; }
.search-social-wrapper .menu li.wpmenucartli a {
	background: #fff;
	border-radius: 3px;
	color: #1A478F;
	margin-left: 15px;
	padding: 0 5px;
	text-indent: 0;
	width: auto;
}

.site-header .search-form {
	background: #fff;
	border: 2px solid #fff;
	border-radius: 15px;
	padding: 3px 6px;
}
.site-header .search-form:focus-within {
	border: 2px solid #3DB54A;
}
.site-header .search-form .search-field {
	border: 0 none;
	font-size: 1.3rem;
	margin-left: 2px;
}
.site-header .search-form .search-field:focus {
	border: 0 none;
	outline: 0 none;
}
.site-header .search-form .search-submit {
	background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+Cjxzdmcgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDUxMiA1MTIiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoyOyI+CiAgICA8cGF0aCBkPSJNNTA4LjUsNDY4LjlMMzg3LjEsMzQ3LjVDMzg0LjgsMzQ1LjIgMzgxLjgsMzQ0IDM3OC42LDM0NEwzNjUuNCwzNDRDMzk2LjksMzA3LjUgNDE2LDI2MCA0MTYsMjA4QzQxNiw5My4xIDMyMi45LDAgMjA4LDBDOTMuMSwwIDAsOTMuMSAwLDIwOEMwLDMyMi45IDkzLjEsNDE2IDIwOCw0MTZDMjYwLDQxNiAzMDcuNSwzOTYuOSAzNDQsMzY1LjRMMzQ0LDM3OC42QzM0NCwzODEuOCAzNDUuMywzODQuOCAzNDcuNSwzODcuMUw0NjguOSw1MDguNUM0NzMuNiw1MTMuMiA0ODEuMiw1MTMuMiA0ODUuOSw1MDguNUw1MDguNSw0ODUuOUM1MTMuMiw0ODEuMiA1MTMuMiw0NzMuNiA1MDguNSw0NjguOVpNMjA4LDM2OEMxMTkuNiwzNjggNDgsMjk2LjQgNDgsMjA4QzQ4LDExOS42IDExOS42LDQ4IDIwOCw0OEMyOTYuNCw0OCAzNjgsMTE5LjYgMzY4LDIwOEMzNjgsMjk2LjQgMjk2LjQsMzY4IDIwOCwzNjhaIiBzdHlsZT0iZmlsbC1ydWxlOm5vbnplcm87Ii8+Cjwvc3ZnPgo=") no-repeat center center/16px auto;
	border: 0;
	cursor: pointer;
	overflow: hidden;
	padding: 0;
	text-indent: 200%;
	width: 35px;
}

#consulting_tab {
	position: fixed;
	top: 20%;
	right: -2px;
	z-index: 10;
}

.site-content {
	flex: 1 0 auto;
	min-height: 50vh;
}
.site-content .post {
	width: 100%;
}

/* padding for my-account page (just in case) */
.site-content .post-1801 {
	padding: 8rem 0;
}

.post li, .post dd {
	line-height: 1.4;
	margin-bottom: 5px;
}

.content-section.blog {
	padding-top: 100px;
}
.content-section.blog .wrap {
	justify-content: space-between;
}
.content-section.blog .posts {
	width: 70%;
}
.blog .category-header,
.blog .posts .post {
	margin-bottom: 30px;
}
.content-section.blog .sidebar {
	width: 25%;
}
.sidebar .widget {
	margin-bottom: 30px;
}

.site-footer {
	font-size: 16px;
}

.site-footer img {
	border: 5px solid white;
}

.site-footer a {
	color: white;
}

.site-footer h3 {
	font-weight: 700;
}

.site-footer a:hover {
	text-decoration: underline;
}

.site-footer .wrap .widget {
	width: 100%;
}

.site-footer .wrap .widget > .alignfull {
	max-width: 100vw;
	padding-left: 3rem;
	padding-right: 3rem;
}

.site-footer .wrap .widget .wp-block-group {
	margin-top: 0;
	margin-bottom: 0;
}

.site-footer .wrap .widget nav ul {
	row-gap: 1em;
}

.carousel {
	padding: 0;
	position: relative;
}
.carousel .wp-block-cover { padding: 0; }
.carousel .wp-block-cover figure { margin-bottom: 0; }

.slide-controls {
	margin: 20px auto 0;
	padding-bottom: 20px;
	text-align: center;
	width: 100%;
	position: relative;
	z-index: 50;
}

a:link.slide-control {
	color: #00000000;
}

.slide-control {
	color: #00000000;
	background-color: #FBBC43;
	border: 1px solid #FBBC43;
	border-radius: 50%;
	display: inline-block;
	height: 12px;
	width: 12px;
	margin: 0 8px;
	cursor: pointer;
}
.slide-control.active {
	background-color: #3EAB37;
	border: 1px solid #3EAB37;
	border-radius: 50%;
}


.carousel .testimonial {
	width: 100%;

}

.carousel .testimonial-body {
	display: grid;
	grid-template-columns: 100%;
}


.carousel .testimonial-body .author-logo {
	height: auto;
	margin: 0 0;
	grid-column: 1;
	grid-row: 1;
	align-self: center;
	margin: 0 2rem;
	justify-self: center;
	max-width: 300px;
	max-height: 180px;
	mix-blend-mode: multiply;

}

@media screen and (max-width: 1200px) {
	.carousel .testimonial-body .author-logo {
		margin: 4rem 2rem;
	}
}
.testimonial-body .testimonial-author {
	color: #3EAB37;
	font: 1.35rem/1.2 'GothamBook', Arial, sans-serif;
	grid-column: 1 / 2;
	font-weight: 700;
}


.carousel .testimonial-body p {
	grid-column: 1 / 2;
}

@media screen and (min-width: 768px) {
	.carousel .testimonial-body {
		display: grid;
		grid-template-columns: 55% 45%;
	}

	.carousel .testimonial-body .author-logo {

		grid-column: 2;
		grid-row: 1;
	}
}

.home-slider { }
.home-slider .wp-block-cover {
	min-height: 600px;
}
.home-slider.carousel .slide-controls {
	bottom: 20px;
	padding-bottom: 0;
}

/* GUTENBERG */

.is-style-no-margins { margin: 0; }
figure.is-style-no-margins img { display: block; }
.is-style-padded { padding: 40px; }

.wp-block-columns {
	margin-bottom: 0;
}
.wp-block-column.is-style-padded { padding: 20px 30px; }

.wp-block-columns.is-style-offset-right {}
.wp-block-columns.is-style-offset-right > .wp-block-column:first-of-type {
	max-width: 50%;
	padding-right: 60px;
}
.wp-block-columns.is-style-offset-right > .wp-block-column:last-of-type {
	margin-right: calc((1200px - 100vw) / 2);
	min-height: 400px;
	width: 50vw;
}
.wp-block-columns.is-style-offset-right.one-third > .wp-block-column:first-of-type {
	max-width: none !important;
}
.wp-block-columns.is-style-offset-left {}
.wp-block-columns.is-style-offset-left > .wp-block-column:last-of-type {
	max-width: 50%;
	padding-left: 60px;
}
.wp-block-columns.is-style-offset-left > .wp-block-column:first-of-type {
	margin-left: calc((1200px - 100vw) / 2);
	min-height: 400px;
	width: 50vw;
}
.wp-block-columns.is-style-offset-right > .wp-block-column:last-of-type figure,
.wp-block-columns.is-style-offset-left > .wp-block-column:first-of-type figure,
.wp-block-columns.is-style-offset-left > .wp-block-column:first-of-type .wp-block-embed__wrapper,
.wp-block-columns.is-style-offset-right > .wp-block-column:last-of-type .wp-block-embed__wrapper {
	display: block;
	height: 100%;
	width: 100%;
}
.wp-block-columns.is-style-offset-right > .wp-block-column:last-of-type img,
.wp-block-columns.is-style-offset-right > .wp-block-column:last-of-type iframe,
.wp-block-columns.is-style-offset-left > .wp-block-column:first-of-type img,
.wp-block-columns.is-style-offset-left > .wp-block-column:first-of-type iframe {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
	object-position: left;
}

.wp-block-cover {
	padding: 0;
}



.wp-block-video { margin-bottom: 0; }
.wp-block-video video { display: block; }

.wp-block-video video {
    cursor: pointer;
}

.wp-block-cover.is-style-rounded-corners img,
.wp-block-gallery img,
.wp-block-gallery figcaption,
.wp-block-image.is-style-circle-mask img,
.wp-block-image.is-style-rounded img {
	border: 1px solid #ccc;
}

.wp-block-file {}
.wp-block-file .wp-block-file__button {
	background-color: #3DB54A;
	float: right;
	font-size: 1.4rem;
	padding: calc(.1em + 2px) calc(1.333em + 2px);
}

@media screen and (min-width: 900px) {

	.is-style-left-border {
		border-left: 5px solid #3DB54A;
		padding-left: 40px;
	}
}

.is-style-narrow {
	margin-left: auto;
	margin-right: auto;
	max-width: 900px;
}
hr.is-style-narrow {
	margin-left: 0;
	max-width: 600px;
}

h1.has-background {
	display: inline-block;
	padding: 0.5em 1em;
	margin-left: 50%;
	transform: translateX(-50%);
}

.wp-block-button.is-style-narrow .wp-block-button__link {
	padding: calc(.1em + 2px) calc(1.333em + 2px);
}


.is-style-uppercase { text-transform: uppercase; }
.is-style-lowercase { text-transform: lowercase; }

.is-style-bullet-inside {
	list-style-position: inside;
}
.is-style-no-bullet {
	list-style: none;
	margin-left: 0;
}

.wp-block-column.ek-linked-block:hover h2,
.wp-block-column.ek-linked-block:hover h3 {
	color: #3DB54A !important;
}


.wp-block-pb-accordion-item:last-of-type {
	margin-bottom: 30px;
}

.c-accordion__title {
	border-bottom: 1px solid white;
	font-size: var(--wp--preset--font-size--large);
	color: var(--wp--preset--color--blue);
	padding: 0 35px 20px 0;
}

.woocommerce .product .summary .product_title {
	display: block;
}

@media screen and (min-width: 1200px) {
	.woocommerce .product .summary .product_title {
		display: inline-block;
		padding-right: 1rem;
	}
}

.sku-number {
	display: inline-block;
	line-height: 1.1;
	vertical-align: bottom;
	margin-bottom: 10px;
	font-size: var(--wp--preset--font-size--small);
}

.sku-number ~ .price span {
	font-size: var(--wp--preset--font-size--extra-large);
}

.woocommerce-Price-amount.amount, .sku-number {
	color: var(--wp--preset--color--green);
	font-weight: bold;
}


/* MISC CLASSES */
@media screen and (min-width: 1200px) {
	.wrap > article.post > .wp-block-group.alignwide {
		margin-left: calc((1200px - 95vw) / 2);
		margin-right: calc((1200px - 95vw) / 2);
		width: 95vw;
	}

	.wrap > article.post > .wp-block-group.alignfull {
		margin-left: calc((1200px - 100vw) / 2);
		margin-right: calc((1200px - 100vw) / 2);
	}
}

.alignleft {
	float: left;
	margin: 0 1.5em 1.5em 0;
}
.alignright {
	float: right;
	margin: 0 0 1.5em 1.5em;
}
.aligncenter {
	display: block;
	margin: 0 auto 1.5em;
}

.textcenter,
.center { text-align: center; }

.textright { text-align: right; }

.screen-reader-text {
	height: 1px;
	overflow: hidden;
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
}

.cf:before,
.cf:after {
	content: " ";
	display: table;
}
.cf:after { clear: both; }
.cf { *zoom: 1; }


.woocommerce .site-content .wrap {
	display: block;
}

.woocommerce-notices-wrapper {

}

.single-product-cols {
	gap: 60px;
}

.tax-product_cat .woocommerce-products-header {
	margin-top: 105px;
}

.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
	float: none;
	width: 100%;
}
.woocommerce .product .summary .product_title {
	color: #19488f;
	font-size: var(--wp--custom--font-size--heading-3);
}
.woocommerce .product .summary .product_meta {
	margin-bottom: 25px;
}
.woocommerce .product .summary .product_meta > span {
	display: block;
}


.woocommerce div.product .woocommerce-tabs > ul.tabs {
	display: flex;
	flex-direction: column;
	/*border-bottom: 1px solid #454546;*/
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}

.woocommerce div.product .woocommerce-tabs > ul.tabs > li {
	width: 100%;
	padding: 0;
	margin: 0;
	border-radius: 0;
	background: transparent;
	border: none;
}

.woocommerce div.product .woocommerce-tabs > ul.tabs::before,
.woocommerce div.product .woocommerce-tabs > ul.tabs::after,
.woocommerce div.product .woocommerce-tabs > ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs > ul.tabs li::after {
	content: none;
}

.woocommerce div.product .woocommerce-tabs > ul.tabs > li > a,
.woocommerce div.product .woocommerce-tabs > ul.tabs > li.active > a {
	align-items: center;
	color: var(--wp--preset--color--green);
	text-transform: uppercase;
	display: flex;
	gap: var(--default-half-padding);
	justify-content: space-between;
	padding: 12px 0;
	width: 100%;
	font-size: var(--wp--custom--font-size--heading-3);
}

.woocommerce div.product .woocommerce-tabs > ul.tabs > li > a svg {
	display: none;
}


.woocommerce div.product .woocommerce-tabs > ul.tabs > li .panel {
	display: block !important;
	max-height: 0;
	margin: 0;
	overflow: hidden;
	transition: max-height 300ms ease-in-out;
}

.woocommerce div.product .woocommerce-tabs > ul.tabs > li .panel * {
	all: revert;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li .panel > *:first-child {
	margin-top: 10px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li .panel > *:last-child {
	margin-bottom: 40px;
}

.woocommerce div.product .woocommerce-tabs > ul.tabs > li .panel a {
	color: #1A478F;
}

.woocommerce div.product .woocommerce-tabs > ul.tabs > li .panel ul {
	padding-left: 16px;
	list-style: '● ';
}

.woocommerce div.product .woocommerce-tabs > ul.tabs > li .panel ul li::marker {
	color: white;
	font-size: 18px;
	line-height: 1.7;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	margin-left: 2px !important;
}

.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images {
	float: none;
	text-align: center;
	width: 100%;
}
.woocommerce-product-gallery__image img {
	border: 1px solid #eee;
}

.woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:first-child {
	float: left;
	width: 75%;
}
.woocommerce-product-gallery__image:nth-child(n+2) {
	float: right;
	margin: 0 10px 10px 0;
	max-width: 20%;
}
.woocommerce div.product div.images a.woocommerce-product-gallery__trigger {
	left: calc( 75% - 2em );
	right: auto;
}

section.related.products,
.woocommerce-pagination {
	clear: both;
	margin-top: 25px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {
	font: 400 1.6rem/1 'GothamBook', Arial, sans-serif;
	padding: 12px 15px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt {
	background-color: #3DB54A;
	font: 400 1.6rem/1 'GothamBook', Arial, sans-serif;
	padding: 12px 15px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:hover {
	background-color: #1A478F;
}
.wc-block-components-button:not(.is-link) {
	background-color: #3DB54A;
	border: 0 none;
	color: #fff;
	font: 400 1.6rem/1 'GothamBook', Arial, sans-serif;
}
.wc-block-components-button:not(.is-link):hover {
	background-color: #1A478F;
}

div.pswp__bg {
	background-color: rgba( 0, 0, 0, 0.5 );
	padding: 2.5vh 2.5vw;
}

body.woocommerce-shop ul.products {
	margin-top: 20px;

}

/* this seems overly specific?? */
#body_wrap > main > div > div.product-category-product__loop > .product:not(:last-child) {
	border-bottom: 2px white solid;
	margin-bottom: 40px;
}

.woocommerce ul.products.products-categories {
	display:flex;
	align-items: stretch;
	margin: 0 auto;
}

.woocommerce-page ul.products li.product-category.product {
	margin-bottom: 0 !important;
}

body.woocommerce-page .single_add_to_cart_button.button {
	text-transform: uppercase;
	font-weight: bold;
	padding: 0.9rem 2rem 0.6rem 2rem;
	background-color: var(--wp--preset--color--gold);
	color: var(--wp--preset--color--blue);
	border-radius: 0;
}

.woocommerce ul.products li.product-category:hover, .woocommerce ul.products li.product-category.active {
	background-color: var(--wp--preset--color--lavender);
}
.woocommerce ul.products li p { font-size: var(--wp--preset--font-size--small); }

@media screen and (max-width: 767px) {
	.woocommerce ul.products.products-categories {
		flex-direction: column;
	}

	.woocommerce-page ul.products.products-categories li.product-category.product {
		width: 100% !important;
	}

	.woocommerce-page ul.products.products-categories li.product-category.product a {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 2rem;
	}

	.woocommerce-page ul.products.products-categories li.product-category.product a > img {
		max-width: 60px;
	}
}

.wc-block-product-new {}
.wc-block-product-new .wc-block-grid__product-title {
	font: 400 1.6rem/1.2 'GothamBook', Arial, sans-serif;
}
.wc-block-product-new .wc-block-grid__product-add-to-cart a.wp-block-button__link {
	background-color: #3DB54A;
	color: #fff;
	font: 400 1.6rem / 1 'GothamBook', Arial, sans-serif;
	padding: 12px 15px;
}


.woocommerce-pagination {
	margin: 25px 0;
}

.woocommerce-loop-category__title {
	text-transform: uppercase;
}


/* Ladder Subcategory Navigation */
.ladder-sub-cat-wrapper {
    background-color: var(--wp--preset--color--lavender);
    width: 100%;
}

.ladder-sub-cat-container {
    width: 100%;
    max-width: var(--wp--style--global--wide-size);
    margin: 0 auto;
    padding: 3rem 1rem 0rem 1rem;
    display: flex;
    align-items: stretch;
    box-sizing: border-box;
}

.ladder-sub-cat-item {
    flex: 1;
    text-align: center;
    min-width: 0;
}

.ladder-sub-cat-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.ladder-sub-cat-link:hover .ladder-sub-cat-title {
    opacity: 0.8;
}

.ladder-sub-cat-title {
    color: var(--wp--preset--color--blue);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.ladder-sub-cat-icon {
    margin-left: 1rem;
    flex-shrink: 0;
}

.ladder-sub-cat-item.active .ladder-sub-cat-title {
    text-decoration: underline;
}


.cat-nav-home{
	max-width: 124px;
}


/* RESPONSIVEY STUFF */
@media only screen and (max-width : 1200px) {


	.main-menu a {
		font-size: 15px;
	}


	.woocommerce div.product .summary {
		padding-right: 5vw;
	}

	.wp-block-columns.is-style-offset-right > .wp-block-column:last-of-type { margin-right: 0; }
	.wp-block-columns.is-style-offset-left > .wp-block-column:first-of-type { margin-left: 0; }

	.wp-block-columns.is-style-offset-right > .wp-block-column:first-of-type { padding-right: 20px; }
	.wp-block-columns.is-style-offset-left > .wp-block-column:last-of-type { padding-left: 20px; }

	.single-product-cols,
	.tax-product_cat .woocommerce-products-header {
		margin-top: 90px;
	}

}
@media only screen and (max-width : 960px) {



	.site-header .wrap { align-items: center; }


	.search-social-wrapper {
		flex-direction: row;
		align-items: center;
		gap: 10px;
	}

	.search-social-wrapper .wpmenucart-contents {
		display: block;
	}

	.shiftnav-toggle.shiftnav-toggle-button { display: block; }

	.content-section.blog {
		padding-top: 30px;
	}

	.wp-block-spacer.hide-on-mobile { display: none; }

	.site-footer .widget { margin-right: 20px; }

}

@media only screen and (max-width : 768px) {



	.wp-block-columns.is-style-offset-right > .wp-block-column:first-of-type,
	.wp-block-columns.is-style-offset-left > .wp-block-column:last-of-type { max-width: 100%; }

	.single-product-cols {
		gap: 20px;
		margin-bottom: 20px;
	}
	.single-product-cols .wp-block-column:last-of-type {
		padding-left: 10px;
		padding-right: 10px;
	}

}

@media only screen and (max-width : 640px) {

	.home-slider .wp-block-cover {
		min-height: 300px;
		padding: 10px;
	}

	.site-footer .wrap {
		flex-direction: column;
	}
	.site-footer .widget {
		margin: 0 0 30px;
	}

	#consulting_tab { display: none; }
}

@media only screen and (max-width : 599px) {

	p.price,
	.woocommerce div.product form.cart,
	.product_meta {
		margin-bottom: 15px;
	}

	.woocommerce div.product .woocommerce-tabs ul.tabs li .panel > *:first-child { margin-top: 0; }

	.woocommerce div.product .woocommerce-tabs ul.tabs li .panel > *:last-child { margin-bottom: 20px; }

	.product_meta {
		font-size: 85%;
	}

}

@media only screen and (max-width : 480px) {

}

@media only screen and (max-width: 380px) {

}

.wp-block-list.is-style-bullet-inside {
	list-style-type: '● ';
	font-size: 1.3rem;

}

.wp-block-list.is-style-bullet-inside ::marker {
	color: var(--wp--preset--color--gold);
	font-size: 2rem;
}

@media only screen and (max-width : 782px) {

	.is-sm-down-centered {

		display: flex;
		justify-content: center;
	}

	.hide-sm-down {
		display: none;
	}
}

.overflow-visible {
	overflow: visible;
}

.offset-overflows {
	position: absolute;
	z-index: 900;
}

.blend-multiply {
	mix-blend-mode: multiply;
}


.user-account-icon svg, .wpmenucart-icon-shopping-cart-0 {
	display: block;
	width: 2rem;
}

.wpmenucart-contents { position: relative;}

.wpmenucart-contents .cart-count {
	position: absolute;
	right: 0;
	top: 0;
	background-color: var(--wp--preset--color--blue);
	padding: 0.3em;
	margin: 0.25rem;
	font-size: 11px;
	color: white;
	border-radius: 50%;
	line-height: 1;
	min-width: 1.5em;
	text-align: center;
}

body.woocommerce-page:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
	min-height: 2em;
}

.woocommerce-page .content-section:has(> .wrap),
.woocommerce-page .content-section:has(> article) {
	padding-left: 1.75rem;
	padding-right: 1.75rem;
}

.woocommerce-page .content-section > .post, .content-shop ul.products, .content-shop > div.product {
	max-width: var(--wp--style--global--wide-size);
	margin: 60px auto;
}

.woocommerce-page .is-large.wc-block-cart .wc-block-cart__totals-title {
	padding: 1rem;
}

.woocommerce-page .wc-block-components-sidebar-layout .wc-block-components-totals-item, .wc-block-components-panel {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.wp-block-woocommerce-cart-order-summary-block {
	background-color: var(--wp--preset--color--light-grey);
}

.woocommerce-account article .woocommerce {

}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	display: flex;
	flex-direction: column;
}


.woocommerce-account .woocommerce-MyAccount-navigation li a {
	background-color: var(--wp--preset--color--light-grey);
	padding: 1rem;
}

.gform_button {
	transition: 200ms linear;
	padding: 1rem 2rem;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 2rem;
	border: none;
	cursor: pointer;
	background-color: var(--wp--preset--color--gold) !important;
}

.gform_button:not(:hover, :active, :focus) {
	color: var(--wp--preset--color--blue) !important;
}

.gform_button.button:where(:hover, :active, :focus) {
	background-color: var(--wp--preset--color--blue) !important;
	color: var(--wp--preset--color--white);
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a, .woocommerce-account .woocommerce-MyAccount-navigation li:hover a {
	background-color:var(--wp--preset--color--blue);
	color: white;
}



.gform_button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button {
	background-color:var(--wp--preset--color--blue);
	color: white;
	font-size: 1.2rem;
}

.woocommerce-account h2 {
	font-size: var(--wp--preset--font-size--large);
}

fieldset {
	padding: 1rem;
	margin-bottom: 1rem;
}

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
	min-height: 3rem;
}

.woocommerce-account em {
	font-size: 1rem;
}

.woocommerce-account form label {
	font-weight: 600;
}

.woocommerce-account .addresses .title .edit {
	float: none;
	background-color:var(--wp--preset--color--blue);
	color: white;
	font-size: 1rem;
	padding: 0.5rem 1rem;
	display: inline-block;
	margin-bottom: 1rem;
}

.woocommerce-page ul.products li.product-category.product {
	width: 18% !important;
	text-align: center;
	margin: 0 0 2.992em 0;
	padding: 1rem !important;
}

/*
@media screen and (min-width: 769px) {

	.woocommerce-page ul.products:has(li:nth-child(5)) li.product-category.product {
		width: 18% !important;
	}
}
*/

.is-style-offset-right .is-style-left-border {
	padding-left: calc(var(--ratio) / 2);
	--ratio: calc(100vw - var(--wp--style--global--wide-size));
}

.product-category-product__loop {
	padding: 60px 2rem;
	background-color: var(--wp--preset--color--lavender)
}

.product-category-product__loop > .product {
	margin-left: auto;
	margin-right: auto;
	width: var(--wp--style--global--wide-size);
	max-width: 100%;
}

.upsells.products {
	width: 767px;
	max-width: 100%;
}

/* product title; ideally should have been filtered to h3 */
.upsells.products h2 {
	color: var(--wp--preset--color--blue);
	text-transform: uppercase;
	text-align: center;
}

/* often bought with */
.upsells.products > h2 {
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--green);
	text-align: left;
}



.upsells.products ul.products {
	margin: 0;
	padding: 2rem 0;
}
.upsells.products ul.products a img {
	height: 125px !important;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
	font-size: 1.1rem;
}

.woocommerce-page .product-category-product__loop div.product .woocommerce-tabs > ul.tabs > li .panel {
	max-height: none !important;
}

.woocommerce-page .product-category-product__loop div.product .woocommerce-tabs > ul.tabs > li > a {
	pointer-events: none;
}

.woocommerce-page .product-category-product__loop .woocommerce-product-gallery {
	opacity: 1 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background: var(--wp--preset--color--lavender);
}

@media screen and (max-width: 768px) {
	.woocommerce-page.woocommerce ul.products.industry-tabs li.product .woocommerce-loop-category__title {
		white-space: normal;
		max-width: calc(100% - 95px);
		text-align: left;
	}
}

.woocommerce-page .industry-tabs li {
	padding: 0;
	margin: 0;
}
.woocommerce-page .industry-tabs a {
	display: block;
	padding: 1.5rem 1rem;
}

.industries-ul li::marker {
	color: white !important;
	font-size: 20px;
}

.woocommerce-page .industry-tabs figure {
	height: 115px;
	max-height: 100%;
	width: auto !important;
	max-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1rem;
}

.woocommerce-page .industry-tabs img.attachment-large.size-large {
	max-height: 115px;
	width: auto !important;
	max-width: 100%;
	height: auto !important;
	display: inline-block;
	margin-bottom: 0;
}

.blend-multiply {
	mix-blend-mode: multiply;
}

.gform_wrapper.gravity-theme .gfield input, .gform_wrapper.gravity-theme .gfield textarea {
	background: transparent;
	border: 0;
	border-bottom: 3px solid white;
	color: var(--wp--preset--color--black);
	font-weight: 600;
	font-size: var(--wp--preset--font-size--small) !important;
}

.gform_wrapper.gravity-theme .gfield ::placeholder {
	color: var(--wp--preset--color--blue);
}


/* Product galleries */

.woocommerce div.product div.images a.woocommerce-product-gallery__trigger {
	right: 1rem;
	left: auto;
}

.woocommerce-product-gallery__wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.woocommerce-product-gallery__wrapper [data-thumb]:first-child {
	min-width: 100%;
	width: 100% !important;
}

.woocommerce-product-gallery__wrapper [data-thumb]:not(:first-child) {
	margin: 0;
	max-width: none;
	width: calc(50% - 0.5rem) !important;
}
	.woocommerce-product-gallery__wrapper [data-thumb]:not(:first-child) img {
		aspect-ratio: 1 / 1;
		object-fit: cover;
	}


.pswp__caption__center {
	display: none;
}

.c-accordion__title:after {
	top: auto;
	transform: translateY(-1rem);
	color: var(--wp--preset--color--green);
	font-size: 3.5rem;
}

.c-accordion__title[aria-expanded="true"] {
	border-color: var(--wp--preset--color--lavender);
}

.c-accordion__title[aria-expanded="true"] + .c-accordion__content {
	border-bottom: 1px solid white;
}


/* ============================================
   TETRA PRODUCT TABLE TEMPLATE STYLES
   Custom product layout with full-width specifications table
   ============================================ */

/* Main Layout Container */
.tetra-product-table-layout {
	max-width: var(--wp--style--global--wide-size, 1200px);
	margin: 0 auto;
	padding: 0;
}

/* Two Column Layout for Product Info and Images */
.tetra-product-main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto 1fr;
	column-gap: 40px;
	row-gap: 0;
	margin-bottom: 40px;
	align-items: start;
}

/* Product Summary - top left */
.tetra-product-summary {
	grid-column: 1;
	grid-row: 1;
	align-self: start;
}

/* Product Images - right column, spans both rows */
.tetra-product-images {
	grid-column: 2;
	grid-row: 1 / 3;
	align-self: start;
}

/* Product Description - bottom left, below summary */
.tetra-product-description {
	grid-column: 1;
	grid-row: 2;
	align-self: start;
	margin-top: 30px;
}

/* Product Options */
.woocommerce div.product form.cart .variations th{
	vertical-align: middle;
	text-align: left;
}

/* Product Summary styles */
.tetra-product-summary .summary {
	padding: 0;
}

.tetra-product-summary .product_title {
	color: var(--wp--preset--color--blue, #203C85);
	font-size: var(--wp--custom--font-size--heading-3, 2rem);
	margin-bottom: 10px;
	display: inline-block;
}

.tetra-product-summary .sku-number {
	display: inline-block;
	font-size: var(--wp--preset--font-size--small, 1rem);
	color: var(--wp--preset--color--green, #3EAB37);
	font-weight: bold;
	margin-left: 1rem;
	vertical-align: bottom;
}

.tetra-product-summary .price {
	font-size: var(--wp--preset--font-size--extra-large, 1.5rem);
	color: var(--wp--preset--color--green, #3EAB37);
	font-weight: bold;
	margin-bottom: 20px;
}

.tetra-product-summary .variations_form {
	margin-bottom: 20px;
}

.tetra-product-summary .single_add_to_cart_button {
	text-transform: uppercase;
	font-weight: bold;
	padding: 0.9rem 2rem 0.6rem 2rem;
	background-color: var(--wp--preset--color--gold, #FBBC43);
	color: var(--wp--preset--color--blue, #203C85);
	border-radius: 0;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.tetra-product-summary .single_add_to_cart_button:hover {
	background-color: var(--wp--preset--color--blue, #203C85);
	color: var(--wp--preset--color--white, #fff);
}

/* Product Images styles */
.tetra-product-images .woocommerce-product-gallery {
	opacity: 1 !important;
}

/* Description Section */
.tetra-product-description {
	line-height: 1.7;
}

.tetra-product-description h2 {
	color: var(--wp--preset--color--green, #3EAB37);
	text-transform: uppercase;
	font-size: var(--wp--preset--font-size--large, 1.5rem);
	margin-top: 30px;
	margin-bottom: 15px;
}

.tetra-product-description h2:first-child {
	margin-top: 0;
}

.tetra-product-description ul {
	margin-left: 20px;
	margin-bottom: 25px;
}

.tetra-product-description ul li {
	margin-bottom: 10px;
	line-height: 1.6;
}

/* Specifications Table Section - Full Width */
.tetra-product-specifications-section {
	background-color: var(--wp--preset--color--lavender, #E9E8F4);
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	padding: 40px calc(50vw - 50%);
}

.tetra-specifications-table-wrapper {
	max-width: var(--wp--style--global--wide-size, 1200px);
	margin: 0 auto;
}

.tetra-specifications-title {
	color: var(--wp--preset--color--green, #3EAB37);
	font-size: var(--wp--preset--font-size--large, 1.5rem);
	text-transform: uppercase;
	margin-bottom: 20px;
}

.tetra-specifications-table-container {
	width: 100%;
}

.tetra-specifications-table {
	width: 100%;
	border-collapse: collapse;
	background: transparent;
	font-size: var(--wp--preset--font-size--small, 0.9rem);
	table-layout: fixed;
}

.tetra-specifications-table th,
.tetra-specifications-table td {
	padding: 12px 10px;
	text-align: left;
	border: none;
	vertical-align: middle;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.tetra-specifications-table thead th {
	background: transparent;
	color: var(--wp--preset--color--grey, #444);
	font-weight: bold;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.tetra-specifications-table thead th:first-child {
	color: var(--wp--preset--color--green, #3EAB37);
}

.tetra-specifications-table tbody tr {
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tetra-specifications-table tbody tr:last-child {
	border-bottom: none;
}

.tetra-specifications-table tbody td {
	color: var(--wp--preset--color--grey, #444);
}

.tetra-specifications-table tbody td.spec-label-cell {
	color: var(--wp--preset--color--grey, #444);
	font-weight: 600;
}

.tetra-specifications-footnote {
	margin-top: 20px;
	font-size: var(--wp--preset--font-size--small, 0.85rem);
	color: var(--wp--preset--color--grey, #666);
	font-style: italic;
}

/* Return to Shop Link */
.tetra-return-to-shop {
	margin: 40px 0;
}

.tetra-return-to-shop a {
	color: var(--wp--preset--color--blue, #203C85);
	text-decoration: none;
}

.tetra-return-to-shop a:hover {
	color: var(--wp--preset--color--green, #3EAB37);
	text-decoration: underline;
}

/* ============================================
   TETRA PRODUCT TABLE - RESPONSIVE STYLES
   ============================================ */

/* Tablet and below */
@media screen and (max-width: 960px) {
	.tetra-product-main {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
		row-gap: 20px;
	}
	
	/* Mobile order: Summary first, Images second, Description third */
	.tetra-product-summary {
		grid-column: 1;
		grid-row: 1;
	}
	
	.tetra-product-images {
		grid-column: 1;
		grid-row: 2;
	}
	
	.tetra-product-description {
		grid-column: 1;
		grid-row: 3;
		margin-top: 0;
	}
	
	.ladder-sub-cat-title {
		font-size: 1.1rem;
	}
}

/* Mobile - allow scrolling, keep readable font */
@media screen and (max-width: 782px) {
	.tetra-product-table-layout {
		padding: 0;
	}
	
	.tetra-product-main {
		row-gap: 20px;
	}
	
	.tetra-product-specifications-section {
		padding: 30px 1rem;
		margin-left: -1rem;
		margin-right: -1rem;
	}
	
	.tetra-specifications-table-container {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	
	.tetra-specifications-table {
		font-size: 16px;
		table-layout: auto;
		width: max-content;
		min-width: 100%;
	}
	
	.tetra-specifications-table th,
	.tetra-specifications-table td {
		padding: 12px 15px;
		white-space: nowrap;
	}
	
	.tetra-description-title,
	.tetra-specifications-title {
		font-size: 1.5rem;
	}
	
	/* Ladder Subcategory Mobile Styles */
	.ladder-sub-cat-container {
		flex-direction: column;
		padding: 0.5rem 1rem;
	}

	.ladder-sub-cat-item {
		width: 100%;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		text-align: left;
	}

	.ladder-sub-cat-item:last-child {
		border-bottom: none;
	}

	.ladder-sub-cat-title {
		font-size: 1.1rem;
		padding: 0.75rem 0;
		justify-content: flex-start;
	}

}

/* Small mobile */
@media screen and (max-width: 480px) {
	.tetra-product-summary .product_title {
		display: block;
	}
	
	.tetra-product-summary .sku-number {
		display: block;
		margin-left: 0;
		margin-bottom: 15px;
	}
}