/* ===================================================================
 * SECTION UPGRADES (research-based) — sukcesywne enhancements
 * =================================================================== */

/* === Story banner V2 — eyebrow + dual CTA === */
.gk-story__eyebrow {
	display: inline-block;
	font-family: 'Open Sans', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gk-color-accent-bio);
	margin-bottom: 16px;
}
.gk-story__cta-row {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 8px;
}
.gk-story__cta-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #fff;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 700;
	border-bottom: 1.5px solid rgba(255, 255, 255, 0.50);
	padding-bottom: 2px;
	letter-spacing: -0.01em;
	transition: color .2s ease, border-color .2s ease;
}
.gk-story__cta-link:hover {
	color: var(--gk-color-accent-bio);
	border-color: var(--gk-color-accent-bio);
}
.gk-home a.gk-story__cta-link {
	color: #fff;
	text-decoration: none;
}

/* === Science V2 — stat blocks (4 numbers grid) === */
.gk-science__stats {
	max-width: var(--gk-container);
	margin: clamp(48px, 6vw, 72px) auto 0;
	padding: 0 var(--gk-px);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
@media (min-width: 768px) {
	.gk-science__stats { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}
.gk-science__stat {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 24px 20px;
	background: linear-gradient(135deg, #FAF7F2 0%, #F4F6F0 100%);
	border: 1px solid rgba(15, 30, 15, 0.06);
	border-radius: 16px;
	text-align: left;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.gk-science__stat:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -16px rgba(31, 61, 20, 0.18);
	border-color: rgba(93, 169, 53, 0.25);
}
.gk-science__stat-num {
	font-family: var(--gk-font-display);
	font-size: clamp(40px, 4.4vw, 56px);
	font-weight: 800;
	line-height: 1;
	color: #1F3D14;
	letter-spacing: -0.04em;
}
.gk-science__stat-label {
	font-family: var(--gk-font-display);
	font-size: 14px;
	font-weight: 700;
	color: var(--gk-color-dark);
	letter-spacing: -0.01em;
}
.gk-science__stat-desc {
	font-size: 12px;
	color: #555555;
	line-height: 1.4;
	margin-top: 2px;
}

/* === Testimonials V2 — eyebrow + aggregate rating + verified + city + since === */
.gk-testimonials__eyebrow {
	display: inline-block;
	font-family: 'Open Sans', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #4F9028;
	margin-bottom: 12px;
}
.gk-testimonials__aggregate {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
	padding: 10px 18px;
	background: #FAF7F2;
	border: 1px solid rgba(15, 30, 15, 0.06);
	border-radius: 9999px;
	font-size: 13px;
	color: #555555;
}
.gk-testimonials__agg-stars {
	color: #F59E0B;
	letter-spacing: 1px;
	font-size: 15px;
	line-height: 1;
}
.gk-testimonials__agg-text strong { color: var(--gk-color-dark); font-weight: 800; }
.gk-testimonials__agg-source { font-weight: 600; color: #4F9028; }

.gk-testimonial__author-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}
.gk-testimonial__city {
	font-weight: 500;
	color: var(--gk-color-text-muted);
}
.gk-testimonial__author-role {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	font-size: 11px;
	color: var(--gk-color-text-muted);
	margin: 0;
	line-height: 1.4;
}
.gk-testimonial__verified {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #4F9028;
	font-weight: 700;
}
.gk-testimonial__verified .material-symbols-outlined {
	font-size: 14px;
	font-variation-settings: 'FILL' 1;
	color: #4F9028;
}

/* === Newsletter V2 — eyebrow z dot + disclaimer z lock icon === */
.gk-newsletter__eyebrow-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 9999px;
	background: var(--gk-color-accent-bio);
	margin-right: 4px;
	animation: gk-pulse 2s ease-in-out infinite;
}
.gk-newsletter__disclaimer .material-symbols-outlined {
	font-size: 14px;
	vertical-align: middle;
	margin-right: 4px;
}

/* === Footer trust strip — 4 ikony pre legal info === */
.gk-footer__trust {
	max-width: var(--gk-container);
	margin: 0 auto;
	padding: 32px var(--gk-px) 24px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}
@media (min-width: 768px) {
	.gk-footer__trust { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
.gk-footer__trust-item {
	display: flex;
	align-items: center;
	gap: 12px;
}
.gk-footer__trust-item .material-symbols-outlined {
	flex-shrink: 0;
	font-size: 28px;
	color: var(--gk-color-accent-bio);
}
.gk-footer__trust-item div {
	display: flex;
	flex-direction: column;
	gap: 2px;
	line-height: 1.3;
}
.gk-footer__trust-item strong {
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.01em;
}
.gk-footer__trust-item span,
.gk-footer__trust-item a {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
}
.gk-footer__trust-item a:hover {
	color: var(--gk-color-accent-bio);
}
.gk-home .gk-footer__trust-item a {
	color: rgba(255, 255, 255, 0.85);
}
.gk-home .gk-footer__trust-item a:hover {
	color: var(--gk-color-accent-bio);
}

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE V9 — 7 sekcji per Stitch makiety adapted (Editorial Premium)
   Brand #5DA935 + Inter/Open Sans + tokens .gk-home
   ═══════════════════════════════════════════════════════════════ */

/* ----- HERO V9 — overlapping testimonial + thumbnails row -----
   Wypełniamy CAŁĄ lewą kolumnę grid (NIE max-width 480 z pustym po lewej). */
.gk-hero__media {
	position: relative;
	width: 100%;
	max-width: 640px;
	justify-self: stretch;
	align-self: center;
}
@media (min-width: 1024px) {
	.gk-hero__media {
		justify-self: stretch;
		max-width: none;     /* fill column */
	}
}
.gk-hero__media-frame {
	width: 100%;
	/* FIX 2026-05-31: 1/1 na mobile/tablet — obraz hero jest kwadratowy (1200×1200),
	   a kapsułka dotyka prawej krawędzi; portretowy 5/6 + object-fit:cover ucinał jej
	   czubek. Kwadratowa ramka = pełna kapsułka bez kadrowania. Desktop (≥1024) override niżej. */
	aspect-ratio: 1 / 1;
	border-radius: 32px;
	overflow: hidden;
	background: #F4F6F0;
	/* 3D effect — layered shadow z brand tint + ambient + key light */
	box-shadow:
		0 1px 2px rgba(0, 0, 0, 0.08),
		0 8px 16px rgba(0, 0, 0, 0.10),
		0 24px 48px -8px rgba(31, 61, 20, 0.28),
		0 40px 80px -16px rgba(31, 61, 20, 0.20);
	max-height: 600px;
	transform: translateZ(0);
	transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s ease;
}
.gk-hero__media-frame:hover {
	transform: translateY(-4px);
	box-shadow:
		0 2px 4px rgba(0, 0, 0, 0.10),
		0 12px 22px rgba(0, 0, 0, 0.14),
		0 32px 60px -8px rgba(31, 61, 20, 0.36),
		0 50px 96px -16px rgba(31, 61, 20, 0.28);
}
@media (min-width: 1024px) {
	.gk-hero__media-frame {
		aspect-ratio: auto;
		height: 540px;
	}
}
.gk-hero__media-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gk-hero__overlap-quote {
	position: absolute;
	bottom: -16px;
	right: -16px;
	max-width: 280px;
	padding: 18px 20px;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(15, 30, 15, 0.06);
	border-radius: 18px;
	box-shadow: 0 18px 40px -16px rgba(31, 61, 20, 0.18);
	z-index: 2;
}
@media (min-width: 1024px) {
	.gk-hero__overlap-quote { right: -24px; bottom: 40px; }
}
.gk-hero__overlap-quote p {
	margin: 0 0 10px;
	font-size: 13px;
	font-style: italic;
	color: var(--gk-color-dark);
	line-height: 1.45;
}
.gk-hero__overlap-author {
	display: flex;
	align-items: center;
	gap: 10px;
}
.gk-hero__overlap-author img {
	width: 36px;
	height: 36px;
	border-radius: 9999px;
	flex-shrink: 0;
}
.gk-hero__overlap-author-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-family: 'Open Sans', sans-serif;
}
.gk-hero__overlap-author-info strong {
	font-size: 13px;
	font-weight: 800;
	color: var(--gk-color-dark);
	letter-spacing: -0.01em;
	line-height: 1.2;
}
.gk-hero__overlap-author-info span {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #4F9028;
	line-height: 1.2;
}
.gk-hero__overlap-author-info span .material-symbols-outlined {
	font-size: 13px;
	color: #4F9028;
	font-variation-settings: 'FILL' 1;
}

/* Hero thumbnails row — quick browse signal */
.gk-hero__thumbs {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	margin-top: 8px;
	text-decoration: none;
	transition: transform var(--gk-dur-fast) ease;
}
.gk-hero__thumbs:hover { transform: translateX(4px); }
.gk-hero__thumbs-stack { display: inline-flex; }
.gk-hero__thumbs-stack img {
	width: 44px;
	height: 44px;
	border-radius: 9999px;
	border: 2px solid #FAF7F2;
	object-fit: cover;
	margin-left: -10px;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.gk-hero__thumbs-stack img:first-child { margin-left: 0; }
.gk-hero__thumbs-arrow {
	width: 44px;
	height: 44px;
	border-radius: 9999px;
	background: var(--gk-color-dark);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.gk-hero__thumbs-arrow .material-symbols-outlined {
	font-size: 20px;
	color: #fff;
}

/* Ghost button variant — outline na cream */
.gk-btn--ghost {
	background: transparent;
	color: var(--gk-color-dark);
	border: 1.5px solid var(--gk-color-dark);
}
.gk-btn--ghost:hover {
	background: var(--gk-color-dark);
	color: #fff;
}

/* ----- CATEGORIES V9 — Bento 12-col (Stitch) ----- */
.gk-categories {
	padding: clamp(64px, 7vw, 96px) 0;
	background: #fff;
}
.gk-categories__inner {
	max-width: var(--gk-container);
	margin: 0 auto;
	padding: 0 var(--gk-px);
}
.gk-categories__header {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: clamp(32px, 4vw, 48px);
}
@media (min-width: 768px) {
	.gk-categories__header {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
		gap: 32px;
	}
}
.gk-categories__title {
	font-family: var(--gk-font-display);
	font-size: clamp(28px, 3.4vw, 42px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.05;
	color: var(--gk-color-dark);
	margin: 0 0 8px;
	text-transform: none;
}
.gk-categories__lead {
	max-width: 480px;
	font-size: 14px;
	line-height: 1.55;
	color: #555555;
	margin: 0;
}
.gk-categories__view-all {
	font-family: 'Open Sans', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gk-color-dark);
	border-bottom: 1.5px solid var(--gk-color-dark);
	padding-bottom: 2px;
	white-space: nowrap;
}
.gk-categories__view-all:hover {
	color: var(--gk-color-primary);
	border-color: var(--gk-color-primary);
}

/* Bento 6×2 mosaic — K1 big (3×2) + K3 top-left small + K4 top-right wide + K2 bottom wide */
.gk-categories__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
@media (min-width: 768px) {
	.gk-categories__grid {
		grid-template-columns: repeat(6, 1fr);
		grid-template-rows: 280px 280px;
		gap: 20px;
	}
	.gk-categories__tile--big    { grid-column: 1 / 4; grid-row: 1 / 3; }   /* 3 cols × 2 rows */
	.gk-categories__tile--top-1  { grid-column: 4 / 5; grid-row: 1 / 2; }   /* 1 col × 1 row */
	.gk-categories__tile--top-2  { grid-column: 5 / 7; grid-row: 1 / 2; }   /* 2 cols × 1 row */
	.gk-categories__tile--bottom { grid-column: 4 / 7; grid-row: 2 / 3; }   /* 3 cols × 1 row */
}
.gk-categories__tile {
	position: relative;
	overflow: hidden;
	border-radius: 28px;
	background: #F4F6F0;
	min-height: 220px;
	display: block;
	text-decoration: none;
	transition: transform .35s ease, box-shadow .35s ease;
	box-shadow:
		0 1px 3px rgba(0, 0, 0, 0.06),
		0 8px 24px -6px rgba(31, 61, 20, 0.12);
}
.gk-categories__tile:hover {
	transform: translateY(-4px);
	box-shadow:
		0 2px 6px rgba(0, 0, 0, 0.08),
		0 18px 36px -8px rgba(31, 61, 20, 0.20);
}
.gk-categories__tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .7s cubic-bezier(.16,1,.3,1);
	position: absolute;
	inset: 0;
}
.gk-categories__tile:hover img { transform: scale(1.08); }
.gk-categories__tile-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: clamp(20px, 3vw, 36px);
	background: linear-gradient(0deg, rgba(15, 30, 15, 0.75) 0%, rgba(15, 30, 15, 0.10) 60%, transparent 100%);
	z-index: 2;
}
/* `.gk-home h3 { color: inherit }` nie pomaga przeciw `.gk-home h2` rule —
   wymuszamy biały dla tile-title (dark overlay underneath gwarantuje contrast). */
.gk-home .gk-categories__tile-title,
.gk-categories__tile-title {
	font-family: var(--gk-font-display);
	font-size: clamp(22px, 2.4vw, 32px);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #fff !important;
	margin: 0 0 4px;
	line-height: 1.1;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.gk-categories__tile--small .gk-categories__tile-title {
	font-size: clamp(18px, 1.8vw, 22px);
}
.gk-categories__tile-desc {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 14px;
	max-width: 80%;
}
.gk-categories__tile-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 9999px;
	border: 1.5px solid rgba(255, 255, 255, 0.6);
	color: #fff;
	transition: background var(--gk-dur-fast), color var(--gk-dur-fast), border-color var(--gk-dur-fast);
}
.gk-categories__tile:hover .gk-categories__tile-arrow {
	background: #fff;
	color: var(--gk-color-dark);
	border-color: #fff;
}
.gk-categories__tile-arrow .material-symbols-outlined { font-size: 18px; color: inherit; }

/* ----- WHY SHOP WITH US V9 — 2-col split (Stitch) ----- */
.gk-why {
	padding: clamp(64px, 8vw, 120px) 0;
	background: #FAF7F2;
}
.gk-why__inner {
	max-width: var(--gk-container);
	margin: 0 auto;
	padding: 0 var(--gk-px);
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
}
@media (min-width: 1024px) {
	.gk-why__inner { grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
}
.gk-why__copy {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: flex-start;
}
@media (min-width: 1024px) {
	.gk-why__copy { position: sticky; top: 96px; }
}
.gk-why__eyebrow {
	font-family: 'Open Sans', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #4F9028;
}
.gk-why__title {
	font-family: var(--gk-font-display);
	font-size: clamp(36px, 5vw, 60px);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.05;
	color: var(--gk-color-dark);
	margin: 0;
}
.gk-why__title em {
	font-style: italic;
	color: var(--gk-color-primary-container);
}
.gk-why__lead {
	max-width: 460px;
	font-size: 16px;
	line-height: 1.6;
	color: #555555;
	margin: 0;
}
.gk-why__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.gk-why__item {
	background: #fff;
	border: 1px solid rgba(15, 30, 15, 0.06);
	border-radius: 20px;
	padding: 24px 28px;
	box-shadow:
		0 1px 3px rgba(0, 0, 0, 0.04),
		0 6px 16px -4px rgba(31, 61, 20, 0.08);
	transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.gk-why__item:hover {
	border-color: rgba(93, 169, 53, 0.30);
	transform: translateY(-2px);
	box-shadow:
		0 2px 6px rgba(0, 0, 0, 0.06),
		0 16px 32px -8px rgba(31, 61, 20, 0.18);
}
.gk-why__item-head {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 18px;
}
.gk-why__item-num {
	font-family: var(--gk-font-display);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: #4F9028;
}
.gk-why__item-title {
	font-family: var(--gk-font-display);
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--gk-color-dark);
	margin: 0;
	line-height: 1.3;
}
.gk-why__item-plus {
	font-size: 22px;
	color: #4F9028;
	transition: transform .25s ease, color .25s ease;
}
.gk-why__item:hover .gk-why__item-plus {
	transform: rotate(45deg);
	color: var(--gk-color-primary);
}
.gk-why__item-desc {
	font-size: 14px;
	line-height: 1.55;
	color: #555555;
	margin: 14px 0 0;
	max-width: 540px;
}

/* ----- PROMOCJE V9 — produkty on_sale ----- */
.gk-promo {
	padding: clamp(64px, 7vw, 96px) 0;
	background: #fff;
}
.gk-promo__inner {
	max-width: var(--gk-container);
	margin: 0 auto;
	padding: 0 var(--gk-px);
}
.gk-promo__head {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: clamp(28px, 4vw, 44px);
}
@media (min-width: 768px) {
	.gk-promo__head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.gk-promo__eyebrow {
	font-family: 'Open Sans', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #DC2626;
}
.gk-promo__title {
	font-family: var(--gk-font-display);
	font-size: clamp(28px, 3.4vw, 42px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.05;
	color: var(--gk-color-dark);
	margin: 4px 0 0;
}
.gk-promo__view-all {
	font-family: 'Open Sans', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gk-color-dark);
	border-bottom: 1.5px solid var(--gk-color-dark);
	padding-bottom: 2px;
	white-space: nowrap;
}
.gk-promo__view-all:hover { color: var(--gk-color-primary); border-color: var(--gk-color-primary); }

/* ----- REVIEWS V9 (Opinie) ----- */
.gk-reviews {
	padding: clamp(64px, 7vw, 96px) 0;
	background: #FAF7F2;
}
.gk-reviews__inner {
	max-width: var(--gk-container);
	margin: 0 auto;
	padding: 0 var(--gk-px);
}
.gk-reviews__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto clamp(40px, 5vw, 56px);
}
.gk-reviews__eyebrow {
	display: inline-block;
	font-family: 'Open Sans', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #4F9028;
	margin-bottom: 12px;
}
.gk-reviews__title {
	font-family: var(--gk-font-display);
	font-size: clamp(28px, 3.4vw, 42px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.05;
	color: var(--gk-color-dark);
	margin: 0 0 20px;
}
.gk-reviews__aggregate {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	padding: 8px 16px;
	background: #fff;
	border: 1px solid rgba(15, 30, 15, 0.06);
	border-radius: 9999px;
	font-size: 13px;
	color: #555555;
}
.gk-reviews__aggregate strong { color: var(--gk-color-dark); font-weight: 800; }
.gk-reviews__agg-stars { color: #F59E0B; letter-spacing: 1px; font-size: 14px; }

.gk-reviews__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
@media (min-width: 768px) {
	.gk-reviews__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.gk-review {
	background: #fff;
	border: 1px solid rgba(15, 30, 15, 0.06);
	border-radius: 20px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	box-shadow:
		0 1px 3px rgba(0, 0, 0, 0.04),
		0 8px 20px -6px rgba(31, 61, 20, 0.10);
	transition: transform .25s ease, box-shadow .25s ease;
}
.gk-review:hover {
	transform: translateY(-2px);
	box-shadow:
		0 2px 6px rgba(0, 0, 0, 0.06),
		0 16px 32px -8px rgba(31, 61, 20, 0.18);
}
.gk-review__stars {
	color: #F59E0B;
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 1;
}
.gk-review__quote {
	font-size: 15px;
	line-height: 1.55;
	color: var(--gk-color-dark);
	margin: 0;
	font-style: italic;
}
.gk-review__author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid rgba(15, 30, 15, 0.06);
}
.gk-review__author img {
	width: 44px;
	height: 44px;
	border-radius: 9999px;
}
.gk-review__name {
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	font-weight: 800;
	color: var(--gk-color-dark);
	margin: 0;
}
.gk-review__name span { color: var(--gk-color-text-muted); font-weight: 500; }
.gk-review__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: var(--gk-color-text-muted);
	margin: 4px 0 0;
}
.gk-review__verified {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #4F9028;
	font-weight: 700;
}
.gk-review__verified .material-symbols-outlined {
	font-size: 14px;
	color: #4F9028;
	font-variation-settings: 'FILL' 1;
}

/* ----- BLOG V9 (BlogStories) ----- */
.gk-blog {
	padding: clamp(64px, 7vw, 96px) 0;
	background: #fff;
}
.gk-blog__inner {
	max-width: var(--gk-container);
	margin: 0 auto;
	padding: 0 var(--gk-px);
}
.gk-blog__head {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: clamp(28px, 4vw, 44px);
}
@media (min-width: 768px) {
	.gk-blog__head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.gk-blog__eyebrow {
	font-family: 'Open Sans', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #4F9028;
}
.gk-blog__title {
	font-family: var(--gk-font-display);
	font-size: clamp(28px, 3.4vw, 42px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.05;
	color: var(--gk-color-dark);
	margin: 4px 0 0;
}
.gk-blog__view-all {
	font-family: 'Open Sans', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gk-color-dark);
	border-bottom: 1.5px solid var(--gk-color-dark);
	padding-bottom: 2px;
	white-space: nowrap;
}
.gk-blog__view-all:hover { color: var(--gk-color-primary); border-color: var(--gk-color-primary); }

.gk-blog__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}
@media (min-width: 640px) {
	.gk-blog__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1024px) {
	.gk-blog__grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
.gk-blog__card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	background: #fff;
	border: 1px solid rgba(15, 30, 15, 0.06);
	border-radius: 20px;
	overflow: hidden;
	text-decoration: none;
	box-shadow:
		0 1px 3px rgba(0, 0, 0, 0.04),
		0 8px 20px -6px rgba(31, 61, 20, 0.10);
	transition: transform .25s ease, box-shadow .25s ease;
	height: 100%;
}
.gk-blog__card:hover {
	transform: translateY(-4px);
	box-shadow:
		0 2px 6px rgba(0, 0, 0, 0.06),
		0 18px 36px -8px rgba(31, 61, 20, 0.22);
}
.gk-blog__card-image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #F4F6F0;
}
.gk-blog__card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.gk-blog__card:hover .gk-blog__card-image img { transform: scale(1.05); }
.gk-blog__card-body {
	padding: 4px 22px 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.gk-blog__card-cat {
	display: inline-block;
	align-self: flex-start;
	font-family: 'Open Sans', sans-serif;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #4F9028;
	padding: 4px 10px;
	background: rgba(93, 169, 53, 0.10);
	border-radius: 9999px;
}
.gk-blog__card-title {
	font-family: var(--gk-font-display);
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1.3;
	color: var(--gk-color-dark);
	margin: 4px 0 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.gk-blog__card-meta {
	font-size: 12px;
	color: var(--gk-color-text-muted);
	margin: auto 0 0;
	display: flex;
	gap: 6px;
}

/* ═══════════════════════════════════════════════════════════════
   NEWSLETTER MODAL — centered fullscreen + backdrop blur
   Trigger: 20% scroll, dismiss → localStorage. Magic-gym pattern.
   ═══════════════════════════════════════════════════════════════ */
.gk-newsletter-modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: opacity .45s ease, visibility 0s linear .45s;
}
.gk-newsletter-modal.is-open {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
	transition: opacity .45s ease;
}
.gk-newsletter-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	cursor: pointer;
}
.gk-newsletter-modal__card {
	position: relative;
	z-index: 1;
	max-width: 520px;
	width: 100%;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	background: #0F1E0A;
	color: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(93, 169, 53, 0.20);
	border-radius: 28px;
	padding: 48px 40px 32px;
	text-align: center;
	box-shadow:
		0 0 0 1px rgba(93, 169, 53, 0.08),
		0 32px 80px rgba(0, 0, 0, 0.50),
		0 12px 32px rgba(0, 0, 0, 0.30);
	transform: scale(0.94);
	transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}
.gk-newsletter-modal.is-open .gk-newsletter-modal__card {
	transform: scale(1);
}

/* Accent stripe top (brand gradient) */
.gk-newsletter-modal__accent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, transparent, var(--gk-color-primary-container), var(--gk-color-accent-bio), var(--gk-color-primary-container), transparent);
	border-radius: 28px 28px 0 0;
	opacity: 0.85;
}

.gk-newsletter-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.10);
	border: 1px solid rgba(255, 255, 255, 0.16);
	color: rgba(255, 255, 255, 0.85);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background .2s ease, transform .2s ease, color .2s ease;
}
.gk-newsletter-modal__close:hover {
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	transform: rotate(90deg);
}
.gk-newsletter-modal__close .material-symbols-outlined { font-size: 20px; }

.gk-newsletter-modal__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Open Sans', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gk-color-accent-bio);
	margin-bottom: 16px;
}
.gk-newsletter-modal__eyebrow-dot {
	width: 7px;
	height: 7px;
	border-radius: 9999px;
	background: var(--gk-color-accent-bio);
	box-shadow: 0 0 8px rgba(93, 169, 53, 0.60);
	animation: gk-pulse 2s ease-in-out infinite;
}

.gk-newsletter-modal__title {
	font-family: var(--gk-font-display);
	font-size: clamp(28px, 3.6vw, 40px);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.1;
	color: #fff;
	margin: 0 0 16px;
}
.gk-newsletter-modal__title em {
	font-style: normal;
	color: var(--gk-color-accent-bio);
	background: linear-gradient(135deg, var(--gk-color-accent-bio), #74E518);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.gk-newsletter-modal__lead {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
	margin: 0 0 20px;
	line-height: 1.5;
}

.gk-newsletter-modal__perks {
	list-style: none;
	margin: 0 auto 24px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 380px;
	text-align: left;
}
.gk-newsletter-modal__perks li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.5;
}
.gk-newsletter-modal__perks li strong {
	color: var(--gk-color-accent-bio);
	font-weight: 800;
}
.gk-newsletter-modal__perks .material-symbols-outlined {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	font-size: 14px;
	font-weight: 800;
	color: #fff;
	background: var(--gk-color-accent-bio);
	border-radius: 9999px;
	margin-top: 1px;
}

.gk-newsletter-modal__form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 16px;
}
@media (min-width: 480px) {
	.gk-newsletter-modal__form { flex-direction: row; }
}
.gk-newsletter-modal__input {
	flex: 1;
	min-width: 0;
	height: 52px;
	padding: 0 22px;
	background: rgba(255, 255, 255, 0.08);
	border: 1.5px solid rgba(255, 255, 255, 0.16);
	border-radius: 9999px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	outline: none;
	transition: background var(--gk-dur-fast), border-color var(--gk-dur-fast);
	margin: 0;
}
.gk-newsletter-modal__input::placeholder { color: rgba(255, 255, 255, 0.45); }
.gk-newsletter-modal__input:focus {
	background: rgba(255, 255, 255, 0.14);
	border-color: var(--gk-color-accent-bio);
}

.gk-newsletter-modal__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-shrink: 0;
	height: 52px;
	padding: 0 28px;
	background: var(--gk-color-accent-bio);
	color: #fff;
	border: 0;
	border-radius: 9999px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: -0.005em;
	white-space: nowrap;
	cursor: pointer;
	transition: background var(--gk-dur-fast), transform var(--gk-dur-fast), box-shadow var(--gk-dur-fast);
	box-shadow: 0 8px 24px rgba(93, 169, 53, 0.40);
}
.gk-newsletter-modal__submit:hover {
	background: #4F9028;
	transform: translateY(-1px);
	box-shadow: 0 12px 32px rgba(93, 169, 53, 0.55);
}

.gk-newsletter-modal__disclaimer {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	justify-content: center;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.50);
	margin: 0 0 18px;
	line-height: 1.4;
}
.gk-newsletter-modal__disclaimer .material-symbols-outlined {
	font-size: 14px;
	color: var(--gk-color-accent-bio);
}

.gk-newsletter-modal__skip {
	background: transparent;
	border: 0;
	color: rgba(255, 255, 255, 0.50);
	font-family: inherit;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: -0.005em;
	cursor: pointer;
	padding: 4px 8px;
	margin: 0 auto;
	border-bottom: 1px solid transparent;
	transition: color var(--gk-dur-fast), border-color var(--gk-dur-fast);
}
.gk-newsletter-modal__skip:hover {
	color: rgba(255, 255, 255, 0.85);
	border-color: currentColor;
}

@media (max-width: 480px) {
	.gk-newsletter-modal__card {
		padding: 32px 24px 20px;
		border-radius: 24px;
	}
	.gk-newsletter-modal__title { font-size: 22px; }
	.gk-newsletter-modal__icon { width: 60px; height: 60px; }
}

@media (prefers-reduced-motion: reduce) {
	.gk-newsletter-modal,
	.gk-newsletter-modal__card,
	.gk-newsletter-modal__icon {
		animation: none !important;
		transition: opacity .15s ease !important;
	}
}

/* === Reduced motion === */
@media (prefers-reduced-motion: reduce) {
	.gk-home *,
	.gk-home *::before,
	.gk-home *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
	.gk-hero__eyebrow-dot { animation: none !important; }
	.gk-mini-cart { transition: none !important; }
}
