/**
 * GFCH page styles — Shop, About, FAQs, Contact.
 */

/* —— Shared orange page hero (shop-style banner) —— */
.gfch-page-hero {
	background: var(--gfch-gold, #e9b44c);
	color: #fff;
	padding: 2.25rem 1.25rem 2.5rem;
}

.gfch-page-hero__inner {
	max-width: var(--gfch-max, 1280px);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.75rem;
	align-items: start;
}

.gfch-page-hero--with-search .gfch-page-hero__inner {
	grid-template-columns: 1.15fr 0.85fr;
	align-items: end;
}

.gfch-page-hero .gfch-page-hero__eyebrow {
	margin: 0 0 0.45rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #005028 !important;
	opacity: 1;
	text-shadow: none;
}

.gfch-page-hero__title {
	margin: 0 0 0.65rem;
	font-size: clamp(2rem, 4vw, 2.75rem);
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -0.02em;
	width: fit-content;
	max-width: 100%;
	padding-bottom: 0.08em;
	background: none;
	-webkit-text-fill-color: unset;
	color: var(--gfch-green, #005028);
	text-shadow: none;
	filter: none;
}

.gfch-page-hero__lead {
	margin: 0;
	max-width: 34rem;
	font-size: 1.02rem;
	line-height: 1.55;
	color: #fff;
	opacity: 0.96;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.gfch-page-hero__search {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: #fff;
	border-radius: 999px;
	padding: 0.35rem 0.35rem 0.35rem 1rem;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.gfch-page-hero__search-icon {
	color: #64748b;
	flex-shrink: 0;
}

.gfch-page-hero__search input[type="search"] {
	flex: 1;
	min-width: 0;
	border: 0;
	outline: none;
	font: inherit;
	font-size: 0.98rem;
	background: transparent;
	color: #0f172a;
	padding: 0.55rem 0.25rem;
}

.gfch-page-hero__search button {
	border: 0;
	border-radius: 999px;
	background: #005028;
	color: #fff;
	font: inherit;
	font-weight: 700;
	padding: 0.7rem 1.2rem;
	cursor: pointer;
	white-space: nowrap;
}

.gfch-page-hero__search button:hover {
	background: #003d1e;
	color: #fff;
}

@media (max-width: 860px) {
	.gfch-page-hero--with-search .gfch-page-hero__inner {
		grid-template-columns: 1fr;
	}
}

/* —— Shop —— */
.gfch-shop-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.25rem;
}

.gfch-shop-head .gfch-page__title {
	margin-bottom: 1.25rem;
}

.gfch-shop-head__cats {
	color: var(--gfch-green);
	font-weight: 600;
	text-decoration: none;
	font-size: 0.95rem;
	white-space: nowrap;
}

.gfch-shop-head__cats:hover {
	text-decoration: underline;
}

.gfch-shop-page ul.products,
.gfch-shop-page .products {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

.gfch-product-card {
	background: var(--gfch-beige);
	border-radius: 6px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	margin: 0 !important;
	width: auto !important;
	float: none !important;
	padding: 0 !important;
}

.gfch-product-card__media {
	display: block;
	aspect-ratio: 1;
	background: var(--gfch-white);
	overflow: hidden;
}

.gfch-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	padding: 0.75rem;
	box-sizing: border-box;
}

.gfch-product-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(145deg, #eceae4, #f7f5f0);
}

.gfch-product-card__body {
	padding: 0.85rem 1rem 1.1rem;
}

.gfch-product-card__title {
	margin: 0 0 0.35rem;
	font-size: 0.98rem;
	line-height: 1.3;
	font-weight: 700;
}

.gfch-product-card__title a {
	color: var(--gfch-text);
	text-decoration: none;
}

.gfch-product-card__title a:hover {
	color: var(--gfch-green);
}

.gfch-product-card__sku {
	margin: 0 0 0.45rem;
	font-size: 0.82rem;
	color: var(--gfch-muted);
}

.gfch-product-card .gfch-home-product__price,
.gfch-product-card .price {
	color: var(--gfch-green);
	font-weight: 700;
	font-size: 1rem;
	margin: 0;
}

.gfch-pagination {
	margin-top: 2rem;
	text-align: center;
}

.gfch-pagination .woocommerce-pagination,
.gfch-pagination ul.page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.65rem;
	justify-content: center;
	align-items: center;
}

.gfch-pagination .page-numbers {
	color: var(--gfch-muted);
	text-decoration: none;
	font-weight: 600;
	padding: 0.2rem 0.35rem;
}

.gfch-pagination .page-numbers.current {
	color: var(--gfch-gold-dark);
}

.gfch-pagination a.page-numbers:hover {
	color: var(--gfch-green);
}

/* —— About —— */
.gfch-about-page {
	background: #ffffff;
}

.gfch-about-page__inner {
	padding-top: 2rem;
	padding-bottom: 3.5rem;
}

.gfch-about-page__intro {
	margin: 0 0 1.75rem;
	padding: 0;
	border-radius: 0;
	background: none;
	color: inherit;
}

.gfch-about-page__heading {
	margin: 0;
	color: var(--gfch-green, #005028);
	font-size: clamp(1.85rem, 3vw, 2.35rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

.gfch-about-block {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 2rem 2.5rem;
	align-items: stretch;
	margin-bottom: 2.5rem;
	padding: 0;
	border-radius: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.gfch-about-block--flip {
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.gfch-about-block--flip .gfch-about-block__text {
	order: 2;
}

.gfch-about-block--flip .gfch-about-block__media {
	order: 1;
}

.gfch-about-block__text {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 1.15rem;
}

.gfch-about-block__text p {
	margin: 0;
	line-height: 1.7;
	color: #111111;
	font-size: 1rem;
	text-align: left;
}

.gfch-about-block:not(.gfch-about-block--flip) .gfch-about-block__text p:first-child,
.gfch-about-block:not(.gfch-about-block--flip) .gfch-about-block__text p:last-child {
	font-weight: 700;
}

.gfch-about-block__media img,
.gfch-about-block__placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
	display: block;
	background: #eceae4;
	box-shadow: none;
}

.gfch-about-block__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		linear-gradient(145deg, #e7e4dc 0%, #f4f2ec 100%);
	border: 1px dashed rgba(0, 80, 40, 0.22);
	color: #6b7a72;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.gfch-about-gallery {
	display: block;
	margin-top: 0.5rem;
	margin-bottom: 1rem;
	padding: 0;
	border-radius: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.gfch-about-gallery__item {
	margin: 0;
	overflow: hidden;
	border-radius: 10px;
}

.gfch-about-gallery__item img,
.gfch-about-gallery__item .gfch-about-block__placeholder {
	width: 100%;
	height: auto;
	aspect-ratio: 1024 / 278;
	object-fit: cover;
	object-position: center;
	display: block;
	border-radius: 10px;
	transition: transform 0.25s ease;
}

.gfch-about-gallery__item .gfch-about-block__placeholder {
	border: 1px dashed rgba(0, 80, 40, 0.2);
	min-height: 0;
}

.gfch-about-gallery__item:hover img {
	transform: scale(1.03);
}

.gfch-about-tile {
	margin: 0 0 2rem;
	padding: 1.85rem 2rem;
	border-radius: 20px;
	background: var(--gfch-green, #005028);
	color: #fff;
	min-width: 0;
}

.gfch-about-tile__eyebrow {
	margin: 0 0 0.55rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #f39200;
}

.gfch-about-tile__heading {
	margin: 0 0 0.75rem;
	color: #fff;
	font-size: clamp(1.45rem, 2.6vw, 1.95rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.gfch-about-tile__text {
	margin: 0;
	max-width: 42rem;
	color: #fff;
	font-size: 1rem;
	line-height: 1.6;
	font-weight: 400;
}

.gfch-about-faq {
	margin: 0 0 2rem;
}

.gfch-about-faq .gfch-faq-group {
	margin-top: 1.25rem;
}

.gfch-about-contact {
	margin: 0 0 2rem;
}

.gfch-about-contact__tiles {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.85rem;
	margin-top: 1.25rem;
}

.gfch-about-contact__tiles .gfch-contact-aside__faq {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100%;
	border-radius: 16px;
}

/* —— FAQs —— */
.gfch-faq-page {
	background: #faf8f4;
}

.gfch-faq {
	padding-top: 2.5rem;
	padding-bottom: 3.5rem;
}

.gfch-faq__intro {
	max-width: none;
	margin: 0 0 1.75rem;
	padding: 1.75rem 1.75rem 1.5rem;
	border-radius: 18px;
	background:
		radial-gradient(ellipse 60% 80% at 100% 0%, rgba(247, 148, 29, 0.18), transparent 55%),
		linear-gradient(135deg, #005028 0%, #003d1e 100%);
	color: #fff;
}

.gfch-faq__eyebrow,
.gfch-contact__eyebrow {
	margin: 0 0 0.45rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #e07f0d;
}

.gfch-faq__intro .gfch-faq__eyebrow {
	color: #f7941d;
}

.gfch-faq__heading,
.gfch-contact__heading {
	margin: 0 0 0.75rem;
	color: var(--gfch-green);
	font-size: clamp(1.65rem, 3vw, 2.15rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

.gfch-faq__intro .gfch-faq__heading {
	color: #fff;
}

.gfch-faq__lead,
.gfch-contact__lead {
	margin: 0;
	color: var(--gfch-muted);
	font-size: 1.02rem;
	line-height: 1.6;
}

.gfch-faq__intro .gfch-faq__lead {
	color: rgba(255, 255, 255, 0.92);
	max-width: 42rem;
}

.gfch-faq__lead a,
.gfch-contact__lead a {
	color: var(--gfch-green);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.gfch-faq__intro .gfch-faq__lead a {
	color: #f7941d;
}

.gfch-faq__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin: 1.35rem 0 0;
}

.gfch-faq__chip {
	display: inline-flex;
	align-items: center;
	padding: 0.7rem 1.15rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.gfch-faq__chip:hover {
	background: #f7941d;
	border-color: #f7941d;
	color: #fff;
	transform: translateY(-1px);
}

.gfch-faq__groups {
	display: grid;
	gap: 2rem;
	scroll-margin-top: 6rem;
}

.gfch-faq-group {
	margin: 0;
	scroll-margin-top: 6rem;
}

.gfch-faq-group__head {
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
	margin: 0 0 0.9rem;
}

.gfch-faq-group__index {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #e07f0d;
}

.gfch-faq-group__title {
	margin: 0;
	color: var(--gfch-green);
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: -0.01em;
}

.gfch-accordion {
	display: grid;
	gap: 0.65rem;
}

.gfch-accordion__item {
	border: 1px solid rgba(0, 80, 40, 0.1);
	border-radius: 14px;
	margin: 0;
	background: #fff;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
	overflow: hidden;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.gfch-accordion__item[open] {
	border-color: rgba(0, 80, 40, 0.22);
	box-shadow: 0 12px 30px rgba(0, 80, 40, 0.08);
}

.gfch-accordion__summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.05rem 1.15rem;
	font-weight: 700;
	color: var(--gfch-green);
	line-height: 1.35;
}

.gfch-accordion__summary::-webkit-details-marker {
	display: none;
}

.gfch-accordion__icon {
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 80, 40, 0.08);
	color: var(--gfch-green);
	transition: transform 0.18s ease, background 0.15s ease, color 0.15s ease;
}

.gfch-accordion__item[open] .gfch-accordion__icon {
	transform: rotate(180deg);
	background: var(--gfch-green);
	color: #fff;
}

.gfch-accordion__panel {
	padding: 0 1.15rem 1.15rem;
	color: var(--gfch-muted);
	line-height: 1.65;
	background: transparent;
	border-top: 0;
}

.gfch-accordion__panel p {
	margin: 0;
	border-top: 1px solid rgba(0, 80, 40, 0.08);
	padding-top: 0.9rem;
}

.gfch-accordion__panel a {
	color: var(--gfch-green);
	font-weight: 700;
}

.gfch-faq-cta {
	margin-top: 2.75rem;
	padding: 1.75rem 1.75rem;
	border-radius: 18px;
	background:
		radial-gradient(ellipse 60% 80% at 100% 0%, rgba(247, 148, 29, 0.18), transparent 55%),
		linear-gradient(135deg, #005028 0%, #003d1e 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.gfch-faq-cta__eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	opacity: 0.85;
}

.gfch-faq-cta__title {
	margin: 0 0 0.4rem;
	font-size: clamp(1.35rem, 2.5vw, 1.7rem);
	font-weight: 800;
	letter-spacing: -0.02em;
}

.gfch-faq-cta__text {
	margin: 0;
	max-width: 34rem;
	opacity: 0.92;
	line-height: 1.5;
}

.gfch-faq-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.gfch-faq-cta__actions .gfch-btn--primary {
	background: #f7941d;
	color: #fff;
}

.gfch-faq-cta__actions .gfch-btn--primary:hover {
	background: #e07f0d;
}

.gfch-faq-cta__actions .gfch-btn--ghost {
	border-color: rgba(255, 255, 255, 0.55);
	color: #fff;
	background: transparent;
}

.gfch-faq-cta__actions .gfch-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: #fff;
	color: #fff;
}

/* —— Contact —— */
.gfch-contact-page {
	background: #faf8f4;
}

.gfch-contact {
	padding-top: 2.5rem;
	padding-bottom: 1rem;
}

.gfch-contact__intro {
	max-width: none;
	margin: 0 0 2rem;
	padding: 1.75rem 1.75rem;
	border-radius: 18px;
	background:
		radial-gradient(ellipse 60% 80% at 100% 0%, rgba(247, 148, 29, 0.18), transparent 55%),
		linear-gradient(135deg, #005028 0%, #003d1e 100%);
	color: #fff;
}

.gfch-contact__intro .gfch-contact__eyebrow {
	color: #f7941d;
}

.gfch-contact__intro .gfch-contact__heading {
	color: #fff;
}

.gfch-contact__intro .gfch-contact__lead {
	color: rgba(255, 255, 255, 0.92);
	max-width: 42rem;
}

.gfch-contact__intro .gfch-contact__lead a {
	color: #f7941d;
}

.gfch-form-notice {
	padding: 0.95rem 1.1rem;
	border-radius: 12px;
	margin-bottom: 1.35rem;
	font-size: 0.95rem;
	font-weight: 600;
}

.gfch-form-notice--success {
	background: #dcfce7;
	border: 1px solid #bbf7d0;
	color: #166534;
}

.gfch-form-notice--error {
	background: #fff1f2;
	border: 1px solid #fecaca;
	color: #b91c1c;
}

.gfch-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 1.25rem;
	align-items: stretch;
}

.gfch-contact-form-card {
	border: 1px solid rgba(0, 80, 40, 0.1);
	border-radius: 18px;
	padding: 1.6rem 1.6rem 1.75rem;
	background: #fff;
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.gfch-contact-form-card__head {
	margin: 0 0 1.25rem;
}

.gfch-contact-form-card__title {
	margin: 0 0 0.35rem;
	color: var(--gfch-green);
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.gfch-contact-form-card__sub {
	margin: 0;
	color: var(--gfch-text);
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 600;
}

.gfch-contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.85rem;
	margin-bottom: 0.85rem;
}

.gfch-contact-form label,
.gfch-contact-form__full {
	display: grid;
	gap: 0.4rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--gfch-green);
	margin-bottom: 0.85rem;
}

.gfch-contact-form input[type="text"],
.gfch-contact-form input[type="email"],
.gfch-contact-form input[type="tel"],
.gfch-contact-form textarea {
	width: 100%;
	border: 1px solid rgba(0, 80, 40, 0.14);
	border-radius: 999px;
	padding: 0.8rem 1rem;
	font: inherit;
	font-size: 0.98rem;
	font-weight: 500;
	letter-spacing: normal;
	text-transform: none;
	color: var(--gfch-text);
	background: #faf8f4;
	box-sizing: border-box;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.gfch-contact-form textarea {
	border-radius: 18px;
	min-height: 8.5rem;
	resize: vertical;
}

.gfch-contact-form input::placeholder,
.gfch-contact-form textarea::placeholder {
	color: #94a3b8;
	font-weight: 400;
}

.gfch-contact-form input:focus,
.gfch-contact-form textarea:focus {
	outline: none;
	border-color: var(--gfch-green);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(0, 80, 40, 0.12);
}

.gfch-contact-form__role {
	border: 0;
	margin: 0.25rem 0 1rem;
	padding: 0;
}

.gfch-contact-form__role legend {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--gfch-green);
	margin-bottom: 0.55rem;
}

.gfch-contact-form__role-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.55rem;
}

.gfch-contact-form__pill {
	display: flex !important;
	align-items: center;
	gap: 0;
	margin: 0 !important;
	cursor: pointer;
}

.gfch-contact-form__pill input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.gfch-contact-form__pill span {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	min-height: 2.1rem;
	padding: 0.3rem 0.7rem;
	border-radius: 999px;
	border: 1px solid rgba(0, 80, 40, 0.16);
	background: #fff;
	color: var(--gfch-green);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: normal;
	text-transform: none;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.gfch-contact-form__pill input:checked + span {
	background: var(--gfch-green);
	border-color: var(--gfch-green);
	color: #fff;
}

.gfch-contact-form__pill:hover span {
	border-color: var(--gfch-green);
}

.gfch-contact-form__consent {
	display: flex !important;
	align-items: flex-start;
	gap: 0.65rem;
	font-weight: 500 !important;
	font-size: 0.9rem !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	color: var(--gfch-muted) !important;
	margin: 0 0 1.25rem !important;
}

.gfch-contact-form__consent input {
	margin-top: 0.2rem;
	accent-color: var(--gfch-green);
}

.gfch-contact-form .gfch-btn--block {
	width: 100%;
	min-height: 3rem;
	font-weight: 800;
	border-radius: 999px;
}

.gfch-contact-aside {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	min-height: 100%;
}

.gfch-contact-tile {
	display: flex;
	gap: 0.9rem;
	align-items: flex-start;
	padding: 1.15rem 1.2rem;
	border-radius: 16px;
	background: #fff;
	border: 1px solid rgba(0, 80, 40, 0.1);
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.gfch-contact-tile__icon {
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 80, 40, 0.08);
	color: var(--gfch-green);
}

.gfch-contact-tile__title {
	margin: 0 0 0.35rem;
	color: var(--gfch-green);
	font-size: 0.98rem;
	font-weight: 800;
}

.gfch-contact-tile__text {
	margin: 0;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--gfch-text);
	font-weight: 600;
}

.gfch-contact-tile__text a {
	color: var(--gfch-green);
	text-decoration: none;
}

.gfch-contact-tile__text a:hover {
	text-decoration: underline;
}

.gfch-contact-tile__meta {
	margin: 0.35rem 0 0;
	color: var(--gfch-text);
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 600;
}

.gfch-contact-tile__social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem 1rem;
}

.gfch-contact-tile__social a {
	color: var(--gfch-green);
	font-weight: 700;
	text-decoration: none;
}

.gfch-contact-tile__social a:hover {
	color: #e07f0d;
}

.gfch-contact-aside__faq-block {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(0, 80, 40, 0.1);
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.gfch-contact-aside__faq {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.25rem;
	flex: 0 0 auto;
	min-height: 0;
	padding: 1.15rem 1.25rem;
	border-radius: 0;
	background: linear-gradient(135deg, #005028 0%, #003d1e 100%);
	color: #fff;
	text-decoration: none;
	transition: filter 0.15s ease;
}

.gfch-contact-aside__faq:hover {
	transform: none;
	filter: brightness(1.05);
	color: #fff;
}

.gfch-contact-aside__faq span {
	font-size: 0.85rem;
	opacity: 0.88;
}

.gfch-contact-aside__faq strong {
	font-size: 1.05rem;
	font-weight: 800;
}

.gfch-contact-aside__faq-section {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	gap: 0.75rem;
	padding: 1rem 1rem 1.1rem;
	min-height: 0;
}

.gfch-contact-aside__faq-title {
	margin: 0;
	color: var(--gfch-green);
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1.3;
}

.gfch-accordion--compact {
	gap: 0.45rem;
}

.gfch-accordion--compact .gfch-accordion__summary {
	padding: 0.75rem 0.85rem;
	font-size: 0.88rem;
	gap: 0.65rem;
}

.gfch-accordion--compact .gfch-accordion__icon {
	width: 1.65rem;
	height: 1.65rem;
}

.gfch-accordion--compact .gfch-accordion__icon svg {
	width: 12px;
	height: 12px;
}

.gfch-accordion--compact .gfch-accordion__panel {
	padding: 0 0.85rem 0.85rem;
	font-size: 0.88rem;
	line-height: 1.55;
}

.gfch-contact-aside__faq-more {
	margin-top: auto;
	align-self: flex-start;
	color: var(--gfch-green);
	font-size: 0.88rem;
	font-weight: 800;
	text-decoration: none;
}

.gfch-contact-aside__faq-more:hover {
	color: #e07f0d;
	text-decoration: underline;
}

.gfch-contact-map {
	margin-top: 2.5rem;
	padding: 0 1.25rem 3rem;
	background: #faf8f4;
}

.gfch-contact-map__inner {
	max-width: var(--gfch-max, 1180px);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 1.5rem;
	align-items: stretch;
}

.gfch-contact-map__tile {
	gap: 1.25rem;
	padding: 1.35rem;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(0, 80, 40, 0.1);
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
	box-sizing: border-box;
}

.gfch-contact-map__copy {
	padding: 0.85rem 0.5rem 0.85rem 0.75rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.gfch-contact-map__title {
	margin: 0 0 0.65rem;
	color: var(--gfch-green);
	font-size: clamp(1.45rem, 2.5vw, 1.85rem);
	font-weight: 800;
	letter-spacing: -0.02em;
}

.gfch-contact-map__text {
	margin: 0;
	color: var(--gfch-text);
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 600;
}

.gfch-contact-map__frame {
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(0, 80, 40, 0.1);
	line-height: 0;
	background: #f3f1ec;
	min-height: 100%;
}

.gfch-contact-map__frame iframe {
	display: block;
	width: 100%;
	min-height: 360px;
	height: 100%;
}

.gfch-page__inner--elementor {
	max-width: none;
	padding-left: 0;
	padding-right: 0;
	padding-top: 0;
}

/* Auth pages: cream page field + centered form shell */
body.gfch-auth-page,
body.gfch-auth-page.gfch-site-body,
body.gfch-auth-page .gfch-site,
body.gfch-auth-page .gfch-page {
	background-color: #faf8f4 !important;
}

body.gfch-auth-page .gfch-page__inner,
body.gfch-auth-page .gfch-page__inner--elementor {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	padding: 2rem 1.25rem 3rem;
	background-color: transparent;
}

body.gfch-auth-page .elementor-section,
body.gfch-auth-page .elementor-section > .elementor-container,
body.gfch-auth-page .elementor-background-overlay {
	background-color: #faf8f4 !important;
	background-image: none !important;
}

body.gfch-auth-page .gfch-page__title,
body.gfch-auth-page .elementor-widget-heading .elementor-heading-title,
body.gfch-auth-page .entry-content > h1:first-child {
	display: none !important;
}

body.gfch-auth-page .gfch-auth {
	margin-left: auto;
	margin-right: auto;
}

body.gfch-auth-page .elementor-section.elementor-section-boxed > .elementor-container,
body.gfch-auth-page .elementor-section > .elementor-container {
	max-width: 720px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

body.gfch-auth-page .elementor-widget-container {
	max-width: 100%;
}

.gfch-woo-page .woocommerce {
	width: 100%;
}


@media (max-width: 980px) {
	.gfch-shop-page ul.products:not(.gfch-shop__grid),
	.gfch-shop-page .products:not(.gfch-shop__grid) {
		grid-template-columns: repeat(2, 1fr);
	}

	.gfch-about-block,
	.gfch-about-block--flip {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.gfch-about-block__text {
		justify-content: flex-start;
	}

	.gfch-about-block--flip .gfch-about-block__text,
	.gfch-about-block--flip .gfch-about-block__media {
		order: unset;
	}

	.gfch-about-gallery {
		display: block;
	}

	.gfch-about-contact__tiles {
		grid-template-columns: 1fr;
	}

	.gfch-contact-grid,
	.gfch-contact-map__inner {
		grid-template-columns: 1fr;
	}

	.gfch-contact-map__tile {
		padding: 1.1rem;
		gap: 1rem;
	}

	.gfch-contact-map__copy {
		padding: 0.35rem 0.25rem 0;
	}

	.gfch-contact-aside__faq {
		flex: 0 0 auto;
		min-height: 0;
	}

	.gfch-contact-aside__faq-block {
		flex: 0 0 auto;
	}

	.gfch-faq-cta {
		padding: 1.4rem 1.25rem;
	}
}

@media (max-width: 720px) {
	.gfch-shop-page ul.products:not(.gfch-shop__grid),
	.gfch-shop-page .products:not(.gfch-shop__grid) {
		grid-template-columns: 1fr;
		max-width: 360px;
	}

	.gfch-faq__intro,
	.gfch-contact__intro,
	.gfch-faq-cta {
		padding: 1.35rem 1.2rem;
	}

	.gfch-about-gallery {
		display: block;
	}

	.gfch-about-tile {
		padding: 1.35rem 1.15rem;
	}

	.gfch-about-tile__heading {
		font-size: clamp(1.2rem, 5.4vw, 1.55rem);
	}

	.gfch-contact-form__row,
	.gfch-contact-form__role-grid {
		grid-template-columns: 1fr;
	}

	.gfch-faq-cta__actions {
		width: 100%;
	}

	.gfch-faq-cta__actions .gfch-btn {
		flex: 1;
		justify-content: center;
	}
}
