/* =====================================================
   CSS VARIABLES
   ===================================================== */
:root {
	--bg: #ffffff;
	--surface: #ffffff;
	--surface-alt: #f8fafc;

	--text: #1f2937;
	--text-strong: #111827;
	--muted: #6b7280;

	--brand: #1ea97c;
	--brand-600: #179a70;
	--brand-100: #d7f6ea;
	--brand-50: #e9fbf4;
	--primary: var(--brand);

	--accent: #ffb703;
	--line: #e5e7eb;

	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 20px;

	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
	--shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

	--transition-fast: 0.2s ease;
	--transition-base: 0.3s ease;
}

/* =====================================================
   RESET & BASE STYLES
   ===================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

[hidden] {
	display: none !important;
}

html,
body {
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	color: var(--text);
	background: var(--bg);
	line-height: 1.6;
}

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

a,
button,
input,
select,
textarea,
summary {
	-webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li {
	overflow-wrap: break-word;
}

/* Focus accessibility */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.chip:focus-visible,
.size-btn:focus-visible,
.nav-toggle:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid rgba(30, 169, 124, 0.35);
	outline-offset: 3px;
	border-radius: var(--radius-sm);
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
.btn:focus:not(:focus-visible),
.chip:focus:not(:focus-visible),
.size-btn:focus:not(:focus-visible),
.nav-toggle:focus:not(:focus-visible),
summary:focus:not(:focus-visible) {
	outline: none;
}

/* =====================================================
   LAYOUT
   ===================================================== */

/* Container */
.container {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #fff;
	border-bottom: 1px solid var(--line);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 0;
}

.logo {
	font-weight: 600;
	font-size: clamp(14px, 2.5vw, 20px);
	color: var(--text);
	text-decoration: none;
}

/* Navigation */
.nav {
	position: relative;
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	background: #fff;
	border-radius: var(--radius-sm);
	padding: 10px;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	height: 2px;
	background: #1f2937;
	margin: 5px 0;
}

.nav-toggle .bar {
	display: block;
	width: 100%;
	height: 3px;
	background-color: #000;
	border-radius: 2px;
	transition: transform var(--transition-base), opacity var(--transition-base), background-color var(--transition-base);
}

.nav-list {
	display: flex;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-list a {
	color: var(--text);
	text-decoration: none;
	font-weight: 500;
	transition: color var(--transition-base);
}

.nav-list a:hover {
	color: var(--brand);
}

.header-cta {
	display: flex;
	gap: 10px;
	align-items: center;
}

/* Footer */
.site-footer {
	border-top: 1px solid var(--line);
	background: #fff;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	padding: 32px 0;
	justify-items: stretch;
}

.footer-grid > div:nth-child(1) {
	text-align: left;
}

.footer-grid > div:nth-child(2) {
	text-align: center;
}

.footer-grid > div:nth-child(3) {
	text-align: right;
}

.foot-list {
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
}

.foot-list a {
	color: var(--text);
	text-decoration: none;
	transition: color var(--transition-base);
}

.foot-list a:hover {
	color: var(--brand);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
	border-top: 1px solid var(--line);
}

.socials {
	display: flex;
	gap: 12px;
}

.socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #f5f5f5;
	border-radius: 50%;
	font-size: 1.4rem;
	color: #333;
	text-decoration: none;
	margin-left: 0;
	transition:
		background-color var(--transition-base),
		color var(--transition-base),
		transform var(--transition-base);
}

.socials a:hover {
	background-color: #4caf50;
	color: #fff;
	transform: translateY(-2px);
}

/* =====================================================
   COMPONENTS
   ===================================================== */

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 20px;
	border-radius: 8px;
	border: 1px solid transparent;
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition:
		transform var(--transition-base),
		box-shadow var(--transition-base),
		background-color var(--transition-base),
		border-color var(--transition-base),
		color var(--transition-base),
		opacity var(--transition-base);
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn:disabled,
button:disabled,
.size-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none !important;
	box-shadow: none !important;
}

.btn-lg {
	height: 48px;
	padding: 0 20px;
	font-size: 16px;
}

.btn-block {
	width: 100%;
}

.btn-primary {
	background: var(--brand);
	color: #fff;
	text-decoration: none;
}

.btn-primary:hover {
	background: var(--brand-600);
	box-shadow: 0 6px 20px rgba(30, 169, 124, 0.3);
	transform: translateY(-2px);
}

.btn-primary:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(30, 169, 124, 0.2);
}

.btn-secondary {
	background: #111827;
	color: #fff;
}

.btn-secondary:hover {
	background: #1f2937;
	box-shadow: 0 6px 20px rgba(17, 24, 39, 0.3);
	transform: translateY(-2px);
}

.btn-secondary:active {
	transform: translateY(0);
	background: #0f1419;
}

.btn-outline {
	background: #fff;
	color: var(--text);
	border-color: var(--line);
}

.btn-outline:hover {
	border-color: var(--brand);
	color: var(--brand);
	background: var(--brand-50);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-outline:active {
	transform: translateY(0);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-ghost {
	background: transparent;
	color: var(--text);
	border-color: #000;
}

.btn-ghost:hover {
	background: var(--line);
	border-color: var(--brand);
	color: var(--brand);
	transform: translateY(-2px);
}

.btn-ghost:active {
	transform: translateY(0);
	background: var(--brand-50);
}

.cart-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 16px;
	border-radius: 10px;
	border: 1px solid transparent;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	gap: 8px;
	background: var(--brand);
	color: #fff;
	white-space: nowrap;
	transition:
		transform var(--transition-base),
		box-shadow var(--transition-base),
		background-color var(--transition-base),
		color var(--transition-base);
}

.cart-button:hover {
	background: #178665;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(30, 169, 124, 0.3);
}

.cart-button:active {
	transform: translateY(0);
	background: #136b51;
	box-shadow: 0 2px 8px rgba(30, 169, 124, 0.2);
}

.cart-icon i {
	font-size: 18px;
	transition: transform var(--transition-base);
}

.cart-button:hover .cart-icon i {
	transform: scale(1.1);
}

.cart-count {
	background: #ffffff;
	color: #104e3c;
	padding: 2px 8px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	transition: transform var(--transition-base), background-color var(--transition-base);
}

.cart-button:hover .cart-count {
	transform: scale(1.05);
	background: #f0fdf4;
}

/* Badges */
.badge {
	background: var(--brand-50);
	color: var(--brand-600);
	padding: 6px 10px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 12px;
	transition: transform var(--transition-base), background-color var(--transition-base), color var(--transition-base);
}

.badge:hover {
	background: var(--brand-100);
	transform: scale(1.05);
}

/* Chips */
.chip {
	height: 32px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: #fff;
	cursor: pointer;
	font-weight: 600;
	transition:
		transform var(--transition-base),
		box-shadow var(--transition-base),
		background-color var(--transition-base),
		border-color var(--transition-base),
		color var(--transition-base);
}

.chip:hover {
	border-color: var(--brand);
	background: var(--brand-50);
	color: var(--brand-600);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.chip:active {
	transform: translateY(0);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.chip-active {
	border-color: var(--brand);
	background: var(--brand-50);
	color: var(--brand-600);
}

.chip-active:hover {
	background: var(--brand-100);
	border-color: var(--brand-600);
}

.chip:disabled,
.chip-disabled {
	opacity: 0.45;
	cursor: not-allowed;
	pointer-events: none;
}

/* Generic card */
.card {
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	padding: 24px;
	text-align: left;
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition:
		transform var(--transition-base),
		box-shadow var(--transition-base),
		border-color var(--transition-base),
		color var(--transition-base);
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--brand-50);
}

.card h3 {
	margin-bottom: 10px;
	font-size: 1.1rem;
	color: var(--text);
	transition: color var(--transition-base);
}

.card:hover h3 {
	color: var(--brand);
}

.card p {
	font-size: 0.95rem;
	color: var(--muted);
}

/* Icons */
.icon {
	font-size: 24px;
	margin-bottom: 8px;
	transition: transform var(--transition-base);
}

.card:hover .icon {
	transform: scale(1.1) rotate(5deg);
}

/* Form Elements */
.size-select {
	width: 100%;
	padding: 8px;
	margin: 10px 0 12px;
	font-size: 1rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: #fff;
	transition: border-color var(--transition-base), box-shadow var(--transition-base);
	cursor: pointer;
}

.size-select:hover {
	border-color: var(--brand);
	box-shadow: 0 2px 8px rgba(30, 169, 124, 0.1);
}

.size-select:focus {
	outline: none;
	border-color: var(--brand);
	box-shadow: 0 0 0 3px rgba(30, 169, 124, 0.1);
}

@media (hover: none) {
	.btn:hover,
	.btn-primary:hover,
	.btn-secondary:hover,
	.btn-outline:hover,
	.btn-ghost:hover,
	.cart-button:hover,
	.chip:hover,
	.card:hover,
	.review:hover,
	.step:hover,
	.benefit:hover,
	.usage-step:hover,
	.product-card:hover,
	.hero-media .media-card:hover {
		transform: none;
		box-shadow: inherit;
	}
}

/* =====================================================
   SECTIONS
   ===================================================== */

/* Hero Section */
.hero {
	position: relative;
	padding: 40px 0 24px;
	background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
	overflow: hidden;
}

.hero-inner {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 32px;
	align-items: center;
}

.hero-content {
	animation: slideInLeft 0.8s ease-out;
}

.hero-content h1 {
	font-size: 40px;
	line-height: 1.1;
	margin: 0 0 12px;
	animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-content p {
	color: var(--muted);
	margin: 0 0 20px;
	animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-actions {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
	animation: fadeInUp 0.6s ease-out 0.6s both;
}

.hero-actions .btn:hover {
	transform: translateY(-2px);
}

.hero-actions .btn-primary:hover {
	box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.hero-badges {
	display: flex;
	gap: 8px;
	margin-top: 16px;
	flex-wrap: wrap;
}

.hero-media {
	animation: slideInRight 0.8s ease-out 0.3s both;
}

.hero-media .media-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: 10px;
	box-shadow: var(--shadow);
	transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hero-media .media-card:hover {
	transform: translateY(-5px) rotate(1deg);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-media img,
.hero-media video {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 14px;
	object-fit: cover;
	transition: transform var(--transition-base);
}

.hero-media .media-card:hover img,
.hero-media .media-card:hover video {
	transform: scale(1.02);
}

/* Na desktopie: hero na ~jeden ekran (minus sticky header ~64px),
   treść wyśrodkowana w pionie; pionowe wideo kadrowane (cover),
   wysokość skalowana do viewportu. Na mobile (kolumna 1) — pełny kadr. */
@media (min-width: 769px) {
	.hero {
		min-height: calc(100vh - 64px);
		display: flex;
		align-items: center;
	}
	.hero-media .hero-video {
		height: clamp(460px, 64vh, 620px);
		object-fit: cover;
	}
}

/* Floating decorations */
.hero::before {
	content: '';
	position: absolute;
	top: 20%;
	left: 5%;
	width: 60px;
	height: 60px;
	background: rgba(34, 197, 94, 0.1);
	border-radius: 50%;
	animation: float 3s ease-in-out infinite;
}

.hero::after {
	content: '';
	position: absolute;
	top: 60%;
	right: 10%;
	width: 40px;
	height: 40px;
	background: rgba(59, 130, 246, 0.1);
	border-radius: 50%;
	animation: float 4s ease-in-out infinite reverse;
}

/* Value Section */
.value {
	padding: 80px 0;
	background:
		radial-gradient(circle at 20% 80%, rgba(30, 169, 124, 0.03) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(255, 183, 3, 0.02) 0%, transparent 50%),
		#f8f9fa;
	position: relative;
}

/* Foowe „kleksy" usunięte — sekcja spójna z płaskim, lekkim stylem reszty strony. */

/* Układ dwukolumnowy (editorial): nagłówek po lewej, tekst po prawej,
   wszystko wyrównane do lewej — lżejszy, nowoczesny odbiór niż wyśrodkowana proza. */
.value-content {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 56px;
	align-items: start;
	max-width: 1040px;
	margin: 0 auto 56px;
	text-align: left;
	position: relative;
	z-index: 1;
}

.value-content h2 {
	margin: 0;
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--text-strong);
}

.value-text {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.value-text p {
	margin: 0;
	max-width: 62ch;
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--muted);
}

/* Pierwszy akapit jako „lead" — lekka hierarchia */
.value-text p:first-child {
	color: var(--text);
}

.value-cards {
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* Value cards use .card from HTML — lekki, płaski styl spójny z .audience-card */
.value .card {
	background: #fff;
	padding: 28px 26px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	text-align: center;
	transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.value .card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}

.value .card h3 {
	font-size: 1.15rem;
	font-weight: 600;
	margin: 0 0 10px;
	color: var(--text-strong);
}

.value .card h3::before {
	content: none;
}

.value .card .value-icon img {
	display: block;
	width: 48px;
	height: 48px;
	margin: 0 auto 12px;
}

.value .card p {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}

/* How Section */
.how {
	padding: 80px 0;
}

.how h2 {
	margin: 0 0 16px;
	font-size: 2.5rem;
	text-align: center;
	font-weight: 700;
	color: var(--text);
}

.section-intro {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 48px;
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--muted);
}

.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-bottom: 48px;
}

.step {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 32px 24px;
	transition:
		transform var(--transition-base),
		box-shadow var(--transition-base),
		border-color var(--transition-base);
}

.step:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow);
	border-color: var(--brand);
}

.step h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin: 0 0 12px;
	color: var(--text);
}

.step > p {
	color: var(--muted);
	line-height: 1.6;
	margin: 0 0 16px;
}

.step-details {
	list-style: none;
	padding: 0;
	margin: 0;
}

.step-details li {
	padding: 8px 0 8px 28px;
	position: relative;
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.5;
}

.step-details li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--brand);
	font-weight: 700;
}

.how-cta {
	text-align: center;
	padding: 40px;
	background: var(--bg);
	border-radius: 16px;
	border: 2px dashed var(--brand);
}

.how-cta-text {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--text);
	margin: 0 0 20px;
}

.how-cta .btn {
	padding: 16px 48px;
	font-size: 1.1rem;
}

/* Reviews Section */
.reviews {
	padding: 56px 0;
	background: #f8f9fa;
}

.reviews h2 {
	margin: 0 0 32px;
	text-align: center;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.review {
	background: #fff;
	border-radius: 12px;
	padding: 16px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	font-size: 14px;
	transition: transform var(--transition-base), box-shadow var(--transition-base);
	animation: fadeInUp 0.5s ease forwards;
	opacity: 0;
}

.review:nth-child(1) { animation-delay: 0.1s; }
.review:nth-child(2) { animation-delay: 0.15s; }
.review:nth-child(3) { animation-delay: 0.2s; }
.review:nth-child(4) { animation-delay: 0.25s; }
.review:nth-child(5) { animation-delay: 0.3s; }
.review:nth-child(6) { animation-delay: 0.35s; }
.review:nth-child(7) { animation-delay: 0.4s; }
.review:nth-child(8) { animation-delay: 0.45s; }
.review:nth-child(9) { animation-delay: 0.5s; }
.review:nth-child(10) { animation-delay: 0.55s; }
.review:nth-child(11) { animation-delay: 0.6s; }
.review:nth-child(12) { animation-delay: 0.65s; }

.review:hover {
	transform: scale(1.03);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.review p {
	margin: 0 0 12px;
	line-height: 1.4;
}

.review .stars {
	color: #ffc107;
	font-size: 14px;
	margin-bottom: 8px;
	letter-spacing: 2px;
}

.review .date {
	font-size: 12px;
	color: #666;
	margin-bottom: 8px;
}

.author {
	text-align: right;
}

.author strong {
	font-size: 13px;
	color: var(--primary);
}

/* Shop Section */
.shop {
	padding: 56px 0;
	background: #fcfdfd;
}

.shop h2 {
	margin: 0 0 8px;
	font-size: 28px;
}

.section-sub {
	color: var(--muted);
	margin: 0 0 24px;
}

.section-header h2 {
	font-size: 2em;
	margin-bottom: 0.3em;
	color: #333;
}

.section-header p {
	color: #666;
	margin-bottom: 2em;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1400px;
	margin: 0 auto;
	align-items: start;
}

.product-card {
	background: #fff;
	border-radius: var(--radius-xl);
	padding: 0;
	overflow: hidden;
	scroll-margin-top: 90px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
	transition:
		transform var(--transition-base),
		box-shadow var(--transition-base);
}

.product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.product-media {
	overflow: hidden;
}

.product-media img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.4s ease;
}

.product-card:hover .product-media img {
	transform: scale(1.05);
}

/* Card body */
.card-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

/* Card header */
.card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.card-header h3 {
	font-size: 1.2rem;
	margin: 0;
	color: var(--text);
	font-weight: 700;
}

/* Size badge */
.size-badge {
	background: var(--brand-50);
	color: var(--brand-600);
	border: 1px solid var(--brand-100);
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 600;
	white-space: nowrap;
	flex-shrink: 0;
}

/* Savings banner */
.savings-banner {
	color: var(--brand-600);
	font-size: 0.82rem;
	font-weight: 600;
	padding: 2px 0;
}

/* Price display */
.price-display {
	display: flex;
	align-items: baseline;
	gap: 6px;
}

.price-amount {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--text-strong);
	line-height: 1;
}

.price-period {
	font-size: 0.85rem;
	color: var(--muted);
}

/* Info rows */
.info-rows {
	display: flex;
	flex-direction: column;
}

.info-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.875rem;
	color: var(--muted);
	padding: 5px 0;
}

.info-row strong {
	color: var(--text);
	font-weight: 600;
}

.info-row--total {
	border-top: 1px solid var(--line);
	margin-top: 4px;
	padding-top: 9px;
	font-weight: 600;
}

.info-row--total span {
	color: var(--text);
}

.info-row--total strong {
	color: var(--text-strong);
	font-size: 1rem;
}

/* Mode panel */
.mode-panel {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.product-card h3 {
	font-size: 1.2rem;
	margin: 0;
	color: var(--text);
}

.product-desc {
	color: var(--muted);
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
}

.product-more {
	font-size: 0.9rem;
}

.product-more summary {
	cursor: pointer;
	color: var(--brand);
	font-weight: 600;
}

.product-more p {
	margin-top: 8px;
	color: var(--muted);
	line-height: 1.6;
}

.price-row {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-top: 4px;
}

.price {
	font-size: 22px;
	font-weight: 700;
	color: var(--text);
}

.note {
	color: var(--muted);
	font-size: 12px;
}

.freq {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.size-selector {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.size-selector label {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text);
}

.size-options {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.size-btn {
	height: 52px;
	padding: 0 24px;
	border-radius: 10px;
	border: 2px solid var(--line);
	background: #fff;
	cursor: pointer;
	font-weight: 600;
	font-size: 1.05rem;
	flex: 1;
	min-width: 0;
	transition:
		transform var(--transition-base),
		border-color var(--transition-base),
		background-color var(--transition-base),
		color var(--transition-base),
		box-shadow var(--transition-base);
}

.size-btn:hover {
	border-color: var(--brand);
	background: var(--brand-50);
	transform: translateY(-2px);
}

.size-btn.active {
	border-color: var(--brand);
	background: var(--brand);
	color: #fff;
}


/* Purchase toggle */
.purchase-toggle {
	display: flex;
	gap: 0;
	border: 2px solid var(--brand);
	border-radius: 10px;
	overflow: hidden;
}

.toggle-btn {
	flex: 1;
	padding: 10px 8px;
	border: none;
	background: transparent;
	cursor: pointer;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--brand);
	transition: background var(--transition-base), color var(--transition-base);
	line-height: 1.2;
}

.toggle-btn:hover {
	background: var(--brand-50);
}

.toggle-btn.active {
	background: var(--brand);
	color: #fff;
}

/* Delivery & total rows */
.delivery-row,
.total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.9rem;
	color: var(--muted);
}

.delivery-row strong,
.total-row strong {
	color: var(--text);
	font-weight: 600;
}

.free-label {
	color: var(--brand) !important;
}

.savings-note {
	color: var(--brand) !important;
	font-weight: 600;
}

.size-dim {
	font-size: 0.75rem;
	font-weight: 400;
	color: var(--muted);
	margin-left: 4px;
}










/* =====================================================
   CART DRAWER
   ===================================================== */

.cart-drawer {
	position: fixed;
	inset: 0;
	z-index: 500;
	pointer-events: none;
}

.cart-drawer.is-open {
	pointer-events: all;
}

.cart-drawer-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.cart-drawer.is-open .cart-drawer-overlay {
	opacity: 1;
}

.cart-drawer-panel {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 400px;
	max-width: 100vw;
	background: #fff;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
}

.cart-drawer.is-open .cart-drawer-panel {
	transform: translateX(0);
}

/* Header */
.cart-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid var(--line);
}

.cart-drawer-title {
	font-weight: 700;
	font-size: 1rem;
	color: var(--text);
}

.drawer-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	background: var(--brand);
	color: #fff;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
	margin-left: 6px;
}

.cart-drawer-close {
	width: 36px;
	height: 36px;
	border: none;
	background: none;
	cursor: pointer;
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-sm);
	color: var(--muted);
	line-height: 1;
	transition: background var(--transition-fast), color var(--transition-fast);
}

.cart-drawer-close:hover {
	background: var(--surface-alt);
	color: var(--text);
}

/* Body */
.cart-drawer-body {
	flex: 1;
	overflow-y: auto;
	padding: 8px 24px;
}

/* Empty state */
.cart-drawer-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	gap: 10px;
	color: var(--muted);
	text-align: center;
	padding: 40px 0;
}

.cart-drawer-empty p {
	margin: 0;
	font-size: 0.95rem;
}

/* Item */
.cart-drawer-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px 0;
	border-bottom: 1px solid var(--line);
}

.cart-drawer-item:last-child {
	border-bottom: none;
}

.cart-item-info {
	flex: 1;
	min-width: 0;
}

.cart-item-name {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--text);
	margin-bottom: 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cart-item-meta {
	font-size: 0.78rem;
	font-weight: 500;
}

.cart-item-meta.is-sub {
	color: var(--brand-600);
}

.cart-item-meta.is-onetime {
	color: var(--muted);
}

.cart-item-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
	flex-shrink: 0;
}

.cart-item-price {
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--text-strong);
	white-space: nowrap;
}

.cart-item-remove {
	width: 26px;
	height: 26px;
	border: none;
	background: none;
	cursor: pointer;
	color: var(--muted);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	line-height: 1;
	transition: background var(--transition-fast), color var(--transition-fast);
}

.cart-item-remove:hover {
	background: #fee2e2;
	color: #dc2626;
}

/* Footer */
.cart-drawer-footer {
	border-top: 1px solid var(--line);
	padding: 20px 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cart-summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.875rem;
	color: var(--muted);
}

.cart-summary-row strong {
	color: var(--text);
	font-weight: 600;
}

.free-shipping-badge {
	color: var(--brand-600) !important;
	font-weight: 600;
}

.cart-summary-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 700;
	font-size: 1rem;
	color: var(--text-strong);
	padding-top: 10px;
	border-top: 1px solid var(--line);
}

/* FAQ Section */
.faq {
	padding: 56px 0;
	background: #fcfdfd;
}

.faq h2 {
	text-align: center;
	margin-bottom: 48px;
}

.faq details {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	margin-bottom: 12px;
	transition:
		transform var(--transition-fast),
		box-shadow var(--transition-fast),
		border-color var(--transition-fast);
	overflow: hidden;
}

.faq details:hover {
	border-color: var(--primary);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(34, 197, 94, 0.08);
}

.faq details[open] {
	border-color: var(--primary);
}

.faq summary {
	cursor: pointer;
	font-weight: 500;
	padding: 18px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	transition: color var(--transition-fast), background-color var(--transition-fast);
}

.faq summary:hover {
	color: var(--primary);
}

.faq summary::after {
	content: '+';
	font-size: 20px;
	font-weight: 300;
	color: #9ca3af;
	transition: transform var(--transition-fast), color var(--transition-fast);
}

.faq details[open] summary::after {
	transform: rotate(45deg);
	color: var(--primary);
}

.faq details[open] summary {
	border-bottom: 1px solid #f3f4f6;
}

.faq p {
	margin: 0;
	padding: 18px 20px;
	color: #6b7280;
	line-height: 1.6;
	font-size: 14px;
	animation: fadeIn 0.3s ease;
}

.faq p a {
	color: var(--primary);
	text-decoration: none;
}

.faq p a:hover {
	text-decoration: underline;
}

/* Trust Section */
.trust {
	padding: 20px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: #fff;
}

.trust-title {
	text-align: center;
	color: var(--muted);
	margin: 0 0 12px;
	font-size: 14px;
}

.logo-row {
	display: flex;
	gap: 24px;
	justify-content: center;
	flex-wrap: wrap;
}

.logo-dummy {
	color: #9ca3af;
	border: 1px dashed #e5e7eb;
	padding: 6px 10px;
	border-radius: 8px;
	font-size: 12px;
}

/* Benefits Section */
.benefits {
	padding: 56px 0;
	background: #f8f9fa;
	text-align: center;
}

.benefit-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5em;
}

.benefit {
	flex: 0 1 calc(25% - 1.125em);
	background: #fff;
	padding: 1.5em;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.benefit:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.benefit .icon {
	font-size: 2.5em;
	margin-bottom: 0.5em;
}

.benefit h3 {
	margin-bottom: 0.4em;
	color: #222;
}

/* CTA Section */
.cta {
	padding: 48px 0;
	background: linear-gradient(90deg, var(--brand-50), #fff);
}

.cta-inner {
	text-align: center;
}

.cta h2 {
	margin: 0 0 8px;
}

.cta p {
	color: var(--muted);
	margin: 0 0 16px;
}

/* Usage Section */
.usage {
	padding: 4em 0;
	background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
	text-align: center;
}

.usage h2 {
	margin: 0 0 8px;
	font-size: 2em;
	color: #222;
}

.usage .section-sub {
	color: var(--muted);
	margin-bottom: 24px;
}

.usage-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.8em;
	position: relative;
}

.usage-step {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 20px;
	text-align: left;
	box-shadow: var(--shadow);
	position: relative;
	transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.usage-step:hover {
	transform: translateY(-6px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
}

.usage-step h3 {
	margin: 0 0 8px;
	font-size: 18px;
}

.usage-step p {
	margin: 0;
	color: var(--muted);
}

.usage-step .icon {
	font-size: 2em;
	margin-bottom: 0.5em;
}

.step-num {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--brand-50);
	color: var(--brand-600);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	margin-bottom: 12px;
}

.usage p {
	font-size: 0.95em;
}

.usage-cta {
	margin-top: 3em;
}

.usage-extra {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-top: 40px;
}

.usage-extra-card {
	background: #ffffff;
	border: 1px solid #e6e8eb;
	border-radius: 12px;
	overflow: hidden;
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	position: relative;
}

.usage-extra-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.usage-extra-card img {
	width: 100%;
	height: 220px;
	object-fit: contain;
	padding: 8px;
	border-bottom: 1px solid #e6e8eb;
}

.usage-extra-card h4 {
	font-size: 18px;
	margin: 12px 2px 8px;
}

.usage-extra-card p {
	padding: 0 12px 16px;
	color: var(--muted);
}

.usage-extra-card .step-num {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--brand-50);
	color: var(--brand-600);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	margin-bottom: 12px;
}

.usage-extra-title {
	margin-top: 40px;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
}

.usage-extra-sub {
	text-align: center;
	color: var(--muted);
	margin-bottom: 20px;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(0.3) translateY(10px);
	}
	50% {
		opacity: 1;
		transform: scale(1.1);
	}
	100% {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* Hero */
@media (max-width: 768px) {
	.hero-inner {
		grid-template-columns: 1fr;
		gap: 24px;
		text-align: center;
	}

	/* Na mobile najpierw wideo, potem reszta hero */
	.hero-media {
		order: -1;
	}

	/* Wyższe wideo — nad zgięciem tylko wideo + H1, reszta poniżej */
	.hero-media .hero-video {
		height: clamp(340px, 56vh, 480px);
		object-fit: cover;
	}

	/* Przyciski hero wyśrodkowane na mobile */
	.hero-actions {
		justify-content: center;
	}

	.hero-content h1 {
		font-size: 32px;
	}
}

/* Value */
@media screen and (max-width: 1024px) {
	.value {
		padding: 60px 0;
	}

	.value-content {
		max-width: 900px;
		gap: 40px;
		margin-bottom: 48px;
	}

	.value-content h2 {
		font-size: 2rem;
	}

	.value-cards {
		gap: 28px;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}

	.value .card {
		padding: 36px 28px;
	}
}

@media screen and (max-width: 768px) {
	.value {
		padding: 50px 0;
	}

	.value::before {
		width: 80px;
		height: 80px;
		top: 20px;
		left: 5%;
	}

	.value::after {
		width: 60px;
		height: 60px;
		bottom: 30px;
		right: 8%;
	}

	.value-content {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 40px;
		padding: 0 20px;
	}

	.value-content h2 {
		font-size: 1.9rem;
		line-height: 1.2;
	}

	.value-text p {
		font-size: 1.05rem;
	}

	.value-cards {
		gap: 24px;
		grid-template-columns: 1fr;
		padding: 0 20px;
	}

	.value .card {
		padding: 32px 24px;
	}

	.value .card h3 {
		font-size: 1.2rem;
		margin-bottom: 14px;
	}

	.value .card h3::before {
		font-size: 1.8rem;
		margin: 0 0 10px;
	}
}

@media screen and (max-width: 480px) {
	.value {
		padding: 40px 0;
	}

	.value::before,
	.value::after {
		display: none;
	}

	.value-content {
		padding: 0 16px;
		margin-bottom: 32px;
	}

	.value-content h2 {
		font-size: 1.7rem;
		line-height: 1.15;
	}

	.value-text p {
		font-size: 1rem;
		line-height: 1.6;
	}

	.value-cards {
		padding: 0 16px;
		gap: 20px;
	}

	.value .card {
		padding: 24px 20px;
		border-radius: 12px;
	}

	.value .card h3 {
		font-size: 1.1rem;
		margin-bottom: 12px;
	}

	.value .card h3::before {
		font-size: 1.7rem;
		margin: 0 0 10px;
	}

	.value .card p {
		font-size: 0.95rem;
		line-height: 1.5;
	}

	.value .card:hover {
		transform: none;
		box-shadow: var(--shadow);
		border-color: var(--line);
	}
}

@media screen and (max-width: 360px) {
	.value {
		padding: 32px 0;
	}

	.value-content {
		padding: 0 12px;
	}

	.value-content h2 {
		font-size: 1.6rem;
	}

	.value-cards {
		padding: 0 12px;
		gap: 16px;
	}

	.value .card {
		padding: 20px 16px;
	}

	.value .card h3 {
		font-size: 1rem;
	}

	.value .card p {
		font-size: 0.9rem;
	}
}

@media screen and (min-width: 1200px) {
	.value {
		padding: 100px 0;
	}

	.value-content {
		margin-bottom: 80px;
	}

	.value-content h2 {
		font-size: 2.3rem;
	}

	.value-text p {
		font-size: 1.1rem;
	}

	.value-cards {
		gap: 40px;
	}

	.value .card {
		padding: 48px 36px;
	}

	.value .card h3 {
		font-size: 1.4rem;
	}
}

@media screen and (min-width: 1600px) {
	.value {
		padding: 120px 0;
	}

	.value-content h2 {
		font-size: 3.5rem;
	}

	.value-cards {
		max-width: 1400px;
		gap: 48px;
	}
}

/* How */
@media (max-width: 768px) {
	.steps {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

/* Reviews */
@media (max-width: 1024px) {
	.reviews-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.reviews-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.reviews {
		padding: 40px 0;
	}

	.reviews h2 {
		font-size: 24px;
		margin-bottom: 24px;
	}
}

/* Shop */
@media screen and (max-width: 1024px) {
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}






	.size-btn {
		height: 40px;
		padding: 0 16px;
		font-size: 0.9rem;
	}

}

@media screen and (max-width: 768px) {
	.product-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}







	.shop {
		padding: 40px 0;
	}

	.shop h2 {
		font-size: 24px;
	}

	.size-options {
		flex-direction: column;
	}

	.size-btn {
		flex: none;
		width: 100%;
		height: 40px;
	}

}

@media screen and (min-width: 1600px) {




	.size-btn {
		height: 56px;
		font-size: 1.1rem;
	}

}

/* FAQ */
@media (max-width: 768px) {
	.faq {
		padding: 40px 0;
	}

	.faq h2 {
		font-size: 24px;
		margin-bottom: 32px;
	}

	.faq summary {
		padding: 16px;
		font-size: 15px;
	}

	.faq p {
		padding: 16px;
	}
}

/* Mobile Navigation */
@media (max-width: 820px) {
	.nav {
		display: none;
	}
}

/* Tablet & Mobile */
@media (max-width: 960px) {
	.hero-inner {
		grid-template-columns: 1fr;
		padding: 8px 0;
	}

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

	.benefit {
		flex-basis: calc(50% - 0.75em);
	}

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

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

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

@media (max-width: 820px) {
	.hero-content h1 {
		font-size: 32px;
	}

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

	.footer-grid {
		grid-template-columns: 1fr 1fr 1fr;
		text-align: center;
		justify-items: center;
	}
}

/* Usage Extra */
@media (min-width: 600px) {
	.usage-extra {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.usage-extra {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Form Elements */
@media (max-width: 480px) {
	.benefit {
		flex-basis: 100%;
	}

	.size-select {
		font-size: 0.9rem;
		padding: 6px;
	}

	.header-cta {
		gap: 6px;
	}

	.header-cta .btn {
		padding: 8px 12px;
		font-size: 14px;
	}

	.step-num {
		width: 28px;
		height: 28px;
		font-size: 12px;
	}
}

@media (min-width: 481px) and (max-width: 768px) {
	.size-select {
		font-size: 1rem;
		padding: 8px;
	}

	.header-cta {
		gap: 8px;
	}

	.header-cta .btn {
		padding: 10px 16px;
		font-size: 15px;
	}

	.step-num {
		width: 32px;
		height: 32px;
		font-size: 13px;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.header-cta {
		gap: 12px;
	}

	.header-cta .btn {
		padding: 12px 18px;
		font-size: 16px;
	}
}

@media (min-width: 769px) {
	.size-select {
		font-size: 1.1rem;
		padding: 10px;
		max-width: 300px;
	}
}


/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	html:focus-within {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}


/* ===== Dla kogo (audience) ===== */
.audience {
	padding: 56px 0;
	background: #f8f9fa;
	text-align: center;
}

.audience h2 {
	margin: 0 0 8px;
}

.audience .section-sub {
	color: var(--muted);
	margin: 0 0 32px;
}

.audience-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5em;
}

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

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

.audience-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 24px 20px;
	text-align: center;
	transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.audience-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}

.audience-card .icon {
	font-size: 2.4em;
	margin-bottom: 10px;
}

.audience-card .icon img {
	width: 56px;
	height: 56px;
	display: block;
	margin: 0 auto;
}

/* SVG-ikony zamiast emoji (assets od klienta) */
.benefit .icon img {
	width: 56px;
	height: 56px;
	display: block;
	margin: 0 auto;
}
.usage-step .icon img {
	width: 52px;
	height: 52px;
	display: block;
	margin: 0 auto;
}
.benefits-points .bp-icon img {
	width: 44px;
	height: 44px;
	display: block;
}
.benefits-points .bp-icon:has(img) {
	background: transparent;
	width: 44px;
	height: 44px;
}

.audience-card h3 {
	margin: 0 0 8px;
	font-size: 18px;
	color: var(--text-strong);
}

.audience-card p {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.5;
}

/* ===== Zalety w punktach ===== */
.benefits-list {
	padding: 56px 0;
	background: linear-gradient(180deg, var(--brand-50) 0%, #fff 100%);
}

.benefits-list h2 {
	margin: 0 0 28px;
	text-align: center;
}

.benefits-points {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0;
}

.benefits-points li {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 22px 4px;
	border-bottom: 1px solid var(--line);
}

.benefits-points li:last-child {
	border-bottom: none;
}

.benefits-points .bp-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35em;
	line-height: 1;
	background: var(--brand-50);
	border-radius: 50%;
}

.benefits-points li span:last-child {
	color: var(--text);
	line-height: 1.55;
	font-size: 16px;
}

.benefits-points li strong {
	color: var(--text-strong);
}

/* ===== Licznik klientów w hero ===== */
.hero-social {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	max-width: 100%;
	margin-top: 24px;
	padding: 12px 18px;
	background: #f4fcf9;
	border: 1px solid var(--brand-100);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	font-size: 15px;
	line-height: 1.3;
	color: var(--text);
	text-align: left;
	animation: fadeInUp 0.6s ease-out 0.75s both;
}

.hero-social .rc-paw {
	font-size: 1.3em;
	line-height: 1;
	flex-shrink: 0;
}

.hero-social .odometer {
	flex-shrink: 0;
}

.hero-social .hero-social-count {
	flex-shrink: 0;
	font-size: 1.4em;
	font-weight: 800;
	line-height: 1;
	color: var(--brand-600);
	background: #fff;
	padding: 6px 10px;
	border: 1px solid var(--brand-100);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.hero-social-caption {
	font-weight: 500;
	min-width: 0;
	max-width: 210px;
}

/* Slot-machine odometer – w stylu marki */
.odometer {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	vertical-align: middle;
	font-size: 1.4em;
	font-weight: 800;
	line-height: 1;
	color: var(--brand-600);
	background: #fff;
	padding: 6px 8px;
	border: 1px solid var(--brand-100);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.odometer .reel {
	display: block;
	height: 1em;
	overflow: hidden;
	background: var(--brand-50);
	border-radius: 5px;
	font-variant-numeric: tabular-nums;
}

.odometer .reel-strip {
	display: flex;
	flex-direction: column;
	will-change: transform;
}

.odometer .reel-strip span {
	display: block;
	height: 1em;
	line-height: 1em;
	width: 0.82em;
	text-align: center;
}

/* ===== Podpowiedź rozmiaru ===== */
.size-guide {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 16px;
	max-width: 720px;
	margin: -4px auto 28px;
	padding: 14px 22px;
	background: #f4fcf9;
	border: 1px solid var(--brand-100);
	border-radius: 16px;
	font-size: 15px;
}

.size-guide-q {
	font-weight: 600;
	color: var(--text-strong);
}

.size-guide-q img {
	width: 20px;
	height: 20px;
	vertical-align: -4px;
	margin-right: 2px;
}

.size-guide-tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.size-tag {
	white-space: nowrap;
	display: inline-block;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 5px 14px;
	font-size: 14px;
	color: var(--muted);
	text-decoration: none;
	cursor: pointer;
	transition:
		border-color var(--transition-base),
		background var(--transition-base),
		color var(--transition-base),
		transform var(--transition-base);
}

.size-tag:hover,
.size-tag:focus-visible {
	border-color: var(--brand-600);
	background: var(--brand-50, #f4fcf9);
	color: var(--text-strong);
	transform: translateY(-1px);
}

.size-tag b {
	color: var(--brand-600);
}

@media (max-width: 560px) {
	.size-guide {
		flex-direction: column;
		gap: 12px;
		padding: 16px;
	}

	.size-guide-tags {
		width: 100%;
	}

	.size-tag {
		white-space: normal;
	}
}


/* ===== Naprzemienne tło sekcji: biały / jasnozielony ===== */
/* Kolejność: hero(biały) → audience(zielony) → benefits-list(biały) →
   how(zielony) → value(biały) → shop(zielony) → usage(biały) →
   benefits(zielony) → reviews(biały) → faq(zielony) → cta(biały) */
.hero,
.benefits-list,
.value,
.usage,
.reviews,
.cta {
	background: #fff;
}

.audience,
.how,
.shop,
.benefits,
.faq {
	background: #f2faf6;
}

/* Cienka krawędź na styku sekcji — wyraźniejszy podział bez „ciężkiego" tła */
.benefits-list,
.value,
.usage,
.reviews,
.cta,
.audience,
.how,
.shop,
.benefits,
.faq {
	border-top: 1px solid rgba(23, 154, 112, 0.10);
}

/* =====================================================
   Catalog page (page-sklep.php)
===================================================== */
.catalog-hero {
	padding: 48px 0 8px;
	background: #fff;
}

.catalog-hero h1 {
	font-size: 2rem;
	margin: 0 0 10px;
	color: var(--text-strong);
}

.catalog-intro {
	color: var(--muted);
	max-width: 760px;
	line-height: 1.6;
}

.catalog-section {
	padding: 48px 0;
}

/* Siatka akcesoriów: 3–4 produkty w rzędzie */
.catalog-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 1400px;
	margin: 0 auto;
	align-items: stretch;
}

@media (max-width: 1100px) {
	.catalog-grid { grid-template-columns: repeat(3, 1fr); }
}

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

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

.catalog-card .card-body {
	gap: 10px;
}

.catalog-card .product-media {
	display: block;
	aspect-ratio: 1 / 1;
	background: #f4f7f5;
}

.catalog-card .product-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.catalog-card-foot {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
	padding-top: 4px;
}

.catalog-price {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--text-strong);
	line-height: 1;
}

.catalog-price del {
	color: var(--muted);
	font-weight: 500;
	font-size: 0.9rem;
	margin-right: 4px;
}

.catalog-card-foot .btn {
	padding: 9px 16px;
	font-size: 0.9rem;
	white-space: nowrap;
}

.catalog-empty {
	color: var(--muted);
	background: #fff;
	border: 1px dashed var(--line);
	border-radius: var(--radius-xl, 16px);
	padding: 28px;
	text-align: center;
}