/*
 * GFPR Custom Styles
 * Adapted from Stitch AI reference design
 */


/* --- CSS Custom Properties (beyond theme.json) --------------------------- */
:root {
	--gfpr-max-width: 1140px;
	--gfpr-radius: 0.75rem;
	--gfpr-radius-lg: 2rem;
	--gfpr-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	--gfpr-shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
	--gfpr-transition: 0.3s ease;

	/* Brand color tokens — single source of truth */
	--gfpr-color-brand: #A2CD3A;          /* Lime — primary CTA, accents */
	--gfpr-color-brand-hover: #8ab332;    /* Darker lime — button hover */
	--gfpr-color-brand-dark: #3F8C41;     /* Dark forest — text accents on light bg, focus rings */
	--gfpr-color-accent-gold: #E6D31B;    /* Gold — announcement, H2 swipe */
	--gfpr-color-surface-cream: #F0EED5;  /* Cream — footer */
	--gfpr-color-tint-lime: #F5F8EB;      /* Lime tint — hover bg, soft surfaces */

	/* Text */
	--gfpr-color-text: #1D1C0D;           /* Default heading/UI text */
	--gfpr-color-text-body: #3a3a2e;      /* Body copy, footer links */
	--gfpr-color-text-muted: #5a5a48;     /* Lede, secondary */
	--gfpr-color-text-on-brand: #1D1C0D;  /* Dark text on lime bg (WCAG AA pass at 12.4:1) */

	/* Button system — primary CTA */
	--gfpr-btn-primary-bg: var(--gfpr-color-brand);
	--gfpr-btn-primary-text: var(--gfpr-color-text-on-brand);
	--gfpr-btn-primary-bg-hover: var(--gfpr-color-brand-hover);
	--gfpr-btn-primary-text-hover: var(--gfpr-color-text-on-brand);
}

/* --- Material Symbols Base ------------------------------------------------ */
.material-symbols-outlined {
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* --- Header (announcement bar + nav row, sticks as one unit) -------------- */
.gfpr-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #ffffff;
	transition: box-shadow 0.2s ease;
}

.gfpr-header.is-scrolled {
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.gfpr-announcement-bar {
	background: #E6D31B;
	padding: 0.4rem 2rem;
	text-align: center;
}

.gfpr-announcement-bar p {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #000;
	margin: 0;
}

.gfpr-header-inner {
	max-width: var(--gfpr-max-width);
	margin: 0 auto;
	padding: 0 2rem;
	height: 76px;
	display: flex;
	align-items: center;
	gap: 2.5rem;
	overflow: visible;
}

.gfpr-logo {
	text-decoration: none;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 2;
	margin-top: -64px;
	margin-bottom: -34px;
}

.gfpr-logo img {
	height: 98px;
	width: auto;
	display: block;
}

/* Primary Nav */
.gfpr-nav {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gfpr-nav-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gfpr-nav-list > li {
	position: relative;
}

.gfpr-nav-list > li > a {
	display: inline-flex;
	align-items: center;
	gap: 0.125rem;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.9375rem;
	font-weight: 500;
	color: #1D1C0D;
	text-decoration: none;
	padding: 0.25rem 0;
	transition: color var(--gfpr-transition);
	white-space: nowrap;
}

.gfpr-nav-list > li > a:hover,
.gfpr-nav-list > li.current-menu-item > a,
.gfpr-nav-list > li.current-menu-parent > a {
	color: #3f8c41;
}

/* Search Toggle */
.gfpr-search-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 50%;
	background: #fff;
	color: #1D1C0D;
	cursor: pointer;
	flex-shrink: 0;
	transition: all var(--gfpr-transition);
}

.gfpr-search-toggle:hover {
	border-color: #A2CD3A;
	background: #F5F8EB;
	color: #3f8c41;
}

.gfpr-search-toggle .material-symbols-outlined {
	font-size: 20px;
}

/* Search Overlay */
.gfpr-search-overlay {
	position: fixed;
	inset: 0;
	background: rgba(29, 28, 13, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 1000;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 8rem 2rem 2rem;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.gfpr-search-overlay[hidden] {
	display: none;
}

.gfpr-search-overlay.is-open {
	opacity: 1;
}

.gfpr-search-overlay-inner {
	width: 100%;
	max-width: 640px;
}

.gfpr-search-overlay-form {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background: #fff;
	border-radius: 14px;
	padding: 0.5rem 0.5rem 0.5rem 1.25rem;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.gfpr-search-overlay-icon {
	color: #9a9a84;
	font-size: 24px;
}

.gfpr-search-overlay-form input {
	flex: 1;
	min-width: 0;
	background: transparent;
	border: none;
	outline: none;
	font-family: var(--wp--preset--font-family--body);
	font-size: 1.125rem;
	color: #1D1C0D;
	padding: 0.75rem 0;
}

.gfpr-search-overlay-form input::placeholder {
	color: #9a9a84;
}

.gfpr-search-overlay-submit {
	border: none;
	background: var(--gfpr-btn-primary-bg);
	color: var(--gfpr-btn-primary-text);
	font-family: var(--wp--preset--font-family--body);
	font-weight: 600;
	font-size: 0.9375rem;
	padding: 0.75rem 1.5rem;
	border-radius: 10px;
	cursor: pointer;
	transition: background var(--gfpr-transition);
}

.gfpr-search-overlay-submit:hover {
	background: var(--gfpr-btn-primary-bg-hover);
}

.gfpr-search-overlay-hint {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.8125rem;
	text-align: center;
	margin: 1.25rem 0 0;
}

.gfpr-search-overlay-hint kbd {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	padding: 0.125rem 0.4rem;
	border-radius: 4px;
	font-family: inherit;
	font-size: 0.75rem;
}

.gfpr-search-close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background var(--gfpr-transition);
}

.gfpr-search-close:hover {
	background: rgba(255, 255, 255, 0.2);
}

/* --- Hero Section --------------------------------------------------------- */
.gfpr-hero {
	display: flex;
	gap: 1.5rem;
	align-items: stretch;
	max-width: var(--gfpr-max-width);
	margin: 30px auto 0;
	padding: 0 2rem;
	height: 450px;
	overflow: visible;
}

.gfpr-hero-panel {
	flex: 3;
	display: flex;
	gap: 1.5rem;
	background: #F0EED5;
	border-radius: var(--gfpr-radius-lg);
	padding: 2rem 3rem;
	position: relative;
}

.gfpr-hero-headline {
	flex: 6;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.75rem;
	padding-right: 1rem;
	min-width: 0;
}

.gfpr-hero-headline h1 {
	font-family: var(--wp--preset--font-family--display);
	font-size: clamp(2rem, 3.5vw, 3.25rem);
	font-weight: 700;
	color: #000;
	line-height: 1;
	margin: 0;
}

.gfpr-hero-headline h1 em {
	font-weight: 400;
	font-style: italic;
	opacity: 0.9;
	display: block;
}

.gfpr-hero-headline p {
	font-family: var(--wp--preset--font-family--body);
	font-size: 1rem;
	color: #000;
	line-height: 1.6;
	max-width: 24rem;
}

.gfpr-hero-cta {
	display: inline-block;
	background: var(--gfpr-btn-primary-bg);
	color: var(--gfpr-btn-primary-text);
	padding: 0.75rem 1.75rem;
	border-radius: 0.375rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.75rem;
	text-decoration: none;
	transition: background var(--gfpr-transition);
	align-self: flex-start;
}

.gfpr-hero-cta:hover {
	background: var(--gfpr-btn-primary-bg-hover);
	color: var(--gfpr-btn-primary-text-hover);
}

.gfpr-hero-image {
	flex: 5;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	position: relative;
	min-height: 0;
}

.gfpr-hero-image img {
	max-width: 100%;
	width: auto;
	height: 470px;
	object-fit: contain;
	filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.2));
	margin-bottom: -80px;
}


.gfpr-hero-trending {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-top: 0.5rem;
}

.gfpr-hero-trending h3 {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.25rem;
	font-weight: 700;
	color: #000;
	margin-bottom: 0.5rem;
}

.gfpr-trending-card {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
}

.gfpr-trending-card-image {
	flex-shrink: 0;
	width: 65px;
	height: 65px;
	border-radius: 0.375rem;
	overflow: hidden;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.25rem;
}

.gfpr-trending-card-image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.gfpr-trending-card-info {
	flex: 1;
	min-width: 0;
}

.gfpr-trending-brand {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.75rem;
	font-weight: 700;
	color: #000;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 1.25;
	margin-bottom: 0.125rem;
}

.gfpr-trending-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: 0.875rem;
	font-weight: 400;
	color: #000;
	line-height: 1.25;
	margin: 0 0 0.25rem;
}

.gfpr-rating-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	margin-bottom: 0.2rem;
}

.gfpr-rating-stars {
	display: inline-flex;
	gap: 0;
	color: #E6A817;
}

.gfpr-rating-stars .material-symbols-outlined {
	font-size: 14px;
}

.gfpr-rating-stars .material-symbols-outlined[style*="'FILL' 0"] {
	color: #ccc;
}

.gfpr-rating-count {
	color: #555;
	font-size: 0.8rem;
	font-weight: 500;
	text-decoration: underline;
}

.gfpr-rating-count:hover {
	color: var(--gfpr-color-brand-dark);
}

.gfpr-trending-cta {
	display: block;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.85rem;
	font-weight: 500;
	color: #000;
	text-decoration: underline;
}

.gfpr-trending-cta:hover {
	color: var(--gfpr-color-brand-dark);
}

.gfpr-trending-divider {
	border: none;
	border-top: 1px dotted rgba(0, 0, 0, 0.2);
	margin: 0.625rem 0;
}

/* --- Category Sections ---------------------------------------------------- */
.gfpr-category-section {
	max-width: var(--gfpr-max-width);
	margin: 0 auto;
	padding: 0 2rem;
}

.gfpr-category-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	border-bottom: 1px solid var(--wp--preset--color--outline-variant);
	padding-bottom: 1rem;
	margin-bottom: 2rem;
}

.gfpr-category-header h2 {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.875rem;
	font-weight: 700;
	margin: 0;
}

.gfpr-category-header a {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--gfpr-color-brand-dark);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	text-decoration: none;
}

.gfpr-category-header a:hover {
	text-decoration: underline;
}

/* --- Product Card Grid ---------------------------------------------------- */
.gfpr-product-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.5rem;
}

.gfpr-product-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
}

.gfpr-product-card-image {
	height: 250px;
	margin-bottom: 1rem;
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.gfpr-product-card-image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.gfpr-product-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--wp--preset--color--tertiary);
	color: #fff;
	font-size: 0.625rem;
	font-weight: 700;
	padding: 0.25rem 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 2px;
}

.gfpr-product-badge--editorial {
	background: #E6D31B;
	color: #000;
}

.gfpr-product-badge--certification {
	background: var(--gfpr-color-brand);
	color: var(--gfpr-color-text-on-brand);
}

/* Hero featured badge — above headline */
.gfpr-hero-badge {
	display: inline-block;
	align-self: flex-start;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.7rem;
	font-weight: 700;
	padding: 0.375rem 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	border-radius: 2px;
}

.gfpr-hero-badge--editorial {
	background: #E6D31B;
	color: #000;
}

.gfpr-hero-badge--certification {
	background: var(--gfpr-color-brand);
	color: var(--gfpr-color-text-on-brand);
}

/* Trending card image badge overlay */
.gfpr-trending-card-image {
	position: relative;
}

.gfpr-trending-badge {
	position: absolute;
	top: 0.25rem;
	left: 0.25rem;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.55rem;
	font-weight: 700;
	padding: 0.15rem 0.375rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 2px;
	line-height: 1.3;
	max-width: calc(100% - 0.5rem);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gfpr-product-card-icon {
	display: none;
}

.gfpr-product-card-brand {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.75rem;
	font-weight: 700;
	color: #000;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 1.25;
	margin-bottom: 0.125rem;
}

.gfpr-product-card-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.25;
	margin: 0 0 0.5rem;
}

.gfpr-product-card-title a {
	color: #000;
	text-decoration: none;
}

.gfpr-product-card-title a:hover {
	color: var(--gfpr-color-brand-dark);
}

.gfpr-card-rating {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	margin-bottom: 0.5rem;
}

.gfpr-card-rating .gfpr-rating-stars {
	display: inline-flex;
	gap: 0;
	color: #E6A817;
}

.gfpr-card-rating .gfpr-rating-stars .material-symbols-outlined {
	font-size: 16px;
}

.gfpr-card-rating .gfpr-rating-stars .material-symbols-outlined[style*="'FILL' 0"] {
	color: #ccc;
}

.gfpr-card-rating .gfpr-rating-count-text {
	color: #555;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.8rem;
	font-weight: 500;
	text-decoration: underline;
}

.gfpr-product-card-excerpt {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.8rem;
	color: #555;
	line-height: 1.5;
	margin: 0 0 0.5rem;
}

.gfpr-product-card-cta {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.85rem;
	font-weight: 500;
	color: #000;
	text-decoration: underline;
}

.gfpr-product-card-cta:hover {
	color: var(--gfpr-color-brand-dark);
}

/* --- Star Ratings --------------------------------------------------------- */
.gfpr-stars {
	display: inline-flex;
	gap: 0;
}

.gfpr-star-filled {
	color: var(--wp--preset--color--tertiary-container);
}

.gfpr-star-empty {
	color: var(--wp--preset--color--outline-variant);
}

/* --- Newsletter Section --------------------------------------------------- */
.gfpr-newsletter {
	background: var(--wp--preset--color--surface-container-high);
	border-radius: 1.5rem;
	padding: 4rem 2rem;
	text-align: center;
	max-width: 56rem;
	margin: 4rem auto;
}

.gfpr-newsletter-label {
	display: block;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.75rem;
	color: var(--gfpr-color-brand-dark);
	margin-bottom: 1rem;
}

.gfpr-newsletter h2 {
	font-family: var(--wp--preset--font-family--display);
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.gfpr-newsletter-form {
	display: flex;
	gap: 1rem;
	max-width: 28rem;
	margin: 0 auto;
}

.gfpr-newsletter-form input[type="email"] {
	flex: 1;
	background: var(--wp--preset--color--surface-lowest);
	border: none;
	padding: 1rem 1.5rem;
	border-radius: 0.5rem;
	outline: none;
	font-size: 0.875rem;
}

.gfpr-newsletter-form input[type="email"]:focus {
	box-shadow: 0 0 0 2px var(--gfpr-color-brand);
}

.gfpr-newsletter-form button {
	background: var(--gfpr-btn-primary-bg);
	color: var(--gfpr-btn-primary-text);
	padding: 1rem 2rem;
	border-radius: 0.5rem;
	font-weight: 700;
	border: none;
	cursor: pointer;
	transition: background var(--gfpr-transition), color var(--gfpr-transition);
}

.gfpr-newsletter-form button:hover {
	background: var(--gfpr-btn-primary-bg-hover);
	color: var(--gfpr-btn-primary-text-hover);
}

.gfpr-newsletter p.gfpr-newsletter-note {
	margin-top: 1.5rem;
	font-size: 0.875rem;
	color: var(--wp--preset--color--on-surface-variant);
	font-style: italic;
}

/* --- Lifestyle Banner ----------------------------------------------------- */
.gfpr-lifestyle-banner {
	width: 100%;
	height: 600px;
	position: relative;
	overflow: hidden;
}

.gfpr-lifestyle-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gfpr-lifestyle-banner-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gfpr-lifestyle-banner-text {
	text-align: center;
	color: #fff;
	max-width: 42rem;
	padding: 0 2rem;
}

.gfpr-lifestyle-banner-text h2 {
	font-family: var(--wp--preset--font-family--display);
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-style: italic;
	color: #fff;
	margin-bottom: 1.5rem;
}

.gfpr-lifestyle-banner-text p {
	font-size: 1.125rem;
	letter-spacing: 0.05em;
}

/* --- Footer --------------------------------------------------------------- */
.gfpr-footer {
	background: #F0EED5;
	color: #1D1C0D;
	font-size: 0.9375rem;
	letter-spacing: 0;
	padding: 4.5rem 0 0;
}

.gfpr-footer-inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.75fr;
	gap: 3rem;
	max-width: var(--gfpr-max-width);
	margin: 0 auto;
	padding: 0 3rem 4rem;
}

.gfpr-footer-logo {
	height: 92px;
	width: auto;
	margin-bottom: 1.25rem;
}

.gfpr-footer-brand p {
	font-family: var(--wp--preset--font-family--body);
	color: #3a3a2e;
	font-size: 0.9375rem;
	line-height: 1.6;
	max-width: 28ch;
	margin: 0 0 1.5rem;
}

.gfpr-footer-social {
	display: flex;
	gap: 0.5rem;
	margin-top: 0;
}

.gfpr-footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	color: #6b6a58;
	background: rgba(0, 0, 0, 0.04);
	text-decoration: none;
	transition: all var(--gfpr-transition);
}

.gfpr-footer-social a:hover {
	color: var(--gfpr-color-text-on-brand);
	background: var(--gfpr-color-brand);
}

.gfpr-footer-social .material-symbols-outlined {
	font-size: 18px;
}

.gfpr-footer-col h4 {
	font-family: var(--wp--preset--font-family--body);
	font-weight: 700;
	color: #000;
	text-transform: uppercase;
	font-size: 0.8125rem;
	letter-spacing: 0.08em;
	margin-bottom: 1rem;
}

.gfpr-footer-col a {
	display: block;
	font-family: var(--wp--preset--font-family--body);
	color: #3a3a2e;
	font-size: 0.9375rem;
	text-decoration: none;
	margin-bottom: 0.625rem;
	transition: color var(--gfpr-transition);
}

.gfpr-footer-col a:hover {
	color: #000;
}

.gfpr-footer-col ul,
.gfpr-footer-col .menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gfpr-footer-col li {
	margin: 0;
}

.gfpr-footer-newsletter-copy {
	font-family: var(--wp--preset--font-family--body);
	color: #5a5a48;
	font-size: 0.875rem;
	line-height: 1.55;
	margin: 0 0 1rem;
	max-width: 30ch;
}

.gfpr-footer-newsletter-form {
	position: relative;
	display: flex;
	align-items: center;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 999px;
	padding: 0.25rem 0.25rem 0.25rem 1rem;
	transition: border-color var(--gfpr-transition), box-shadow var(--gfpr-transition);
}

.gfpr-footer-newsletter-form:focus-within {
	border-color: #A2CD3A;
	box-shadow: 0 0 0 3px rgba(161, 204, 58, 0.25);
}

.gfpr-footer-newsletter-form input {
	flex: 1;
	min-width: 0;
	background: transparent;
	border: none;
	outline: none;
	padding: 0.5rem 0.5rem 0.5rem 0;
	color: #000;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.9375rem;
}

.gfpr-footer-newsletter-form input::placeholder {
	color: #9a9a84;
}

.gfpr-footer-newsletter-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	background: var(--gfpr-btn-primary-bg);
	color: var(--gfpr-btn-primary-text);
	cursor: pointer;
	transition: background var(--gfpr-transition), transform var(--gfpr-transition);
}

.gfpr-footer-newsletter-form button:hover {
	background: var(--gfpr-btn-primary-bg-hover);
	transform: translateX(2px);
}

.gfpr-footer-newsletter-form button .material-symbols-outlined {
	font-size: 20px;
}

/* Where-to-buy line — auto-rendered from buy meta, after the review body */
.gfpr-pdp-where-to-buy {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--gfpr-color-text-body);
	margin: 1.5rem 0 0;
	padding: 0.9rem 1.1rem;
	background: var(--gfpr-color-tint-lime);
	border: 1px solid #e2ead0;
	border-radius: var(--gfpr-radius);
}

.gfpr-pdp-where-to-buy strong { color: var(--gfpr-color-text); }

.gfpr-pdp-where-to-buy a {
	color: var(--gfpr-color-brand-dark);
	font-weight: 600;
	text-decoration: none;
}

.gfpr-pdp-where-to-buy a:hover { text-decoration: underline; }

/* Provenance / honesty line — hands-on vs research-based */
.gfpr-provenance-line {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.85rem;
	line-height: 1.5;
	color: var(--gfpr-color-text-body);
	background: var(--gfpr-color-tint-lime);
	border: 1px solid #e2ead0;
	border-radius: var(--gfpr-radius);
	padding: 0.7rem 0.9rem;
	margin: 0 0 1rem;
}

.gfpr-provenance-line .material-symbols-outlined {
	font-size: 20px;
	color: var(--gfpr-color-brand-dark);
	flex-shrink: 0;
	margin-top: 1px;
}

.gfpr-provenance-line strong { color: var(--gfpr-color-text); }

.gfpr-provenance-line a {
	color: var(--gfpr-color-brand-dark);
	font-weight: 600;
	white-space: nowrap;
	text-decoration: none;
}

.gfpr-provenance-line a:hover { text-decoration: underline; }

/* Hands-on gets a warmer accent so it's distinguishable at a glance */
.gfpr-provenance-line--hands-on {
	background: #fbf6e9;
	border-color: #efe3c2;
}

.gfpr-provenance-line--hands-on .material-symbols-outlined { color: #a43e24; }

.gfpr-disclosure-line {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.8125rem;
	line-height: 1.5;
	color: #6b6a58;
	margin: 0 0 1.75rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #ececec;
}

.gfpr-home-disclosure {
	max-width: var(--gfpr-max-width);
	margin: 0.5rem auto 0.5rem;
	padding: 0 2rem;
}

.gfpr-home-disclosure .gfpr-disclosure-line {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
	text-align: center;
}

/* --- Partners page -------------------------------------------------------- */
.gfpr-partners {
	padding: 2.5rem 0 5rem;
}

.gfpr-partners-inner {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 2rem;
}

.gfpr-partners-header {
	margin-bottom: 2rem;
}

.gfpr-partners-header h1 {
	font-family: var(--wp--preset--font-family--display);
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.15;
	color: #000;
	margin: 0.75rem 0 1rem;
}

.gfpr-partners-lede {
	font-family: var(--wp--preset--font-family--body);
	font-size: 1.125rem;
	line-height: 1.55;
	color: #333;
	margin: 0;
}

.gfpr-partners-body h2 {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.5rem;
	font-weight: 700;
	color: #000;
	margin: 2.25rem 0 0.75rem;
}

.gfpr-partners-body p,
.gfpr-partners-body li {
	font-family: var(--wp--preset--font-family--body);
	font-size: 1rem;
	line-height: 1.65;
	color: #2c2c20;
}

.gfpr-partners-body p {
	margin: 0 0 1.25rem;
}

.gfpr-partners-body ul {
	padding-left: 1.5rem;
	margin: 0 0 1.25rem;
}

.gfpr-partners-body li {
	margin-bottom: 0.5rem;
}

.gfpr-partners-body a {
	color: #3f8c41;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.gfpr-partners-body a:hover {
	color: #000;
}

.gfpr-disclosure-line a {
	color: #3f8c41;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.gfpr-disclosure-line a:hover {
	color: #000;
}

.gfpr-footer-bottom {
	background: var(--gfpr-color-brand);
	margin-top: 3rem;
	padding: 1.25rem 3rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.75rem;
	color: #000;
}

.gfpr-footer-bottom-inner {
	max-width: var(--gfpr-max-width);
	margin: 0 auto;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gfpr-footer-bottom a {
	color: #000;
	text-decoration: none;
	margin-left: 1.5rem;
}

.gfpr-footer-bottom a:hover {
	color: #fff;
}

/* --- Nutrition Label ------------------------------------------------------ */
.gfpr-nutrition-label {
	border: 2px solid #000;
	padding: 0.5rem;
	max-width: 300px;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.8rem;
	line-height: 1.4;
}

.gfpr-nutrition-label h3 {
	font-size: 2rem;
	font-weight: 900;
	font-family: var(--wp--preset--font-family--body);
	margin: 0 0 0.25rem;
	line-height: 1;
}

.gfpr-nutrition-label .serving-info {
	font-size: 0.75rem;
	border-bottom: 8px solid #000;
	padding-bottom: 0.5rem;
	margin-bottom: 0.25rem;
}

.gfpr-nutrition-label .calories-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	border-bottom: 4px solid #000;
	padding: 0.25rem 0;
	margin-bottom: 0.25rem;
}

.gfpr-nutrition-label .calories-row .label {
	font-size: 0.7rem;
	font-weight: 700;
}

.gfpr-nutrition-label .calories-row .value {
	font-size: 1.5rem;
	font-weight: 900;
}

.gfpr-nutrition-label .nutrient-row {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #000;
	padding: 0.2rem 0;
}

.gfpr-nutrition-label .nutrient-row.thick-bottom {
	border-bottom-width: 4px;
}

.gfpr-nutrition-label .nutrient-row .indent {
	padding-left: 1rem;
}

.gfpr-nutrition-label .nutrient-row .bold {
	font-weight: 700;
}

.gfpr-nutrition-label .allergen-info {
	margin-top: 0.5rem;
	padding-top: 0.5rem;
	border-top: 4px solid #000;
	font-size: 0.7rem;
}

/* --- Product Detail Page (PDP) -------------------------------------------- */
.gfpr-pdp {
	max-width: var(--gfpr-max-width);
	margin: 0 auto;
	padding: 0 4rem 3rem;
}

/* Sticky Buy Bar */
.gfpr-sticky-buy {
	position: fixed;
	top: 130px;
	left: 0;
	right: 0;
	z-index: 49;
	background: #fff;
	border-bottom: 1px solid #e0e0e0;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	transform: translateY(-100%);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.gfpr-sticky-buy.visible {
	transform: translateY(0);
	opacity: 1;
}

.gfpr-sticky-buy-inner {
	max-width: var(--gfpr-max-width);
	margin: 0 auto;
	padding: 0.75rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gfpr-sticky-buy-info {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.gfpr-sticky-buy-img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	border-radius: 4px;
}

.gfpr-sticky-buy-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1rem;
	font-weight: 700;
	color: #000;
	margin-right: 0.75rem;
}

.gfpr-sticky-buy-rating {
	display: inline-flex;
	align-items: center;
	gap: 0;
	color: #E6A817;
	text-decoration: underline;
	cursor: pointer;
}

.gfpr-sticky-buy-rating .material-symbols-outlined {
	font-size: 16px;
}

.gfpr-sticky-buy-rating .material-symbols-outlined[style*="'FILL' 0"] {
	color: #ccc;
}

.gfpr-sticky-buy-action {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.gfpr-sticky-buy-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.85rem;
	font-weight: 700;
	/* Mirror the on-page CTA: brand colors come from the retailer registry via
	   inline custom properties, with the site brand as a fallback. */
	background: var(--cta-bg, var(--gfpr-btn-primary-bg));
	color: var(--cta-fg, var(--gfpr-btn-primary-text));
	padding: 0.625rem 1.75rem;
	border-radius: 0.375rem;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition: background 0.2s ease;
}

.gfpr-sticky-buy-btn:hover {
	background: var(--cta-bg-hover, var(--gfpr-btn-primary-bg-hover));
	color: var(--cta-fg, var(--gfpr-btn-primary-text-hover));
}

/* Retailer logo inside the sticky CTAs — mirrors .gfpr-pdp-cta-logo on the page. */
.gfpr-sticky-buy-logo,
.gfpr-pdp-jumpnav-cta-logo {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}
.gfpr-sticky-buy-logo img,
.gfpr-pdp-jumpnav-cta-logo img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

/* Mobile: drop the thumbnail, stack title over rating, truncate the title, and
   compact the CTA so the whole bar fits a phone width without overflowing. */
@media (max-width: 600px) {
	.gfpr-sticky-buy-inner {
		padding: 0.55rem 1rem;
		gap: 0.75rem;
	}
	.gfpr-sticky-buy-img { display: none; }
	.gfpr-sticky-buy-info {
		flex: 1;
		min-width: 0;
		gap: 0;
	}
	.gfpr-sticky-buy-info > div {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 2px;
		min-width: 0;
		width: 100%;
	}
	.gfpr-sticky-buy-title {
		margin-right: 0;
		max-width: 100%;
		font-size: 0.85rem;
		line-height: 1.2;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.gfpr-sticky-buy-rating .material-symbols-outlined { font-size: 14px; }
	.gfpr-sticky-buy-action { flex-shrink: 0; }
	.gfpr-sticky-buy-btn {
		padding: 0.5rem 0.9rem;
		font-size: 0.7rem;
		letter-spacing: 0.03em;
		white-space: nowrap;
	}
}

/* Breadcrumbs */
.gfpr-breadcrumbs {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.8rem;
	color: #888;
	padding: 1.5rem 0;
}

.gfpr-breadcrumbs a {
	color: #888;
	text-decoration: none;
}

.gfpr-breadcrumbs a:hover {
	color: #000;
}

.gfpr-breadcrumb-sep {
	margin: 0 0.5rem;
	color: #ccc;
}

.gfpr-breadcrumb-current {
	color: #000;
}

/* PDP Main: Article + Product Sidebar */
.gfpr-pdp-main {
	display: flex;
	gap: 3rem;
	margin-bottom: 3rem;
}

.gfpr-pdp-article {
	flex: 1;
	min-width: 0;
}

/* Ad Slots */
.gfpr-ad-slot {
	margin-bottom: 1.5rem;
}

.gfpr-ad-leaderboard .gfpr-ad-placeholder {
	width: 728px;
	height: 90px;
	background: #f0f0f0;
	border: 1px dashed #ccc;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
}

.gfpr-ad-leaderboard .gfpr-ad-placeholder span {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.75rem;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.gfpr-pdp-article-header {
	margin-bottom: 2rem;
}

.gfpr-pdp-article-meta {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.85rem;
	color: #888;
	margin-top: 0.5rem;
}

/* Product Sidebar */
.gfpr-pdp-product-sidebar {
	flex: 0 0 320px;
	max-width: 320px;
}

.gfpr-pdp-product-card-sticky {
	position: sticky;
	top: 180px;
	margin-top: -80px;
}

/* Sidebar Gallery */
.gfpr-pdp-sidebar-gallery {
	position: relative;
	margin-bottom: 1rem;
}

.gfpr-pdp-sidebar-gallery .gfpr-product-badge {
	z-index: 2;
}

.gfpr-pdp-sidebar-image {
	width: 100%;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.gfpr-pdp-sidebar-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.gfpr-pdp-sidebar-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.25rem;
	font-weight: 700;
	color: #000;
	line-height: 1.2;
	margin: 0 0 0.5rem;
}

.gfpr-pdp-rating-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.gfpr-pdp-rating-row .gfpr-pdp-stars {
	display: inline-flex;
	color: #E6A817;
}

.gfpr-pdp-rating-row .gfpr-pdp-stars .material-symbols-outlined {
	font-size: 16px;
}

.gfpr-pdp-rating-row .gfpr-pdp-stars .material-symbols-outlined[style*="'FILL' 0"] {
	color: #ccc;
}

.gfpr-pdp-rating-row .gfpr-pdp-review-count {
	font-size: 0.8rem;
	color: #555;
	text-decoration: underline;
}

.gfpr-pdp-thumbnails {
	display: flex;
	gap: 0.75rem;
}

.gfpr-pdp-thumb {
	width: 72px;
	height: 72px;
	border: 2px solid transparent;
	border-radius: 6px;
	overflow: hidden;
	cursor: pointer;
	background: #F7F5F3;
	padding: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gfpr-pdp-thumb.active {
	border-color: #000;
}

.gfpr-pdp-thumb:hover {
	border-color: #999;
}

.gfpr-pdp-thumb img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.gfpr-pdp-brand {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #555;
	margin-bottom: 0.125rem;
}

.gfpr-pdp-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: 2.25rem;
	font-weight: 700;
	color: #000;
	line-height: 1.15;
	margin: 0 0 0.75rem;
}

/* Title accents — swap modifier class on .gfpr-pdp-title to change style */
.gfpr-pdp-title .gfpr-title-accent {
	position: relative;
	display: inline;
}

/* Option 2 — Highlighter marker swipe (translucent stripe behind text) */
.gfpr-pdp-title--highlight .gfpr-title-accent {
	background-image: linear-gradient(
		180deg,
		transparent 0%,
		transparent 55%,
		rgba(161, 204, 58, 0.45) 55%,
		rgba(161, 204, 58, 0.45) 92%,
		transparent 92%
	);
	padding: 0 0.1em;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

/* Option 3 — Hand-drawn brush stroke: tapered, uneven, painterly */
.gfpr-pdp-title--brush .gfpr-title-accent {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 30' preserveAspectRatio='none'><defs><filter id='r'><feTurbulence type='fractalNoise' baseFrequency='0.02 0.9' numOctaves='2' seed='4'/><feDisplacementMap in='SourceGraphic' scale='3'/></filter></defs><path d='M6 16 C 35 9, 85 21, 135 13 C 185 7, 235 23, 285 15 C 320 11, 360 20, 394 13 L 393 20 C 355 26, 320 17, 285 23 C 235 29, 185 15, 135 23 C 85 29, 40 18, 7 22 Z' fill='%23A2CD3A' filter='url(%23r)' opacity='0.95'/></svg>");
	background-repeat: no-repeat;
	background-position: 0 95%;
	background-size: 100% 0.4em;
	padding-bottom: 0.05em;
}

/* Option 3b — Sketchy double-marker (two overlapping scribbles, pencil-like) */
.gfpr-pdp-title--sketch .gfpr-title-accent {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 24' preserveAspectRatio='none'><path d='M4 10 C 45 4, 95 16, 155 9 C 215 3, 275 14, 335 7 C 360 5, 380 9, 395 8' stroke='%23A2CD3A' stroke-width='3' stroke-linecap='round' fill='none' opacity='0.95'/><path d='M8 17 C 55 13, 110 21, 170 15 C 230 10, 285 20, 345 15 C 370 13, 385 16, 395 15' stroke='%23A2CD3A' stroke-width='2' stroke-linecap='round' fill='none' opacity='0.65'/></svg>");
	background-repeat: no-repeat;
	background-position: 0 95%;
	background-size: 100% 0.45em;
	padding-bottom: 0.05em;
}

/* Option 3c — Thick painterly marker swipe (shorter, heavier, tapered) */
.gfpr-pdp-title--marker .gfpr-title-accent {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 36' preserveAspectRatio='none'><defs><filter id='m'><feTurbulence type='fractalNoise' baseFrequency='0.015 1.2' numOctaves='2' seed='7'/><feDisplacementMap in='SourceGraphic' scale='4'/></filter></defs><path d='M10 18 C 60 8, 140 26, 220 15 C 290 6, 350 24, 390 14 L 390 26 C 340 34, 290 18, 220 28 C 140 38, 70 22, 12 28 Z' fill='%23A2CD3A' filter='url(%23m)' opacity='0.9'/></svg>");
	background-repeat: no-repeat;
	background-position: 0 95%;
	background-size: 100% 0.6em;
	padding-bottom: 0.1em;
}

/* Option 4 — Wide highlighter swipe: tapered organic shape behind ~80% of text */
.gfpr-pdp-title--swipe .gfpr-title-accent {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 60' preserveAspectRatio='none'><defs><filter id='s'><feTurbulence type='fractalNoise' baseFrequency='0.012 0.35' numOctaves='2' seed='11'/><feDisplacementMap in='SourceGraphic' scale='5'/></filter></defs><path d='M6 22 C 40 12, 90 16, 150 14 C 210 11, 270 18, 320 15 C 350 13, 370 17, 378 22 L 374 46 C 360 50, 310 47, 260 49 C 190 52, 130 46, 70 50 C 40 52, 18 50, 8 48 Z' fill='%23E6D31B' filter='url(%23s)'/></svg>");
	background-repeat: no-repeat;
	background-position: 0 55%;
	background-size: 100% 1.4em;
	padding: 0 0.15em;
}

.gfpr-pdp-stars {
	display: inline-flex;
	gap: 0;
	color: #E6A817;
}

.gfpr-pdp-stars .material-symbols-outlined {
	font-size: 20px;
}

.gfpr-pdp-stars .material-symbols-outlined[style*="'FILL' 0"] {
	color: #ccc;
}

.gfpr-pdp-review-count {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.85rem;
	color: #555;
	text-decoration: underline;
}

/* Verdict Card */
.gfpr-pdp-verdict {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: #F7F5F3;
	border-radius: 0.5rem;
	padding: 0.75rem 1.25rem;
	margin-bottom: 1rem;
}

.gfpr-pdp-verdict-score {
	display: flex;
	align-items: baseline;
	gap: 0.125rem;
}

.gfpr-pdp-verdict-number {
	font-family: var(--wp--preset--font-family--display);
	font-size: 2.5rem;
	font-weight: 900;
	color: #000;
	line-height: 1;
}

.gfpr-pdp-verdict-outof {
	font-family: var(--wp--preset--font-family--body);
	font-size: 1rem;
	color: #888;
	font-weight: 400;
}

.gfpr-pdp-verdict-detail {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.gfpr-pdp-verdict .gfpr-pdp-stars {
	display: inline-flex;
	align-items: center;
	gap: 0;
	color: #E6A817;
}

.gfpr-pdp-verdict .gfpr-pdp-stars .material-symbols-outlined {
	font-size: 18px;
}

.gfpr-pdp-verdict .gfpr-pdp-stars .material-symbols-outlined[style*="'FILL' 0"] {
	color: #ccc;
}

.gfpr-pdp-verdict .gfpr-pdp-review-count {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.8rem;
	color: #555;
	text-decoration: underline;
	margin-left: 0.5rem;
}

.gfpr-pdp-verdict-text {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--gfpr-color-brand-dark);
}

.gfpr-pdp-price {
	font-family: var(--wp--preset--font-family--body);
	font-size: 1.5rem;
	font-weight: 700;
	color: #000;
	margin-bottom: 1rem;
}

.gfpr-pdp-excerpt {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.95rem;
	color: #555;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

/* Variations */
.gfpr-pdp-variations {
	margin-bottom: 1.5rem;
}

.gfpr-pdp-variations-label {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.8rem;
	font-weight: 600;
	color: #555;
	display: block;
	margin-bottom: 0.5rem;
}

.gfpr-pdp-variation-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.gfpr-pdp-variation-chip {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.85rem;
	font-weight: 500;
	padding: 0.5rem 1.25rem;
	border: 2px solid #ddd;
	border-radius: 9999px;
	background: #fff;
	cursor: pointer;
	transition: all 0.15s ease;
	color: #333;
}

.gfpr-pdp-variation-chip:hover {
	border-color: #999;
}

.gfpr-pdp-variation-chip.active {
	border-color: var(--gfpr-color-brand);
	background: var(--gfpr-color-brand);
	color: var(--gfpr-color-text-on-brand);
}

.gfpr-pdp-variation-notes {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.85rem;
	color: #777;
	font-style: italic;
	margin: 0;
	min-height: 1.2em;
}

/* Affiliate CTA */
.gfpr-pdp-cta {
	display: block;
	text-align: center;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.9rem;
	font-weight: 700;
	background: var(--gfpr-btn-primary-bg);
	color: var(--gfpr-btn-primary-text);
	padding: 0.875rem 2rem;
	border-radius: 0.375rem;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition: background 0.2s ease;
	margin-bottom: 1.25rem;
}

.gfpr-pdp-cta:hover {
	background: var(--gfpr-btn-primary-bg-hover);
	color: var(--gfpr-btn-primary-text-hover);
}

/* Stacked retailer CTAs (Amazon / Walmart / Target) */
.gfpr-pdp-buy-stack {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
}

.gfpr-pdp-cta--retail {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.75rem 1.25rem;
	margin-bottom: 0;
	letter-spacing: 0.06em;
	transition: background var(--gfpr-transition);
	/* Brand colors come from the retailer registry via inline custom properties,
	   with a neutral brand fallback so an unregistered retailer still looks intentional. */
	background: var(--cta-bg, var(--gfpr-color-brand));
	color: var(--cta-fg, var(--gfpr-color-text-on-brand));
}

.gfpr-pdp-cta--retail:hover {
	background: var(--cta-bg-hover, var(--gfpr-color-brand-hover));
	color: var(--cta-fg, var(--gfpr-color-text-on-brand));
}

.gfpr-pdp-cta--retail > span:not(.gfpr-pdp-cta-logo) {
	flex: 1;
	text-align: center;
}

.gfpr-pdp-cta-logo {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

.gfpr-pdp-cta-logo svg,
.gfpr-pdp-cta-logo img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

/* Per-retailer brand colors are supplied inline from the registry (see .gfpr-pdp-cta--retail). */

/* Trust Badges Row */
.gfpr-pdp-trust-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem 0.25rem;
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid #e0e0e0;
}

.gfpr-pdp-trust-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	text-align: center;
	text-decoration: none;
	color: inherit;
	padding: 0.25rem;
	border-radius: 8px;
	transition: opacity var(--gfpr-transition);
}

.gfpr-pdp-trust-item:hover {
	opacity: 0.75;
}

.gfpr-pdp-trust-logo {
	height: 56px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	display: block;
}

.gfpr-pdp-trust-item .material-symbols-outlined {
	font-size: 32px;
	color: var(--gfpr-color-brand-dark);
}

.gfpr-pdp-trust-item span:last-child {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.65rem;
	font-weight: 600;
	color: #555;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 1.2;
	max-width: 90px;
}


.gfpr-pdp-summary-card {
	background: #F0EED5;
	border-radius: var(--gfpr-radius);
	padding: 1.5rem;
	margin-top: 1.5rem;
}

.gfpr-pdp-summary-card h3 {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.25rem;
	font-weight: 700;
	color: #000;
	margin: 0 0 1rem;
}

.gfpr-pdp-summary-card .gfpr-pdp-pros-cons {
	flex-direction: column;
	gap: 1.25rem;
}

/* --- Accordion Sections --- */
.gfpr-pdp-sections {
	max-width: 900px;
	margin: 0 auto 3rem;
}

.gfpr-accordion {
	border-bottom: 1px solid #e0e0e0;
}

.gfpr-accordion-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 1.25rem 0;
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.25rem;
	font-weight: 700;
	color: #000;
	text-align: left;
}

.gfpr-accordion-header:hover {
	color: var(--gfpr-color-brand-dark);
}

.gfpr-accordion-icon {
	transition: transform 0.2s ease;
	font-size: 24px;
	color: #888;
}

.gfpr-accordion.open .gfpr-accordion-icon {
	transform: rotate(180deg);
}

.gfpr-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.gfpr-accordion.open .gfpr-accordion-content {
	max-height: 5000px;
	padding-bottom: 1.5rem;
}

/* Pros / Cons */
.gfpr-pdp-pros-cons {
	display: flex;
	gap: 3rem;
}

.gfpr-pdp-pros h4,
.gfpr-pdp-cons h4 {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.9rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.gfpr-pdp-pros h4 { color: var(--gfpr-color-brand-dark); }
.gfpr-pdp-cons h4 { color: #d63638; }

.gfpr-pdp-pros ul,
.gfpr-pdp-cons ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.gfpr-pdp-pros li::before { content: '+ '; color: var(--gfpr-color-brand-dark); font-weight: 700; }
.gfpr-pdp-cons li::before { content: '- '; color: #d63638; font-weight: 700; }

.gfpr-pdp-pros li,
.gfpr-pdp-cons li {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.9rem;
	color: #333;
	margin-bottom: 0.375rem;
	line-height: 1.5;
}

/* Review Content */
.gfpr-pdp-review-content {
	font-family: var(--wp--preset--font-family--body);
	font-size: 1rem;
	line-height: 1.8;
	color: #333;
}

/* Headings */
.gfpr-pdp-review-content h2,
.gfpr-pdp-review-content h3,
.gfpr-pdp-review-content h4,
.gfpr-pdp-review-content h5,
.gfpr-pdp-review-content h6 {
	font-family: var(--wp--preset--font-family--display);
	color: #000;
	font-weight: 700;
	line-height: 1.25;
}

.gfpr-pdp-review-content h2 {
	font-size: 1.875rem;
	margin: 2.5rem 0 1rem;
	width: fit-content;
	max-width: 100%;
	padding: 0 0.2em;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 60' preserveAspectRatio='none'><defs><filter id='s'><feTurbulence type='fractalNoise' baseFrequency='0.012 0.35' numOctaves='2' seed='11'/><feDisplacementMap in='SourceGraphic' scale='5'/></filter></defs><path d='M6 22 C 40 12, 90 16, 150 14 C 210 11, 270 18, 320 15 C 350 13, 370 17, 378 22 L 374 46 C 360 50, 310 47, 260 49 C 190 52, 130 46, 70 50 C 40 52, 18 50, 8 48 Z' fill='%23E6D31B' filter='url(%23s)'/></svg>");
	background-repeat: no-repeat;
	background-position: 0 60%;
	background-size: 100% 1.1em;
}

.gfpr-pdp-review-content h3 {
	font-size: 1.5rem;
	margin: 2rem 0 0.75rem;
}

.gfpr-pdp-review-content h4 {
	font-size: 1.25rem;
	margin: 1.75rem 0 0.5rem;
}

.gfpr-pdp-review-content h5 {
	font-size: 1.05rem;
	margin: 1.5rem 0 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.gfpr-pdp-review-content h6 {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.85rem;
	margin: 1.25rem 0 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #555;
}

/* First heading shouldn't have big top margin */
.gfpr-pdp-review-content > h2:first-child,
.gfpr-pdp-review-content > h3:first-child {
	margin-top: 0;
}

/* Paragraphs */
.gfpr-pdp-review-content p {
	margin: 0 0 1.25rem;
}

/* Lists */
.gfpr-pdp-review-content ul,
.gfpr-pdp-review-content ol {
	margin: 0 0 1.25rem;
	padding-left: 1.5rem;
}

.gfpr-pdp-review-content ul {
	list-style: none;
}

.gfpr-pdp-review-content ul > li {
	position: relative;
}

.gfpr-pdp-review-content ul > li::before {
	content: '';
	position: absolute;
	left: -1.35rem;
	top: 0.45em;
	width: 1.05em;
	height: 0.75em;
	background-image: url('../images/bullet.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.gfpr-pdp-review-content li {
	margin-bottom: 0.5rem;
	line-height: 1.7;
}

.gfpr-pdp-review-content li > ul,
.gfpr-pdp-review-content li > ol {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

/* Blockquote */
.gfpr-pdp-review-content blockquote,
.gfpr-pdp-review-content .wp-block-quote {
	margin: 2rem 0;
	padding: 0.5rem 0 0.5rem 1.5rem;
	border-left: 4px solid var(--gfpr-color-brand);
	font-family: var(--wp--preset--font-family--display);
	font-style: italic;
	font-size: 1.25rem;
	line-height: 1.5;
	color: #333;
}

.gfpr-pdp-review-content blockquote cite,
.gfpr-pdp-review-content .wp-block-quote cite {
	display: block;
	margin-top: 0.75rem;
	font-family: var(--wp--preset--font-family--body);
	font-style: normal;
	font-size: 0.85rem;
	color: #777;
}

/* Pull Quote */
.gfpr-pdp-review-content .wp-block-pullquote {
	margin: 2.5rem 0;
	padding: 2rem 0;
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
	text-align: center;
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.5rem;
	line-height: 1.4;
	font-style: italic;
}

/* Images */
.gfpr-pdp-review-content img,
.gfpr-pdp-review-content .wp-block-image img {
	max-width: 100%;
	height: auto;
	border-radius: var(--gfpr-radius);
	margin: 0.75rem 0;
	display: block;
}

.gfpr-pdp-review-content figure {
	margin: 1rem 0;
}

.gfpr-pdp-review-content figcaption {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.8rem;
	color: #888;
	text-align: center;
	margin-top: 0.5rem;
	font-style: italic;
}

/* Links */
.gfpr-pdp-review-content a {
	color: var(--gfpr-color-brand-dark);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.gfpr-pdp-review-content a:hover {
	color: #000;
}

/* Inline formatting */
.gfpr-pdp-review-content strong,
.gfpr-pdp-review-content b {
	font-weight: 700;
	color: #000;
}

.gfpr-pdp-review-content em,
.gfpr-pdp-review-content i {
	font-style: italic;
}

.gfpr-pdp-review-content code {
	font-family: 'SF Mono', Monaco, Consolas, monospace;
	font-size: 0.9em;
	background: #f5f5f5;
	padding: 0.15em 0.4em;
	border-radius: 3px;
}

.gfpr-pdp-review-content pre {
	background: #f5f5f5;
	padding: 1.25rem;
	border-radius: var(--gfpr-radius);
	overflow-x: auto;
	margin: 1.5rem 0;
	font-family: 'SF Mono', Monaco, Consolas, monospace;
	font-size: 0.85rem;
	line-height: 1.6;
}

.gfpr-pdp-review-content pre code {
	background: none;
	padding: 0;
}

/* Separator / HR */
.gfpr-pdp-review-content hr,
.gfpr-pdp-review-content .wp-block-separator {
	border: none;
	height: 1px;
	background: #e0e0e0;
	margin: 3rem auto;
	max-width: 200px;
}

.gfpr-pdp-review-content .wp-block-separator.is-style-dots {
	background: none;
	color: #ccc;
	text-align: center;
	font-size: 1.5rem;
	letter-spacing: 1em;
}

.gfpr-pdp-review-content .wp-block-separator.is-style-dots::before {
	content: '···';
}

/* Tables */
.gfpr-pdp-review-content table,
.gfpr-pdp-review-content .wp-block-table table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
	font-size: 0.9rem;
}

.gfpr-pdp-review-content th,
.gfpr-pdp-review-content td {
	padding: 0.75rem 1rem;
	border-bottom: 1px solid #e0e0e0;
	text-align: left;
}

.gfpr-pdp-review-content th {
	font-weight: 700;
	background: #f9f9f9;
}

/* Buttons */
.gfpr-pdp-review-content .wp-block-button__link {
	display: inline-block;
	background: var(--gfpr-btn-primary-bg);
	color: var(--gfpr-btn-primary-text);
	padding: 0.75rem 1.75rem;
	border-radius: 0.375rem;
	font-weight: 600;
	text-decoration: none;
	transition: background var(--gfpr-transition);
}

.gfpr-pdp-review-content .wp-block-button__link:hover {
	background: var(--gfpr-btn-primary-bg-hover);
	color: var(--gfpr-btn-primary-text-hover);
}

/* Captioned / aligned images */
.gfpr-pdp-review-content .aligncenter,
.gfpr-pdp-review-content .wp-block-image.aligncenter {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.gfpr-pdp-review-content .alignleft {
	float: left;
	margin: 0.5rem 1.5rem 1rem 0;
	max-width: 50%;
}

.gfpr-pdp-review-content .alignright {
	float: right;
	margin: 0.5rem 0 1rem 1.5rem;
	max-width: 50%;
}

/* Drop cap — first letter styling on the first paragraph */
.gfpr-pdp-review-content .has-drop-cap:first-letter {
	font-family: var(--wp--preset--font-family--display);
	font-size: 4rem;
	line-height: 0.85;
	font-weight: 700;
	float: left;
	margin: 0.15em 0.15em 0 0;
	color: var(--gfpr-color-brand-dark);
}

/* Latest Reviews Sidebar */
.gfpr-pdp-sidebar-latest {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid #e0e0e0;
}

.gfpr-pdp-sidebar-latest h3 {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0 0 0.75rem;
}

.gfpr-sidebar-latest-item {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
	text-decoration: none;
	color: inherit;
	padding: 0.5rem 0;
	border-bottom: 1px solid #f0f0f0;
}

.gfpr-sidebar-latest-item:last-child {
	border-bottom: none;
}

.gfpr-sidebar-latest-item:hover .gfpr-sidebar-latest-title {
	color: var(--gfpr-color-brand-dark);
}

.gfpr-sidebar-latest-thumb {
	flex-shrink: 0;
	width: 75px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.gfpr-sidebar-latest-thumb img {
	height: 80px !important;
	width: auto !important;
	object-fit: contain;
}

.gfpr-sidebar-latest-info {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.gfpr-sidebar-latest-brand {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #888;
}

.gfpr-sidebar-latest-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: 0.9rem;
	font-weight: 400;
	color: #000;
	line-height: 1.3;
	transition: color 0.2s ease;
}

.gfpr-sidebar-latest-stars {
	display: inline-flex;
	color: #E6A817;
}

.gfpr-sidebar-latest-stars .material-symbols-outlined {
	font-size: 15px;
}

.gfpr-sidebar-latest-stars .material-symbols-outlined[style*="'FILL' 0"] {
	color: #ccc;
}

.gfpr-pdp-comments-inline {
	margin-top: 2.5rem;
	scroll-margin-top: 90px;
}

.gfpr-pdp-sidebar-breakdown {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid #e0e0e0;
}

.gfpr-pdp-sidebar-breakdown h3 {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0 0 0.75rem;
}

.gfpr-sidebar-review-count {
	font-family: var(--wp--preset--font-family--body);
	font-weight: 400;
	font-size: 0.85rem;
	color: #888;
}

.gfpr-pdp-faq-inline {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid #e0e0e0;
}

.gfpr-pdp-faq-inline h2 {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.25;
	color: #000;
	margin: 0 0 1rem;
}

/* FAQ */
.gfpr-faq-item {
	border-bottom: 1px solid #eee;
}

.gfpr-faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 1rem 0;
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.95rem;
	font-weight: 600;
	color: #000;
	text-align: left;
}

.gfpr-faq-icon {
	font-size: 20px;
	color: #888;
	transition: transform 0.2s ease;
}

.gfpr-faq-item.open .gfpr-faq-icon {
	transform: rotate(45deg);
}

.gfpr-faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
}

.gfpr-faq-answer > p {
	overflow: hidden;
	min-height: 0;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.9rem;
	color: #555;
	line-height: 1.6;
	margin: 0;
	padding-bottom: 0;
	transition: padding-bottom 0.3s ease;
}

.gfpr-faq-item.open .gfpr-faq-answer {
	grid-template-rows: 1fr;
}

.gfpr-faq-item.open .gfpr-faq-answer > p {
	padding-bottom: 1rem;
}

/* Related Products */
.gfpr-pdp-related {
	margin-bottom: 3rem;
	padding-top: 2rem;
	border-top: 1px solid #e0e0e0;
}

.gfpr-pdp-related h2 {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.75rem;
	font-weight: 700;
	color: #000;
	margin-bottom: 1.5rem;
}

.gfpr-pdp-related-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.gfpr-pdp-related .gfpr-product-card {
	text-decoration: none;
	color: inherit;
}

.gfpr-pdp-related .gfpr-product-card-brand,
.gfpr-pdp-related .gfpr-product-card-title a {
	text-decoration: none;
}

/* --- Reviews / Comments --------------------------------------------------- */
.gfpr-pdp-comments {
	max-width: 900px;
	margin: 0 auto;
}

.gfpr-comments-area {
	font-family: var(--wp--preset--font-family--body);
}

/* Reviews Header + Aggregate */
.gfpr-reviews-header {
	margin-bottom: 2rem;
}

.gfpr-reviews-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0 0 1.5rem;
}

.gfpr-reviews-aggregate {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.gfpr-reviews-avg {
	font-family: var(--wp--preset--font-family--display);
	font-size: 3rem;
	font-weight: 900;
	line-height: 1;
}

.gfpr-reviews-avg-detail {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.gfpr-reviews-stars-display {
	display: inline-flex;
	color: #E6A817;
}

.gfpr-reviews-stars-display .material-symbols-outlined {
	font-size: 20px;
}

.gfpr-reviews-stars-display .material-symbols-outlined[style*="'FILL' 0"] {
	color: #ccc;
}

.gfpr-reviews-count-text {
	font-size: 0.85rem;
	color: #555;
}

.gfpr-reviews-editorial-note {
	font-size: 0.95rem;
	color: #555;
	font-style: italic;
}

/* Rating Breakdown */
.gfpr-reviews-breakdown {
	max-width: 300px;
}

.gfpr-breakdown-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.375rem;
}

.gfpr-breakdown-label {
	font-size: 0.8rem;
	font-weight: 600;
	width: 2.5rem;
	text-align: right;
	flex-shrink: 0;
}

.gfpr-breakdown-bar {
	flex: 1;
	height: 8px;
	background: #e8e8e8;
	border-radius: 4px;
	overflow: hidden;
}

.gfpr-breakdown-fill {
	height: 100%;
	background: #E6A817;
	border-radius: 4px;
	transition: width 0.3s ease;
}

.gfpr-breakdown-count {
	font-size: 0.8rem;
	color: #888;
	width: 2rem;
	flex-shrink: 0;
}

/* Review List */
.gfpr-review-list {
	margin-bottom: 2rem;
}

.gfpr-review-item {
	padding: 1.5rem 0;
	border-bottom: 1px solid #eee;
}

.gfpr-review-item:last-child {
	border-bottom: none;
}

/* Pagination — shared by review pages (comment-navigation) and archive grids (posts pagination) */
.comment-navigation,
.comments-pagination,
.pagination {
	margin: 1.5rem 0;
}

.comment-navigation .nav-links,
.pagination .nav-links {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.comment-navigation .nav-previous a,
.comment-navigation .nav-next a,
.pagination .page-numbers {
	display: inline-block;
	padding: 0.5rem 1.1rem;
	border: 1px solid var(--gfpr-color-brand-dark);
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--gfpr-color-brand-dark);
	text-decoration: none;
	transition: background var(--gfpr-transition), color var(--gfpr-transition);
}

.comment-navigation .nav-previous a:hover,
.comment-navigation .nav-next a:hover,
.pagination a.page-numbers:hover {
	background: var(--gfpr-color-tint-lime);
}

.pagination .page-numbers.current {
	background: var(--gfpr-btn-primary-bg);
	border-color: var(--gfpr-btn-primary-bg);
	color: var(--gfpr-btn-primary-text);
}

/* Keep "Older" left and "Newer" right even when only one link renders */
.comment-navigation .nav-next {
	margin-left: auto;
}

.comment-navigation .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.gfpr-review-item-header {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	margin-bottom: 0.75rem;
}

.gfpr-review-avatar img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
}

.gfpr-review-meta {
	flex: 1;
}

.gfpr-review-meta-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0;
	line-height: 1.2;
}

.gfpr-review-author {
	font-size: 0.95rem;
	font-weight: 700;
}

.gfpr-review-date {
	font-size: 0.8rem;
	color: #888;
}

.gfpr-review-item-stars {
	display: inline-flex;
	color: #E6A817;
}

.gfpr-review-item-stars .material-symbols-outlined {
	font-size: 16px;
}

.gfpr-review-item-stars .material-symbols-outlined[style*="'FILL' 0"] {
	color: #ccc;
}

.gfpr-review-body {
	font-size: 0.95rem;
	line-height: 1.7;
	color: #333;
}

.gfpr-review-body p {
	margin: 0;
}

/* Review Images */
.gfpr-review-images {
	display: flex;
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.gfpr-review-image-thumb {
	display: block;
	width: 80px;
	height: 80px;
	border-radius: 6px;
	overflow: hidden;
}

.gfpr-review-image-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Review Photo Modal */
.gfpr-review-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gfpr-review-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
}

.gfpr-review-modal-content {
	position: relative;
	background: #fff;
	border-radius: 0.75rem;
	max-width: 900px;
	max-height: 85vh;
	width: 90%;
	overflow: hidden;
	z-index: 1;
}

.gfpr-review-modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 2;
	color: #555;
}

.gfpr-review-modal-close:hover {
	color: #000;
}

.gfpr-review-modal-prev,
.gfpr-review-modal-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
	color: #333;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gfpr-review-modal-prev:hover,
.gfpr-review-modal-next:hover {
	background: #fff;
	color: #000;
}

.gfpr-review-modal-prev {
	left: 1rem;
}

.gfpr-review-modal-next {
	right: 1rem;
}

.gfpr-review-modal-inner {
	display: flex;
	height: 100%;
}

.gfpr-review-modal-image {
	flex: 1;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	min-height: 400px;
}

.gfpr-review-modal-image img {
	max-width: 100%;
	max-height: 70vh;
	object-fit: contain;
}

.gfpr-review-modal-detail {
	flex: 0 0 320px;
	padding: 3.5rem 2rem 2rem;
	overflow-y: auto;
	border-left: 1px solid #eee;
}

.gfpr-review-modal-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.25rem;
}

.gfpr-review-modal-meta strong {
	font-size: 1rem;
}

.gfpr-review-modal-meta .gfpr-review-date {
	font-size: 0.8rem;
	color: #888;
}

.gfpr-review-modal-detail .gfpr-review-item-stars {
	display: inline-flex;
	color: #E6A817;
	margin-bottom: 1rem;
}

.gfpr-review-modal-detail .gfpr-review-item-stars .material-symbols-outlined {
	font-size: 16px;
}

.gfpr-review-modal-detail p {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.9rem;
	line-height: 1.7;
	color: #333;
	margin: 0;
}

.gfpr-review-image-thumb {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}

@media (max-width: 768px) {
	.gfpr-review-modal-inner {
		flex-direction: column;
	}

	.gfpr-review-modal-detail {
		flex: none;
		border-left: none;
		border-top: 1px solid #eee;
	}

	.gfpr-review-modal-prev,
	.gfpr-review-modal-next {
		top: auto;
		bottom: 1rem;
		transform: none;
	}
}

/* Author Bio */
.gfpr-author-bio {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	margin: 2.5rem 0;
	padding: 1.5rem;
	background: #F5F8EB;
	border-radius: 12px;
}

.gfpr-author-bio-avatar img {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	display: block;
	object-fit: cover;
}

.gfpr-author-bio-body {
	flex: 1;
	min-width: 0;
}

.gfpr-author-bio-label {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #3f8c41;
	margin-bottom: 0.25rem;
}

.gfpr-author-bio-name {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: #1D1C0D;
}

.gfpr-author-bio-name a {
	color: inherit;
	text-decoration: none;
}

.gfpr-author-bio-name a:hover {
	color: #3f8c41;
}

.gfpr-author-bio-text {
	font-family: var(--wp--preset--font-family--display);
	font-style: italic;
	font-size: 1rem;
	line-height: 1.55;
	color: #3a3a2e;
	margin: 0;
}

@media (max-width: 600px) {
	.gfpr-author-bio {
		flex-direction: column;
		text-align: center;
	}

	.gfpr-author-bio-avatar {
		margin: 0 auto;
	}
}

/* Review Form (accordion with button-style trigger) */
.gfpr-review-form-wrapper {
	margin-top: 2rem;
}

.gfpr-review-form-title {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1.25rem;
	background: var(--gfpr-btn-primary-bg);
	color: var(--gfpr-btn-primary-text);
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	border-radius: 10px;
	margin: 0;
	cursor: pointer;
	list-style: none;
	user-select: none;
	transition: background var(--gfpr-transition);
}

.gfpr-review-form-title::-webkit-details-marker {
	display: none;
}

.gfpr-review-form-title:hover {
	background: var(--gfpr-btn-primary-bg-hover);
}

.gfpr-review-form-title-stars {
	display: inline-flex;
	gap: 0.0625rem;
	color: #1D1C0D;
}

.gfpr-review-form-title-stars .material-symbols-outlined {
	font-size: 18px;
	font-variation-settings: 'FILL' 1;
}

.gfpr-review-form-chevron {
	font-size: 22px;
	transition: transform 0.2s ease;
}

.gfpr-review-form-wrapper[open] .gfpr-review-form-chevron {
	transform: rotate(180deg);
}

.gfpr-review-form {
	max-width: 600px;
	margin-top: 1.5rem;
	padding-bottom: 1.5rem;
}

/* Star Selector */
.gfpr-star-selector {
	margin-bottom: 1.5rem;
}

.gfpr-star-selector label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.gfpr-star-select {
	display: inline-flex;
	gap: 0.25rem;
}

.gfpr-star-pick {
	font-size: 32px;
	color: #ccc;
	cursor: pointer;
	transition: color 0.1s ease;
	font-variation-settings: 'FILL' 0;
}

.gfpr-star-pick.selected,
.gfpr-star-pick:hover {
	color: #E6A817;
}

/* Form Fields */
.gfpr-review-form-row {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
}

.gfpr-review-form-row .gfpr-review-form-field {
	flex: 1;
}

@media (max-width: 600px) {
	.gfpr-review-form-row {
		flex-direction: column;
		gap: 0;
	}
}

.gfpr-review-form-field {
	margin-bottom: 1rem;
}

.gfpr-review-form-field label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 0.375rem;
}

.gfpr-review-form-field input[type="text"],
.gfpr-review-form-field input[type="email"],
.gfpr-review-form-field textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 0.75rem 1rem;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.9rem;
	outline: none;
	transition: border-color 0.15s ease;
}

.gfpr-review-form-field input:focus,
.gfpr-review-form-field textarea:focus {
	border-color: var(--gfpr-color-brand-dark);
}

.gfpr-field-note {
	font-size: 0.75rem;
	color: #999;
	margin-top: 0.25rem;
	display: block;
}

.required {
	color: #d63638;
}

/* Image Upload */
.gfpr-image-upload-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 2rem;
	border: 2px dashed #ddd;
	border-radius: 8px;
	cursor: pointer;
	color: #999;
	transition: border-color 0.15s ease, color 0.15s ease;
}

.gfpr-image-upload-placeholder:hover {
	border-color: var(--gfpr-color-brand-dark);
	color: var(--gfpr-color-brand-dark);
}

.gfpr-image-upload-placeholder .material-symbols-outlined {
	font-size: 36px;
}

.gfpr-image-upload-placeholder span:last-child {
	font-size: 0.85rem;
}

.gfpr-image-previews {
	display: flex;
	gap: 0.5rem;
	margin-top: 0.75rem;
	flex-wrap: wrap;
}

.gfpr-image-preview-item {
	width: 80px;
	height: 80px;
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid #ddd;
}

.gfpr-image-preview-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Submit Button */
.gfpr-review-submit {
	display: inline-block;
	font-family: var(--wp--preset--font-family--body);
	font-size: 1rem;
	font-weight: 700;
	background: var(--gfpr-btn-primary-bg);
	color: var(--gfpr-btn-primary-text);
	padding: 0.875rem 2.5rem;
	border: none;
	border-radius: 0.375rem;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition: background 0.2s ease;
}

.gfpr-review-submit:hover {
	background: var(--gfpr-btn-primary-bg-hover);
	color: var(--gfpr-btn-primary-text-hover);
}

.gfpr-review-form-note {
	font-size: 0.8rem;
	color: #999;
	margin-top: 0.75rem;
	font-style: italic;
}

/* --- Term Index (Categories / Brands / Certifications) ------------------- */
.gfpr-term-index {
	padding: 2.5rem 0 5rem;
}

.gfpr-term-index-inner {
	max-width: var(--gfpr-max-width);
	margin: 0 auto;
	padding: 0 2rem;
}

.gfpr-term-index-header {
	margin-bottom: 2.5rem;
}

.gfpr-term-index-header h1 {
	font-family: var(--wp--preset--font-family--display);
	font-size: 2.75rem;
	font-weight: 700;
	line-height: 1.1;
	margin: 0.75rem 0 0.5rem;
	color: #000;
}

.gfpr-term-index-intro {
	font-family: var(--wp--preset--font-family--body);
	font-size: 1.0625rem;
	color: #5a5a48;
	line-height: 1.55;
	margin: 0;
	max-width: 60ch;
}

.gfpr-term-index-empty {
	color: #777;
}

/* Card grid variant */
.gfpr-term-grid {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1rem;
	padding: 0;
	margin: 0;
}

.gfpr-term-card {
	margin: 0;
}

.gfpr-term-card-link {
	display: block;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	padding: 1.25rem;
	text-decoration: none;
	color: inherit;
	transition: border-color var(--gfpr-transition), transform var(--gfpr-transition), box-shadow var(--gfpr-transition);
}

.gfpr-term-card-link:hover {
	border-color: #A2CD3A;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.gfpr-term-card-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.25rem;
	font-weight: 700;
	color: #000;
	margin: 0 0 0.25rem;
	line-height: 1.2;
}

.gfpr-term-card-count {
	display: inline-block;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.75rem;
	font-weight: 600;
	color: #3f8c41;
	background: #F5F8EB;
	padding: 0.2rem 0.6rem;
	border-radius: 999px;
	letter-spacing: 0.02em;
	margin-bottom: 0.75rem;
}

.gfpr-term-card-desc {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.9375rem;
	color: #555;
	line-height: 1.55;
	margin: 0.5rem 0 0;
}

/* A-Z variant (Brands) */
.gfpr-az-jumpbar {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	padding: 0.75rem 1rem;
	margin-bottom: 2rem;
	position: sticky;
	top: 140px;
	z-index: 10;
}

.gfpr-az-jumpbar a,
.gfpr-az-letter-disabled {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 6px;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	transition: background var(--gfpr-transition), color var(--gfpr-transition);
}

.gfpr-az-jumpbar a {
	color: #3f8c41;
}

.gfpr-az-jumpbar a:hover {
	background: #F5F8EB;
}

.gfpr-az-letter-disabled {
	color: #ccc;
	cursor: default;
}

.gfpr-az-section {
	margin-bottom: 2rem;
	scroll-margin-top: 160px;
}

.gfpr-az-letter {
	font-family: var(--wp--preset--font-family--display);
	font-size: 2rem;
	font-weight: 700;
	color: #A2CD3A;
	margin: 0 0 0.75rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid rgba(161, 204, 58, 0.25);
}

.gfpr-az-list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 0.5rem;
	padding: 0;
	margin: 0;
}

.gfpr-az-list li {
	margin: 0;
}

.gfpr-az-list a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 0.625rem 0.875rem;
	border-radius: 8px;
	text-decoration: none;
	color: #1D1C0D;
	transition: background var(--gfpr-transition), color var(--gfpr-transition);
}

.gfpr-az-list a:hover {
	background: #F5F8EB;
	color: #3f8c41;
}

.gfpr-az-name {
	font-family: var(--wp--preset--font-family--body);
	font-weight: 500;
}

.gfpr-az-count {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.8125rem;
	color: #888;
	flex-shrink: 0;
}

.gfpr-az-list a:hover .gfpr-az-count {
	color: #3f8c41;
}

/* --- Taxonomy Archive + Facet Chips --------------------------------------- */
.gfpr-taxonomy-archive {
	padding: 2.5rem 0 5rem;
}

.gfpr-taxonomy-inner {
	max-width: var(--gfpr-max-width);
	margin: 0 auto;
	padding: 0 2rem;
}

.gfpr-taxonomy-header {
	margin-bottom: 2rem;
}

.gfpr-taxonomy-header h1 {
	font-family: var(--wp--preset--font-family--display);
	font-size: 2.75rem;
	font-weight: 700;
	line-height: 1.1;
	margin: 0.75rem 0 0.5rem;
	color: #000;
}

.gfpr-taxonomy-h1-facet {
	color: #3f8c41;
	font-weight: 400;
	font-size: 0.75em;
}

.gfpr-taxonomy-desc {
	font-family: var(--wp--preset--font-family--body);
	font-size: 1rem;
	color: #555;
	line-height: 1.55;
	max-width: 60ch;
	margin: 0;
}

.gfpr-taxonomy-empty {
	color: #777;
	padding: 3rem 0;
	text-align: center;
}

.gfpr-facet-row {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid #f0efe3;
}

.gfpr-facet-row:last-of-type {
	border-bottom: none;
	margin-bottom: 2rem;
}

.gfpr-facet-row-label {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #6b6a58;
	flex-shrink: 0;
	padding-top: 0.375rem;
	min-width: 100px;
}

.gfpr-facet-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.gfpr-facet-chip {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.875rem;
	border-radius: 999px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.8125rem;
	color: #1D1C0D;
	text-decoration: none;
	transition: all var(--gfpr-transition);
}

.gfpr-facet-chip:hover {
	background: #F5F8EB;
	border-color: #A2CD3A;
	color: #3f8c41;
}

.gfpr-facet-clear {
	margin: 0 0 2rem;
}

.gfpr-facet-clear a {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1rem;
	background: #F5F8EB;
	border: 1px solid #A2CD3A;
	border-radius: 999px;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.875rem;
	font-weight: 600;
	color: #3f8c41;
	text-decoration: none;
	transition: all var(--gfpr-transition);
}

.gfpr-facet-clear a:hover {
	background: var(--gfpr-color-brand);
	color: var(--gfpr-color-text-on-brand);
}

.gfpr-facet-chip-count {
	margin-left: 0.5rem;
	color: #888;
	font-size: 0.75rem;
	font-weight: 500;
}

.gfpr-facet-chip:hover .gfpr-facet-chip-count {
	color: #3f8c41;
}

/* --- Reviews Hub (/reviews/) ---------------------------------------------- */
.gfpr-reviews-hub {
	padding: 2.5rem 0 5rem;
}

.gfpr-reviews-hub-inner {
	max-width: var(--gfpr-max-width);
	margin: 0 auto;
	padding: 0 2rem;
}

.gfpr-reviews-hub-header {
	margin-bottom: 2.5rem;
}

.gfpr-reviews-hub-header h1 {
	font-family: var(--wp--preset--font-family--display);
	font-size: 2.75rem;
	font-weight: 700;
	line-height: 1.1;
	margin: 0.75rem 0 0.5rem;
	color: #000;
}

.gfpr-reviews-hub-intro {
	font-family: var(--wp--preset--font-family--body);
	font-size: 1.0625rem;
	color: #5a5a48;
	line-height: 1.55;
	margin: 0;
	max-width: 60ch;
}

.gfpr-reviews-entry-row {
	margin-bottom: 2.25rem;
}

.gfpr-reviews-entry-row-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 0.75rem;
}

.gfpr-reviews-entry-row-head h2 {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.125rem;
	font-weight: 700;
	color: #000;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.gfpr-reviews-entry-row-all {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.875rem;
	font-weight: 600;
	color: #3f8c41;
	text-decoration: none;
	transition: color var(--gfpr-transition);
}

.gfpr-reviews-entry-row-all:hover {
	color: #000;
}

.gfpr-reviews-latest {
	margin-top: 3.5rem;
	padding-top: 2.5rem;
	border-top: 1px solid #f0efe3;
}

.gfpr-reviews-latest-heading {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.75rem;
	font-weight: 700;
	color: #000;
	margin: 0 0 1.5rem;
}

/* --- Responsive ----------------------------------------------------------- */
@media (max-width: 1024px) {
	.gfpr-hero {
		flex-direction: column;
		height: auto;
	}

	.gfpr-hero-panel {
		flex-direction: column;
	}

	.gfpr-hero-headline,
	.gfpr-hero-image,
	.gfpr-hero-trending {
		flex: 1;
		padding: 0;
	}

	.gfpr-hero-headline h1 {
		font-size: 2.5rem;
	}

	.gfpr-product-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.gfpr-pdp-main {
		flex-direction: column;
	}

	.gfpr-pdp-product-sidebar {
		flex: 1;
		max-width: 100%;
	}

	.gfpr-pdp-product-card-sticky {
		position: static;
		margin-top: 0; /* reset the desktop pull-up so it can't overlap the reviews block when stacked */
	}

	.gfpr-pdp-related-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gfpr-footer-inner {
		grid-template-columns: repeat(2, 1fr);
	}

	.gfpr-header-inner {
		padding: 0.75rem 1rem;
		height: auto;
		gap: 1rem;
	}

	.gfpr-nav-list {
		gap: 1.25rem;
	}

	.gfpr-nav-list > li > a {
		font-size: 0.875rem;
	}
}

@media (max-width: 768px) {
	.gfpr-nav {
		display: none;
	}

	.gfpr-logo {
		margin-top: -18px;
		margin-bottom: -10px;
	}

	.gfpr-logo img {
		height: 56px;
	}
}

@media (max-width: 768px) {
	.gfpr-product-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gfpr-nav {
		display: none;
	}

	.gfpr-newsletter-form {
		flex-direction: column;
	}

	.gfpr-lifestyle-banner {
		height: 400px;
	}

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

	.gfpr-footer-bottom {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}
}

/* --- Utility -------------------------------------------------------------- */
.gfpr-container {
	max-width: var(--gfpr-max-width);
	margin: 0 auto;
	padding: 0 2rem;
}

/* Smooth scroll */
html {
	scroll-behavior: smooth;
}

/* Selection color */
::selection {
	background: var(--wp--preset--color--secondary-container);
	color: var(--wp--preset--color--on-surface);
}

/* ---- 404 page ---- */
.gfpr-404 {
	max-width: 760px;
	margin: 0 auto;
	padding: 4rem 1.25rem 5rem;
	text-align: center;
}
.gfpr-404-code {
	font-family: var(--wp--preset--font-family--display);
	font-size: clamp(3.5rem, 12vw, 6rem);
	line-height: 1;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--gfpr-color-brand-dark);
	margin: 0 0 0.5rem;
}
.gfpr-404-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	color: var(--gfpr-color-text);
	margin: 0 0 0.75rem;
}
.gfpr-404-lede {
	font-family: var(--wp--preset--font-family--body);
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--gfpr-color-text-muted);
	max-width: 48ch;
	margin: 0 auto 2rem;
}
.gfpr-404-search {
	display: flex;
	align-items: center;
	max-width: 480px;
	margin: 0 auto 1.75rem;
	background: #fff;
	border: 1px solid #d8d8d8;
	border-radius: 999px;
	padding: 0.3rem 0.3rem 0.3rem 0.9rem;
}
.gfpr-404-search-icon { color: var(--gfpr-color-text-muted); font-size: 22px; }
.gfpr-404-search input {
	flex: 1;
	min-width: 0;
	border: 0;
	outline: 0;
	background: transparent;
	font-family: var(--wp--preset--font-family--body);
	font-size: 1rem;
	padding: 0.5rem;
	color: var(--gfpr-color-text);
}
.gfpr-404-search-submit {
	border: 0;
	border-radius: 999px;
	background: var(--gfpr-btn-primary-bg);
	color: var(--gfpr-btn-primary-text);
	font-family: var(--wp--preset--font-family--body);
	font-weight: 600;
	padding: 0.55rem 1.15rem;
	cursor: pointer;
	transition: background var(--gfpr-transition);
}
.gfpr-404-search-submit:hover { background: var(--gfpr-btn-primary-bg-hover); }
.gfpr-404-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem 1.5rem;
	margin-bottom: 3.5rem;
}
.gfpr-404-links a {
	font-family: var(--wp--preset--font-family--body);
	font-weight: 600;
	text-decoration: none;
	color: var(--gfpr-color-brand-dark);
	border-bottom: 2px solid transparent;
	transition: border-color var(--gfpr-transition);
}
.gfpr-404-links a:hover { border-bottom-color: currentColor; }
.gfpr-404-recent-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.15rem;
	color: var(--gfpr-color-text);
	margin: 0 0 1.25rem;
}
.gfpr-404-recent-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	text-align: left;
}
.gfpr-404-card { display: block; text-decoration: none; color: inherit; }
.gfpr-404-card-img { display: block; margin-bottom: 0.5rem; border-radius: var(--gfpr-radius); overflow: hidden; }
.gfpr-404-card-img img { width: 100%; height: auto; display: block; }
.gfpr-404-card-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--gfpr-color-text);
	transition: color var(--gfpr-transition);
}
.gfpr-404-card:hover .gfpr-404-card-title { color: var(--gfpr-color-brand-dark); }
@media (max-width: 600px) {
	.gfpr-404-recent-grid { grid-template-columns: 1fr; }
	.gfpr-404-links { gap: 0.5rem 1rem; }
}

/* ---- Search results ---- */
.gfpr-search-page-inner {
	max-width: var(--gfpr-max-width);
	margin: 0 auto;
	padding: 2rem 1.25rem 4rem;
}
.gfpr-search-header { margin-bottom: 1.5rem; }
.gfpr-search-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: clamp(1.6rem, 4vw, 2.4rem);
	color: var(--gfpr-color-text);
	margin: 0.5rem 0 0.35rem;
}
.gfpr-search-count {
	font-family: var(--wp--preset--font-family--body);
	color: var(--gfpr-color-text-muted);
	margin: 0;
}
.gfpr-searchbar {
	display: flex;
	align-items: center;
	max-width: 560px;
	margin: 0 0 2.5rem;
	background: #fff;
	border: 1px solid #d8d8d8;
	border-radius: 999px;
	padding: 0.3rem 0.3rem 0.3rem 0.9rem;
}
.gfpr-searchbar-icon { color: var(--gfpr-color-text-muted); font-size: 22px; }
.gfpr-searchbar input {
	flex: 1;
	min-width: 0;
	border: 0;
	outline: 0;
	background: transparent;
	font-family: var(--wp--preset--font-family--body);
	font-size: 1rem;
	padding: 0.5rem;
	color: var(--gfpr-color-text);
}
.gfpr-searchbar-submit {
	border: 0;
	border-radius: 999px;
	background: var(--gfpr-btn-primary-bg);
	color: var(--gfpr-btn-primary-text);
	font-family: var(--wp--preset--font-family--body);
	font-weight: 600;
	padding: 0.55rem 1.15rem;
	cursor: pointer;
	transition: background var(--gfpr-transition);
}
.gfpr-searchbar-submit:hover { background: var(--gfpr-btn-primary-bg-hover); }
.gfpr-search-empty {
	font-family: var(--wp--preset--font-family--body);
	color: var(--gfpr-color-text-muted);
	padding: 1rem 0 2rem;
}
.gfpr-search-empty-lead {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.25rem;
	color: var(--gfpr-color-text);
	margin: 0 0 0.5rem;
}
.gfpr-search-empty-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	margin-top: 1rem;
}
.gfpr-search-empty-links a {
	font-weight: 600;
	text-decoration: none;
	color: var(--gfpr-color-brand-dark);
	border-bottom: 2px solid transparent;
	transition: border-color var(--gfpr-transition);
}
.gfpr-search-empty-links a:hover { border-bottom-color: currentColor; }

/* ---- Lifestyle post (single) ---- */
.gfpr-post { padding: 2rem 1.25rem 4rem; }
.gfpr-post-inner { max-width: 720px; margin: 0 auto; }
.gfpr-post-header { margin-bottom: 1.75rem; }
.gfpr-post-eyebrow {
	display: inline-block;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gfpr-color-brand-dark);
	margin: 0.75rem 0 0.5rem;
}
.gfpr-post-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: clamp(1.9rem, 5vw, 3rem);
	line-height: 1.12;
	color: var(--gfpr-color-text);
	margin: 0 0 0.85rem;
}
.gfpr-post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem 0.6rem;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.9rem;
	color: var(--gfpr-color-text-muted);
}
.gfpr-post-meta-dot { opacity: 0.5; }
.gfpr-post-hero { margin: 0 0 2rem; }
.gfpr-post-hero img { width: 100%; height: auto; display: block; border-radius: var(--gfpr-radius-lg); }
.gfpr-post-hero figcaption {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.8rem;
	color: var(--gfpr-color-text-muted);
	margin-top: 0.5rem;
	text-align: center;
}

/* Prose */
.gfpr-post-content {
	font-family: var(--wp--preset--font-family--body);
	font-size: 1.12rem;
	line-height: 1.75;
	color: var(--gfpr-color-text-body);
}
.gfpr-post-content > p { margin: 0 0 1.4rem; }
.gfpr-post-content h2 {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.6rem;
	line-height: 1.25;
	color: var(--gfpr-color-text);
	margin: 2.5rem 0 0.9rem;
}
.gfpr-post-content h3 {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.25rem;
	color: var(--gfpr-color-text);
	margin: 2rem 0 0.75rem;
}
.gfpr-post-content a { color: var(--gfpr-color-brand-dark); text-decoration: underline; text-underline-offset: 2px; }
.gfpr-post-content a:hover { color: var(--gfpr-color-brand); }
.gfpr-post-content ul, .gfpr-post-content ol { margin: 0 0 1.4rem 1.4rem; }
.gfpr-post-content li { margin-bottom: 0.5rem; }
.gfpr-post-content img { max-width: 100%; height: auto; border-radius: var(--gfpr-radius); }
.gfpr-post-content figure { margin: 2rem 0; }
.gfpr-post-content figcaption { font-size: 0.85rem; color: var(--gfpr-color-text-muted); text-align: center; margin-top: 0.5rem; }
.gfpr-post-content blockquote {
	margin: 2rem 0;
	padding: 0.5rem 0 0.5rem 1.25rem;
	border-left: 4px solid var(--gfpr-color-tint-lime);
	font-size: 1.2rem;
	font-style: italic;
	color: var(--gfpr-color-text);
}
.gfpr-post-content > *:first-child { margin-top: 0; }

.gfpr-post-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	margin: 2.5rem 0 0;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.9rem;
	color: var(--gfpr-color-text-muted);
}
.gfpr-post-tags-label { font-weight: 700; margin-right: 0.15rem; }
.gfpr-post-tags a {
	display: inline-block;
	padding: 0.2rem 0.7rem;
	background: var(--gfpr-color-surface-cream);
	border: 1px solid #e3e0d6;
	border-radius: 999px;
	color: var(--gfpr-color-brand-dark);
	text-decoration: none;
	line-height: 1.5;
	transition: background var(--gfpr-transition), border-color var(--gfpr-transition);
}
.gfpr-post-tags a:hover { background: var(--gfpr-color-tint-lime); border-color: var(--gfpr-color-tint-lime); }

/* Related + listing shared card grid */
.gfpr-post-related { border-top: 1px solid #e6e6e6; margin-top: 3rem; }
.gfpr-post-related-inner { max-width: var(--gfpr-max-width); margin: 0 auto; padding: 3rem 1.25rem 0; }
.gfpr-post-related-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.4rem;
	color: var(--gfpr-color-text);
	margin: 0 0 1.5rem;
}
.gfpr-post-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
}
.gfpr-post-card { display: flex; flex-direction: column; }
.gfpr-post-card-img { display: block; border-radius: var(--gfpr-radius-lg); overflow: hidden; margin-bottom: 0.85rem; }
.gfpr-post-card-img img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; transition: transform var(--gfpr-transition); }
.gfpr-post-card:hover .gfpr-post-card-img img { transform: scale(1.03); }
.gfpr-post-card-cat {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gfpr-color-brand-dark);
}
.gfpr-post-card-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.15rem;
	line-height: 1.3;
	margin: 0.35rem 0 0.4rem;
}
.gfpr-post-card-title a { color: var(--gfpr-color-text); text-decoration: none; }
.gfpr-post-card-title a:hover { color: var(--gfpr-color-brand-dark); }
.gfpr-post-card-excerpt {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--gfpr-color-text-muted);
	margin: 0 0 0.6rem;
}
.gfpr-post-card-meta {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.8rem;
	color: var(--gfpr-color-text-muted);
	margin-top: auto;
}
.gfpr-post-card-dot { opacity: 0.5; margin: 0 0.35rem; }

/* Post listing (index / archive) */
.gfpr-post-list-inner { max-width: var(--gfpr-max-width); margin: 0 auto; padding: 2rem 1.25rem 4rem; }
.gfpr-post-list-header { margin-bottom: 2rem; }
.gfpr-post-list-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	color: var(--gfpr-color-text);
	margin: 0.5rem 0 0.35rem;
}
.gfpr-post-list-desc, .gfpr-post-list-empty {
	font-family: var(--wp--preset--font-family--body);
	color: var(--gfpr-color-text-muted);
}

/* Standard comments on lifestyle posts */
.gfpr-post-comments-inner { max-width: 720px; margin: 0 auto; padding: 3rem 1.25rem 0; }
.gfpr-post-comments-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.4rem;
	color: var(--gfpr-color-text);
	margin: 0 0 1.25rem;
}
.gfpr-comment-list { list-style: none; margin: 0 0 2rem; padding: 0; }
.gfpr-comment-list .comment { margin-bottom: 1.5rem; }

@media (max-width: 780px) {
	.gfpr-post-card-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
	.gfpr-post-card-grid { grid-template-columns: 1fr; }
}

/* ---- Recipes ---- */
.gfpr-recipe { padding: 2rem 1.25rem 4rem; }
.gfpr-recipe-inner { max-width: 760px; margin: 0 auto; }
.gfpr-recipe-header { margin-bottom: 1.5rem; }
.gfpr-recipe-eyebrow {
	display: inline-block;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
	color: var(--gfpr-color-brand-dark); margin: 0.5rem 0;
}
.gfpr-recipe-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: clamp(1.9rem, 5vw, 3rem); line-height: 1.12;
	color: var(--gfpr-color-text); margin: 0.25rem 0 0.75rem;
}
.gfpr-recipe-byline {
	display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem 0.6rem;
	font-family: var(--wp--preset--font-family--body); font-size: 0.9rem; color: var(--gfpr-color-text-muted);
}
.gfpr-recipe-byline-dot { opacity: 0.5; }
.gfpr-recipe-jump {
	display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 1.1rem;
	padding: 0.5rem 1.1rem; background: var(--gfpr-color-brand); color: var(--gfpr-color-text-on-brand);
	border-radius: 999px; font-family: var(--wp--preset--font-family--body); font-weight: 700;
	text-decoration: none; transition: background var(--gfpr-transition);
}
.gfpr-recipe-jump:hover { background: var(--gfpr-color-brand-hover); }
.gfpr-recipe-jump .material-symbols-outlined { font-size: 18px; }
.gfpr-recipe-hero { margin: 0 0 1.75rem; }
.gfpr-recipe-hero img { width: 100%; height: auto; display: block; border-radius: var(--gfpr-radius-lg); }

.gfpr-recipe-intro {
	font-family: var(--wp--preset--font-family--body); font-size: 1.1rem; line-height: 1.75;
	color: var(--gfpr-color-text-body); margin-bottom: 2.5rem;
}
.gfpr-recipe-intro > p { margin: 0 0 1.3rem; }
.gfpr-recipe-intro a { color: var(--gfpr-color-brand-dark); text-decoration: underline; text-underline-offset: 2px; }

/* The recipe card */
.gfpr-recipe-card-full {
	border: 1px solid #e0ddd4; border-radius: var(--gfpr-radius-lg); background: #fff;
	padding: 1.75rem; margin: 0 0 2.5rem; box-shadow: var(--gfpr-shadow); scroll-margin-top: 90px;
}
.gfpr-recipe-card-head { margin-bottom: 1.5rem; }
.gfpr-recipe-card-title { font-family: var(--wp--preset--font-family--display); font-size: 1.6rem; line-height: 1.2; color: var(--gfpr-color-text); margin: 0.3rem 0 0.5rem; }
.gfpr-recipe-card-desc { font-family: var(--wp--preset--font-family--body); color: var(--gfpr-color-text-muted); margin: 0 0 1.25rem; }

/* Stat bar */
.gfpr-recipe-statbar {
	display: flex; flex-wrap: wrap; gap: 0.75rem; padding: 1rem 1.25rem;
	background: var(--gfpr-color-surface-cream); border: 1px solid #e3e0d6; border-radius: var(--gfpr-radius);
}
.gfpr-recipe-stat { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1 1 auto; min-width: 80px; gap: 0.1rem; }
.gfpr-recipe-stat .material-symbols-outlined { color: var(--gfpr-color-brand-dark); font-size: 24px; }
.gfpr-recipe-stat-label { font-family: var(--wp--preset--font-family--body); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gfpr-color-text-muted); }
.gfpr-recipe-stat-value { font-family: var(--wp--preset--font-family--display); font-size: 1rem; font-weight: 600; color: var(--gfpr-color-text); }

/* Toolbar: scaler + tools */
.gfpr-recipe-toolbar {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem;
	margin: 0 0 1.5rem; padding-bottom: 1.25rem; border-bottom: 1px solid #ece9e1;
}
.gfpr-recipe-scaler { display: flex; align-items: center; gap: 0.4rem; }
.gfpr-recipe-scaler-label { font-family: var(--wp--preset--font-family--body); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gfpr-color-text-muted); margin-right: 0.2rem; }
.gfpr-recipe-scaler button, .gfpr-recipe-tools button {
	border: 1px solid #d8d5cc; background: #fff; border-radius: 999px; padding: 0.38rem 0.85rem;
	font-family: var(--wp--preset--font-family--body); font-weight: 600; font-size: 0.9rem; cursor: pointer;
	color: var(--gfpr-color-text); transition: background var(--gfpr-transition), color var(--gfpr-transition), border-color var(--gfpr-transition);
}
.gfpr-recipe-scaler button.is-active { background: var(--gfpr-color-brand); color: var(--gfpr-color-text-on-brand); border-color: var(--gfpr-color-brand); }
.gfpr-recipe-tools { display: flex; gap: 0.5rem; }
.gfpr-recipe-tools button { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--gfpr-color-brand-dark); }
.gfpr-recipe-tools button .material-symbols-outlined { font-size: 18px; }
.gfpr-recipe-tools .gfpr-cookmode.is-on { background: var(--gfpr-color-tint-lime); border-color: var(--gfpr-color-tint-lime); color: var(--gfpr-color-brand-dark); }

/* Section headings inside the card */
.gfpr-recipe-ingredients h3, .gfpr-recipe-steps h3, .gfpr-recipe-notes h3 {
	font-family: var(--wp--preset--font-family--display); font-size: 1.3rem; color: var(--gfpr-color-text);
	margin: 0 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gfpr-color-tint-lime);
	display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 0.5rem;
}
.gfpr-recipe-serv { font-family: var(--wp--preset--font-family--body); font-size: 0.8rem; font-weight: 600; color: var(--gfpr-color-text-muted); }
.gfpr-recipe-ingredients { margin: 0 0 2rem; }
.gfpr-recipe-ingredients ul { list-style: none; margin: 0; padding: 0; }
.gfpr-ing { border-bottom: 1px solid #ece9e1; }
.gfpr-ing label { display: flex; align-items: flex-start; gap: 0.65rem; cursor: pointer; padding: 0.6rem 0; font-family: var(--wp--preset--font-family--body); font-size: 1.05rem; line-height: 1.5; color: var(--gfpr-color-text-body); }
.gfpr-ing-check { margin-top: 0.28rem; width: 1.05rem; height: 1.05rem; accent-color: var(--gfpr-color-brand); flex-shrink: 0; }
.gfpr-ing-check:checked ~ .gfpr-ing-text { text-decoration: line-through; color: var(--gfpr-color-text-muted); }

/* Numbered, tappable steps */
.gfpr-recipe-steps { margin: 0 0 1.5rem; }
.gfpr-recipe-steps ol { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.gfpr-step {
	position: relative; counter-increment: step; padding: 0.1rem 0 1.4rem 3rem; margin: 0;
	font-family: var(--wp--preset--font-family--body); font-size: 1.08rem; line-height: 1.7; color: var(--gfpr-color-text-body);
	cursor: pointer; transition: opacity var(--gfpr-transition);
}
.gfpr-step:before {
	content: counter(step); position: absolute; left: 0; top: 0; width: 2rem; height: 2rem; border-radius: 50%;
	background: var(--gfpr-color-brand); color: var(--gfpr-color-text-on-brand);
	font-family: var(--wp--preset--font-family--display); font-weight: 700; font-size: 1rem;
	display: flex; align-items: center; justify-content: center; transition: background var(--gfpr-transition);
}
.gfpr-step.is-done { opacity: 0.5; }
.gfpr-step.is-done:before { content: "\2713"; }
.gfpr-step:focus-visible { outline: 2px solid var(--gfpr-color-brand); outline-offset: 3px; border-radius: 4px; }
.gfpr-recipe-stephint { font-family: var(--wp--preset--font-family--body); font-size: 0.82rem; color: var(--gfpr-color-text-muted); font-style: italic; margin: 0.25rem 0 0; }

.gfpr-recipe-notes { margin: 0; }
.gfpr-recipe-notes ul { margin: 0 0 0 1.2rem; }
.gfpr-recipe-notes li { font-family: var(--wp--preset--font-family--body); line-height: 1.6; color: var(--gfpr-color-text-muted); margin-bottom: 0.5rem; }

/* Made with (recipe -> review links) */
.gfpr-recipe-madewith { margin: 0 0 2.5rem; }
.gfpr-recipe-madewith h2 { font-family: var(--wp--preset--font-family--display); font-size: 1.4rem; color: var(--gfpr-color-text); margin: 0 0 1rem; }
.gfpr-recipe-madewith-list { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: 0.75rem; }
.gfpr-madewith-item {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem;
	padding: 0.85rem 1rem; background: var(--gfpr-color-surface-cream); border: 1px solid #e3e0d6; border-radius: var(--gfpr-radius);
}
.gfpr-madewith-info { display: flex; flex-direction: column; gap: 0.15rem; }
.gfpr-madewith-name { font-family: var(--wp--preset--font-family--display); font-weight: 600; color: var(--gfpr-color-text); }
.gfpr-madewith-review { font-family: var(--wp--preset--font-family--body); font-size: 0.82rem; color: var(--gfpr-color-brand-dark); text-decoration: none; }
.gfpr-madewith-review:hover { text-decoration: underline; }
.gfpr-madewith-buy {
	display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.5rem 1.15rem; border-radius: 999px;
	font-family: var(--wp--preset--font-family--body); font-weight: 700; font-size: 0.9rem; text-decoration: none;
	white-space: nowrap; transition: opacity var(--gfpr-transition);
}
.gfpr-madewith-buy:hover { opacity: 0.9; }

/* Recipe archive */
.gfpr-recipe-archive-inner { max-width: var(--gfpr-max-width); margin: 0 auto; padding: 2rem 1.25rem 4rem; }
.gfpr-recipe-archive-header { margin-bottom: 2rem; }
.gfpr-recipe-archive-header h1 { font-family: var(--wp--preset--font-family--display); font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--gfpr-color-text); margin: 0.5rem 0 0.35rem; }
.gfpr-recipe-archive-intro, .gfpr-recipe-archive-empty { font-family: var(--wp--preset--font-family--body); color: var(--gfpr-color-text-muted); max-width: 60ch; }
.gfpr-recipe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.gfpr-recipe-card { display: flex; flex-direction: column; }
.gfpr-recipe-card-img { display: block; border-radius: var(--gfpr-radius-lg); overflow: hidden; margin-bottom: 0.85rem; }
.gfpr-recipe-card-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform var(--gfpr-transition); }
.gfpr-recipe-card:hover .gfpr-recipe-card-img img { transform: scale(1.03); }
.gfpr-recipe-card-title { font-family: var(--wp--preset--font-family--display); font-size: 1.2rem; line-height: 1.3; margin: 0 0 0.4rem; }
.gfpr-recipe-card-title a { color: var(--gfpr-color-text); text-decoration: none; }
.gfpr-recipe-card-title a:hover { color: var(--gfpr-color-brand-dark); }
.gfpr-recipe-card-meta { display: flex; flex-wrap: wrap; gap: 0.25rem 1rem; font-family: var(--wp--preset--font-family--body); font-size: 0.85rem; color: var(--gfpr-color-text-muted); }
.gfpr-recipe-card-meta span { display: inline-flex; align-items: center; gap: 0.25rem; }
.gfpr-recipe-card-meta .material-symbols-outlined { font-size: 18px; }

@media (max-width: 780px) { .gfpr-recipe-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) {
	.gfpr-recipe-grid { grid-template-columns: 1fr; }
	.gfpr-recipe-toolbar { justify-content: flex-start; }
}

/* Print: just the recipe card */
@media print {
	header, footer, .gfpr-header, .gfpr-footer, .gfpr-announcement-bar, .gfpr-nav, .gfpr-search-overlay,
	.gfpr-breadcrumbs, .gfpr-recipe-jump, .gfpr-recipe-hero, .gfpr-recipe-intro, .gfpr-recipe-toolbar,
	.gfpr-recipe-madewith, .gfpr-author-bio, .gfpr-recipe-stephint { display: none !important; }
	.gfpr-recipe-card-full { border: none; box-shadow: none; padding: 0; margin: 0; }
	body { color: #000; }
	.gfpr-step { break-inside: avoid; }
}

/* ============================================================
   Browse / filter hubs (/reviews/, /recipes/) — horizontal bar
   ============================================================ */
.gfpr-hub-inner {
	max-width: var(--gfpr-max-width);
	margin: 0 auto;
	padding: 2rem 1.25rem 4rem;
}
.gfpr-hub-header { margin-bottom: 1.5rem; }
.gfpr-hub-header h1 {
	font-family: var(--gfpr-font-display, 'Noto Serif', serif);
	font-size: clamp(1.9rem, 4vw, 2.7rem);
	color: var(--gfpr-color-text);
	margin: 0.5rem 0 0.4rem;
	line-height: 1.1;
}
.gfpr-hub-intro {
	font-family: var(--gfpr-font-body, 'Inter', sans-serif);
	color: var(--gfpr-color-text-muted);
	max-width: 62ch;
	margin: 0;
}

/* Filter bar */
.gfpr-filterbar {
	margin-bottom: 2rem;
	font-family: var(--gfpr-font-body, 'Inter', sans-serif);
}
.gfpr-filterbar-controls {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem;
}
.gfpr-browse-search {
	flex: 1 1 220px;
	max-width: 340px;
	min-width: 180px;
	display: flex;
	align-items: center;
	gap: 0.45rem;
	border: 1px solid #d8d5cc;
	border-radius: 8px;
	padding: 0 0.65rem;
	background: #fff;
}
.gfpr-browse-search .material-symbols-outlined {
	color: var(--gfpr-color-text-muted);
	font-size: 20px;
}
.gfpr-browse-search input {
	border: 0;
	outline: 0;
	flex: 1;
	min-width: 0;
	background: transparent;
	font: inherit;
	font-size: 0.95rem;
	padding: 0.5rem 0;
	color: var(--gfpr-color-text);
}

/* Facet dropdowns (native <details>) */
.gfpr-filter-dd { position: relative; }
.gfpr-filter-dd > summary {
	list-style: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	border: 1px solid #d8d5cc;
	border-radius: 8px;
	background: #fff;
	padding: 0.5rem 0.75rem;
	font: inherit;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--gfpr-color-text);
	white-space: nowrap;
}
.gfpr-filter-dd > summary::-webkit-details-marker { display: none; }
.gfpr-filter-dd > summary:hover { background: #f3f1e8; }
.gfpr-filter-dd[open] > summary {
	border-color: var(--gfpr-color-brand-dark);
	background: #f3f1e8;
}
.gfpr-filter-dd-count {
	background: var(--gfpr-color-brand);
	color: var(--gfpr-color-text-on-brand);
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	min-width: 1.15rem;
	height: 1.15rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 0.35rem;
}
.gfpr-filter-dd-caret {
	font-size: 18px;
	color: var(--gfpr-color-text-muted);
	transition: transform 0.15s ease;
}
.gfpr-filter-dd[open] .gfpr-filter-dd-caret { transform: rotate(180deg); }

.gfpr-filter-dd-panel {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	z-index: 40;
	min-width: 220px;
	max-width: min(90vw, 320px);
	background: #fff;
	border: 1px solid #d8d5cc;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	padding: 0.85rem;
}
.gfpr-filter-option-search {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #d8d5cc;
	border-radius: 6px;
	padding: 0.4rem 0.55rem;
	font: inherit;
	font-size: 0.9rem;
	margin-bottom: 0.6rem;
}
.gfpr-filter-dd-options {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	max-height: 260px;
	overflow-y: auto;
}
.gfpr-browse-option {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.92rem;
	color: var(--gfpr-color-text-body);
	cursor: pointer;
}
.gfpr-browse-option input {
	accent-color: var(--gfpr-color-brand-dark);
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
}

.gfpr-browse-apply {
	background: var(--gfpr-btn-primary-bg);
	color: var(--gfpr-btn-primary-text);
	border: 0;
	border-radius: 8px;
	padding: 0.55rem 1.15rem;
	font: inherit;
	font-weight: 700;
	font-size: 0.9rem;
	cursor: pointer;
	transition: background 0.15s ease;
}
.gfpr-browse-apply:hover { background: var(--gfpr-btn-primary-bg-hover); }
.gfpr-browse-clear {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--gfpr-color-brand-dark);
	text-decoration: none;
	margin-left: 0.25rem;
}
.gfpr-browse-clear:hover { text-decoration: underline; }

/* Active-filter chips */
.gfpr-filterbar-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.9rem;
}
.gfpr-filter-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: var(--gfpr-color-surface-cream, #F0EED5);
	color: var(--gfpr-color-text);
	border: 1px solid #e0ddc9;
	border-radius: 999px;
	padding: 0.3rem 0.8rem;
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
}
.gfpr-filter-chip:hover { background: #e6e3cd; }
.gfpr-filter-chip span[aria-hidden] {
	font-size: 1.1rem;
	line-height: 1;
	color: var(--gfpr-color-text-muted);
}

/* Results */
.gfpr-browse-empty {
	font-family: var(--gfpr-font-body, 'Inter', sans-serif);
	color: var(--gfpr-color-text-muted);
}
.gfpr-browse-empty a { color: var(--gfpr-color-brand-dark); font-weight: 600; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0);
	white-space: nowrap; border: 0;
}

/* ============================================================
   PDP mobile: jump-to nav + section anchors
   ============================================================ */
.gfpr-pdp-jumpnav { display: none; }
.gfpr-jump-anchor,
.gfpr-pdp-comments-inline { scroll-margin-top: 120px; }

@media (max-width: 1024px) {
	/* The desktop 4rem side padding wastes ~40% of a phone's width. */
	.gfpr-pdp { padding-left: 1.25rem; padding-right: 1.25rem; }

	/* On mobile the CTA lives in the jump nav; hide the separate top buy bar. */
	.gfpr-sticky-buy { display: none !important; }

	.gfpr-pdp-jumpnav {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 0.6rem;
		position: sticky;
		top: 0; /* JS sets the real value = header height */
		z-index: 48;
		background: #fff;
		border-bottom: 1px solid #e0e0e0;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
		padding: 0.5rem 1.25rem;
		margin: 0 -1.25rem 1.5rem; /* bleed to the reduced mobile container edges */
	}
	.gfpr-pdp-jumpnav-list {
		display: flex;
		align-items: center;
		gap: 0.4rem;
		list-style: none;
		margin: 0;
		padding: 0;
		flex: 1;
		min-width: 0;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.gfpr-pdp-jumpnav-list::-webkit-scrollbar { display: none; }
	.gfpr-pdp-jumpnav-list li { flex: 0 0 auto; margin: 0; }
	.gfpr-pdp-jumpnav-list a {
		display: inline-block;
		white-space: nowrap;
		font-family: var(--gfpr-font-body, 'Inter', sans-serif);
		font-size: 0.82rem;
		font-weight: 600;
		color: var(--gfpr-color-text-body);
		text-decoration: none;
		padding: 0.35rem 0.8rem;
		border: 1px solid #d8d5cc;
		border-radius: 999px;
		background: #fff;
	}
	.gfpr-pdp-jumpnav-list a:active { background: #f3f1e8; }
	.gfpr-pdp-jumpnav-cta {
		flex: 0 0 auto; /* tablet: right-justified on the same row as the chips */
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 0.4rem;
		font-family: var(--gfpr-font-body, 'Inter', sans-serif);
		font-size: 0.78rem;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.03em;
		text-decoration: none;
		white-space: nowrap;
		padding: 0.5rem 0.9rem;
		border-radius: 6px;
		background: var(--cta-bg, var(--gfpr-btn-primary-bg));
		color: var(--cta-fg, var(--gfpr-btn-primary-text));
	}
	/* Extra offset so a jumped-to section clears the header + pinned jump nav. */
	.gfpr-jump-anchor,
	.gfpr-pdp-comments-inline { scroll-margin-top: 150px; }
}

/* Phones are too narrow to fit the chips and CTA on one line, so stack them:
   chips row on top, full-width Check Price button on its own line below. */
@media (max-width: 600px) {
	.gfpr-pdp-jumpnav {
		flex-direction: column;
		align-items: stretch;
		gap: 0.55rem;
	}
	.gfpr-pdp-jumpnav-cta {
		display: flex;
		width: 100%;
		box-sizing: border-box;
		font-size: 0.85rem;
		letter-spacing: 0.04em;
		padding: 0.65rem 0.9rem;
	}
}
