/* Greenotex Fabric Catalog — scoped front-end styles */
.gfc {
	--gfc-primary: #07543f;
	--gfc-primary-dark: #003e31;
	--gfc-soft: #eaf3ed;
	--gfc-heading: #063f31;
	--gfc-text: #171d1a;
	--gfc-muted: #65716b;
	--gfc-line: #dfe5e1;
	--gfc-white: #fff;
	--gfc-shadow: 0 10px 32px rgba(9, 48, 37, .09);
	box-sizing: border-box;
	width: 100%;
	color: var(--gfc-text);
	background: #fff;
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 15px;
	line-height: 1.55;
}

.gfc *,
.gfc *::before,
.gfc *::after {
	box-sizing: border-box;
}

.gfc a {
	color: inherit;
	text-decoration: none;
}

.gfc img {
	display: block;
	max-width: 100%;
}

.gfc button,
.gfc input,
.gfc select {
	font: inherit;
}

.gfc h1,
.gfc h2,
.gfc h3,
.gfc p {
	margin-top: 0;
}

.gfc-container {
	width: min(1390px, calc(100% - 48px));
	margin-inline: auto;
}

.gfc-svg {
	width: 24px;
	height: 24px;
	flex: 0 0 auto;
}

.gfc-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-height: 48px;
	padding: 12px 25px;
	border: 1px solid var(--gfc-primary);
	border-radius: 6px;
	background: var(--gfc-primary);
	color: #fff !important;
	font-weight: 700;
	line-height: 1;
	transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.gfc-button:hover,
.gfc-button:focus-visible {
	background: var(--gfc-primary-dark);
	box-shadow: 0 8px 20px rgba(0, 73, 55, .18);
	transform: translateY(-1px);
}

.gfc-button .gfc-svg {
	width: 19px;
	height: 19px;
}

.gfc-button-light {
	border-color: #fff;
	background: #fff;
	color: var(--gfc-heading) !important;
}

.gfc-button-outline-light,
.gfc-button-ghost {
	border-color: rgba(255, 255, 255, .85);
	background: transparent;
	color: #fff !important;
}

.gfc-round-icon {
	display: inline-flex;
	width: 56px;
	height: 56px;
	flex: 0 0 56px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--gfc-primary);
	color: #fff;
}

.gfc-image-placeholder {
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 240px;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(circle at 25% 20%, rgba(255,255,255,.18), transparent 22%),
		repeating-linear-gradient(130deg, #164f40 0 8px, #0b4336 8px 15px);
	color: rgba(255,255,255,.84);
}

.gfc-image-placeholder .gfc-svg {
	width: 64px;
	height: 64px;
}

.gfc-empty {
	grid-column: 1 / -1;
	padding: 60px 24px;
	border: 1px dashed #bdcbc4;
	border-radius: 12px;
	text-align: center;
	color: var(--gfc-muted);
}

.gfc-empty .gfc-svg {
	width: 48px;
	height: 48px;
	margin: 0 auto 14px;
	color: var(--gfc-primary);
}

.gfc-empty h3 {
	margin-bottom: 6px;
	color: var(--gfc-heading);
}

/* Catalog landing */
.gfc-catalog {
	background: #fdfdfc;
	padding-bottom: 46px;
}

.gfc-catalog-hero {
	min-height: 185px;
	padding: 42px 0;
	background:
		linear-gradient(90deg, rgba(0, 55, 43, .97), rgba(0, 55, 43, .72)),
		repeating-linear-gradient(125deg, #0a483b 0 13px, #0c3d34 13px 26px);
	background-position: center;
	background-size: cover;
	color: #fff;
}

.gfc-catalog-hero-inner {
	display: grid;
	grid-template-columns: minmax(340px, .95fr) minmax(560px, 1.05fr);
	align-items: center;
	gap: 48px;
}

.gfc-catalog-intro h1 {
	margin: 0 0 8px;
	color: #fff;
	font-size: clamp(38px, 3.5vw, 48px);
	font-weight: 750;
	letter-spacing: -.035em;
	line-height: 1;
}

.gfc-catalog-intro p,
.gfc-catalog-contact p {
	margin: 0;
	color: rgba(255,255,255,.93);
	font-size: 16px;
}

.gfc-catalog-intro p {
	max-width: 470px;
}

.gfc-catalog-contact {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 20px;
	padding-left: 38px;
	border-left: 1px solid rgba(255,255,255,.55);
}

.gfc-catalog-contact .gfc-round-icon {
	width: 68px;
	height: 68px;
	flex-basis: 68px;
	background: rgba(31, 131, 90, .46);
}

.gfc-catalog-contact strong {
	display: block;
	margin-bottom: 3px;
	font-size: 16px;
}

.gfc-type-tabs {
	display: flex;
	position: relative;
	z-index: 2;
	justify-content: center;
	gap: 28px;
	margin: 22px auto 10px;
}

.gfc-type-tab {
	display: grid;
	position: relative;
	width: 255px;
	height: 130px;
	padding: 0;
	overflow: hidden;
	border: 1px solid #dfe3e0;
	border-radius: 15px;
	background: #fff;
	box-shadow: var(--gfc-shadow);
	cursor: pointer;
	grid-template-rows: 80px 50px;
}

.gfc-type-tab.is-active {
	border-color: var(--gfc-primary);
	box-shadow: 0 0 0 2px rgba(7,84,63,.08), var(--gfc-shadow);
}

.gfc-type-photo {
	display: block;
	background-position: center;
	background-size: cover;
}

.gfc-fabric-placeholder {
	background:
		linear-gradient(rgba(255,255,255,.1),rgba(255,255,255,.1)),
		repeating-linear-gradient(145deg,#b6b7a1 0 12px,#e2dfcf 12px 24px,#9da68f 24px 32px);
}

.gfc-yarn-placeholder {
	background:
		radial-gradient(circle at 20% 85%, #243f31 0 16px, transparent 17px),
		radial-gradient(circle at 50% 80%, #7f8c60 0 23px, transparent 24px),
		radial-gradient(circle at 80% 80%, #5a3523 0 20px, transparent 21px),
		linear-gradient(#e4d4b4, #bfa06e);
}

.gfc-type-tab strong {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #111;
	font-size: 16px;
}

.gfc-type-tab.is-active strong {
	color: var(--gfc-heading);
}

.gfc-type-icon {
	display: flex;
	position: absolute;
	top: 56px;
	left: 24px;
	width: 45px;
	height: 45px;
	align-items: center;
	justify-content: center;
	border: 5px solid #fff;
	border-radius: 50%;
	background: var(--gfc-primary);
	color: #fff;
}

.gfc-type-icon .gfc-svg {
	width: 20px;
	height: 20px;
}

.gfc-selected {
	display: none;
	position: absolute;
	top: 10px;
	right: 10px;
	color: var(--gfc-primary);
}

.gfc-type-tab.is-active .gfc-selected {
	display: block;
}

.gfc-section-heading {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 7px 0 21px;
}

.gfc-section-heading h2 {
	margin: 0;
	white-space: nowrap;
	font-size: 25px;
	letter-spacing: -.02em;
}

.gfc-heading-icon {
	display: flex;
	color: var(--gfc-primary);
}

.gfc-heading-icon .gfc-svg {
	width: 28px;
	height: 28px;
}

.gfc-heading-line {
	width: 100%;
	height: 1px;
	background: var(--gfc-line);
}

.gfc-category-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 26px 20px;
}

.gfc-category-card {
	display: grid;
	min-width: 0;
	overflow: hidden;
	border: 1px solid #dfe4e1;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 9px 25px rgba(7, 45, 34, .07);
	transition: transform .25s ease, box-shadow .25s ease;
}

.gfc-category-card:hover {
	box-shadow: 0 15px 35px rgba(7, 45, 34, .13);
	transform: translateY(-4px);
}

.gfc-category-card.is-hidden {
	display: none;
}

.gfc-empty-tab.is-hidden {
	display: none;
}

.gfc-category-photo {
	display: block;
	min-height: 108px;
	background:
		linear-gradient(145deg,rgba(255,255,255,.05),rgba(0,0,0,.12)),
		repeating-linear-gradient(135deg,#c8c9bc 0 7px,#eeeade 7px 13px);
	background-position: center;
	background-size: cover;
}

.gfc-category-info {
	display: grid;
	position: relative;
	min-height: 99px;
	margin-top: -1px;
	padding: 16px 17px;
	border-radius: 12px 12px 0 0;
	background: #fff;
	grid-template-columns: auto 1fr auto;
	align-items: start;
	gap: 12px;
}

.gfc-category-icon {
	display: flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #e1f0e4;
	color: var(--gfc-primary);
}

.gfc-category-icon .gfc-svg {
	width: 21px;
	height: 21px;
}

.gfc-category-copy {
	display: block;
	min-width: 0;
}

.gfc-category-copy strong {
	display: block;
	margin: 3px 0 7px;
	font-size: 15px;
	line-height: 1.2;
}

.gfc-category-copy small {
	display: block;
	color: #333a37;
	font-size: 12px;
	line-height: 1.35;
}

.gfc-card-arrow {
	align-self: end;
	color: var(--gfc-primary);
}

.gfc-card-arrow .gfc-svg {
	width: 19px;
}

.gfc-bottom-cta {
	display: grid;
	margin: 30px 0 0;
	padding: 20px 28px;
	border: 1px solid #edf1ee;
	border-radius: 13px;
	background: linear-gradient(100deg,#f2f7f3,#edf3ef);
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 26px;
}

.gfc-bottom-cta h3 {
	margin-bottom: 4px;
	font-family: Georgia, serif;
	font-size: 21px;
}

.gfc-catalog-bottom h3 {
	font-family: inherit;
	font-size: 18px;
}

.gfc-bottom-cta p {
	margin: 0;
	color: #39443f;
	font-size: 13px;
}

/* Breadcrumbs */
.gfc-breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	min-height: 58px;
	color: #4a544f;
	font-size: 13px;
}

.gfc-breadcrumbs a:hover {
	color: var(--gfc-primary);
}

.gfc-breadcrumbs strong {
	color: var(--gfc-text);
}

/* Archive */
.gfc-archive {
	padding-bottom: 38px;
}

.gfc-archive-hero {
	min-height: 370px;
	padding: 54px 0 40px;
	background:
		linear-gradient(90deg,rgba(0,40,32,.97),rgba(0,40,32,.54)),
		repeating-linear-gradient(135deg,#0c463a 0 10px,#0b3c33 10px 18px);
	background-position: center;
	background-size: cover;
	color: #fff;
}

.gfc-archive-hero-copy {
	max-width: 620px;
}

.gfc-archive-hero h1,
.gfc-single h1,
.gfc-single h2,
.gfc-related h2 {
	font-family: Georgia, "Times New Roman", serif;
	color: var(--gfc-heading);
}

.gfc-archive-hero h1 {
	margin: 0 0 13px;
	color: #fff;
	font-size: clamp(42px,5vw,60px);
	line-height: 1.05;
}

.gfc-term-description {
	max-width: 540px;
	color: rgba(255,255,255,.94);
	font-size: 16px;
}

.gfc-term-description p {
	margin: 0;
}

.gfc-hero-badges {
	display: grid;
	max-width: 650px;
	margin-top: 29px;
	grid-template-columns: repeat(4,1fr);
	gap: 12px;
}

.gfc-hero-badges > span {
	display: flex;
	min-height: 58px;
	padding: 10px 13px;
	align-items: center;
	gap: 11px;
	border: 1px solid rgba(255,255,255,.55);
	border-radius: 8px;
}

.gfc-hero-badges small {
	font-size: 11px;
	line-height: 1.3;
}

.gfc-hero-actions {
	display: flex;
	gap: 12px;
	margin-top: 28px;
}

.gfc-trust-strip {
	border-bottom: 1px solid #e2e9e5;
	background: linear-gradient(90deg,#f0f7f3,#fff,#f0f7f3);
}

.gfc-trust-strip .gfc-container {
	display: grid;
	min-height: 68px;
	grid-template-columns: repeat(5,1fr);
	align-items: center;
}

.gfc-trust-strip span {
	display: flex;
	min-height: 36px;
	align-items: center;
	justify-content: center;
	gap: 13px;
	border-right: 1px solid #cbd7d1;
	color: var(--gfc-primary);
}

.gfc-trust-strip span:last-child {
	border-right: 0;
}

.gfc-trust-strip small {
	color: #1e2924;
	font-size: 11px;
	line-height: 1.35;
}

.gfc-archive-layout {
	display: grid;
	padding-top: 24px;
	grid-template-columns: 190px minmax(0,1fr);
	gap: 26px;
}

.gfc-mobile-filter-toggle {
	display: none;
}

.gfc-filters {
	padding-right: 17px;
	border-right: 1px solid var(--gfc-line);
}

.gfc-filter-group {
	padding: 0 0 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--gfc-line);
}

.gfc-filter-group h3 {
	margin: 0 0 10px;
	font-size: 14px;
}

.gfc-category-links a {
	display: block;
	padding: 4px 9px;
	border-left: 3px solid transparent;
	color: #46514c;
	font-size: 12px;
}

.gfc-category-links a.is-current {
	border-left-color: var(--gfc-primary);
	border-radius: 0 5px 5px 0;
	background: #eaf3ed;
	color: var(--gfc-primary);
	font-weight: 700;
}

.gfc-filter-options {
	display: grid;
	gap: 6px;
}

.gfc-filter-options label {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #3f4944;
	cursor: pointer;
	font-size: 12px;
}

.gfc-filter-options input[type="checkbox"] {
	width: 14px;
	height: 14px;
	margin: 0;
	accent-color: var(--gfc-primary);
}

.gfc-filter-mobile-secondary {
	display: none;
}

.gfc-clear-filters {
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--gfc-primary);
	cursor: pointer;
	font-size: 12px;
	font-weight: 700;
}

.gfc-results-toolbar {
	display: flex;
	min-height: 39px;
	align-items: start;
	justify-content: space-between;
}

.gfc-results-toolbar p,
.gfc-results-toolbar label {
	margin: 0;
	font-size: 12px;
}

.gfc-results-toolbar select {
	min-width: 145px;
	margin-left: 10px;
	padding: 7px 30px 7px 10px;
	border: 1px solid #dce3df;
	border-radius: 6px;
	background: #fff;
	font-size: 12px;
}

.gfc-products-grid {
	display: grid;
	position: relative;
	grid-template-columns: repeat(4,minmax(0,1fr));
	gap: 15px;
	transition: opacity .2s ease;
}

.gfc-product-results {
	position: relative;
}

.gfc-product-results.is-loading .gfc-products-grid {
	opacity: .35;
	pointer-events: none;
}

.gfc-product-results.is-loading::before {
	position: absolute;
	z-index: 3;
	top: 120px;
	left: 50%;
	width: 40px;
	height: 40px;
	border: 4px solid #dbe7e0;
	border-top-color: var(--gfc-primary);
	border-radius: 50%;
	content: "";
	animation: gfc-spin .8s linear infinite;
}

@keyframes gfc-spin {
	to { transform: rotate(360deg); }
}

.gfc-product-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid #e0e5e2;
	border-radius: 9px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(2,46,34,.055);
	transition: transform .2s ease, box-shadow .2s ease;
}

.gfc-product-card:hover {
	box-shadow: 0 12px 25px rgba(2,46,34,.11);
	transform: translateY(-3px);
}

.gfc-product-card-image {
	display: block;
	aspect-ratio: 1 / 1.05;
	overflow: hidden;
	background: #edf2ef;
}

.gfc-product-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.gfc-product-card:hover img {
	transform: scale(1.035);
}

.gfc-product-card-body {
	padding: 11px 10px 13px;
}

.gfc-product-material {
	min-height: 15px;
	margin: 0 0 5px;
	overflow: hidden;
	color: var(--gfc-primary);
	font-size: 9px;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gfc-product-card h3 {
	margin: 0 0 8px;
	font-family: Georgia,serif;
	font-size: 14px;
	line-height: 1.3;
}

.gfc-card-specs {
	display: flex;
	min-height: 16px;
	margin-bottom: 8px;
	flex-wrap: wrap;
	color: #313a36;
	font-size: 9px;
}

.gfc-card-specs span {
	padding: 0 6px;
	border-right: 1px solid #bac3be;
}

.gfc-card-specs span:first-child {
	padding-left: 0;
}

.gfc-card-specs span:last-child {
	border: 0;
}

.gfc-card-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--gfc-primary) !important;
	font-size: 11px;
	font-weight: 700;
}

.gfc-card-link .gfc-svg {
	width: 14px;
	height: 14px;
}

.gfc-desktop-secondary-filters {
	display: grid;
	margin-top: 25px;
	grid-template-columns: repeat(5,1fr);
	gap: 0;
}

.gfc-desktop-secondary-filters .gfc-filter-group {
	min-height: 142px;
	padding: 0 14px;
	border-right: 1px solid var(--gfc-line);
	border-bottom: 0;
}

.gfc-desktop-secondary-filters .gfc-filter-group:first-child {
	padding-left: 0;
}

.gfc-color-filter .gfc-filter-options {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.gfc-color-filter label {
	display: block;
}

.gfc-color-filter input {
	position: absolute;
	width: 1px !important;
	height: 1px !important;
	opacity: 0;
}

.gfc-color-dot {
	display: block;
	width: 25px;
	height: 25px;
	border: 2px solid #fff;
	border-radius: 50%;
	background: var(--gfc-swatch);
	box-shadow: 0 0 0 1px #bfc9c4;
}

.gfc-color-filter input:checked + .gfc-color-dot {
	box-shadow: 0 0 0 3px var(--gfc-primary);
}

/* Single product */
.gfc-single {
	padding: 2px 0 45px;
}

.gfc-product-hero {
	display: grid;
	grid-template-columns: minmax(0,1.25fr) minmax(360px,.9fr);
	gap: 34px;
}

.gfc-product-image-wrap {
	position: relative;
	min-height: 0;
	overflow: hidden;
	aspect-ratio: 1.13 / 1;
	border-radius: 13px;
	background: #edf2ef;
}

.gfc-product-main-image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
}

.gfc-elementor-product {
	padding: 24px 0 48px;
}

.gfc-elementor-product .gfc-elementor-section > .elementor-container {
	max-width: 1240px;
}

.gfc-elementor-product .gfc-elementor-section .elementor-widget-wrap {
	padding: 0;
}

.gfc-elementor-product .gfc-elementor-hero-row > .elementor-container,
.gfc-elementor-product .gfc-elementor-panels-row > .elementor-container {
	gap: 34px;
	align-items: stretch;
}

.gfc-elementor-product .gfc-elementor-hero-row .elementor-column:first-child {
	width: calc(56% - 17px);
}

.gfc-elementor-product .gfc-elementor-hero-row .elementor-column:last-child {
	width: calc(44% - 17px);
}

.gfc-elementor-product .gfc-elementor-panels-row .elementor-column:first-child {
	width: calc(48% - 17px);
}

.gfc-elementor-product .gfc-elementor-panels-row .elementor-column:last-child {
	width: calc(52% - 17px);
}

.gfc-elementor-product .gfc-elementor-section .elementor-widget {
	width: 100%;
}

.gfc-elementor-product .gfc-elementor-breadcrumb-row {
	margin-bottom: 16px;
}

.gfc-elementor-product .gfc-elementor-features-row {
	margin-top: 22px;
}

.gfc-elementor-product .gfc-elementor-ideal-row,
.gfc-elementor-product .gfc-elementor-panels-row,
.gfc-elementor-product .gfc-elementor-cta-row,
.gfc-elementor-product .gfc-elementor-related-row {
	margin-top: 20px;
}

.gfc-full-image-button {
	display: grid;
	position: absolute;
	top: 50%;
	left: 20px;
	width: 60px;
	min-height: 132px;
	padding: 14px 8px;
	align-content: center;
	justify-items: center;
	gap: 9px;
	border: 0;
	border-radius: 15px;
	background: rgba(255,255,255,.88);
	color: #101713;
	cursor: pointer;
	transform: translateY(-50%);
}

.gfc-full-image-button span {
	font-size: 12px;
	font-weight: 700;
}

.gfc-product-summary {
	padding-top: 4px;
}

.gfc-product-badge {
	display: inline-flex;
	padding: 5px 13px;
	border-radius: 999px;
	background: var(--gfc-soft);
	color: var(--gfc-primary) !important;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.gfc-product-summary h1 {
	margin: 12px 0 17px;
	font-size: clamp(38px,4.4vw,56px);
	line-height: .98;
}

.gfc-product-excerpt {
	max-width: 570px;
	margin-bottom: 21px;
	color: #3e4843;
	font-size: 15px;
}

.gfc-product-excerpt p {
	margin: 0;
	color: inherit;
}

.gfc-spec-grid {
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
}

.gfc-spec {
	display: grid;
	min-height: 73px;
	padding: 11px 16px 11px 0;
	border-bottom: 1px solid #e3e8e5;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 12px;
}

.gfc-spec:nth-child(odd) {
	margin-right: 20px;
	border-right: 1px solid #e3e8e5;
}

.gfc-spec-icon,
.gfc-feature-icon {
	display: flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #eff5ef;
	color: var(--gfc-primary);
}

.gfc-custom-item-image {
	width: 24px;
	height: 24px;
	border-radius: 4px;
	object-fit: contain;
}

.gfc-spec strong,
.gfc-spec small {
	display: block;
}

.gfc-spec strong {
	font-size: 12px;
}

.gfc-spec small {
	margin-top: 2px;
	color: #36413c;
	font-size: 12px;
	line-height: 1.45;
}

.gfc-product-actions {
	display: grid;
	margin-top: 17px;
	grid-template-columns: 1fr 88px;
	gap: 14px;
}

.gfc-save-button {
	display: flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border: 1px solid var(--gfc-primary);
	border-radius: 6px;
	background: #fff;
	color: var(--gfc-primary);
	cursor: pointer;
	font-size: 11px;
	font-weight: 700;
}

.gfc-save-button.is-saved {
	background: var(--gfc-soft);
}

.gfc-save-button .gfc-svg {
	width: 18px;
	height: 18px;
}

.gfc-secondary-specs {
	display: grid;
	margin-top: 8px;
	grid-template-columns: repeat(2,minmax(0,1fr));
}

.gfc-secondary-specs .gfc-spec {
	border-bottom: 0;
}

.gfc-product-section {
	margin-top: 25px;
}

.gfc-product-section h2,
.gfc-related h2 {
	margin: 0 0 10px 17px;
	font-size: 24px;
	line-height: 1.1;
}

.gfc-feature-grid {
	display: grid;
	padding: 17px 18px;
	border: 1px solid #e4e8e5;
	border-radius: 13px;
	box-shadow: 0 7px 25px rgba(0,45,32,.055);
	grid-template-columns: repeat(5,minmax(0,1fr));
}

.gfc-feature {
	min-width: 0;
	padding: 0 19px;
	border-right: 1px solid #e1e6e3;
	text-align: center;
}

.gfc-feature:last-child {
	border: 0;
}

.gfc-feature-icon {
	margin: 0 auto 8px;
}

.gfc-feature strong,
.gfc-feature small {
	display: block;
}

.gfc-feature strong {
	font-size: 11px;
	text-transform: uppercase;
}

.gfc-feature small {
	margin-top: 4px;
	color: #3e4843;
	font-size: 11px;
	line-height: 1.4;
}

.gfc-ideal-grid {
	display: grid;
	grid-template-columns: repeat(7,minmax(0,1fr));
	gap: 12px;
}

.gfc-ideal-item {
	display: grid;
	min-height: 83px;
	padding: 12px 8px;
	align-content: center;
	justify-items: center;
	gap: 7px;
	border: 1px solid #e4e8e5;
	border-radius: 10px;
	box-shadow: 0 5px 18px rgba(0,45,32,.045);
	color: var(--gfc-primary);
	text-align: center;
}

.gfc-ideal-icon {
	display: flex;
	min-height: 25px;
	align-items: center;
	justify-content: center;
}

.gfc-ideal-icon .gfc-svg {
	width: 25px;
	height: 25px;
}

.gfc-ideal-item strong {
	color: #121713;
	font-size: 11px;
}

.gfc-product-details {
	margin-top: 24px;
}

.gfc-detail-panels {
	display: grid;
	grid-template-columns: 1fr 1.12fr;
	gap: 17px;
}

.gfc-detail-panel {
	position: relative;
	min-height: 317px;
	padding: 28px 38px;
	overflow: hidden;
	border: 1px solid #ebeee9;
	border-radius: 10px;
	background: linear-gradient(125deg,#f4f4eb,#faf9f3);
}

.gfc-detail-panel h2 {
	margin: 0 0 11px;
	font-size: 27px;
	line-height: 1.1;
}

.gfc-sustainability::before {
	position: absolute;
	inset: 0 56% 0 0;
	background:
		linear-gradient(90deg,rgba(244,244,235,.02),#f4f4eb),
		var(--gfc-panel-image, radial-gradient(ellipse at bottom left,#77a84c,transparent 62%));
	background-position: center;
	background-size: cover;
	content: "";
	opacity: .95;
}

.gfc-sustainability .gfc-panel-content {
	position: relative;
	z-index: 1;
	width: 68%;
	margin-left: auto;
}

.gfc-detail-panel p {
	color: #38413d;
	font-size: 12px;
}

.gfc-panel-text p {
	margin: 0;
}

.gfc-detail-panel ul {
	padding: 0;
	margin: 18px 0;
	list-style: none;
}

.gfc-detail-panel li {
	display: flex;
	margin: 9px 0;
	align-items: center;
	gap: 10px;
	font-size: 11px;
}

.gfc-detail-panel li .gfc-svg {
	width: 17px;
	height: 17px;
	color: var(--gfc-primary);
}

.gfc-detail-panel a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--gfc-primary) !important;
	font-size: 11px;
	font-weight: 700;
}

.gfc-detail-panel a .gfc-svg {
	width: 15px;
}

.gfc-journey {
	padding-right: 150px;
}

.gfc-journey ol {
	padding: 0;
	margin: 0;
	list-style: none;
}

.gfc-journey li {
	display: grid;
	position: relative;
	margin: 0;
	grid-template-columns: 35px 1fr;
	align-items: center;
	gap: 10px;
}

.gfc-journey li:not(:last-child)::after {
	position: absolute;
	top: 31px;
	bottom: -7px;
	left: 17px;
	width: 1px;
	background: #a8bdb2;
	content: "";
}

.gfc-journey li > span {
	display: flex;
	z-index: 1;
	width: 35px;
	height: 35px;
	align-items: center;
	justify-content: center;
	border: 1px solid #d7e2dc;
	border-radius: 50%;
	background: #fff;
	color: var(--gfc-primary);
}

.gfc-journey li .gfc-svg {
	width: 19px;
	height: 19px;
}

.gfc-journey li strong,
.gfc-journey li small {
	display: block;
}

.gfc-journey li small {
	color: #3c4641;
	font-size: 10px;
}

.gfc-journey-art {
	display: flex;
	position: absolute;
	right: 35px;
	bottom: 52px;
	width: 100px;
	height: 100px;
	align-items: center;
	justify-content: center;
	border: 1px dashed var(--gfc-primary);
	border-radius: 50%;
	color: var(--gfc-primary);
}

.gfc-journey-art .gfc-svg {
	width: 58px;
	height: 58px;
}

.gfc-journey-art img {
	width: 100%;
	height: 100%;
	padding: 8px;
	border-radius: 50%;
	object-fit: contain;
}

.gfc-single-cta {
	display: grid;
	min-height: 110px;
	margin-top: 17px;
	padding: 20px 25px;
	border-radius: 10px;
	background: linear-gradient(100deg,#07543f,#003f32);
	background-position: center;
	background-size: cover;
	color: #fff;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
}

.gfc-single-cta .gfc-round-icon {
	border-radius: 9px;
	background: rgba(64,151,105,.38);
}

.gfc-single-cta h3 {
	margin: 0 0 4px;
	color: #fff;
	font-family: Georgia,serif;
	font-size: 22px;
}

.gfc-single-cta p {
	max-width: 570px;
	margin: 0;
	color: rgba(255,255,255,.9);
	font-size: 13px;
}

.gfc-related {
	margin-top: 22px;
}

.gfc-related-heading-row {
	display: flex;
	margin-bottom: 10px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.gfc-related-heading-row h2 {
	margin-bottom: 0;
}

.gfc-related-nav {
	display: flex;
	gap: 8px;
}

.gfc-related-nav button {
	display: flex;
	width: 38px;
	height: 38px;
	padding: 0;
	align-items: center;
	justify-content: center;
	border: 1px solid #e2e8e4;
	border-radius: 8px;
	background: #fff;
	color: var(--gfc-primary);
	cursor: pointer;
}

.gfc-related-nav button:first-child .gfc-svg {
	transform: rotate(180deg);
}

.gfc-related-nav .gfc-svg {
	width: 16px;
	height: 16px;
}

.gfc-related-grid {
	display: grid;
	padding: 1px 1px 8px;
	overflow-x: auto;
	grid-auto-columns: calc((100% - 51px) / 4);
	grid-auto-flow: column;
	gap: 17px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.gfc-related-grid::-webkit-scrollbar {
	display: none;
}

.gfc-related-card {
	display: grid;
	position: relative;
	min-width: 0;
	overflow: hidden;
	border: 1px solid #e1e6e3;
	border-radius: 9px;
	background: #fff;
	box-shadow: 0 6px 20px rgba(0,45,32,.05);
	grid-template-columns: 1fr auto;
	scroll-snap-align: start;
}

.gfc-related-card > a:first-child {
	grid-column: 1 / -1;
}

.gfc-related-card img,
.gfc-related-card > a:first-child {
	width: 100%;
	height: 116px;
	object-fit: cover;
}

.gfc-related-card .gfc-image-placeholder {
	min-height: 116px;
}

.gfc-related-card > div {
	min-width: 0;
	padding: 12px;
}

.gfc-related-card h3 {
	margin: 0 0 4px;
	overflow: hidden;
	font-size: 11px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gfc-related-card p {
	margin: 0;
	overflow: hidden;
	color: #525e58;
	font-size: 9px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gfc-related-arrow {
	display: flex;
	width: 35px;
	height: 35px;
	margin: auto 10px auto 0;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #eef4ef;
	color: var(--gfc-primary) !important;
}

.gfc-related-arrow .gfc-svg {
	width: 15px;
}

/* Reference-inspired compact single product layout (v1.6) */
.gfc-reference-single {
	padding: 0 0 90px;
	background:
		radial-gradient(circle at 3% 12%, rgba(225,246,239,.72), transparent 24%),
		linear-gradient(#fff,#fff);
}

.gfc-reference-single > .gfc-container {
	width: min(1200px,calc(100% - 48px));
}

.gfc-reference-hero {
	display: grid;
	min-height: 620px;
	padding: 72px 0 104px;
	grid-template-columns: minmax(0,.86fr) minmax(480px,1.14fr);
	align-items: center;
	gap: 66px;
}

.gfc-reference-hero-copy {
	min-width: 0;
}

.gfc-reference-hero .gfc-breadcrumbs,
.gfc-ref-elementor-hero .gfc-breadcrumbs {
	margin: 0 0 23px;
	color: #173c32;
	font-family: Georgia,"Times New Roman",serif;
	font-size: 12px;
	line-height: 1.4;
}

.gfc-reference-hero .gfc-breadcrumbs a,
.gfc-reference-hero .gfc-breadcrumbs strong,
.gfc-ref-elementor-hero .gfc-breadcrumbs a,
.gfc-ref-elementor-hero .gfc-breadcrumbs strong {
	font-weight: 400;
}

.gfc-reference-intro {
	max-width: 470px;
}

.gfc-reference-kicker {
	display: inline-block;
	margin-bottom: 17px;
	color: var(--gfc-primary) !important;
	font-family: Georgia,"Times New Roman",serif;
	font-size: 12px;
	font-weight: 700;
}

.gfc-reference-intro h1 {
	margin: 0 0 27px;
	color: #101713;
	font-family: Georgia,"Times New Roman",serif;
	font-size: clamp(37px,4.25vw,59px);
	font-weight: 700;
	letter-spacing: -.025em;
	line-height: 1.08;
}

.gfc-reference-points {
	display: grid;
	margin: 0 0 32px;
	padding: 0;
	gap: 11px;
	list-style: none;
}

.gfc-reference-points li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	color: #183f34;
	font-family: Georgia,"Times New Roman",serif;
	font-size: 14px;
}

.gfc-reference-points .gfc-svg {
	width: 15px;
	height: 15px;
	margin-top: 3px;
	color: var(--gfc-primary);
	stroke-width: 1.7;
}

.gfc-reference-quote {
	width: 100%;
	min-height: 55px;
	justify-content: space-between;
	padding-inline: 30px 12px;
	border-radius: 6px;
	font-family: Georgia,"Times New Roman",serif;
	font-size: 13px;
}

.gfc-reference-quote .gfc-svg,
.gfc-related-explore .gfc-svg {
	width: 31px;
	height: 31px;
	padding: 7px;
	border-radius: 5px;
	background: #fff;
	color: var(--gfc-primary);
}

.gfc-reference-hero .gfc-product-image-wrap,
.gfc-ref-elementor-hero .gfc-product-image-wrap {
	aspect-ratio: 1.36 / 1;
	border-radius: 14px;
	box-shadow: 0 18px 45px rgba(18,72,58,.09);
}

.gfc-image-zoom-stack {
	display: grid;
	position: absolute;
	right: 13px;
	bottom: 13px;
	gap: 8px;
}

.gfc-image-zoom-stack button {
	display: flex;
	width: 48px;
	height: 48px;
	padding: 0;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 4px;
	background: rgba(31,43,37,.72);
	color: #fff;
	cursor: pointer;
	backdrop-filter: blur(5px);
}

.gfc-image-zoom-stack .gfc-svg {
	width: 23px;
	height: 23px;
}

.gfc-reference-spec-strip {
	display: grid;
	margin: 0 0 142px;
	padding: 54px 42px 48px;
	border-radius: 72px 0 72px 0;
	background: #f6f7f6;
	grid-template-columns: repeat(4,minmax(0,1fr));
	column-gap: 42px;
	row-gap: 44px;
}

.gfc-reference-spec {
	display: grid;
	min-width: 0;
	grid-template-columns: 45px minmax(0,1fr);
	align-items: center;
	gap: 15px;
}

.gfc-reference-spec-icon {
	display: flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	color: var(--gfc-primary);
}

.gfc-reference-spec-icon .gfc-svg {
	width: 34px;
	height: 34px;
	stroke-width: 1.35;
}

.gfc-reference-spec strong,
.gfc-reference-spec small {
	display: block;
}

.gfc-reference-spec strong {
	color: #10251f;
	font-family: Georgia,"Times New Roman",serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
}

.gfc-reference-spec small {
	margin-top: 4px;
	color: #8a928e;
	font-family: Georgia,"Times New Roman",serif;
	font-size: 11px;
}

.gfc-reference-story {
	display: grid;
	margin: 0 0 146px;
	grid-template-columns: minmax(0,1fr) minmax(450px,1fr);
	align-items: center;
	gap: 72px;
}

.gfc-reference-story.is-image-left .gfc-reference-story-copy {
	order: 2;
}

.gfc-reference-story.is-image-left .gfc-reference-story-image {
	order: 1;
}

.gfc-reference-story-copy {
	padding-left: 2px;
}

.gfc-reference-story h2 {
	max-width: 570px;
	margin: 0 0 28px;
	color: #101713;
	font-size: clamp(34px,4vw,54px);
	letter-spacing: -.025em;
	line-height: 1.08;
}

.gfc-reference-story-text {
	max-width: 610px;
	color: #6c7470;
	font-family: Georgia,"Times New Roman",serif;
	font-size: 13px;
	line-height: 1.55;
}

.gfc-reference-story-text p:last-child {
	margin-bottom: 0;
}

.gfc-reference-story-image {
	min-height: 420px;
	overflow: hidden;
	border-radius: 14px;
	background: #eff2ef;
}

.gfc-reference-story-image img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
}

.gfc-reference-single .gfc-related {
	margin-top: 0;
}

.gfc-reference-single .gfc-related-heading-row {
	margin-bottom: 38px;
}

.gfc-reference-single .gfc-related-heading-row h2 {
	color: #101713;
	font-size: clamp(32px,3vw,45px);
}

.gfc-reference-single .gfc-related-nav button {
	border: 0;
	background: #f4f5f4;
}

.gfc-reference-single .gfc-related-card {
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	grid-template-columns: 1fr;
}

.gfc-reference-single .gfc-related-card img,
.gfc-reference-single .gfc-related-card > a:first-child {
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 8px;
}

.gfc-reference-single .gfc-related-card > div {
	padding: 16px 0 0;
}

.gfc-reference-single .gfc-related-card h3 {
	margin: 5px 0 8px;
	overflow: visible;
	font-family: Georgia,"Times New Roman",serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.35;
	text-overflow: clip;
	white-space: normal;
}

.gfc-reference-single .gfc-related-card p {
	color: #445a52;
	font-family: Georgia,"Times New Roman",serif;
	font-size: 11px;
	line-height: 1.4;
	white-space: normal;
}

.gfc-reference-single .gfc-related-arrow {
	display: none;
}

.gfc-related-explore {
	display: flex;
	margin-top: 60px;
	justify-content: flex-end;
}

.gfc-related-explore .gfc-button {
	min-width: 180px;
	justify-content: space-between;
	border-color: #f4f5f4;
	background: #f4f5f4;
	color: #10251f !important;
	font-family: Georgia,"Times New Roman",serif;
	font-size: 12px;
}

.gfc-related-explore .gfc-svg {
	background: var(--gfc-primary);
	color: #fff;
}

/* The same modular spacing when the layout is opened in Elementor. */
.gfc-elementor-product {
	padding: 0 0 90px;
	background: radial-gradient(circle at 3% 12%,rgba(225,246,239,.72),transparent 24%);
}

.gfc-elementor-product .gfc-ref-elementor-hero {
	padding-top: 72px;
	padding-bottom: 104px;
}

.gfc-elementor-product .gfc-ref-elementor-hero > .elementor-container {
	display: flex;
	gap: 66px;
	align-items: center;
}

.gfc-elementor-product .gfc-ref-elementor-hero .elementor-column:first-child {
	width: calc(44% - 33px);
}

.gfc-elementor-product .gfc-ref-elementor-hero .elementor-column:last-child {
	width: calc(56% - 33px);
}

.gfc-elementor-product .gfc-ref-elementor-specs {
	margin-bottom: 142px;
}

.gfc-elementor-product .gfc-ref-elementor-specs .gfc-reference-spec-strip {
	margin-bottom: 0;
}

.gfc-elementor-product .gfc-ref-elementor-story {
	margin-bottom: 146px;
}

.gfc-elementor-product .gfc-ref-elementor-story .gfc-reference-story {
	margin-bottom: 0;
}

.gfc-elementor-product .gfc-ref-elementor-related .gfc-related {
	margin-top: 0;
}

.gfc-ref-elementor-related .gfc-related-heading-row {
	margin-bottom: 38px;
}

.gfc-ref-elementor-related .gfc-related-heading-row h2 {
	color: #101713;
	font-size: clamp(32px,3vw,45px);
}

.gfc-ref-elementor-related .gfc-related-card {
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	grid-template-columns: 1fr;
}

.gfc-ref-elementor-related .gfc-related-card img,
.gfc-ref-elementor-related .gfc-related-card > a:first-child {
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 8px;
}

.gfc-ref-elementor-related .gfc-related-card > div {
	padding: 16px 0 0;
}

.gfc-ref-elementor-related .gfc-related-card h3 {
	margin: 5px 0 8px;
	overflow: visible;
	font-family: Georgia,"Times New Roman",serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.35;
	text-overflow: clip;
	white-space: normal;
}

.gfc-ref-elementor-related .gfc-related-card p {
	font-family: Georgia,"Times New Roman",serif;
	font-size: 11px;
	white-space: normal;
}

.gfc-ref-elementor-related .gfc-related-arrow {
	display: none;
}

/* Shared global footer */
.gfc-global-footer-template,
.gfc-footer-template-section,
.gfc-footer-template-section > .elementor-container,
.gfc-footer-template-section .elementor-column,
.gfc-footer-template-section .elementor-widget-wrap,
.gfc-footer-template-section .elementor-widget,
.gfc-footer-template-section .elementor-widget-container {
	width: 100%;
	max-width: none;
	margin: 0;
}

.gfc-global-footer {
	--gfc-footer-bg: #252a36;
	--gfc-footer-heading: #fff;
	--gfc-footer-text: #fff;
	--gfc-footer-muted: #8893ad;
	--gfc-footer-accent: #7aa642;
	padding: 56px 0 35px;
	background: var(--gfc-footer-bg);
	color: var(--gfc-footer-text);
	font-family: Inter,"Segoe UI",Arial,sans-serif;
}

.gfc-global-footer .gfc-container {
	width: min(1200px,calc(100% - 48px));
}

.gfc-footer-main {
	display: grid;
	min-height: 250px;
	grid-template-columns: minmax(260px,1.4fr) minmax(140px,.72fr) minmax(150px,.78fr) minmax(270px,1.2fr);
	gap: clamp(36px,5vw,82px);
}

.gfc-footer-brand,
.gfc-footer-menu,
.gfc-footer-hours {
	min-width: 0;
}

.gfc-footer-logo {
	width: auto;
	max-width: min(285px,100%);
	max-height: 78px;
	object-fit: contain;
	object-position: left center;
}

.gfc-footer-wordmark {
	display: inline-block;
	color: var(--gfc-footer-accent) !important;
	font-size: clamp(31px,3vw,44px);
	font-weight: 800;
	letter-spacing: -.04em;
	line-height: 1;
}

.gfc-footer-tagline {
	display: block;
	margin-top: 5px;
	color: var(--gfc-footer-muted);
	font-size: 11px;
}

.gfc-footer-description {
	max-width: 305px;
	margin-top: 42px;
	color: var(--gfc-footer-text);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.55;
}

.gfc-footer-description p:last-child,
.gfc-footer-hours p:last-child {
	margin-bottom: 0;
}

.gfc-global-footer h2 {
	margin: 0 0 25px;
	color: var(--gfc-footer-heading);
	font-family: inherit;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: none;
}

.gfc-footer-menu ul {
	display: grid;
	margin: 0;
	padding: 0;
	gap: 15px;
	list-style: none;
}

.gfc-footer-menu a {
	color: var(--gfc-footer-muted) !important;
	font-size: 14px;
	transition: color .2s ease,transform .2s ease;
}

.gfc-footer-menu a:hover,
.gfc-footer-menu a:focus-visible {
	color: var(--gfc-footer-text) !important;
}

.gfc-footer-hours > div {
	color: var(--gfc-footer-text);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.6;
}

.gfc-footer-bottom {
	display: grid;
	margin-top: 60px;
	grid-template-columns: minmax(210px,1fr) minmax(300px,1.4fr) minmax(330px,1fr);
	align-items: center;
	gap: 30px;
}

.gfc-footer-socials,
.gfc-footer-payments {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.gfc-footer-socials a {
	display: inline-flex;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 50%;
	color: var(--gfc-footer-text) !important;
	font-size: 17px;
	font-weight: 700;
}

.gfc-footer-socials a:hover,
.gfc-footer-socials a:focus-visible {
	border-color: var(--gfc-footer-accent);
	background: var(--gfc-footer-accent);
}

.gfc-footer-copyright {
	margin: 0;
	color: var(--gfc-footer-text);
	font-size: 13px;
	text-align: center;
}

.gfc-footer-payments {
	justify-content: flex-end;
	gap: 7px;
}

.gfc-payment-badge {
	display: inline-flex;
	min-width: 42px;
	min-height: 31px;
	padding: 5px 8px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255,255,255,.09);
	border-radius: 5px;
	background: rgba(255,255,255,.035);
	color: var(--gfc-footer-text);
	font-size: 10px;
	font-weight: 700;
	line-height: 1.05;
	text-align: center;
}

.gfc-payment-badge img {
	width: auto;
	max-width: 68px;
	height: 20px;
	object-fit: contain;
}

/* Full image dialog */
.gfc-image-modal {
	display: flex;
	position: fixed;
	z-index: 999999;
	inset: 0;
	padding: 30px;
	align-items: center;
	justify-content: center;
	background: rgba(0,20,15,.92);
}

.gfc-image-modal img {
	max-width: min(1200px,90vw);
	max-height: 90vh;
	border-radius: 8px;
	object-fit: contain;
}

.gfc-modal-close {
	display: flex;
	position: absolute;
	top: 25px;
	right: 25px;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255,255,255,.65);
	border-radius: 50%;
	background: rgba(0,0,0,.35);
	color: #fff;
	cursor: pointer;
}

/* Elementor wrappers */
.gfc-elementor-widget {
	background: transparent;
}

.gfc-elementor-product {
	width: 100%;
}

.gfc-elementor-archive {
	padding-bottom: 0;
	background: transparent;
}

/* Tablet */
@media (max-width: 1180px) {
	.gfc-category-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
	.gfc-product-hero { grid-template-columns: 1.05fr .95fr; }
	.gfc-product-summary h1 { font-size: 40px; }
	.gfc-ideal-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
	.gfc-catalog-hero-inner { grid-template-columns: .8fr 1.2fr; gap: 30px; }
	.gfc-catalog-contact { padding-left: 25px; }
}

@media (max-width: 900px) {
	.gfc-container { width: min(100% - 32px, 760px); }
	.gfc-catalog-hero-inner { grid-template-columns: 1fr; }
	.gfc-catalog-contact { padding: 20px 0 0; border-top: 1px solid rgba(255,255,255,.4); border-left: 0; }
	.gfc-catalog-hero { padding-bottom: 42px; }
	.gfc-category-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.gfc-archive-layout { grid-template-columns: 1fr; }
	.gfc-mobile-filter-toggle {
		display: flex;
		padding: 11px 15px;
		align-items: center;
		gap: 8px;
		border: 1px solid var(--gfc-primary);
		border-radius: 6px;
		background: #fff;
		color: var(--gfc-primary);
		font-weight: 700;
	}
	.gfc-filters { display: none; padding: 18px; border: 1px solid var(--gfc-line); border-radius: 8px; }
	.gfc-filters.is-open { display: block; }
	.gfc-filter-mobile-secondary { display: block; }
	.gfc-desktop-secondary-filters { display: none; }
	.gfc-products-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
	.gfc-product-hero { grid-template-columns: 1fr; }
	.gfc-elementor-product .gfc-elementor-hero-row > .elementor-container,
	.gfc-elementor-product .gfc-elementor-panels-row > .elementor-container { display: block; }
	.gfc-elementor-product .gfc-elementor-hero-row .elementor-column:first-child,
	.gfc-elementor-product .gfc-elementor-hero-row .elementor-column:last-child,
	.gfc-elementor-product .gfc-elementor-panels-row .elementor-column:first-child,
	.gfc-elementor-product .gfc-elementor-panels-row .elementor-column:last-child { width: 100%; }
	.gfc-elementor-product .gfc-elementor-hero-row .elementor-column + .elementor-column,
	.gfc-elementor-product .gfc-elementor-panels-row .elementor-column + .elementor-column { margin-top: 22px; }
	.gfc-product-image-wrap { min-height: 0; aspect-ratio: 1.13 / 1; }
	.gfc-product-main-image { min-height: 0; }
	.gfc-feature-grid { grid-template-columns: repeat(3,1fr); row-gap: 20px; }
	.gfc-feature { border-right: 0; }
	.gfc-detail-panels { grid-template-columns: 1fr; }
	.gfc-related-grid { grid-auto-columns: calc((100% - 17px) / 2); }
	.gfc-reference-hero {
		min-height: 0;
		padding: 54px 0 72px;
		grid-template-columns: 1fr;
		gap: 42px;
	}
	.gfc-reference-intro { max-width: 650px; }
	.gfc-reference-hero .gfc-product-image-wrap,
	.gfc-ref-elementor-hero .gfc-product-image-wrap { aspect-ratio: 1.36 / 1; }
	.gfc-reference-spec-strip {
		margin-bottom: 90px;
		padding: 44px 34px;
		border-radius: 52px 0 52px 0;
		grid-template-columns: repeat(2,minmax(0,1fr));
	}
	.gfc-reference-story {
		margin-bottom: 90px;
		grid-template-columns: 1fr;
		gap: 38px;
	}
	.gfc-reference-story.is-image-left .gfc-reference-story-copy,
	.gfc-reference-story.is-image-left .gfc-reference-story-image { order: initial; }
	.gfc-elementor-product .gfc-ref-elementor-hero > .elementor-container { display: block; }
	.gfc-elementor-product .gfc-ref-elementor-hero .elementor-column:first-child,
	.gfc-elementor-product .gfc-ref-elementor-hero .elementor-column:last-child { width: 100%; }
	.gfc-elementor-product .gfc-ref-elementor-hero .elementor-column + .elementor-column { margin-top: 42px; }
	.gfc-elementor-product .gfc-ref-elementor-specs,
	.gfc-elementor-product .gfc-ref-elementor-story { margin-bottom: 90px; }
	.gfc-footer-main { grid-template-columns: 1.4fr .8fr .8fr; }
	.gfc-footer-hours { grid-column: 1 / -1; }
	.gfc-footer-bottom { grid-template-columns: 1fr 1fr; }
	.gfc-footer-copyright { order: 3; grid-column: 1 / -1; }
	.gfc-footer-payments { justify-content: flex-end; }
}

/* Phone */
@media (max-width: 620px) {
	.gfc { font-size: 14px; }
	.gfc-container { width: calc(100% - 24px); }
	.gfc-catalog-hero { padding: 34px 0; }
	.gfc-catalog-intro h1 { font-size: 38px; }
	.gfc-catalog-contact { grid-template-columns: auto 1fr; }
	.gfc-catalog-contact .gfc-button { grid-column: 1 / -1; }
	.gfc-type-tabs { gap: 10px; }
	.gfc-type-tab { width: min(46vw,220px); height: 112px; grid-template-rows: 67px 45px; }
	.gfc-type-icon { top: 46px; }
	.gfc-category-grid { grid-template-columns: 1fr; }
	.gfc-category-photo { min-height: 145px; }
	.gfc-bottom-cta, .gfc-single-cta { grid-template-columns: auto 1fr; padding: 20px; }
	.gfc-bottom-cta .gfc-button, .gfc-single-cta .gfc-button { grid-column: 1 / -1; }
	.gfc-archive-hero { min-height: 390px; padding-top: 42px; }
	.gfc-archive-hero h1 { font-size: 39px; }
	.gfc-hero-badges { grid-template-columns: repeat(2,1fr); }
	.gfc-hero-actions { flex-direction: column; }
	.gfc-trust-strip { overflow-x: auto; }
	.gfc-trust-strip .gfc-container { width: 780px; grid-template-columns: repeat(5,1fr); }
	.gfc-results-toolbar { gap: 10px; }
	.gfc-results-toolbar label { display: grid; gap: 5px; }
	.gfc-results-toolbar select { min-width: 120px; margin-left: 0; }
	.gfc-products-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
	.gfc-product-card-image { aspect-ratio: 1 / 1.08; }
	.gfc-product-card-body { padding: 10px 8px; }
	.gfc-product-image-wrap { min-height: 0; aspect-ratio: 1 / 1; }
	.gfc-product-main-image { min-height: 0; }
	.gfc-product-summary h1 { font-size: 38px; }
	.gfc-spec-grid, .gfc-secondary-specs { grid-template-columns: 1fr; }
	.gfc-spec:nth-child(odd) { margin: 0; border-right: 0; }
	.gfc-product-actions { grid-template-columns: 1fr 72px; }
	.gfc-feature-grid { grid-template-columns: repeat(2,1fr); padding-inline: 7px; }
	.gfc-feature { padding-inline: 8px; }
	.gfc-ideal-grid { grid-template-columns: repeat(3,1fr); gap: 8px; }
	.gfc-detail-panel { min-height: 300px; padding: 24px 20px; }
	.gfc-sustainability .gfc-panel-content { width: 75%; }
	.gfc-journey { padding-right: 90px; }
	.gfc-journey-art { right: 12px; width: 70px; height: 70px; }
	.gfc-journey-art .gfc-svg { width: 38px; height: 38px; }
	.gfc-related-grid { grid-auto-columns: 100%; }
	.gfc-reference-single { padding-bottom: 56px; }
	.gfc-reference-single > .gfc-container { width: calc(100% - 28px); }
	.gfc-reference-hero { padding: 38px 0 60px; gap: 30px; }
	.gfc-reference-hero .gfc-breadcrumbs,
	.gfc-ref-elementor-hero .gfc-breadcrumbs { margin-bottom: 16px; font-size: 10px; }
	.gfc-reference-kicker { margin-bottom: 12px; }
	.gfc-reference-intro h1 { margin-bottom: 22px; font-size: 36px; }
	.gfc-reference-quote { min-height: 52px; }
	.gfc-reference-hero .gfc-product-image-wrap,
	.gfc-ref-elementor-hero .gfc-product-image-wrap { aspect-ratio: 1 / 1; }
	.gfc-image-zoom-stack button { width: 42px; height: 42px; }
	.gfc-reference-spec-strip {
		margin-bottom: 68px;
		padding: 35px 24px;
		border-radius: 38px 0 38px 0;
		grid-template-columns: 1fr;
		gap: 27px;
	}
	.gfc-reference-spec { grid-template-columns: 39px 1fr; gap: 12px; }
	.gfc-reference-spec-icon,
	.gfc-reference-spec-icon .gfc-svg { width: 32px; height: 32px; }
	.gfc-reference-story { margin-bottom: 68px; gap: 28px; }
	.gfc-reference-story h2 { margin-bottom: 18px; font-size: 34px; }
	.gfc-reference-story-image,
	.gfc-reference-story-image img { min-height: 280px; }
	.gfc-reference-single .gfc-related-heading-row,
	.gfc-ref-elementor-related .gfc-related-heading-row { margin-bottom: 24px; }
	.gfc-related-explore { margin-top: 35px; }
	.gfc-related-explore .gfc-button { width: 100%; }
	.gfc-elementor-product .gfc-ref-elementor-hero { padding-top: 38px; padding-bottom: 60px; }
	.gfc-elementor-product .gfc-ref-elementor-specs,
	.gfc-elementor-product .gfc-ref-elementor-story { margin-bottom: 68px; }
	.gfc-global-footer { padding: 46px 0 28px; }
	.gfc-global-footer .gfc-container { width: calc(100% - 32px); }
	.gfc-footer-main { min-height: 0; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 42px 28px; }
	.gfc-footer-brand,
	.gfc-footer-hours { grid-column: 1 / -1; }
	.gfc-footer-description { max-width: 100%; margin-top: 25px; }
	.gfc-global-footer h2 { margin-bottom: 18px; }
	.gfc-footer-menu ul { gap: 11px; }
	.gfc-footer-bottom { margin-top: 48px; grid-template-columns: 1fr; gap: 22px; }
	.gfc-footer-socials,
	.gfc-footer-payments { justify-content: flex-start; }
	.gfc-footer-copyright { order: initial; grid-column: auto; text-align: left; }
}

@media (max-width: 390px) {
	.gfc-products-grid { grid-template-columns: 1fr; }
	.gfc-ideal-grid { grid-template-columns: repeat(2,1fr); }
}

@media (prefers-reduced-motion: reduce) {
	.gfc *,
	.gfc *::before,
	.gfc *::after {
		scroll-behavior: auto !important;
		transition: none !important;
		animation-duration: .01ms !important;
	}
}

/* Main catalog images have an explicit box and do not depend on theme backgrounds. */
.gfc-catalog .gfc-type-tabs { flex-wrap:wrap; }
.gfc-catalog .gfc-type-tab { display:grid!important; grid-template-rows:90px 44px!important; height:134px!important; padding:0!important; }
.gfc-catalog .gfc-main-photo { display:block!important; position:relative; width:100%; height:90px; overflow:hidden; background:#dce4d7; }
.gfc-catalog .gfc-main-photo img { display:block!important; opacity:1!important; visibility:visible!important; position:absolute; inset:0; width:100%!important; height:100%!important; max-width:none; object-fit:cover; }
.gfc-catalog .gfc-type-tab strong { margin:0!important; padding:0 12px!important; grid-row:2; }
@media(max-width:600px) { .gfc-catalog .gfc-type-tabs { gap:12px; } .gfc-catalog .gfc-type-tab { width:calc(50% - 6px); } }
