/**
 * Reencle - bazowe style.
 * Minimalny zestaw. Docelowy design dopracujemy później.
 */

:root {
	--reencle-max-width: 1280px;
	--reencle-gap: 1.5rem;
	--reencle-color-text: #1a1a1a;
	--reencle-color-bg: #ffffff;
	--reencle-color-accent: #6b4a2e;
	--reencle-color-muted: #6b7280;
	--reencle-color-border: #e5e7eb;
	--reencle-header-bg: #3e1c0f;
	--reencle-header-text: #f3ecdd;
	--reencle-header-h: 72px;
	--reencle-peach: #fbe8da;
	--reencle-coral: #c1673c;
	--reencle-font: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--reencle-font);
	color: var(--reencle-color-text);
	background: var(--reencle-color-bg);
	line-height: 1.6;
}

a {
	color: var(--reencle-color-accent);
}

img {
	max-width: 100%;
	height: auto;
}

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: #fff;
	padding: 0.5rem 1rem;
	z-index: 1000;
}

.skip-link:focus {
	left: 0.5rem;
}

/* Layout ------------------------------------------------------------------ */

.site-content {
	max-width: var(--reencle-max-width);
	margin-inline: auto;
	padding-inline: var(--reencle-gap);
}

/* Header --------------------------------------------------------------- */

.site-header {
	background: var(--reencle-header-bg);
	color: var(--reencle-header-text);
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 1000;
}

/* Pasek admina WP jest też fixed u góry - nasz nagłówek musi zejść pod niego,
   inaczej się nakładają (treść strony WP już sama przesuwa przez margin-top na <html>). */
body.admin-bar .site-header {
	top: 32px;
}

@media (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

.site-header-inner {
	max-width: var(--reencle-max-width);
	margin-inline: auto;
	padding: 0 var(--reencle-gap);
	min-height: 72px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: var(--reencle-gap);
}

.site-branding {
	margin: 0;
	display: flex;
	align-items: center;
}

.site-header .custom-logo-link {
	display: inline-block;
	line-height: 0;
}

.site-header .custom-logo {
	display: block;
	width: 95px;
	height: auto;
}

.site-header .site-title {
	margin: 0;
	font-size: 1.6rem;
	font-weight: 800;
	letter-spacing: 0.01em;
}

.site-header .site-title a {
	text-decoration: none;
	color: var(--reencle-header-text);
}

.site-content {
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--reencle-gap) * 2);
	padding-top: calc(var(--reencle-header-h) + var(--reencle-gap) * 2);
	padding-bottom: calc(var(--reencle-gap) * 2);
}

/* Strona główna - hero pełnoekranowy, bez ograniczeń kontenera. */
.home .site-content {
	display: block;
	max-width: none;
	margin: 0;
	padding: 0;
}

.site-content-inner {
	max-width: var(--reencle-max-width);
	margin-inline: auto;
	padding: calc(var(--reencle-gap) * 2) var(--reencle-gap);
}

#primary {
	flex: 1 1 60%;
	min-width: 0;
}

.widget-area {
	flex: 1 1 260px;
}

body.no-sidebar .site-content {
	display: block;
}

/* Nawigacja ------------------------------------------------------------- */

.main-navigation {
	justify-self: center;
	align-self: stretch;
	display: flex;
	align-items: stretch;
}

.main-navigation ul {
	list-style: none;
	display: flex;
	align-items: stretch;
	gap: 2.5rem;
	margin: 0;
	padding: 0;
}

.main-navigation li {
	display: flex;
}

.main-navigation a {
	position: relative;
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--reencle-header-text);
	font-weight: 700;
	font-size: 18px;
}

.main-navigation a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: currentColor;
	opacity: 0;
	transition: opacity 0.15s ease;
}

.main-navigation a:hover::after {
	opacity: 1;
}

.menu-toggle {
	display: none;
	width: 40px;
	height: 40px;
	background: none;
	border: 1px solid currentColor;
	border-radius: 4px;
	color: var(--reencle-header-text);
	cursor: pointer;
	position: relative;
}

.menu-toggle-bar,
.menu-toggle-bar::before,
.menu-toggle-bar::after {
	position: absolute;
	left: 50%;
	width: 18px;
	height: 2px;
	background: currentColor;
	transform: translateX(-50%);
	content: "";
}

.menu-toggle-bar {
	top: 50%;
	margin-top: -1px;
}

.menu-toggle-bar::before {
	top: -6px;
}

.menu-toggle-bar::after {
	top: 6px;
}

/* Koszyk w headerze --------------------------------------------------- */

.site-header-cart {
	justify-self: end;
	display: flex;
	align-items: center;
}

.site-header-cart .cart-contents {
	position: relative;
	display: inline-flex;
	align-items: center;
	color: var(--reencle-header-text);
	text-decoration: none;
}

.cart-contents-icon {
	width: 26px;
	height: 26px;
}

.cart-contents-count {
	position: absolute;
	top: -7px;
	right: -9px;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 999px;
	background: var(--reencle-header-text);
	color: var(--reencle-header-bg);
	font-size: 0.68rem;
	font-weight: 800;
	line-height: 17px;
	text-align: center;
}

@media (max-width: 860px) {
	.site-header-inner {
		display: flex;
		align-items: center;
		gap: 1rem;
		padding-inline: 1rem;
	}

	.site-branding {
		order: 1;
		margin-right: auto;
	}

	.site-header-cart {
		order: 2;
	}

	.main-navigation {
		order: 3;
		justify-self: auto;
		align-self: center;
		align-items: center;
	}

	.menu-toggle {
		display: block;
	}

	.main-navigation ul {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0.5rem 0;
		background: var(--reencle-header-bg);
		box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
		z-index: 50;
	}

	.main-navigation.toggled ul {
		display: flex;
	}

	.main-navigation ul a {
		display: block;
		padding: 0.85rem var(--reencle-gap);
	}

	.main-navigation ul a::after {
		display: none;
	}
}

/* Przyciski ----------------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2.25rem;
	border: 2px solid transparent;
	border-radius: 999px;
	font: inherit;
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: opacity 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.btn--primary {
	background: var(--reencle-header-text);
	color: var(--reencle-header-bg);
}

.btn--primary:hover {
	opacity: 0.9;
}

.btn--ghost {
	background: rgba(0, 0, 0, 0.25);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.65);
}

.btn--ghost:hover {
	background: rgba(255, 255, 255, 0.16);
}

.btn--dark {
	background: var(--reencle-header-bg);
	color: var(--reencle-header-text);
}

.btn--dark:hover {
	opacity: 0.9;
}

/* Hero (strona główna) --------------------------------------------------- */

.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	overflow: hidden;
	isolation: isolate;
}

.hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.45) 100%);
	z-index: -1;
}

.hero__content {
	max-width: 860px;
	padding: calc(var(--reencle-header-h) + 2.5rem) var(--reencle-gap) 4rem;
}

.hero__title {
	margin: 0 0 1.25rem;
	font-size: clamp(2.5rem, 1.4rem + 4.6vw, 4.5rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.01em;
	text-wrap: balance;
}

.hero__desc {
	margin: 0 auto 2.5rem;
	max-width: 48ch;
	font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.35rem);
	font-weight: 600;
	line-height: 1.6;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

@media (max-width: 600px) {
	.hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hero__actions .btn {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero__video {
		display: none;
	}

	.hero {
		background: var(--reencle-header-bg);
	}
}

/* Sekcja "features" pod hero ------------------------------------------- */

.features {
	background: var(--reencle-header-bg);
	padding: clamp(2rem, 5vw, 5rem) var(--reencle-gap);
}

.features__grid {
	max-width: var(--reencle-max-width);
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.features__media {
	margin: 0;
	min-height: 340px;
	border-radius: 18px;
	overflow: hidden;
}

.features__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.features__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	padding: clamp(1.75rem, 3vw, 3.5rem);
	border-radius: 18px;
	text-align: center;
}

.features__card h2 {
	margin: 0;
	font-size: clamp(1.5rem, 1rem + 2vw, 2.25rem);
	font-weight: 800;
	line-height: 1.15;
	color: #fff;
}

.features__card p {
	margin: 0;
	max-width: 36ch;
	font-weight: 600;
	line-height: 1.7;
}

.features__card--coral {
	background: #c67a54;
	color: #3a1c0e;
}

.features__card--orange {
	background: #e0a15a;
	color: #3a1c0e;
}

.features__card--green {
	background: #4e6b41;
	color: #eae4d3;
}

@media (max-width: 780px) {
	.features__grid {
		grid-template-columns: 1fr;
	}

	.features__media {
		min-height: 240px;
	}

	/* Naprzemiennie: zdjęcie, tekst, zdjęcie... */
	.features__grid > :nth-child(3) {
		order: 4;
	}

	.features__grid > :nth-child(4) {
		order: 3;
	}
}

/* Sekcja "ReencleMicrobe" -------------------------------------------------- */

.microbe {
	background: var(--reencle-peach);
	padding: clamp(3rem, 7vw, 6rem) var(--reencle-gap);
	color: #3a2417;
}

.microbe__inner {
	max-width: 1080px;
	margin-inline: auto;
}

.microbe__title {
	margin: 0 0 1.5rem;
	text-align: center;
	font-size: clamp(1.8rem, 1.2rem + 3vw, 3rem);
	font-weight: 800;
	color: var(--reencle-header-bg);
}

.microbe__lead,
.microbe__note {
	margin: 0 auto;
	max-width: 66ch;
	text-align: center;
	font-size: clamp(1.05rem, 0.98rem + 0.5vw, 1.3rem);
	font-weight: 600;
	line-height: 1.7;
}

.microbe__lead {
	margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.microbe__note {
	margin-block: clamp(2rem, 5vw, 3rem) clamp(2.5rem, 6vw, 4rem);
	max-width: 58ch;
}

.microbe .accent {
	color: var(--reencle-coral);
	font-weight: 800;
}

.microbe__videos {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.microbe__videos video {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 20px;
	background: #e7d3c2;
}

.microbe__split {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.microbe__copy > p:first-child {
	margin: 0 0 1rem;
	font-weight: 700;
}

.microbe__copy h3 {
	margin: 0 0 1.75rem;
	font-size: clamp(1.3rem, 1rem + 1.4vw, 1.85rem);
	font-weight: 800;
	line-height: 1.25;
	color: var(--reencle-header-bg);
}

.microbe__footnote {
	margin: 1.75rem 0 0;
	font-size: 0.85rem;
	color: #7a6a5c;
}

.microbe__media img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 780px) {
	.microbe__videos {
		grid-template-columns: 1fr;
	}

	.microbe__split {
		grid-template-columns: 1fr;
	}
}

/* Sekcja "video-wr" (opinie klientów w wideo) --------------------------- */

.video-wr {
	background: var(--reencle-color-bg);
	padding: clamp(3rem, 7vw, 6rem) var(--reencle-gap);
}

.video-wr__inner {
	max-width: var(--reencle-max-width);
	margin-inline: auto;
	text-align: center;
}

.video-wr__title {
	margin: 0 0 clamp(2rem, 5vw, 3rem);
	font-size: clamp(1.6rem, 1.15rem + 2vw, 2.4rem);
	font-weight: 800;
	color: var(--reencle-header-bg);
}

.video-wr__stats {
	list-style: none;
	margin: 0 0 clamp(2rem, 5vw, 3.5rem);
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
	max-width: 640px;
	margin-inline: auto;
}

.video-wr__stat-num {
	font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.2rem);
	font-weight: 800;
	color: var(--reencle-header-bg);
}

.video-wr__stat-num i {
	font-style: normal;
	color: var(--reencle-coral);
}

.video-wr__stat-label {
	margin-top: 0.35rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--reencle-color-muted);
}

.video-wr__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	margin-bottom: clamp(2rem, 5vw, 3rem);
}

.video-wr__card {
	position: relative;
	aspect-ratio: 9 / 16;
	border-radius: 20px;
	overflow: hidden;
	background: #1a1a1a;
}

.video-wr__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-wr__play {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	padding: 0;
	background: rgba(0, 0, 0, 0.4);
	cursor: pointer;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.15s ease, visibility 0.15s ease, background-color 0.15s ease;
}

.video-wr__play:hover {
	background: rgba(0, 0, 0, 0.5);
}

.video-wr__play-icon {
	width: 56px;
	height: 56px;
	color: #fff;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

.video-wr__card.is-active .video-wr__play {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.video-wr__review {
	position: absolute;
	left: 0.85rem;
	right: 0.85rem;
	bottom: 0.85rem;
	z-index: 2;
	padding: 0.85rem;
	border-radius: 14px;
	background: rgba(26, 26, 26, 0.55);
	backdrop-filter: blur(6px);
	text-align: left;
	color: #fff;
}

.video-wr__profile {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: 0.5rem;
}

.video-wr__avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
	flex: none;
}

.video-wr__profile-txt {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.video-wr__name {
	font-size: 0.85rem;
	font-weight: 700;
}

.video-wr__stars {
	height: 12px;
	width: auto;
}

.video-wr__quote {
	margin: 0;
	font-size: 0.85rem;
	font-weight: 600;
	line-height: 1.4;
}

@media (max-width: 780px) {
	.video-wr__grid {
		grid-template-columns: 1fr;
		max-width: 320px;
		margin-inline: auto;
	}

	.video-wr__stats {
		gap: 1rem;
	}
}

/* Sekcja "5 powodów / WIRED" -------------------------------------------- */

.wired {
	background: var(--reencle-color-bg);
	padding: clamp(3rem, 7vw, 6rem) var(--reencle-gap);
	padding-top: 0;
}

.wired__inner {
	max-width: var(--reencle-max-width);
	margin-inline: auto;
}

.wired__title {
	margin: 0 0 clamp(2.5rem, 6vw, 4.5rem);
	text-align: center;
	font-size: clamp(1.5rem, 1.1rem + 2vw, 2.25rem);
	font-weight: 800;
	line-height: 1.25;
	color: var(--reencle-header-bg);
}

.wired__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: clamp(1rem, 3vw, 2.5rem);
}

.wired__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	text-align: center;
}

.wired__item img {
	width: clamp(72px, 8vw, 96px);
	height: auto;
}

.wired__item p {
	margin: 0;
	max-width: 22ch;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.5;
	color: #3a2417;
}

@media (max-width: 860px) {
	.wired__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2.5rem 1.5rem;
	}
}

@media (max-width: 480px) {
	.wired__grid {
		grid-template-columns: 1fr;
	}
}

/* Sekcja CTA końcowa --------------------------------------------------- */

.cta {
	position: relative;
	grid-column: 1 / -1;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: clamp(460px, 48vw, 660px);
	padding: clamp(2.25rem, 5vw, 4rem) var(--reencle-gap) 0;
	text-align: center;
	background: var(--reencle-peach) url("../images/cta-bg.jpg") center bottom / cover no-repeat;
	overflow: hidden;
}

.single-product .cta {
	margin-top: 40px;
	margin-bottom: 0;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	border-radius: 0;
	overflow: hidden;
}

/* CTA na dole strony produktu dotyka stopki (jak na stronie głównej) */
.single-product .site-content {
	padding-bottom: 0;
}

.single-product div.product {
	margin-bottom: 0;
}

/* pełnoszerokościowe CTA (100vw) nie może wywołać poziomego scrolla */
.single-product #page {
	overflow-x: clip;
}

.cta__inner {
	position: relative;
	z-index: 2;
	max-width: 640px;
}

.cta__title {
	margin: 0 0 1.75rem;
	font-size: clamp(1.6rem, 1.2rem + 2vw, 2.4rem);
	font-weight: 800;
	line-height: 1.2;
	color: var(--reencle-header-bg);
}

.cta__product {
	position: relative;
	z-index: 1;
	width: min(560px, 88vw);
	min-width: 370px;
	height: auto;
	margin-top: auto;
	margin-bottom: 20px;
}

.cta__soil {
	position: absolute;
	left: 50%;
	bottom: -2px;
	z-index: 3;
	width: 102%;
	min-width: 900px;
	height: auto;
	transform: translateX(-50%);
	pointer-events: none;
}

/* Wpisy --------------------------------------------------------------------- */

.entry-header {
	margin-bottom: 1rem;
}

.entry-title {
	margin: 0 0 0.5rem;
}

.entry-title a {
	text-decoration: none;
	color: inherit;
}

.entry-meta,
.entry-footer {
	color: var(--reencle-color-muted);
	font-size: 0.875rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

article {
	margin-bottom: calc(var(--reencle-gap) * 2);
	padding-bottom: var(--reencle-gap);
	border-bottom: 1px solid var(--reencle-color-border);
}

.post-thumbnail {
	display: block;
	margin-bottom: 1rem;
}

/* Komentarze --------------------------------------------------------------- */

.comments-area {
	margin-top: calc(var(--reencle-gap) * 2);
	padding-top: calc(var(--reencle-gap) * 2);
	border-top: 1px solid var(--reencle-color-border);
}

.comments-title,
.comment-reply-title {
	font-size: clamp(1.35rem, 1.1rem + 1vw, 1.6rem);
	font-weight: 800;
	color: var(--reencle-header-bg);
	margin: 0 0 1.5rem;
}

.comment-list {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}

.comment-list .comment-body {
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--reencle-color-border);
}

.comment-list > .comment:first-child > .comment-body {
	padding-top: 0;
}

.comment-list .children {
	list-style: none;
	margin: 0 0 0 1.5rem;
	padding: 0;
}

.comment-author .avatar {
	border-radius: 50%;
	margin-right: 0.75rem;
	vertical-align: middle;
}

.comment-author .fn {
	font-weight: 700;
	font-style: normal;
	color: var(--reencle-color-text);
}

.comment-metadata {
	margin-top: 0.25rem;
	font-size: 0.8rem;
}

.comment-metadata a {
	color: var(--reencle-color-muted);
	text-decoration: none;
}

.comment-content p {
	margin: 0.5rem 0 0;
}

.comment-reply-link {
	display: inline-block;
	margin-top: 0.5rem;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--reencle-color-accent);
	text-decoration: none;
}

.comment-reply-link:hover {
	text-decoration: underline;
}

.no-comments {
	color: var(--reencle-color-muted);
}

/* Formularz komentarza */

.comment-respond {
	background: #fff;
	border: 1px solid var(--reencle-color-border);
	border-radius: 14px;
	padding: 1.5rem;
}

.comment-notes {
	color: var(--reencle-color-muted);
}

.comment-form label {
	display: block;
	margin-bottom: 0.4rem;
	font-weight: 700;
	color: var(--reencle-color-text);
}

.comment-form p {
	margin: 0 0 1.25rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	display: block;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0.75rem 1rem;
	border: 1px solid var(--reencle-color-border);
	border-radius: 10px;
	background: #fff;
	font: inherit;
	color: var(--reencle-color-text);
}

.comment-form textarea {
	min-height: 140px;
	resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
	outline: 2px solid var(--reencle-color-accent);
	outline-offset: 1px;
	border-color: transparent;
}

.comment-form .comment-form-cookies-consent {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.comment-form .comment-form-cookies-consent input {
	width: auto;
	accent-color: var(--reencle-header-bg);
}

.comment-form .form-submit input[type="submit"] {
	background: #d86c4a;
	color: #fff;
	border: 0;
	border-radius: 999px;
	padding: 0.9rem 2rem;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: opacity 0.15s ease;
}

.comment-form .form-submit input[type="submit"]:hover {
	opacity: 0.9;
}

/* Stopka ----------------------------------------------------------------- */

.site-footer {
	background: var(--reencle-header-bg);
	color: var(--reencle-header-text);
}

.footer-inner {
	max-width: var(--reencle-max-width);
	margin-inline: auto;
	padding: 4rem var(--reencle-gap) 3rem;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: calc(var(--reencle-gap) * 2);
	align-items: start;
}

.footer-branding .custom-logo {
	width: 150px;
	height: auto;
}

.footer-branding .footer-title {
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--reencle-header-text);
}

.footer-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.35rem;
}

.footer-nav a {
	color: var(--reencle-header-text);
	text-decoration: none;
	font-weight: 700;
}

.footer-nav a:hover {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.footer-about-title,
.footer-about .widget-title {
	margin: 0 0 1.35rem;
	font-size: 1rem;
	font-weight: 800;
}

.footer-about p {
	margin: 0 0 1rem;
	max-width: 34ch;
	line-height: 1.75;
	font-weight: 600;
}

.footer-about p:last-child {
	margin-bottom: 0;
}

.footer-bottom {
	max-width: var(--reencle-max-width);
	margin-inline: auto;
	padding: 0 var(--reencle-gap) 2.5rem;
	font-size: 0.85rem;
	opacity: 0.7;
}

@media (max-width: 860px) {
	.footer-inner {
		grid-template-columns: 1fr;
		gap: calc(var(--reencle-gap) * 1.5);
		padding: 3rem var(--reencle-gap) 2rem;
	}
}

/* Kontakt ------------------------------------------------------------- */

.contact-section {
	width: 100%;
	padding-block: calc(var(--reencle-gap) * 2);
}

.contact-section__inner {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: calc(var(--reencle-gap) * 2.5);
	align-items: start;
}

.contact-section__intro .subheading {
	margin: 0 0 1.5rem;
	font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.25rem);
	font-weight: 800;
	color: var(--reencle-header-bg);
}

.contact-section__intro p {
	margin: 0 0 1.25rem;
	line-height: 1.75;
}

.contact-section__intro strong {
	font-weight: 800;
}

.contact-section__intro a {
	color: var(--reencle-color-accent);
	text-decoration: none;
}

.contact-section__intro a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.contact-form {
	background: none;
	border: 0;
	padding: 0;
}

.contact-form__title {
	margin: 0 0 1.5rem;
	font-size: clamp(1.35rem, 1.1rem + 1vw, 1.6rem);
	font-weight: 800;
	color: var(--reencle-header-bg);
}

.contact-form__notice {
	margin: 0 0 1.5rem;
	padding: 0.85rem 1rem;
	border-radius: 8px;
	font-weight: 600;
}

.contact-form__notice.is-success {
	background: #e5efe0;
	color: #2f5233;
}

.contact-form__notice.is-error {
	background: #f4e0dd;
	color: #7a2e26;
}

.contact-form .input-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.contact-form .form-control {
	position: relative;
	margin-bottom: 1.25rem;
}

.contact-form .input,
.contact-form .textarea {
	width: 100%;
	padding: 1.4rem 1rem 0.6rem;
	border: 1px solid #d8ccb6;
	border-radius: 10px;
	background: #fff;
	font: inherit;
	color: var(--reencle-color-text);
}

.contact-form .textarea {
	min-height: 140px;
	resize: vertical;
}

.contact-form .input:focus,
.contact-form .textarea:focus {
	outline: 2px solid var(--reencle-header-bg);
	outline-offset: 1px;
	border-color: transparent;
}

.contact-form .floating-label {
	position: absolute;
	left: 1rem;
	top: 1.05rem;
	color: var(--reencle-color-muted);
	pointer-events: none;
	transition: transform 0.12s ease, font-size 0.12s ease, color 0.12s ease;
}

.contact-form .input:focus + .floating-label,
.contact-form .input:not(:placeholder-shown) + .floating-label,
.contact-form .textarea:focus + .floating-label,
.contact-form .textarea:not(:placeholder-shown) + .floating-label {
	transform: translateY(-0.7rem);
	font-size: 0.75rem;
	color: var(--reencle-header-bg);
}

.contact-form .form-actions {
	margin-top: 0.5rem;
}

.contact-form .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2.75rem;
	border: 0;
	border-radius: 999px;
	background: var(--reencle-header-bg);
	color: var(--reencle-header-text);
	font: inherit;
	font-weight: 700;
	font-size: 1.05rem;
	cursor: pointer;
	transition: opacity 0.15s ease;
}

.contact-form .button:hover {
	opacity: 0.9;
}

.reencle-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

@media (max-width: 860px) {
	.contact-section__inner {
		grid-template-columns: 1fr;
		gap: calc(var(--reencle-gap) * 1.5);
	}

	.contact-form .input-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

/* WooCommerce - drobne poprawki ---------------------------------------- */

.woocommerce-page-content {
	width: 100%;
}

/* Strona produktu --------------------------------------------------------- */

.single-product #page {
	background: #fdf7f1;
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(300px, 1fr);
	gap: 30px;
	align-items: start;
}

.woocommerce div.product > .woocommerce-product-gallery,
.woocommerce div.product > .summary,
.woocommerce div.product > .entry-summary {
	width: auto !important;
	max-width: none;
	float: none !important;
	margin: 0 !important;
}

.woocommerce div.product > .woocommerce-tabs,
.woocommerce div.product > .related,
.woocommerce div.product > .upsells,
.woocommerce div.product > .up-sells {
	grid-column: 1 / -1;
}

/* bez kategorii / meta */
.woocommerce div.product .product_meta {
	display: none;
}

/* Tytuł - trochę mniejszy */
.woocommerce div.product .product_title {
	margin: 0;
	font-size: clamp(1.4rem, 1.05rem + 1.1vw, 1.9rem);
	font-weight: 800;
	line-height: 1.15;
	color: var(--reencle-header-bg);
}

/* Galeria - zdjęcie główne w kwadracie, zaokrąglone rogi */
.woocommerce div.product .woocommerce-product-gallery {
	position: relative;
	overflow: visible;
	display: block;
	max-width: 640px;
	margin-inline: auto !important;
}

/* kwadrat wymuszony na kontenerze flexslidera */
.woocommerce div.product .woocommerce-product-gallery > .flex-viewport,
.woocommerce div.product .woocommerce-product-gallery > .woocommerce-product-gallery__wrapper {
	height: auto !important;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 20px;
}

.woocommerce div.product .woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__wrapper {
	height: 100% !important;
}

.woocommerce div.product .woocommerce-product-gallery__image {
	height: 100%;
	overflow: hidden;
	border-radius: 20px;
}

.woocommerce div.product .woocommerce-product-gallery__image a,
.woocommerce div.product .woocommerce-product-gallery__image img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	border-radius: 20px;
	display: block;
}

.woocommerce div.product .woocommerce-product-gallery__trigger {
	top: 1rem;
	right: 1rem;
}

/* Miniatury - nakładka na dole zdjęcia głównego */
.woocommerce div.product .flex-control-thumbs {
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 14px;
	transform: none;
	display: flex !important;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	width: auto !important;
	max-height: none;
	margin: 0 !important;
	padding: 0;
	overflow: visible;
	z-index: 3;
}

.woocommerce div.product .flex-control-thumbs li {
	width: 54px !important;
	margin: 0 !important;
	list-style: none;
	float: none !important;
	aspect-ratio: 1 / 1;
}

.woocommerce div.product .flex-control-thumbs img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	border-radius: 10px;
	border: 2px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.32);
	opacity: 0.8;
	cursor: pointer;
	transition: opacity 0.15s ease, border-color 0.15s ease;
}

.woocommerce div.product .flex-control-thumbs img:hover,
.woocommerce div.product .flex-control-thumbs img.flex-active {
	opacity: 1;
	border-color: #fff;
}

/* Podsumowanie - karta (wysokość zsynchronizowana z galerią przez JS) */
.woocommerce div.product .summary,
.woocommerce div.product .entry-summary {
	background: #fff;
	border: 0;
	border-radius: 20px;
	padding: clamp(1.4rem, 2.4vw, 2rem);
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	margin: 0;
	color: var(--reencle-coral);
	font-size: 1.45rem;
	font-weight: 800;
}

/* Podtytuł + ocena pod nazwą */
.reencle-tagline {
	margin: 0.15rem 0 0.25rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--reencle-header-bg);
}

.reencle-rating {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.4rem;
}

.reencle-stars {
	color: #d86c4a;
	font-size: 1.05rem;
	letter-spacing: 2px;
	line-height: 1;
}

.reencle-rating__label {
	font-size: 0.9rem;
	color: var(--reencle-color-muted);
}

/* Warianty jako kółka-swatche (radio) */
.woocommerce div.product form.cart .variations {
	margin: 0 0 1rem;
}

.woocommerce div.product form.cart .variations,
.woocommerce div.product form.cart .variations tbody,
.woocommerce div.product form.cart .variations tr,
.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
	display: block;
	border: 0;
	padding: 0;
	text-align: left;
}

.woocommerce div.product form.cart .variations th.label {
	font-weight: 800;
	color: var(--reencle-header-bg);
	padding-bottom: 0.5rem;
}

.woocommerce div.product form.cart .variations select,
.woocommerce div.product form.cart .reset_variations {
	display: none !important;
}

.reencle-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.reencle-swatch {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 2px solid rgba(0, 0, 0, 0.15);
	padding: 0;
	cursor: pointer;
	background-clip: padding-box;
	outline: 2px solid transparent;
	outline-offset: 2px;
	transition: outline-color 0.12s ease;
}

.reencle-swatch.is-active {
	outline-color: var(--reencle-header-bg);
}

/* Dodaj do koszyka - bez ilości, pełna szerokość */
.woocommerce div.product form.cart {
	margin: 0;
	display: block;
}

.woocommerce div.product form.cart .quantity {
	display: none !important;
}

.woocommerce div.product form.cart .button,
.woocommerce div.product .single_add_to_cart_button,
.woocommerce div.product form.cart button.button {
	display: block;
	width: 100%;
	margin: 0;
	background: #d86c4a !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 999px !important;
	padding: 1.05rem 2rem;
	font-weight: 700;
	font-size: 1.02rem;
	letter-spacing: 0.01em;
	transition: opacity 0.15s ease;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce div.product .single_add_to_cart_button:hover {
	opacity: 0.9;
}

.woocommerce div.product form.cart .button.disabled,
.woocommerce div.product .single_add_to_cart_button.disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	border-bottom-color: transparent;
}

@media (max-width: 900px) {
	.woocommerce div.product {
		grid-template-columns: minmax(0, 1fr);
	}

	.woocommerce div.product .woocommerce-product-gallery {
		max-width: none;
	}

	/* na mobile miniatury pod zdjęciem, nie na nim */
	.woocommerce div.product .flex-control-thumbs {
		position: static;
		left: auto;
		right: auto;
		bottom: auto;
		justify-content: flex-start;
		margin-top: 10px !important;
	}

	.woocommerce div.product .flex-control-thumbs li {
		width: 64px !important;
	}

	.woocommerce div.product .flex-control-thumbs img {
		border-color: transparent;
		box-shadow: none;
		opacity: 0.6;
	}

	.woocommerce div.product .flex-control-thumbs img.flex-active,
	.woocommerce div.product .flex-control-thumbs img:hover {
		border-color: var(--reencle-header-bg);
	}
}

/* Sekcja foods-more (strona produktu) ---------------------------------- */

.foods-more {
	grid-column: 1 / -1;
	min-width: 0;
	background: #fff;
	border-radius: 22px;
	padding: clamp(1.25rem, 3vw, 2.25rem);
	margin-top: 10px;
	overflow: hidden;
}

.foods-more__inner {
	max-width: 100%;
	min-width: 0;
}

.foods-panels,
.foods-panel,
.foods-2col,
.foods-3col,
.foods-2col > *,
.foods-3col > * {
	min-width: 0;
}

.foods-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 8px;
	border-bottom: 1px solid var(--reencle-color-border);
	margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.foods-tab {
	appearance: none;
	border: 0;
	background: none;
	padding: 0.8rem 1rem;
	font: inherit;
	font-weight: 700;
	color: var(--reencle-color-muted);
	cursor: pointer;
	border-bottom: 3px solid transparent;
	margin-bottom: -1px;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.foods-tab:hover {
	color: var(--reencle-header-bg);
}

.foods-tab.is-active {
	color: var(--reencle-header-bg);
	border-bottom-color: var(--reencle-coral);
}

.foods-panel {
	display: none;
}

.foods-panel.is-active {
	display: block;
}

.foods-h {
	margin: 0 0 1.25rem;
	font-size: clamp(1.4rem, 1.1rem + 1.6vw, 2.1rem);
	font-weight: 800;
	color: var(--reencle-header-bg);
}

.foods-2col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: start;
}

.foods-media {
	border-radius: 18px;
	overflow: hidden;
	background: var(--reencle-peach);
}

.foods-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.foods-media--contain img {
	object-fit: contain;
	padding: 1.25rem;
}

/* akordeon */
.foods-acc__item {
	background: #ffe9db;
	border-radius: 12px;
	padding: 0 1.1rem;
	margin-bottom: 10px;
}

.foods-acc__q {
	appearance: none;
	border: 0;
	background: none;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.95rem 0;
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.foods-acc__title {
	font-size: 1.02rem;
	font-weight: 800;
	color: var(--reencle-header-bg);
}

.foods-acc__ic {
	flex: none;
	width: 20px;
	height: 20px;
	position: relative;
}

.foods-acc__ic::before,
.foods-acc__ic::after {
	content: "";
	position: absolute;
	background: var(--reencle-header-bg);
	transition: opacity 0.2s ease;
}

.foods-acc__ic::before {
	inset: 9px 0;
	height: 2px;
}

.foods-acc__ic::after {
	inset: 0 9px;
	width: 2px;
}

.foods-acc__item.is-open .foods-acc__ic::after {
	opacity: 0;
}

.foods-acc__a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.32s ease;
}

.foods-acc__a p {
	margin: 0;
	padding: 0.25rem 0 1.1rem;
	line-height: 1.7;
}

/* kroki / wideo */
.foods-3col {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.25rem, 3vw, 2rem);
}

.foods-step__video {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 16px;
	background: var(--reencle-peach);
	display: block;
}

.foods-step__text {
	margin: 0.9rem 0 0;
	line-height: 1.6;
}

/* zawiera / lista strzalek */
.foods-col .foods-titleb {
	margin: 0 0 0.35rem;
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--reencle-header-bg);
}

.foods-col .foods-sub {
	margin: 0 0 1rem;
	color: var(--reencle-color-muted);
}

.foods-arrow {
	list-style: none;
	margin: 0;
	padding: 0;
}

.foods-arrow li {
	position: relative;
	padding: 0.65rem 0 0.65rem 1.6rem;
	border-bottom: 1px solid var(--reencle-color-border);
	font-weight: 600;
}

.foods-arrow li::before {
	content: "\25B6";
	position: absolute;
	left: 0;
	top: 0.7rem;
	color: var(--reencle-coral);
	font-size: 0.75rem;
}

/* specyfikacja */
.foods-spec {
	margin: 0;
}

.foods-spec__row {
	display: grid;
	grid-template-columns: 40% 1fr;
	gap: 1rem;
	padding: 0.8rem 0;
	border-bottom: 1px solid var(--reencle-color-border);
}

.foods-spec dt {
	margin: 0;
	font-weight: 800;
	color: var(--reencle-header-bg);
}

.foods-spec dd {
	margin: 0;
}

/* lista ikon pod sekcja */
.foods-icons {
	grid-column: 1 / -1;
	min-width: 0;
	margin-top: 30px;
	overflow: hidden;
}

.foods-icons__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(10, minmax(0, 1fr));
	gap: 1.25rem 1rem;
}

.foods-icons__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	text-align: center;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--reencle-header-bg);
}

.foods-icons__item img {
	width: 64px;
	height: auto;
}

@media (max-width: 900px) {
	.foods-2col,
	.foods-3col {
		grid-template-columns: 1fr;
	}

	.foods-icons__list {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.foods-tabs {
		flex-wrap: nowrap;
		overflow-x: auto;
		scrollbar-width: none;
	}

	.foods-tabs::-webkit-scrollbar {
		display: none;
	}

	.foods-tab {
		white-space: nowrap;
	}
}

@media (max-width: 520px) {
	.foods-icons__list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.foods-spec__row {
		grid-template-columns: 1fr;
		gap: 0.15rem;
	}
}

/* Sekcja "features" z wideo (strona produktu) ------------------------- */

.rfeats {
	grid-column: 1 / -1;
	min-width: 0;
	margin-top: 40px;
}

.rfeats__inner {
	display: flex;
	flex-direction: column;
	gap: clamp(2.5rem, 6vw, 5rem);
}

.rfeats__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1.5rem, 4vw, 3.5rem);
	align-items: center;
}

.rfeats__row--rev .rfeats__media {
	order: -1;
}

.rfeats__text h2 {
	margin: 0 0 0.85rem;
	font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.25rem);
	font-weight: 800;
	color: var(--reencle-header-bg);
}

.rfeats__text p {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.7;
}

.rfeats__media {
	min-width: 0;
}

.rfeats__media video {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 20px;
	background: var(--reencle-peach);
}

/* poziom hałasu */
.rfeats__noise {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.rfeats__noise li {
	display: grid;
	grid-template-columns: 8rem 1fr auto;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.9rem;
}

.rfeats__noise-name {
	font-weight: 700;
	color: var(--reencle-header-bg);
}

.rfeats__noise-bar {
	height: 10px;
	border-radius: 999px;
	background: #e7d3c2;
	width: calc(var(--v) * 1.1%);
	min-width: 12px;
}

.rfeats__noise li.is-me .rfeats__noise-bar {
	background: var(--reencle-coral);
}

.rfeats__noise li.is-me {
	font-weight: 800;
}

.rfeats__noise-val {
	color: var(--reencle-color-muted);
	white-space: nowrap;
}

.rfeats__noise li.is-me .rfeats__noise-val {
	color: var(--reencle-coral);
}

/* wprowadzenie (wyśrodkowane) */
.rfeats__lead {
	text-align: center;
	max-width: 760px;
	margin-inline: auto;
}

.rfeats__lead h2 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.25rem);
	font-weight: 800;
	color: var(--reencle-header-bg);
}

.rfeats__lead p {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.7;
}

.rfeats__media--wide {
	max-width: 860px;
	margin-inline: auto;
}

/* porównanie */
.rfeats__compare {
	text-align: center;
}

.rfeats__compare h2 {
	margin: 0 0 0.5rem;
	font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.25rem);
	font-weight: 800;
	color: var(--reencle-header-bg);
}

.rfeats__compare > p {
	margin: 0 0 2rem;
	font-size: 1.05rem;
}

.rfeats__cmp-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
	max-width: 720px;
	margin-inline: auto;
}

.rfeats__cmp {
	background: #fff;
	border: 0;
	border-radius: 18px;
	padding: 1.75rem 1.5rem;
	text-align: center;
}

.rfeats__cmp--good {
	background: #f0f5ec;
}

.rfeats__cmp img {
	width: 150px;
	height: auto;
	margin: 0 auto 1rem;
	display: block;
}

.rfeats__cmp h3 {
	margin: 0 0 0.9rem;
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--reencle-header-bg);
}

.rfeats__cmp ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	font-size: 0.92rem;
	line-height: 1.5;
	text-align: center;
}

.rfeats__cmp ul li::before {
	display: inline-block;
	margin-right: 0.5rem;
	font-weight: 800;
	content: "\2715";
	color: #b98166;
}

.rfeats__cmp--good ul li::before {
	content: "\2713";
	color: #4e6b41;
}

@media (max-width: 780px) {
	.rfeats__row,
	.rfeats__cmp-grid {
		grid-template-columns: 1fr;
	}

	.rfeats__row--rev .rfeats__media {
		order: 0;
	}

	.rfeats__noise li {
		grid-template-columns: 6.5rem 1fr auto;
	}
}

/* Dolne sekcje strony produktu ------------------------------------------ */

.pcompost {
	grid-column: 1 / -1;
	min-width: 0;
	margin-top: 40px;
	text-align: center;
}

.pcompost__inner {
	max-width: 820px;
	margin-inline: auto;
}

.pcompost__h {
	margin: 0 0 1rem;
	font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.25rem);
	font-weight: 800;
	color: var(--reencle-header-bg);
}

.pcompost p {
	margin: 0 0 0.9rem;
	font-size: 1.05rem;
	line-height: 1.7;
}

.pcompost__icons {
	list-style: none;
	margin: 2rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 1.25rem;
}

.pcompost__icons li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--reencle-header-bg);
}

.pcompost__icons img {
	width: 72px;
	height: auto;
}

.pspec {
	grid-column: 1 / -1;
	min-width: 0;
	margin-top: 40px;
}

.pspec__inner {
	max-width: 820px;
	margin-inline: auto;
}

.pspec__h {
	margin: 0 0 1.25rem;
	text-align: center;
	font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.25rem);
	font-weight: 800;
	color: var(--reencle-header-bg);
}

.pspec__list {
	margin: 0;
}

.pspec__row {
	display: grid;
	grid-template-columns: 40% 1fr;
	gap: 1rem;
	padding: 0.9rem 0;
	border-bottom: 1px solid var(--reencle-color-border);
}

.pspec__row:first-child {
	border-top: 1px solid var(--reencle-color-border);
}

.pspec__row dt {
	margin: 0;
	font-weight: 800;
	color: var(--reencle-header-bg);
}

.pspec__row dd {
	margin: 0;
}

@media (max-width: 780px) {
	.pcompost__icons {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.pspec__row {
		grid-template-columns: 1fr;
		gap: 0.15rem;
	}
}

/* Sklep / archiwum produktów ------------------------------------------- */

.woocommerce-shop #page,
.post-type-archive-product #page,
.tax-product_cat #page,
.tax-product_tag #page {
	background: #fdf7f1;
}

.woocommerce .woocommerce-products-header__title,
.woocommerce h1.page-title {
	margin: 0 0 1.25rem;
	font-size: clamp(1.8rem, 1.3rem + 2vw, 2.8rem);
	font-weight: 800;
	color: var(--reencle-header-bg);
}

.woocommerce .woocommerce-result-count {
	color: var(--reencle-color-muted);
	font-size: 0.95rem;
	margin-bottom: 0;
}

.woocommerce .woocommerce-ordering select {
	border: 1px solid var(--reencle-color-border);
	border-radius: 999px;
	padding: 0.6rem 1.1rem;
	background: #fff;
	font: inherit;
}

.woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin: 1.75rem 0 0 !important;
	padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none !important;
}

.woocommerce ul.products li.product {
	width: auto !important;
	margin: 0 !important;
	float: none !important;
	clear: none !important;
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 18px;
	padding: 1rem 1rem 1.35rem;
	text-align: left;
}

.woocommerce ul.products li.product a img {
	margin: 0 0 1rem;
	border-radius: 12px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	margin: 0 0 0.35rem;
	padding: 0;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.3;
	color: var(--reencle-header-bg);
}

.woocommerce ul.products li.product .price {
	margin: 0 0 0.9rem;
	color: var(--reencle-coral) !important;
	font-size: 1.1rem;
	font-weight: 800;
}

.woocommerce ul.products li.product .price del {
	opacity: 0.5;
	font-weight: 600;
}

.woocommerce ul.products li.product .price ins {
	text-decoration: none;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
	margin: auto 0 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	background: var(--reencle-header-bg) !important;
	color: var(--reencle-header-text) !important;
	border: 0 !important;
	border-radius: 999px !important;
	padding: 0.8rem 1.4rem;
	font-weight: 700;
	font-size: 0.95rem;
	transition: opacity 0.15s ease;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover {
	opacity: 0.9;
}

.woocommerce ul.products li.product .added_to_cart {
	margin-top: 0.5rem;
	text-align: center;
	font-weight: 700;
	color: var(--reencle-header-bg);
}

.woocommerce span.onsale {
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
	margin: 0;
	min-width: 0;
	min-height: 0;
	padding: 0.35rem 0.8rem;
	border-radius: 999px;
	background: var(--reencle-coral);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 800;
	line-height: 1;
}

.woocommerce nav.woocommerce-pagination {
	margin-top: 2.5rem;
}

.woocommerce nav.woocommerce-pagination ul {
	border: 0;
	display: flex;
	justify-content: center;
	gap: 0.4rem;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: 0;
	margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	min-width: 40px;
	padding: 0.5rem 0.8rem;
	border-radius: 999px;
	background: #fff;
	color: var(--reencle-header-bg);
	font-weight: 700;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
	background: var(--reencle-header-bg);
	color: var(--reencle-header-text);
}

@media (max-width: 900px) {
	.woocommerce ul.products {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}
}

@media (max-width: 560px) {
	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}
}

/* Dodatki do produktu ("Dorzuć do zestawu") -------------------------- */

.reencle-addons {
	margin: 2rem 0 0;
	padding: 1rem 1.1rem;
	border: 1px solid var(--reencle-color-border);
	border-radius: 14px;
	background: #fff;
}

.reencle-addons__h {
	margin: 0 0 0.6rem;
	font-size: 0.9rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--reencle-color-muted);
}

.reencle-addon {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.55rem 0;
	cursor: pointer;
	flex-wrap: wrap;
}

.reencle-addon + .reencle-addon {
	border-top: 1px solid var(--reencle-color-border);
}

.reencle-addon__check {
	width: 18px;
	height: 18px;
	flex: none;
	accent-color: var(--reencle-header-bg);
}

.reencle-addon__body {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
	margin-right: auto;
}

.reencle-addon__name {
	font-weight: 700;
}

.reencle-addon__price {
	font-size: 0.85rem;
	color: var(--reencle-coral);
	font-weight: 800;
}

.reencle-addon__var {
	border: 1px solid var(--reencle-color-border);
	border-radius: 999px;
	padding: 0.4rem 0.8rem;
	font: inherit;
	background: #fff;
}

/* Koszyk (blok WooCommerce Cart) ---------------------------------------- */

body.woocommerce-cart #page,
body.woocommerce-checkout #page {
	background: #fdf7f1;
}

body.woocommerce-cart .entry-title,
body.woocommerce-checkout .entry-title {
	font-size: clamp(1.8rem, 1.3rem + 2vw, 2.8rem);
	font-weight: 800;
	color: var(--reencle-header-bg);
	margin-bottom: 1.75rem;
}

.wp-block-woocommerce-cart {
	font-family: var(--reencle-font);
	color: var(--reencle-color-text);
}

.wc-block-components-sidebar-layout.wc-block-cart {
	gap: var(--reencle-gap);
}

/* Szerokości kolumn liczone przez WooCommerce (65% / 35%) zakładają zerowy
   odstęp między nimi - odejmujemy połowę naszego gapu z każdej, żeby suma
   dalej dawała 100% i flexbox nie zawijał kolumn do nowego wiersza. */
.wc-block-cart__main {
	width: calc(65% - (var(--reencle-gap) / 2)) !important;
}

.wc-block-cart__sidebar {
	width: calc(35% - (var(--reencle-gap) / 2)) !important;
}

.wc-block-cart__main,
.wc-block-cart__sidebar {
	background: #fff;
	border: 1px solid var(--reencle-color-border);
	border-radius: 14px;
	padding: 1.5rem !important;
}

.wc-block-cart__totals-title {
	font-size: 1.4rem !important;
	font-weight: 800 !important;
	color: var(--reencle-header-bg);
	text-transform: none !important;
	margin-bottom: 0.5rem;
}

/* Lista produktów w koszyku */

.wc-block-cart-items {
	width: 100%;
	max-width: 100%;
}

.wc-block-cart-items__header {
	color: var(--reencle-color-muted);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	border-bottom: 1px solid var(--reencle-color-border);
}

/* Kolumna "Łącznie" niepotrzebna - cena jednostkowa jest już przy produkcie */
.wc-block-cart-items__header-total,
.wc-block-cart-item__total {
	display: none;
}

.wc-block-cart-items__row {
	border-bottom: 1px solid var(--reencle-color-border);
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
}

.wc-block-cart-items__row:last-child {
	border-bottom: 0;
}

.wc-block-cart-item__image img {
	border-radius: 10px;
	border: 1px solid var(--reencle-color-border);
}

.wc-block-components-product-name {
	color: var(--reencle-color-text);
	font-weight: 700;
	text-decoration: none;
}

.wc-block-components-product-name:hover {
	color: var(--reencle-color-accent);
}

.wc-block-components-product-metadata {
	color: var(--reencle-color-muted);
}

.wc-block-components-product-price .wc-block-components-formatted-money-amount,
.wc-block-cart-item__total .wc-block-components-formatted-money-amount {
	color: var(--reencle-coral);
	font-weight: 800;
}

.wc-block-components-quantity-selector {
	border: 1px solid var(--reencle-color-border);
	border-radius: 999px;
	background: #fff;
}

.wc-block-components-quantity-selector__button {
	color: var(--reencle-header-bg);
	font-weight: 700;
}

.wc-block-components-quantity-selector__input {
	font: inherit;
	color: var(--reencle-color-text);
	background: transparent;
}

.wc-block-cart-item__remove-link {
	color: var(--reencle-coral) !important;
	font-weight: 700;
	text-decoration: none;
}

.wc-block-cart-item__remove-link:hover {
	text-decoration: underline;
}

/* Podsumowanie zamówienia */

.wc-block-components-totals-item__label {
	color: var(--reencle-color-text);
}

.wc-block-components-totals-item__value {
	font-weight: 700;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--reencle-header-bg);
}

/* Kupon rabatowy */

.wc-block-components-panel__button {
	color: var(--reencle-color-accent);
	font-weight: 700;
}

.wc-block-components-totals-coupon__input input {
	border-radius: 999px !important;
	border: 1px solid var(--reencle-color-border) !important;
	font: inherit;
}

.wc-block-components-totals-coupon__button {
	border-radius: 999px !important;
	font-weight: 700;
}

/* Przycisk "Przejdź do kasy" */

.wc-block-cart__submit-button {
	background: #d86c4a !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 999px !important;
	padding: 1.05rem 2rem !important;
	font-weight: 700;
	font-size: 1.02rem;
	letter-spacing: 0.01em;
	transition: opacity 0.15s ease;
}

.wc-block-cart__submit-button:hover {
	opacity: 0.9;
}

/* Koszyk pusty */

.wp-block-woocommerce-empty-cart-block {
	background: #fff;
	border: 1px solid var(--reencle-color-border);
	border-radius: 14px;
	padding: 4rem 2rem;
	text-align: center;
}

.wc-block-cart__empty-cart__title {
	color: var(--reencle-header-bg);
	font-size: 1.5rem;
	font-weight: 800;
	margin: 0;
}

@media (max-width: 700px) {
	.wc-block-cart__main,
	.wc-block-cart__sidebar {
		width: 100% !important;
		padding: 1.1rem !important;
	}
}

/* Strona 404 -------------------------------------------------------------- */

body.error404 #page {
	background: #fdf7f1;
}

.error-404 {
	max-width: 560px;
	margin: 3rem auto 5rem;
	padding: 3.5rem 2.5rem;
	background: #fff;
	border: 1px solid var(--reencle-color-border);
	border-radius: 14px;
	text-align: center;
}

.error-404::before {
	content: "404";
	display: block;
	font-size: 4rem;
	font-weight: 800;
	line-height: 1;
	color: var(--reencle-coral);
	letter-spacing: 0.02em;
	margin-bottom: 0.75rem;
}

.error-404 .page-header {
	margin-bottom: 1rem;
}

.error-404 .page-title {
	font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem);
	font-weight: 800;
	color: var(--reencle-header-bg);
	margin: 0;
}

.error-404 .page-content p {
	color: var(--reencle-color-muted);
	margin: 0 0 1.75rem;
}

.error-404__home-link {
	display: inline-block;
	background: #d86c4a;
	color: #fff;
	border: 0;
	border-radius: 999px;
	padding: 0.9rem 2rem;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	transition: opacity 0.15s ease;
}

.error-404__home-link:hover {
	opacity: 0.9;
	color: #fff;
}

@media (max-width: 600px) {
	.error-404 {
		padding: 2.5rem 1.5rem;
	}

	.error-404::before {
		font-size: 3rem;
	}
}

/* Checkout (blok WooCommerce Checkout) ------------------------------------ */

.wp-block-woocommerce-checkout {
	font-family: var(--reencle-font);
	color: var(--reencle-color-text);
}

.wc-block-components-sidebar-layout.wc-block-checkout {
	gap: var(--reencle-gap);
}

.wc-block-checkout__main {
	width: calc(65% - (var(--reencle-gap) / 2)) !important;
}

.wc-block-checkout__sidebar {
	width: calc(35% - (var(--reencle-gap) / 2)) !important;
}

.wc-block-checkout__main,
.wc-block-checkout__sidebar {
	background: #fff;
	border: 1px solid var(--reencle-color-border);
	border-radius: 14px;
	padding: 1.75rem !important;
}

@media (max-width: 700px) {
	.wc-block-checkout__main,
	.wc-block-checkout__sidebar {
		width: 100% !important;
		padding: 1.25rem !important;
	}
}

/* Kroki formularza */

.wc-block-components-checkout-step {
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--reencle-color-border);
}

.wc-block-components-checkout-step:first-of-type {
	padding-top: 0;
}

.wc-block-components-checkout-step__title {
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--reencle-header-bg);
	margin: 0 0 1rem;
}

.wc-block-checkout__guest-checkout-notice {
	color: var(--reencle-color-muted);
	font-size: 0.85rem;
}

/* Pola formularza */

.wc-block-checkout__main input[type="text"],
.wc-block-checkout__main input[type="email"],
.wc-block-checkout__main input[type="tel"],
.wc-block-checkout__main input[type="number"],
.wc-block-checkout__main input[type="password"],
.wc-block-checkout__main input[type="url"],
.wc-block-checkout__main select,
.wc-block-checkout__main .components-combobox-control__input {
	border-radius: 10px !important;
	border-color: var(--reencle-color-border) !important;
	font-family: inherit;
}

.wc-block-checkout__main input:focus,
.wc-block-checkout__main select:focus,
.wc-block-checkout__main .components-combobox-control__input:focus {
	border-color: var(--reencle-color-accent) !important;
	box-shadow: 0 0 0 1px var(--reencle-color-accent) !important;
}

.wc-block-components-checkbox input[type="checkbox"] {
	accent-color: var(--reencle-header-bg);
}

/* Opcje wysyłki / płatności (przyciski radio) */

.wc-block-components-radio-control__option {
	border: 1px solid var(--reencle-color-border) !important;
	border-radius: 10px !important;
	margin-bottom: 0.6rem !important;
	box-shadow: none !important;
}

.wc-block-components-radio-control__option:after,
.wc-block-components-radio-control--highlight-checked:after {
	display: none !important;
}

.wc-block-components-radio-control__option-checked {
	border-color: var(--reencle-color-accent) !important;
	background: #fdf7f1;
}

.wc-block-components-radio-control__input:checked {
	border-color: var(--reencle-header-bg) !important;
}

.wc-block-components-radio-control__input:checked:before {
	background: var(--reencle-header-bg) !important;
}

/* Podsumowanie zamówienia w sidebarze */

.wc-block-components-checkout-order-summary__title-text {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--reencle-header-bg);
}

.wc-block-components-order-summary-item__image {
	display: none !important;
}

.wc-block-components-order-summary-item__description {
	padding-left: 0 !important;
}

.wc-block-components-notice-banner {
	border-radius: 10px;
}

.wc-block-checkout__terms {
	color: var(--reencle-color-muted);
	font-size: 0.85rem;
}

.wc-block-components-checkout-return-to-cart-button {
	color: var(--reencle-color-accent);
}

/* Przycisk "Kupuję i płacę" */

.wc-block-components-checkout-place-order-button {
	background: #d86c4a !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 999px !important;
	padding: 1.05rem 2rem !important;
	font-weight: 700;
	font-size: 1.02rem;
	letter-spacing: 0.01em;
	transition: opacity 0.15s ease;
}

.wc-block-components-checkout-place-order-button:hover {
	opacity: 0.9;
}

/* Strona podziękowania (zamówienie otrzymane) ----------------------------- */

.woocommerce-order {
	max-width: 900px;
}

p.woocommerce-thankyou-order-received {
	background: #fff;
	border: 1px solid var(--reencle-color-border);
	border-left: 4px solid var(--reencle-color-accent);
	border-radius: 10px;
	padding: 1.1rem 1.5rem;
	font-weight: 700;
	color: var(--reencle-header-bg);
	margin: 0 0 1.75rem;
}

.woocommerce-order-overview {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem 3rem;
	list-style: none;
	margin: 0 0 2.5rem;
	padding: 1.5rem;
	background: #fff;
	border: 1px solid var(--reencle-color-border);
	border-radius: 14px;
}

.woocommerce-order-overview li {
	border: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--reencle-color-muted);
}

.woocommerce-order-overview li strong {
	display: block;
	margin-top: 0.35rem;
	font-size: 1.15rem;
	text-transform: none;
	letter-spacing: normal;
	color: var(--reencle-header-bg);
	font-weight: 800;
}

.woocommerce-order-details__title,
.woocommerce-column__title {
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--reencle-header-bg);
	margin: 0 0 1rem;
}

.woocommerce-table.shop_table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border: 1px solid var(--reencle-color-border);
	border-radius: 14px;
	overflow: hidden;
	margin-bottom: 2.5rem;
}

.woocommerce-table.shop_table th,
.woocommerce-table.shop_table td {
	padding: 1rem 1.25rem;
	border-bottom: 1px solid var(--reencle-color-border);
	text-align: left;
}

.woocommerce-table.shop_table thead th {
	background: #fdf7f1;
	color: var(--reencle-color-muted);
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	font-weight: 700;
}

.woocommerce-table.shop_table tr:last-child th,
.woocommerce-table.shop_table tr:last-child td {
	border-bottom: 0;
}

.woocommerce-table .product-name a {
	color: var(--reencle-color-text);
	font-weight: 700;
	text-decoration: none;
}

.woocommerce-table .product-name a:hover {
	color: var(--reencle-color-accent);
}

.woocommerce-table .woocommerce-Price-amount {
	color: var(--reencle-coral);
	font-weight: 700;
}

.woocommerce-customer-details address {
	background: #fff;
	border: 1px solid var(--reencle-color-border);
	border-radius: 14px;
	padding: 1.5rem;
	font-style: normal;
	line-height: 1.7;
}

@media (max-width: 600px) {
	.woocommerce-order-overview {
		gap: 1rem 2rem;
		padding: 1.25rem;
	}
}

/* Węższy odstęp od krawędzi na mobile - wszędzie, gdzie ma to sens.
   Reguła musi być na końcu pliku, żeby wygrać w kaskadzie z pełnymi
   skrótami "padding" zdefiniowanymi wcześniej dla tych samych selektorów. */
@media (max-width: 600px) {
	.site-header-inner,
	.site-content,
	.site-content-inner,
	.hero__content,
	.features,
	.microbe,
	.wired,
	.cta {
		padding-inline: 8px;
	}

	.site-content {
		padding-top: calc(var(--reencle-header-h) + 40px);
	}

	.contact-section {
		padding-top: 0;
	}

	.wp-block-woocommerce-checkout.wc-block-checkout {
		padding-top: 0 !important;
	}

	.footer-inner,
	.footer-bottom {
		padding-inline: 12px;
	}
}
