/* ===================================================================
 * HEADER
 * =================================================================== */
.gk-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	height: 72px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(192, 202, 181, 0.3);
	transition: box-shadow var(--gk-dur-fast) ease;
}
.gk-header.is-scrolled {
	box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}
.gk-header__nav {
	max-width: var(--gk-container);
	margin: 0 auto;
	height: 100%;
	padding: 0 var(--gk-px);
	display: flex;
	align-items: center;
	gap: 24px;
	justify-content: space-between;
}
.gk-header__logo {
	display: block;
	flex-shrink: 0;
}
.gk-header__logo img {
	height: 26px;
	width: auto;
	display: block;
}
@media (min-width: 1024px) {
	.gk-header__logo img { height: 28px; }
}
.gk-header__mobile-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0;
	padding: 8px;
	margin-left: -8px;
	color: var(--gk-color-dark);
}
.gk-header__mobile-toggle:active { transform: scale(0.95); }
@media (min-width: 768px) {
	.gk-header__mobile-toggle { display: none; }
}
/* FIX 2026-05-31: header mobile = logo z lewej + (lupa + hamburger) z prawej.
   Koszyk = floating cart (zawsze widoczny), ulubione + konto = w drawerze. */
@media (max-width: 767px) {
	/* FIX 2026-05-31: mniejszy padding (był 57.6px desktopowy --gk-px → tracił 115px szer.) */
	.gk-header__nav { justify-content: flex-start; gap: 8px; padding-left: 16px; padding-right: 16px; }
	.gk-header__logo { order: 0; margin-right: auto; flex: 0 0 auto; }
	/* małe logo z zachowaniem proporcji (było ściśnięte przez max-width + object-fit:fill) */
	.gk-header .gk-header__logo img { height: 22px !important; width: auto !important; max-width: none !important; object-fit: contain !important; }
	.gk-header__actions { order: 1; gap: 4px; }
	/* FIX 2026-05-31: hamburger był ukryty ZAWSZE (header-icons.css `.gk-header ...{display:none}`
	   0,2,0 bez media — „shown via media query" nigdy nie zadziałało). Pokazujemy na mobile. */
	.gk-header .gk-header__mobile-toggle { display: inline-flex !important; order: 2; margin-left: 2px; }
	/* tylko logo + search + hamburger w pasku — koszyk=floating, ulubione+konto=w drawerze */
	#gk-cart-toggle, #gk-wishlist-toggle, .gk-header__account { display: none !important; }
	#gk-floating-cart { display: flex !important; }
}
.gk-header__menu {
	display: none;
	flex: 1;
	align-items: center;
	gap: 4px;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}
@media (min-width: 768px) {
	.gk-header__menu { display: flex; }
}
.gk-header__menu a {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--gk-color-text-muted);
	padding: 8px 14px;
	border-radius: 10px;
	transition: color var(--gk-dur-fast), background var(--gk-dur-fast);
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.gk-header__menu a:hover {
	color: var(--gk-color-primary);
	background: var(--gk-color-surface-low);
}
.gk-header__divider {
	display: none;
	width: 1px;
	height: 20px;
	background: rgba(192, 202, 181, 0.5);
	margin: 0 8px;
}
@media (min-width: 1024px) {
	.gk-header__divider { display: inline-block; }
}
.gk-header__menu .gk-header__extra {
	display: none;
}
@media (min-width: 1024px) {
	.gk-header__menu .gk-header__extra { display: inline-flex; }
}

/* Promocje link — wyróżnione tłem + subtle pulse glow */
.gk-header__menu a.gk-header__promo-link,
.gk-header__menu .gk-header__promo-link {
	position: relative;
	color: #fff !important;
	background: linear-gradient(135deg, #DC2626, #B91C1C);
	font-weight: 800;
	letter-spacing: 0.02em;
	padding: 8px 16px;
	border-radius: 9999px;
	box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
	transition: transform var(--gk-dur-fast) ease, box-shadow var(--gk-dur-fast) ease;
	overflow: hidden;
}
.gk-header__menu a.gk-header__promo-link::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5);
	animation: gk-promo-pulse 2.4s ease-out infinite;
	pointer-events: none;
}
.gk-header__menu a.gk-header__promo-link:hover {
	background: linear-gradient(135deg, #B91C1C, #991B1B);
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 8px 18px rgba(220, 38, 38, 0.40);
}
@keyframes gk-promo-pulse {
	0%   { box-shadow: 0 0 0 0   rgba(220, 38, 38, 0.50); }
	70%  { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
	100% { box-shadow: 0 0 0 0   rgba(220, 38, 38, 0); }
}
@media (prefers-reduced-motion: reduce) {
	.gk-header__menu a.gk-header__promo-link::before { animation: none !important; }
}
.gk-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}
@media (min-width: 1024px) {
	.gk-header__actions { gap: 20px; }
}
.gk-header__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0;
	padding: 6px;
	color: var(--gk-color-dark);
	transition: color var(--gk-dur-fast);
	position: relative;
}
.gk-header__icon:hover { color: var(--gk-color-primary); }
.gk-header__icon:active { transform: scale(0.95); }

/* ----- ACCOUNT DROPDOWN (x-kom.pl pattern) ----- */
.gk-header__account {
	position: relative;
	display: none;
}
@media (min-width: 768px) {
	.gk-header__account { display: inline-flex; }
}
.gk-header__account-trigger {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 40px;
	padding: 0 10px 0 8px;
	border-radius: 12px;
	color: var(--gk-color-dark);
	text-decoration: none;
	font-family: 'Open Sans', sans-serif;
	transition: background var(--gk-dur-fast) ease, color var(--gk-dur-fast) ease;
}
.gk-header__account-trigger:hover {
	background: var(--gk-color-surface-low);
	color: var(--gk-color-primary);
}
.gk-header__account-icon { font-size: 22px; color: inherit; }
.gk-header__account-label {
	display: none;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
	gap: 2px;
	letter-spacing: -0.005em;
	max-width: 160px;
	line-height: 1.25;
	padding-bottom: 2px;
}
@media (min-width: 1024px) {
	.gk-header__account-label { display: inline-flex; }
}
.gk-header__account-label-top {
	font-size: 12px;
	font-weight: 600;
	color: var(--gk-color-text-muted);
	letter-spacing: 0.005em;
	line-height: 1.25;
	white-space: nowrap;
}
.gk-header__account-label-bottom {
	font-size: 13px;
	font-weight: 800;
	color: var(--gk-color-dark);
	letter-spacing: -0.01em;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 140px;
}
.gk-header__account-trigger:hover .gk-header__account-label-bottom {
	color: var(--gk-color-primary);
}
.gk-header__account-chevron {
	font-size: 16px;
	color: inherit;
	transition: transform .25s ease;
}
.gk-header__account:hover .gk-header__account-chevron,
.gk-header__account:focus-within .gk-header__account-chevron {
	transform: rotate(180deg);
}

/* Dropdown panel */
.gk-header__account-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 320px;
	background: #fff;
	border: 1px solid rgba(15, 30, 15, 0.06);
	border-radius: 18px;
	box-shadow:
		0 4px 12px rgba(0, 0, 0, 0.06),
		0 18px 48px -8px rgba(31, 61, 20, 0.18);
	padding: 18px;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transform: translateY(-8px);
	transition:
		opacity .25s cubic-bezier(.16,1,.3,1),
		transform .25s cubic-bezier(.16,1,.3,1),
		visibility 0s linear .25s;
	z-index: 60;
}
/* Bridge area żeby diagonal mouse path nie zamykał dropdown */
.gk-header__account::before {
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	height: 12px;
	pointer-events: none;
}
.gk-header__account:hover::before { pointer-events: auto; }
.gk-header__account:hover .gk-header__account-dropdown,
.gk-header__account:focus-within .gk-header__account-dropdown {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
	transform: translateY(0);
	transition:
		opacity .25s cubic-bezier(.16,1,.3,1),
		transform .25s cubic-bezier(.16,1,.3,1);
}

/* Greeting */
.gk-header__account-greeting {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 4px 12px 16px;
	border-bottom: 1px solid rgba(15, 30, 15, 0.06);
}
.gk-header__account-greeting strong {
	font-family: var(--gk-font-display);
	font-size: 16px;
	font-weight: 800;
	color: var(--gk-color-dark);
	letter-spacing: -0.01em;
}
.gk-header__account-greeting span {
	font-size: 12px;
	color: var(--gk-color-text-muted);
	line-height: 1.4;
}

/* CTA login button — ciemnozielony default + biały tekst (jak reszta przycisków) */
.gk-header__account-login-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	height: 48px;
	margin: 14px 0 10px;
	background: var(--gk-color-dark);          /* #1F3D14 ciemnozielony */
	color: #fff;
	border-radius: 9999px;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: -0.005em;
	text-decoration: none;
	box-shadow: 0 6px 16px rgba(31, 61, 20, 0.30);
	transition: all var(--gk-dur-fast) ease;
}
.gk-header__account-login-btn:hover {
	background: var(--gk-color-primary);       /* lighter green on hover */
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(31, 61, 20, 0.40);
}
.gk-header__account-login-btn .material-symbols-outlined {
	transition: transform var(--gk-dur-fast) ease;
}
.gk-header__account-login-btn:hover .material-symbols-outlined {
	transform: translateX(2px);
}
.gk-home a.gk-header__account-login-btn,
.gk-home a.gk-header__account-login-btn:hover { color: #fff; }

.gk-header__account-register-line {
	margin: 0 0 4px;
	text-align: center;
	font-size: 13px;
	color: var(--gk-color-text-muted);
}
.gk-header__account-register-line a {
	color: var(--gk-color-primary-container);
	font-weight: 800;
	text-decoration: none;
	margin-left: 4px;
	border-bottom: 1.5px solid currentColor;
	padding-bottom: 1px;
	transition: color var(--gk-dur-fast);
}
.gk-header__account-register-line a:hover {
	color: var(--gk-color-dark);
}
.gk-home .gk-header__account-register-line a {
	color: var(--gk-color-primary-container);
}
.gk-home .gk-header__account-register-line a:hover { color: var(--gk-color-dark); }

/* Menu list */
.gk-header__account-menu {
	list-style: none;
	margin: 0;
	padding: 4px 0 0;
}
.gk-header__account-menu li a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border-radius: 10px;
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--gk-color-text);
	text-decoration: none;
	transition: background var(--gk-dur-fast), color var(--gk-dur-fast);
}
.gk-header__account-menu li a:hover {
	background: var(--gk-color-surface-low);
	color: var(--gk-color-primary);
}
.gk-header__account-menu li a .material-symbols-outlined {
	font-size: 18px;
	color: var(--gk-color-primary);
}
.gk-header__account-menu-divider {
	height: 1px;
	background: rgba(15, 30, 15, 0.06);
	margin: 6px 8px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.gk-header__account-dropdown,
	.gk-header__account-chevron {
		transition: none !important;
	}
}
.gk-header__cart-badge,
.gk-header__wishlist-badge {
	position: absolute;
	top: -2px;
	right: -2px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	background: var(--gk-color-primary);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	border-radius: 9999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	box-shadow: 0 0 0 2px #fff;
	transition: transform .25s var(--gk-ease-out);
}
.gk-header__wishlist-badge {
	background: #DC2626;
}
.gk-header__cart-badge.is-bumped,
.gk-header__wishlist-badge.is-bumped {
	animation: gk-badge-bump .5s var(--gk-ease-out);
}
@keyframes gk-badge-bump {
	0%   { transform: scale(1); }
	35%  { transform: scale(1.5); }
	100% { transform: scale(1); }
}
.gk-header__action--hide-mobile {
	display: none;
}
@media (min-width: 640px) {
	.gk-header__action--hide-mobile { display: inline-flex; }
}

/* ===================================================================
 * MEGA MENU V2 — research-based (Baymard 2024 / NN/g 2023 / Smashing 2024)
 * 3-col horizontal: kategorie | popularne cele | featured produkty
 * Hover delay 150ms (JS) + bridge area technique
 * BG white, flat-lift shadow, fade+translateY entrance 200ms
 * Vanilla CSS, NO Tailwind
 * =================================================================== */
.gk-mega-menu {
	position: absolute;
	top: calc(100% + 2px);
	left: 50%;
	transform: translateX(-50%) translateY(-8px);
	width: max-content;
	min-width: 920px;
	max-width: min(1200px, calc(100vw - 32px));
	background: #FFFFFF;
	box-shadow: 0 16px 48px rgba(15, 30, 15, 0.10);
	border: 1px solid rgba(0, 0, 0, 0.04);
	border-radius: 0 0 20px 20px;
	z-index: 50;
	overflow: hidden;
	max-height: 480px;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition:
		opacity 200ms cubic-bezier(0.16, 1, 0.3, 1),
		transform 200ms cubic-bezier(0.16, 1, 0.3, 1),
		visibility 0s linear 200ms;
}

/* Bridge area — niewidoczny safe-zone między top-item a menu (Amazon pattern) */
.gk-mega-menu::before {
	content: '';
	position: absolute;
	top: -12px;
	left: 0;
	right: 0;
	height: 12px;
	background: transparent;
}

/* Open state — JS toggle z hover delay (150ms open / 300-400ms close) */
.gk-header__menu-item.is-mega-open > .gk-mega-menu {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
	transition:
		opacity 200ms cubic-bezier(0.16, 1, 0.3, 1),
		transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gk-mega-menu__inner {
	display: grid;
	grid-template-columns: 280px 1fr 320px;
	gap: 0;
	max-height: 420px;
}

.gk-mega-menu__col {
	display: flex;
	flex-direction: column;
	padding: 28px 24px;
	min-width: 0;
}
.gk-mega-menu__col + .gk-mega-menu__col {
	border-left: 1px solid rgba(15, 30, 15, 0.06);
}
/* Jednolite tło wszystkich 3 kolumn — biały (rówano wizualnie, separator border-left) */
.gk-mega-menu__col--cats,
.gk-mega-menu__col--tags,
.gk-mega-menu__col--featured { background: #FFFFFF; }

.gk-mega-menu__col-label {
	font-family: 'Open Sans', sans-serif;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #4F9028;        /* AA contrast 4.5:1 — research */
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(15, 30, 15, 0.06);
}

/* === Lewa kolumna: lista kategorii === */
.gk-mega-menu__list {
	display: flex;
	flex-direction: column;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
	overflow-y: auto;
}
.gk-mega-menu__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	height: 44px;        /* Fitts's Law minimum */
	padding: 0 14px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--gk-color-dark);
	border-radius: 10px;
	text-decoration: none;
	transition: background .15s ease, color .15s ease, transform .15s ease;
}
.gk-mega-menu__link span:first-child {
	flex: 1;
	letter-spacing: -0.01em;
}
.gk-mega-menu__link .material-symbols-outlined {
	font-size: 16px;
	color: #9CA3AF;
	transition: color .15s ease, transform .15s ease;
}
.gk-mega-menu__link:hover,
.gk-mega-menu__link:focus-visible {
	background: rgba(93, 169, 53, 0.08);
	color: #4F9028;
	outline: none;
}
.gk-mega-menu__link:hover .material-symbols-outlined {
	color: #4F9028;
	transform: translateX(2px);
}
.gk-mega-menu__link:focus-visible {
	box-shadow: 0 0 0 2px #5DA935;
	box-shadow: 0 0 0 2px var(--gk-color-primary-container);
}

/* === Środkowa kolumna: tagi/cele === */
.gk-mega-menu__taglist {
	display: flex;
	flex-direction: column;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.gk-mega-menu__taglist a {
	display: flex;
	align-items: center;
	gap: 10px;
	height: 36px;
	padding: 0 12px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: var(--gk-color-text);
	border-radius: 8px;
	text-decoration: none;
	transition: background .15s ease, color .15s ease;
}
.gk-mega-menu__taglist a:hover,
.gk-mega-menu__taglist a:focus-visible {
	background: #F4F6F0;
	color: #4F9028;
	outline: none;
}
.gk-mega-menu__taglist a:focus-visible {
	box-shadow: 0 0 0 2px var(--gk-color-primary-container);
}
.gk-mega-menu__tag-bullet {
	flex-shrink: 0;
	width: 6px;
	height: 6px;
	border-radius: 9999px;
	background: var(--gk-color-primary-container);
	opacity: 0.5;
}
.gk-mega-menu__taglist a:hover .gk-mega-menu__tag-bullet { opacity: 1; }

/* === Prawa kolumna: 3 featured produkty stack === */
.gk-mega-menu__featured {
	display: flex;
	flex-direction: column;
	gap: 8px;
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}
.gk-mega-menu__feat {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 10px;
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
	border: 1px solid transparent;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}
.gk-mega-menu__feat:hover,
.gk-mega-menu__feat:focus-visible {
	border-color: rgba(93, 169, 53, 0.30);
	background: #FAFAF7;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
	outline: none;
}

.gk-mega-menu__feat-image {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	border-radius: 10px;
	background: #FAFAF7;
	overflow: hidden;
	display: block;
}
.gk-mega-menu__feat-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gk-mega-menu__feat-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.gk-mega-menu__feat-badge {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	padding: 2px 8px;
	background: #FFF8E1;
	color: #B7800F;
	font-family: 'Open Sans', sans-serif;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	border-radius: 9999px;
	line-height: 1.4;
}
/* Promo variant — czerwony jak product card discount-badge */
.gk-mega-menu__feat-badge--promo {
	background: #DC2626;
	color: #fff;
	letter-spacing: -0.01em;
}

.gk-mega-menu__feat-name {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--gk-color-dark);
	letter-spacing: -0.01em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.gk-mega-menu__feat-price {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	flex-wrap: wrap;
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	font-weight: 800;
	color: var(--gk-color-emerald);
	letter-spacing: -0.01em;
	line-height: 1.2;
}
.gk-mega-menu__feat-price .woocommerce-Price-amount,
.gk-mega-menu__feat-price .amount {
	font-size: inherit;
	color: inherit;
	font-weight: inherit;
}
/* Stara cena (przekreślona) — widoczna gdy promo */
.gk-mega-menu__feat-price del {
	font-size: 11px;
	font-weight: 500;
	color: #9CA3AF;
	text-decoration: line-through;
	margin-right: 2px;
}
.gk-mega-menu__feat-price del .woocommerce-Price-amount,
.gk-mega-menu__feat-price del .amount {
	color: inherit;
	font-weight: inherit;
}
.gk-mega-menu__feat-price ins {
	background: none;
	text-decoration: none;
	color: var(--gk-color-emerald);
}

.gk-mega-menu__view-all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	height: 44px;
	margin-top: auto;     /* equal bottom alignment across columns */
	margin-bottom: 0;
	background: rgba(93, 169, 53, 0.10);
	color: #1F3D14;
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: -0.01em;
	border-radius: 10px;
	text-decoration: none;
	transition: background .15s ease, color .15s ease;
}
.gk-mega-menu__view-all:hover,
.gk-mega-menu__view-all:focus-visible {
	background: var(--gk-color-dark);
	color: #fff;
	outline: none;
}
.gk-mega-menu__view-all .material-symbols-outlined {
	font-size: 16px;
	transition: transform .2s ease;
}
.gk-mega-menu__view-all:hover .material-symbols-outlined {
	transform: translateX(4px);
}

/* Soft variant — używany na col-cats i col-tags (subtelniejsze niż primary featured CTA) */
.gk-mega-menu__view-all--soft {
	background: transparent;
	color: #4F9028;
	border: 1px solid rgba(15, 30, 15, 0.10);
	font-weight: 700;
}
.gk-mega-menu__view-all--soft:hover,
.gk-mega-menu__view-all--soft:focus-visible {
	background: rgba(93, 169, 53, 0.08);
	color: #1F3D14;
	border-color: rgba(93, 169, 53, 0.30);
}

/* === Footer banner: free shipping + GIS disclaimer (Gemius PL +15% AOV) === */
.gk-mega-menu__footer {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	background: #FAFAF7;
	border-top: 1px solid rgba(15, 30, 15, 0.06);
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	color: var(--gk-color-text-muted);
}
.gk-mega-menu__footer .material-symbols-outlined {
	font-size: 18px;
	color: #4F9028;
}
.gk-mega-menu__footer strong {
	color: #4F9028;
	font-weight: 800;
}

/* Top-level header item — dropdown indicator */
.gk-header__menu-item {
	position: relative;
}
.gk-header__menu-item.has-mega-menu > a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.gk-header__menu-chevron {
	font-size: 16px !important;
	transition: transform .2s ease;
	color: inherit;
}
.gk-header__menu-item.is-mega-open > a .gk-header__menu-chevron {
	transform: rotate(180deg);
}
.gk-header__menu-item.is-mega-open > a {
	color: var(--gk-color-primary);
	background: var(--gk-color-surface-low);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.gk-mega-menu {
		transition: opacity .01s !important;
		transform: translateX(-50%) translateY(0) !important;
	}
}

