/* ===================================================================
 * FOOTER
 * =================================================================== */
/* ═══════════════════════════════════════════════════════════════
   FOOTER V9 — Premium DTC pattern (Ritual/AG1/Aesop adapted)
   Bg: deep dark green #0F1E0A | cream text | brand accent #5DA935
   3 strefy: TOP (brand+newsletter) → MIDDLE (4-col links) → BOTTOM (legal+pay)
   ═══════════════════════════════════════════════════════════════ */
.gk-footer {
	background: #0F1E0A;
	color: rgba(255, 255, 255, 0.92);
	font-family: 'Open Sans', sans-serif;
	border-top: 1px solid rgba(93, 169, 53, 0.08);
	position: relative;
	overflow: clip;
}
/* FIX 2026-05-30: animowana aurora — ożywia "mdłe" ciemnozielone tło (CSS-only, premium). */
.gk-footer::before {
	content: '';
	position: absolute;
	inset: -25% -12%;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(38% 46% at 18% 22%, rgba(93, 169, 53, 0.22), transparent 70%),
		radial-gradient(34% 42% at 82% 68%, rgba(0, 150, 104, 0.17), transparent 72%),
		radial-gradient(28% 36% at 58% 12%, rgba(161, 236, 120, 0.13), transparent 70%);
	filter: blur(34px);
	animation: gk-footer-aurora 24s ease-in-out infinite alternate;
}
.gk-footer > * { position: relative; z-index: 1; }
@keyframes gk-footer-aurora {
	0%   { transform: translate(0, 0) scale(1); }
	50%  { transform: translate(4%, -3%) scale(1.12); }
	100% { transform: translate(-3%, 4%) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) { .gk-footer::before { animation: none; } }
.gk-footer__inner {
	max-width: var(--gk-container);
	margin: 0 auto;
	padding: clamp(56px, 6vw, 80px) var(--gk-px) 0;
}

/* ----- TOP: brand + newsletter inline ----- */
.gk-footer__top {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	padding-bottom: clamp(40px, 5vw, 56px);
	border-bottom: 1px solid rgba(93, 169, 53, 0.12);
}
@media (min-width: 1024px) {
	.gk-footer__top {
		grid-template-columns: 1fr 1.2fr;
		gap: 80px;
		align-items: center;
	}
}
.gk-footer__brand-block { display: flex; flex-direction: column; gap: 16px; max-width: 360px; }
.gk-footer__logo img {
	height: 32px;
	width: auto;
	filter: brightness(0) invert(1);     /* white logo on dark bg */
}
.gk-footer__tagline {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
}

/* Newsletter inline */
.gk-footer__newsletter {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.gk-footer__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #5DA935;
}
.gk-footer__eyebrow-dot {
	width: 6px;
	height: 6px;
	border-radius: 9999px;
	background: #5DA935;
	animation: gk-pulse 2s ease-in-out infinite;
}
.gk-footer__newsletter-title {
	font-family: var(--gk-font-display);
	font-size: clamp(22px, 2.6vw, 32px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.15;
	color: #fff;
	margin: 0;
}
.gk-footer__form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 8px;
	max-width: 100%;
	width: 100%;
}
@media (min-width: 640px) {
	.gk-footer__form { flex-direction: row; align-items: center; gap: 12px; }
}
.gk-footer__newsletter { min-width: 0; }
.gk-footer .gk-footer__input,
.gk-footer__input {
	flex: 1;
	min-width: 0;
	width: 100%;
	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;
	color: #fff;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	box-sizing: border-box;
	transition:
		background .25s cubic-bezier(.16, 1, .3, 1),
		border-color .25s cubic-bezier(.16, 1, .3, 1),
		box-shadow .25s cubic-bezier(.16, 1, .3, 1),
		transform .25s cubic-bezier(.16, 1, .3, 1);
	outline: none;
	margin: 0;
}
.gk-footer__input::placeholder { color: rgba(255, 255, 255, 0.45); }
.gk-footer__input:hover {
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.12);
}
.gk-footer__input:focus {
	background: rgba(255, 255, 255, 0.14);
	border-color: #5DA935;
	outline: none;
	box-shadow:
		0 0 0 4px rgba(93, 169, 53, 0.20),
		0 0 24px rgba(93, 169, 53, 0.25);
}
.gk-footer__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-shrink: 0;
	height: 52px;
	padding: 0 28px;
	/* FIX 2026-05-30: na ciemnym footerze biały przycisk + ciemnozielony napis (premium,
	   widoczny) zamiast jasnozielonego. */
	background: #FFFFFF;
	color: #1F3D14;
	border: 0;
	border-radius: 9999px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: -0.01em;
	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(0, 0, 0, 0.25);
}
.gk-footer__submit:hover {
	background: #FAF8F4;
	transform: translateY(-1px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}
.gk-footer__form-note {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.55);
	margin: 0;
}
.gk-footer__form-note .material-symbols-outlined {
	font-size: 14px;
	color: #5DA935;
}

/* ----- MIDDLE: 4-col link grid ----- */
.gk-footer__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px 32px;
	padding: clamp(40px, 5vw, 56px) 0;
	border-bottom: 1px solid rgba(93, 169, 53, 0.10);
}
@media (min-width: 1024px) {
	.gk-footer__grid { grid-template-columns: repeat(4, 1fr); gap: 40px; }
}
.gk-footer__col {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.gk-footer__col-title {
	font-family: var(--gk-font-display);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	/* FIX 2026-05-30: białe nagłówki kolumn na ciemnym footerze (było jasnozielone) */
	color: #FFFFFF;
	margin: 0;
}
.gk-footer__col-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.gk-footer__col-list a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
	transition: color var(--gk-dur-fast);
}
.gk-footer__col-list a:hover { color: #fff; }
.gk-home .gk-footer__col-list a {
	color: rgba(255, 255, 255, 0.72);
}
.gk-home .gk-footer__col-list a:hover { color: #fff; }

/* Contact list — icon + text */
.gk-footer__col-list--contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.4;
}
.gk-footer__col-list--contact .material-symbols-outlined {
	font-size: 18px;
	color: #5DA935;
	flex-shrink: 0;
	margin-top: 1px;
}
.gk-footer__col-list--contact a { color: inherit; }
.gk-footer__col-list--contact a:hover { color: #fff; }

/* Social icons */
.gk-footer__social {
	display: flex;
	gap: 10px;
	margin-top: 8px;
}
.gk-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.10);
	color: #fff;
	transition: all .25s ease;
}
.gk-footer__social a:hover {
	background: #5DA935;
	color: #fff;
	border-color: #5DA935;
	transform: translateY(-2px);
}
.gk-home .gk-footer__social a { color: #fff; }
.gk-home .gk-footer__social a:hover { color: #fff; }

/* ----- BOTTOM: legal + copyright + payments ----- */
.gk-footer__bottom {
	padding: clamp(28px, 3vw, 36px) 0 clamp(32px, 4vw, 48px);
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.gk-footer__bottom-legal {
	text-align: center;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.6;
	max-width: 1080px;
	margin: 0 auto;
}
.gk-footer__bottom-legal p {
	margin: 0;
	word-spacing: 0.06em;
}
.gk-footer__bottom-legal strong {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 700;
}

.gk-footer__bottom-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 20px;
	border-top: 1px solid rgba(93, 169, 53, 0.08);
}
@media (min-width: 768px) {
	.gk-footer__bottom-row {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 16px 24px;
	}
	.gk-footer__bottom-row .gk-footer__payments { flex: 1 1 auto; justify-content: flex-end; }
}
.gk-footer__copyright {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.50);
	margin: 0;
}
.gk-footer__payments {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}
.gk-footer__payments span {
	padding: 6px 12px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.04);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
}

/* "Made by Impact Ads" — agency credit, w bottom-row obok payments */
.gk-footer__credit {
	margin: 0;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.45);
	letter-spacing: 0.04em;
	white-space: nowrap;
}
.gk-footer__credit-link {
	color: rgba(255, 255, 255, 0.45);
	text-decoration: none;
	transition: color var(--gk-dur-fast) ease, text-shadow var(--gk-dur-fast) ease;
	margin-left: 4px;
}
.gk-footer__credit-link strong {
	background: linear-gradient(135deg, #5DA935 0%, #74E518 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 12px;
	border-bottom: 1.5px solid rgba(93, 169, 53, 0.40);
	padding-bottom: 1px;
	transition: border-color var(--gk-dur-fast) ease;
}
.gk-footer__credit-link:hover strong {
	border-bottom-color: rgba(93, 169, 53, 1);
}
.gk-home .gk-footer__credit-link { color: rgba(255, 255, 255, 0.45); }
.gk-home .gk-footer__credit-link:hover { color: rgba(255, 255, 255, 0.65); }

/* ===================================================================
 * MINI-CART DRAWER (side-right, slide-in)
 * Wywoływany kliknięciem ikony koszyka w headerze + auto-open po add_to_cart.
 * =================================================================== */
/* Mini-cart drawer + wishlist drawer styles wydzielone do osobnych globalnych komponentów
   (per user mandate 2026-05-28): assets/css/components/cart-drawer.css + wishlist-drawer.css.
   home.css było scope .gk-home — na PDP/listing zmienne CSS undefined → buttons transparent. */

