/* ===========================
   SECO COSMETICS – BASE/TOKENS
   =========================== */

:root {
	/* Kolory bazowe */
	--color-bg: #ffffff;
	--color-bg-alt: #f5f5f5;
	--color-bg-dark: #000000;

	--color-text: #111111;
	--color-text-muted: #666666;
	--color-text-inverse: #ffffff;

	--color-accent: #e34636;
	/* pomarańcz akcent */
	--color-accent-dark: #c0372d;
	/* ciemniejszy do hoverów */
	--color-border: #e0e0e0;

	/* Typografia – rodziny fontów */
	--font-base: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
		"Segoe UI", sans-serif;
	--font-mono: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
	--font-display: "Indivisible", "Space Mono", system-ui, sans-serif;

	/* Rozmiary fontów (px → rem) */
	--fs-body: 1rem;
	/* 16px */
	--fs-small: 0.875rem;
	/* 14px */
	--fs-menu: 1.125rem;
	/* 18px – element menu */
	--fs-topbar: 1rem;
	/* 16px – telefon/mail */
	--fs-section-lead: 1.6875rem;
	/* 27px */
	--fs-hero-kicker: 0.9375rem;
	/* 15px – "kosmetyki dla barberów" */
	--fs-hero-title: 2.5rem;
	/* 56px – "PROFESJONALNE" */
	--fs-hero-subtitle: 1.6875rem;
	/* 27px – leady */

	/* Wagi */
	--fw-regular: 400;
	--fw-medium: 500;
	--fw-semibold: 600;
	--fw-bold: 700;
	--fw-black: 900;

	/* Odstępy */
	--space-2xs: 4px;
	--space-xs: 8px;
	--space-sm: 12px;
	--space-md: 16px;
	--space-lg: 24px;
	--space-xl: 32px;
	--space-2xl: 48px;
	--space-3xl: 64px;

	/* Promienie, cienie */
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 16px;
	--radius-pill: 999px;

	--shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
	--shadow-card: 0 12px 40px rgba(0, 0, 0, 0.12);

	/* Animacje / przejścia */
	--transition-fast: 150ms ease-out;
	--transition-base: 200ms ease-out;

	/* Layout */
	--container-max-width: 1320px;
}

/* ===========================
   RESET BAZOWY
   =========================== */

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

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-base);
	font-size: var(--fs-body);
	line-height: 1.5;
	color: var(--color-text);
	background-color: var(--color-bg);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition-base);
}

a:hover,
a:focus-visible {
	color: var(--color-accent);
}

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

/* ===========================
   TYPOGRAFIA
   =========================== */

h1,
.heading-hero {
	font-family: var(--font-display);
	font-size: var(--fs-hero-title);
	line-height: 1.1;
	font-weight: var(--fw-regular);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.heading-hero-kicker {
	font-family: var(--font-base);
	font-size: var(--fs-hero-kicker);
	font-weight: var(--fw-medium);
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.heading-hero-subtitle {
	font-family: var(--font-base);
	font-size: var(--fs-hero-subtitle);
	font-weight: var(--fw-black);
}

.section-title {
	font-family: var(--font-base);
	font-size: var(--fs-section-lead);
	font-weight: var(--fw-black);
	text-transform: uppercase;
}

.text-small {
	font-size: var(--fs-small);
}

.text-mono {
	font-family: var(--font-mono);
}

/* nagłówek kontaktu */

/* menu główne */

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

.container {
	width: 100%;
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding-inline: var(--space-md);
}

.section {
	padding-block: var(--space-xl);
}

.section--tight {
	padding-block: var(--space-xl);
}

/* ===========================
   KOMPONENTY BAZOWE
   =========================== */

.card {
	background-color: #ffffff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
	border: none;
}

.card-body {
	padding: var(--space-lg);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-xs);
	padding: 0.75rem 1.75rem;
	border-radius: var(--radius-pill);
	border: 1px solid transparent;
	font-family: var(--font-base);
	font-size: 0.9375rem;
	font-weight: var(--fw-semibold);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition:
		background-color var(--transition-base),
		color var(--transition-base),
		border-color var(--transition-base),
		transform var(--transition-fast);
}

.btn:active {
	transform: translateY(1px);
}

.btn-primary {
	background-color: var(--color-accent);
	color: #ffffff;
}

.btn-primary:hover {
	background-color: var(--color-accent-dark);
}

.btn-outline {
	background-color: transparent;
	color: #ffffff;
	border-color: #ffffff;
}

.btn-outline:hover {
	background-color: #ffffff;
	color: #000000;
}

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

.btn-dark:hover {
	background-color: var(--color-accent);
	color: var(--color-text);
}

.btn-outline-dark {
	background-color: transparent;
	border-color: var(--color-bg-dark);
	color: var(--color-text);
}

.btn-outline-dark:hover {
	background-color: var(--color-bg-dark);
	color: var(--color-text-inverse);
}


/* ===========================
   PASEK TAGÓW / KARUZELA PRODUCENTÓW
   =========================== */

.promo-strip {
	padding-top: var(--space-lg);
	/* trochę bliżej menu niż wcześniej */
	padding-bottom: var(--space-lg);
}

.promo-strip-inner {
	border-bottom: 2px solid #9E9999;
	padding-bottom: var(--space-md);
	display: flex;
	align-items: flex-start;
	gap: var(--space-lg);
	padding-left: 45px;
}

/* wspólna baza dla kwadratów – mniejsze, żeby weszło 2 + 6 */

.promo-tag-card,
.promo-brand-logo {
	flex: 0 0 auto;
	width: 140px;
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
}

/* NEW / PROMOCJE */

.promo-tag-card {
	border: none;
	/* NEW bez ramki */
}


.promo-tag-img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* UPPERCUT – kwadraty z pełną ramką; ramka na kontenerze, NIE na SVG */

.promo-brand-scroller {
	flex: 1 1 auto;
	display: flex;
	gap: 1.5rem;
	/* taki sam odstęp jak między badgami */
	overflow-x: auto;
	/* WIĘKSZE WCIECIE pierwszego kwadratu */
	margin-left: 0;
	/* wyrównanie gapów */
}


.promo-brand-logo {
	border: 2px solid #000000;
}

.promo-brand-logo img {
	max-width: 80%;
	max-height: 80%;
	object-fit: contain;
}

/* STRZAŁKA PO PRAWEJ – też smuklejsza */

.promo-strip-arrow {
	flex: 0 0 auto;
	width: 40px;
	height: 140px;
	border: none;
	/* brak ramki */
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	cursor: pointer;
}

.promo-strip-arrow img {
	width: 40px;
	height: auto;
}

/* wrapper: kwadrat + podpis pod spodem */
.promo-brand {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	/* odstęp między kwadratem a tekstem */
}

/* sam kwadrat zostaje 140x140 tak jak jest */
.promo-brand-logo {
	border: 2px solid #000000;
	width: 140px;
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
}

/* podpis pod logo */
.promo-brand-name {
	margin: 0;
	font-size: 0.875rem;
	/* ~14px jak na makiecie */
	font-weight: 400;
	text-align: center;
}

/* ===========================
   HERO – slider + mały box
   =========================== */

.hero {
	padding-top: var(--space-xl);

}

/* proporcja 9–3 na desktopie + wspólna wysokość banerów */
@media (min-width: 992px) {
	.hero .col-lg-8 {
		flex: 0 0 75%;
		max-width: 75%;
	}

	.hero .col-lg-4 {
		flex: 0 0 25%;
		max-width: 25%;
	}

	.hero-main,
	.hero-side {
		height: 520px;
	}
}

@media (max-width: 991.98px) {

	.hero-main,
	.hero-side {
		height: auto;
	}
}

/* ========== DUŻY SLIDER ========== */

.hero-main {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background-color: #000000;
}

/* obrazek ma wypełniać cały baner */
.hero-main-media,
.hero-side-media {
	width: 100%;
	height: 100%;
}

.hero-main-media img,
.hero-side-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* tekst na środku, „przyklejony” do prawej */
.hero-main-overlay {
	position: absolute;
	inset: 0;
	padding: 3rem 6rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	text-align: right;
	color: #ffffff;
}

.hero-main-kicker {
	margin-bottom: var(--space-sm);
	font-family: var(--font-base);
	font-size: var(--fs-hero-kicker);
}

/* PRO – pomarańczowe, FESJONALNE – białe, font „systemowy” (u Ciebie Montserrat) */
.hero-main .heading-hero {
	margin-bottom: var(--space-sm);
	font-family: var(--font-base);
	font-weight: var(--fw-black);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-accent);
	/* PRO */
}

.hero-main-title-highlight {
	color: #ffffff;
	/* FESJONALNE */
}

/* "kosmetyki dla Barberów" – 15px Medium */
.hero-main-subtitle {
	font-family: var(--font-base);
	font-size: var(--fs-hero-kicker);
	font-weight: var(--fw-medium);
	margin-bottom: var(--space-xl);
}

/* CTA – pod tekstem, po prawej; wysokość wspólna z małym sliderem */
.hero-main-cta {
	margin-top: var(--space-md);

	padding: 0.7rem 2rem;
	background-color: transparent;
	color: #ffffff;
	border-radius: var(--radius-pill);
	border: 2px solid #ffffff;
	text-transform: none;
	align-self: flex-end;
}

.hero-main-cta:hover {
	background-color: #ffffff;
	color: #000000;
}

/* strzałki – większe, bez borderów; trochę dalej od tekstu */
.hero-main-arrows {
	position: absolute;
	top: 50%;
	left: 1.5rem;
	right: 1.5rem;
	/* więcej miejsca między tekstem a strzałką */
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.hero-arrow {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}

.hero-arrow img {
	width: 48px;
	height: 48px;
	object-fit: contain;
}

/* ========== HERO SLIDER TRACK ========== */

.hero-slider-track {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease, visibility 0.5s ease;
	will-change: opacity;
}

.hero-slide--active {
	opacity: 1;
	visibility: visible;
}

/* Slajd jako link (brak etykiety CTA) */
a.hero-slide {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

/* background-image via inline style (dynamic slider) */
.hero-slide .hero-main-media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

/* masks */
.hero-slide-mask {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero-slide-mask--dark  { background: rgba(0, 0, 0, 0.42); }
.hero-slide-mask--light { background: rgba(255, 255, 255, 0.3); }

/* text position variants */
.hero-slide .hero-main-overlay {
	position: absolute;
	inset: 0;
	padding: 3rem 4rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #ffffff;
	z-index: 2;
}

.hero-overlay-left   { align-items: flex-start; text-align: left; }
.hero-overlay-center { align-items: center;      text-align: center; }
.hero-overlay-right  { align-items: flex-end;    text-align: right; }

/* text-dark variant */
.hero-slide.text-dark .hero-main-overlay { color: #1a1a1a; }

/* dots */
.hero-dots {
	position: absolute;
	bottom: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5rem;
	z-index: 10;
}

.hero-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, 0.8);
	background: transparent;
	padding: 0;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}

.hero-dot--active {
	background: #ffffff;
	transform: scale(1.3);
}

/* video slides */
.hero-slide-video-embed,
.hero-slide-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: none;
}

/* ========== MAŁY SLIDER ========== */

.hero-side {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background-color: #000000;
	color: #ffffff;
}


/* tekst jako jeden blok, trochę wyżej; button na dole */
.hero-side-overlay {
	position: absolute;
	inset: 0;
	padding: 7.5rem 2.5rem 6rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 0.75rem;
	z-index: 2;
}

/* „Nie uczymy robić fryzur.” */
.hero-side-kicker {
	font-family: var(--font-base);
	font-size: 0.95rem;
	font-weight: var(--fw-regular);
	letter-spacing: 0;
	margin-bottom: 0.25rem;
}

/* „Uczymy budować charakter.” – blok tuż pod kickerem */
.hero-side-title {
	font-family: var(--font-base);
	font-size: var(--fs-hero-subtitle);
	/* ok. 27px */
	font-weight: var(--fw-black);
	line-height: 1.15;
}

/* CTA – wyrównany wysokością z dużym hero */
.hero-side-cta {
	align-self: flex-start;
	margin-top: auto;
	/* dociśnięty do dołu */
	margin-bottom: var(--space-3xl);
	/* ta sama wartość co w .hero-main-cta */
	padding: 0.7rem 2rem;
	border-radius: var(--radius-pill);
	border: 2px solid #ffffff;
	background: transparent;
	color: #ffffff;
	text-transform: none;
}

.hero-side-cta:hover {
	background: #ffffff;
	color: #000000;
}

/* ===========================
   BOXY POD SLIDEREM
   =========================== */

.benefit-strip {
	/* sekcja ma być blisko hero, ale z oddechem */
	padding-top: var(--space-xl);
	padding-bottom: var(--space-xl);
}

.benefit-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-lg);
}

/* wspólna baza dla każdego boxa */
.benefit-card {
	flex: 1 1 0;
	min-width: 0;
	min-height: 140px;
	padding: var(--space-lg) var(--space-xl);
	background-color: #ffffff;
	border-radius: 0;
	box-shadow: none;
}

.benefit-content {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	/* zmiana z space-between */
	height: 100%;
}

/* ostatni blok w boksie (meta+link lub sam link) doklejony do dołu, wyrównany do prawej */
.benefit-content>*:last-child {
	margin-top: auto;
	text-align: right;
	align-self: flex-end;
}

/* warianty ramek / tła */
.benefit-card--outlined {
	border: 2px solid #000000;
}

.benefit-card--filled {
	background-color: var(--color-accent);
	color: #000000;
}

.benefit-card--dashed {
	border: 2px dashed #000000;
}

.benefit-card--dark {
	background-color: #000000;
	color: #ffffff;
}

/* typografia w boxach */
.benefit-title {
	font-family: var(--font-base);
	font-size: 1.0625rem;
	/* 17px – lekko większe niż body */
	font-weight: var(--fw-bold);
	line-height: 1.3;
}

.benefit-title--accent {
	color: var(--color-accent);
}

.benefit-title--light {
	color: #ffffff;
}

/* małe info w rogu */
.benefit-meta {
	margin-top: var(--space-md);
	font-size: var(--fs-small);
	color: var(--color-text-muted);
}

/* link jako "przycisk" trochę niżej (bliżej krawędzi) */
.benefit-link {
	display: inline-block;
	margin-top: var(--space-xs);
	font-size: 0.9375rem;
}

.benefit-link-strong {
	font-weight: var(--fw-bold);
}

.benefit-link--light {
	color: #ffffff;
}

/* ===========================
   KATEGORIE PRODUKTOWE
   =========================== */

.product-categories {
	padding-top: var(--space-2xl);

}

.product-categories-header {
	margin-bottom: var(--space-xl);
}

.product-categories-header {
	position: relative;
}

/* tytuł dociśnięty w dół */
.product-categories-title {
	display: inline-block;
	margin: 0;
	line-height: 1.05;
	margin-bottom: -6px;
	/* klucz – dociąga tekst do linii */
}

/* linia na całą szerokość kontenera */
.product-categories-header::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 5px;
	/* przy dolnej krawędzi headera */
	height: 2px;
	background-color: #9E9999;
}


/* stary wariant – wyłączamy */

/* rząd kart + strzałek */
.product-categories-row {
	position: relative;
	display: flex;
	align-items: stretch;
	gap: var(--space-xs);
	padding: var(--space-3xl);
	padding-top: 0px;
}

/* viewport – przycina do 4 kart */
.product-categories-list {
	flex: 1 1 auto;
	overflow: hidden;
}

/* track – przesuwa się przez translateX */
.product-categories-track {
	display: flex;
	gap: var(--space-xs);
	transition: transform 0.4s ease;
	will-change: transform;
}

/* pojedyncza karta kategorii – szerokość ustawiana przez JS na desktop */
.category-card {
	flex: 0 0 auto;
	background-color: #ffffff;
	border-radius: 32px;
	border: 2px solid #000000;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

/* obrazek u góry, zaokrąglone tylko górne rogi */
.category-card-image {
	width: 100%;
	height: 260px;
	overflow: hidden;
}

.category-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* dół karty */
.category-card-body {
	flex: 1 1 auto;
	padding: var(--space-lg) var(--space-lg) var(--space-md);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* tytuł */
.category-card-title {
	font-family: var(--font-base);
	font-size: 1.375rem;
	/* ~22px */
	font-weight: var(--fw-black);
	line-height: 1.2;
	margin-bottom: var(--space-md);
	transition: color 0.2s ease;
}

/* linia pod tytułem */
.category-card-divider {
	height: 2px;
	background-color: #000000;
	margin-bottom: var(--space-md);
}

/* tekst opisowy */
.category-card-text {
	font-size: 0.9375rem;
	line-height: 1.5;
}

/* link "poznaj produkty" na dole */
.category-card-link {
	margin-top: var(--space-lg);
	font-size: 0.9375rem;
	font-weight: var(--fw-bold);
	color: var(--color-accent);
	display: inline-block;
	align-self: flex-end;
	/* do prawego boku kontenera */
	text-align: right;
	/* tekst wyrównany do prawej */
}

/* strzałki po bokach – pionowo wycentrowane */
.category-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}

.category-arrow--prev {
	left: 0px;
	/* tak jak na makiecie – lekko na zewnątrz kart */
}

.category-arrow--next {
	right: 0px;
}

.category-arrow img {
	display: block;
	width: 42px;
	height: auto;
}

/* ===========================
   ZYSKAJ WIĘCEJ, DOŁĄCZ DO NAS!
   =========================== */

.join-section {
	padding-bottom: var(--space-xl);
}

.join-header {
	/* korzysta z product-categories-header – bez zmian */
}

.join-row {
	align-items: stretch;
	/* obie kolumny równej wysokości */
}

/* wrapper pod zakładkę + panel */
.join-box {
	position: relative;
	margin-top: 3.25rem;
	/* miejsce na zakładkę */
	height: 100%;
}

/* zakładka u góry */
.join-tab {
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(calc(-100% + 2px));
	/* dolny border zakładki schodzi idealnie na górny border panelu */
	height: 54px;

	width: 80%;
	/* ~80% szerokości panelu */
	max-width: 100%;
	box-sizing: border-box;

	padding: 0 2.75rem;

	border-radius: 999px;
	/* domyślnie pigułka */
	border: 2px solid #000000;
	background-color: #ffffff;

	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	/* tekst do lewej */
	text-align: left;

	font-family: var(--font-base);
	font-size: 0.875rem;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* indywidualny – pigułka */
.join-box--individual .join-tab {
	border-radius: 999px;
}

/* biznes – prostokąt (bez zaokrągleń) */
.join-box--business .join-tab {
	border-radius: 0;
}

/* panel (główne pudełko) */
.join-panel {
	border-radius: 32px;
	overflow: hidden;
	height: 95%;
	display: flex;
	flex-direction: column;
}

/* lewy – biały, pełna ramka */
.join-panel--light {
	border: 2px solid #000000;
	background-color: #ffffff;
	color: #000000;
}

/* prawy – pomarańcz + przerywana ramka, prostokąt */
.join-panel--business {
	border-radius: 0;
	border: 2px dashed #000000;
	background-color: var(--color-accent);
	color: #000000;
}

/* nagłówki w panelach */
.join-panel-header {
	padding: 2.5rem 2.75rem 2rem;
}

.join-panel-title {
	font-family: var(--font-base);
	font-size: 1.5rem;
	font-weight: var(--fw-black);
	text-transform: uppercase;
	line-height: 1.2;
}

/* wersja biznesowa – tekst czarny na pomarańczowym tle */
.join-panel-header--business {
	padding-bottom: 1.75rem;
}

.join-panel-title--business {
	color: #000000;
}

/* obrazki */
.join-panel-image {
	width: 100%;
	height: 260px;
	overflow: hidden;
}

.join-panel-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* obrazek biznesowy z napisem "STREFA BARBER PRO" */
.join-panel-image--business {
	position: relative;
}

/* napis STREFA BARBER PRO jak na banerze */
.join-image-label {
	position: absolute;
	top: 8.4rem;
	left: 2.75rem;
	text-transform: uppercase;
	pointer-events: none;
}

/* górna linia: S T R E F A – rozstrzelone */
.join-image-label-top {
	font-family: var(--font-base);
	/* np. Space Mono / Montserrat */
	font-weight: var(--fw-medium);
	font-size: 1.2rem;
	letter-spacing: 0.8rem;
	/* duże rozstrzelenie jak na makiecie */
	color: #ffffff;
	margin-bottom: 0.2rem;
}

/* dolna linia: BARBER PRO – duży, mocny napis */
.join-image-label-bottom {
	font-family: var(--font-display);
	/* font hero */
	font-weight: var(--fw-black);
	font-size: 3.8rem;
	line-height: 1.1;

}

/* BARBER – pomarańczowy */
.join-image-label-barber {
	color: #e34636;
	/* Twój kolor akcentu */

}

/* PRO – biały */
.join-image-label-pro {
	color: #ffffff;
}

/* treść wewnątrz panelu */
.join-panel-content {
	padding: 2rem 2.75rem 0.75rem;
	flex: 1 1 auto;
	/* wypełnia wysokość panelu */
}

/* biznes – ta sama dolna wartość, żeby odstęp tekst–przycisk był identyczny */
.join-panel-content--business {
	padding-top: 2.25rem;
	padding-bottom: 0.75rem;
}

/* ostatni element treści bez dodatkowego marginesu na dole */
.join-panel-content>*:last-child {
	margin-bottom: 0;
}

/* notka w karcie indywidualnej */
.join-note {
	font-size: 0.85rem;
	color: var(--color-text-muted);
	margin: 0 0 1.5rem 2.25rem;
}

/* listy punktów */
.join-list {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
}

/* wspólny układ dla punktów */
.join-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.9375rem;
	font-weight: var(--fw-semibold);
	line-height: 1.5;
}

/* INDYWIDUALNY – kółka */
.join-list--individual li::before {
	content: "";
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background-color: #000000;
	margin-top: 0.25rem;
}

/* BIZNES – kwadraty + większy rozstrzał */
.join-list--business li {
	line-height: 1.8;
	/* wyższy wiersz */
	margin-bottom: 0.9rem;
	/* większy odstęp między punktami */
}

.join-list--business li::before {
	content: "";
	flex: 0 0 14px;
	width: 14px;
	height: 14px;
	background-color: #000000;
	margin-top: 0.35rem;
}

/* stopka z przyciskiem */
.join-panel-footer {
	padding: 0.35rem 2.75rem 1.75rem;
	display: flex;
	justify-content: flex-end;
	margin-top: auto;
	/* trzyma stopkę przy dolnej krawędzi panelu */
}

.join-panel-footer--business {
	padding-top: 0.75rem;
}

/* przyciski – pigułki, szerokie jak na makiecie */
.join-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 2.5rem;
	min-width: 70%;
	border-radius: 999px;
	border: 2px solid #000000;
	font-family: var(--font-base);
	font-size: 0.95rem;
	font-weight: var(--fw-semibold);
	text-transform: none;
	letter-spacing: 0.02em;
	text-decoration: none;
	cursor: pointer;
}

/* lewy – biały */
.join-btn--light {
	background-color: #ffffff;
	color: #000000;
}

.join-btn--light:hover {
	background-color: #000000;
	color: #ffffff;
}

/* prawy – czarny na pomarańczowym tle */
.join-btn--dark {
	background-color: #000000;
	color: #ffffff;
}

.join-btn--dark:hover {
	background-color: #111111;
}

/* ---------- RESPONSYWNOŚĆ ---------- */

@media (max-width: 991.98px) {

	.join-panel-header,
	.join-panel-content,
	.join-panel-footer {
		padding-inline: 2rem;
	}

	.join-note {
		margin-left: 2rem;
	}

	.join-btn {
		min-width: 100%;
	}

	.join-image-label {
		top: 2rem;
		left: 2rem;
	}

	.join-image-label-top {
		font-size: 1rem;
		letter-spacing: 0.6rem;
	}

	.join-image-label-bottom {
		font-size: 2.3rem;
	}
}

@media (max-width: 576px) {

	.join-panel-header,
	.join-panel-content,
	.join-panel-footer {
		padding-inline: 1.5rem;
	}

	.join-note {
		margin-left: 1.5rem;
	}

	.join-panel-title {
		font-size: 1.25rem;
	}

	.join-image-label {
		top: 1.75rem;
		left: 1.5rem;
	}

	.join-image-label-top {
		font-size: 0.9rem;
		letter-spacing: 0.45rem;
	}

	.join-image-label-bottom {
		font-size: 2rem;
	}
}


/* ===========================
   POZNAJ PROMOCJE / NOWOŚCI / BESTSELLERY
   =========================== */
.promo-products {
	padding-top: var(--space-3xl);
	padding-bottom: var(--space-3xl);
}

/* nagłówek z tytułem – linia jak w innych sekcjach */
.promo-products-header {
	position: relative;
	margin-bottom: var(--space-xl);
}

.promo-products-title {
	display: inline-block;
	margin: 0;
	line-height: 1.05;
	margin-bottom: -6px;
}

.promo-products-header::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 5px;
	height: 2px;
	background-color: #9e9999;
}

/* -------- BANER GÓRNY -------- */

.promo-banner {
	position: relative;
	border-radius: 0;
	overflow: hidden;
	margin-bottom: var(--space-2xl);
}

.promo-banner-media {
	width: 100%;
	height: 260px;
}

.promo-banner-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* overlay z gradientem i treścią */
.promo-banner-overlay {
	position: absolute;
	inset: 0;
	padding: 5.5rem 2.5rem 2.2rem;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	align-items: center;
	color: #ffffff;
}

/* gradient przyciemnienia prawej strony */
.promo-banner-overlay::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, 0.6) 45%,
			#000000 85%);
	mix-blend-mode: multiply;
	z-index: 0;
}

/* PRO / DUKTY + badge */
.promo-banner-heading,
.promo-banner-subtitle,
.promo-banner-cta {
	position: relative;
	z-index: 2;
	grid-column: 2;
	text-align: left;
	align-self: flex-start;
}

.promo-banner-heading {
	font-family: var(--font-base);
	font-size: 2.75rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-weight: var(--fw-black);
	color: #ffffff;
}

.promo-banner-heading-highlight {
	color: var(--color-accent);
}

/* badge promocyjny doklejony do nagłówka */
.promo-banner-heading::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 100%;
	transform: translate(-43px, -19%);
	width: 100px;
	height: 100px;
	background: url("../img/badges/promocje.svg") center/contain no-repeat;
	pointer-events: none;
}

.promo-banner-subtitle {
	font-size: 0.95rem;
	font-weight: var(--fw-medium);
	margin-bottom: var(--space-xs);
}

/* przycisk – węższy, bez rozciągania */
.promo-banner-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 1.2rem;
	border-radius: var(--radius-pill);
	border: 2px solid #ffffff;
	background: transparent;
	color: #ffffff;
	font-family: var(--font-base);
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: none;
	width: auto;
	min-width: 0;
	max-width: max-content;
	box-sizing: border-box;
}

.promo-banner-cta:hover {
	background-color: #ffffff;
	color: #000000;
}

/* kropki slidera – wyśrodkowane na dole banera */
.promo-banner-dots {
	position: absolute;
	left: 50%;
	bottom: 1.6rem;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	gap: 0.5rem;
}

.promo-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 1px solid #ffffff;
	background: transparent;
	padding: 0;
}

.promo-dot--active {
	background: #ffffff;
}

/* strzałki w banerze – przyklejone do lewej/prawej krawędzi */

.promo-banner-arrows {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
}

.promo-banner-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	padding: 0;
	pointer-events: auto;
}

.promo-banner-arrow:first-child {
	left: 1.8rem;
}

.promo-banner-arrow:last-child {
	right: 1.8rem;
}

.promo-banner-arrow img {
	width: 36px;
	height: 36px;
	display: block;
}


/* ===========================
   NAGŁÓWEK SEKCJI KARUZELI PRODUKTÓW
   =========================== */

.product-carousel-section__header {
	margin-bottom: var(--space-lg);
}

.product-carousel-section__header .section-title {
	position: relative;
	padding-bottom: var(--space-sm);
}

.product-carousel-section__header .section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 48px;
	height: 3px;
	background: var(--color-accent);
}

/* ===========================
   KARUZELA PRODUKTÓW
   Dodaj do styles.css po sekcji PROMO BANNER
   =========================== */

/* ---------- WRAPPER KARUZELI ---------- */

.product-carousel-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

/* Wewnętrzny kontener - z marginesami na strzałki */
.product-carousel-inner {
	flex: 1;
	margin: 0 60px;
	/* Przestrzeń na strzałki po bokach */
	overflow: hidden;
}

/* ---------- STRZAŁKI NAWIGACJI ---------- */

.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	padding: 0;
}

.carousel-arrow img {
	width: 32px;
	height: 32px;
	display: block;
}

.carousel-arrow:hover {
	opacity: 0.7;
}

.carousel-arrow--prev {
	left: 8px;
}

.carousel-arrow--next {
	right: 8px;
}

/* ---------- KONTENER KARUZELI ---------- */

.product-carousel {
	width: 100%;
}

.product-carousel-track {
	display: flex;
	align-items: stretch;
	gap: 18px;
	width: 100%; /* CLS fix: % flex-basis na kartach odnosi się do szerokości tracka */
	transition: transform 0.4s ease;
	will-change: transform;
}

/* ---------- KARTA PRODUKTU ---------- */

.product-card {
	flex: 0 0 calc((100% - 54px) / 4); /* CLS fix: 4 karty na desktop, gap=18px → 3*18=54px */
	min-width: 0;
	max-width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 18px 15px 15px;
	background: #ffffff;
	text-align: center;
	border: 1px solid #e0e0e0;
	border-radius: 20px;
}

/* ---------- BADGE PRODUKTU ---------- */

.product-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
}

.product-badge img {
	display: block;
	height: auto;
}

.product-badge--image img {
	width: 60px;
	height: auto;
	min-height: 60px;
}

/* Bestseller - okrągły badge */
.product-badge--bestseller img {
	width: 65px;
	height: 65px;
}

/* Sale - prostokątny z ramką */
.product-badge--sale img {
	width: 60px;
	height: auto;
}

/* New - prostokątny czerwony */
.product-badge--new img {
	width: 60px;
	height: auto;
}

/* Promocje - prostokątny z przerywaną ramką */
.product-badge--promo img {
	width: 60px;
	height: auto;
}

/* Badge container - multiple badges support (klaudiusz@ovh-dpakula v1.0.0 - 17.03.2026) */
.product-badges {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	display: flex;
	gap: 8px;
	flex-direction: column;
	align-items: flex-end;
}

.product-badges .product-badge {
	position: static;
	margin: 0;
}

/* Text-based badge (fallback when no image) */
.product-badge--text {
	padding: 4px 12px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 4px;
	line-height: 1.4;
	white-space: nowrap;
}

/* ---------- IKONA ULUBIONYCH ---------- */

.product-fav {
	position: absolute;
	top: 18px;
	left: 18px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 2;
	transition: transform 0.2s ease;
}

.product-fav:hover {
	transform: scale(1.1);
}

.product-fav:hover svg path {
	stroke: var(--color-accent);
}

/* ---------- ZDJĘCIE PRODUKTU ---------- */

.product-image {
	width: 100%;
	height: 170px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	margin-top: 30px;
}

.product-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* ---------- SEPARATOR POD ZDJĘCIEM ---------- */

.product-divider-top {
	width: 100%;
	height: 2px;
	background-color: #e0e0e0;
	border: none;
	margin: 0 0 10px;
}

/* ---------- NAZWA PRODUKTU ---------- */

.product-name {
	font-family: var(--font-base);
	font-size: 1rem;
	font-weight: var(--fw-regular);
	line-height: 1.35;
	color: #000000;
	margin: 0 0 10px;
	min-height: 2.7em;
	/* Stała wysokość na 2 linie */
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ---------- CENA GŁÓWNA ---------- */

.product-price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 5px;
	margin-bottom: 6px;
}

.product-price-value {
	font-family: var(--font-base);
	font-size: 1.6rem;
	font-weight: 300;
	color: #000000;
	letter-spacing: -0.01em;
}

.product-price-currency {
	font-family: var(--font-base);
	font-size: 1rem;
	font-weight: 300;
	color: #000000;
}

/* ---------- SEPARATOR POD CENĄ ---------- */

.product-divider {
	width: 55%;
	height: 1px;
	background-color: #e0e0e0;
	border: none;
	margin: 0 auto 6px;
}

/* ---------- CENA JEDNOSTKOWA / INFO POD CENĄ ---------- */

.product-unit-price {
	font-family: var(--font-base);
	font-size: 0.8125rem;
	font-weight: var(--fw-regular);
	color: #888888;
	margin: 0 0 12px;
	min-height: 1.2em;
}

/* Przekreślona cena */
.product-unit-price--strikethrough {
	text-decoration: line-through;
	color: #999999;
}

/* ---------- PRZYCISK CTA ---------- */

.product-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: auto;
	width: 88%;
	padding: 10px 16px;
	background-color: var(--color-accent);
	border: none;
	border-radius: 999px;
	cursor: pointer;
	transition: background-color 0.2s ease;
	margin-bottom: 8px;
}

.product-cta:hover {
	background-color: var(--color-accent-dark);
}

/* Wariant aktywny/hover - zielony */
.product-cta--active {
	background-color: #4CAF50;
}

.product-cta--active:hover {
	background-color: #43A047;
}

.product-cta-text {
	font-family: var(--font-base);
	font-size: 0.875rem;
	font-weight: var(--fw-bold);
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.product-cta-subtext {
	font-family: var(--font-base);
	font-size: 0.5625rem;
	font-weight: var(--fw-regular);
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.product-cta-icon {
	color: #ffffff;
	flex-shrink: 0;
}

/* ---------- TAGI / PRZYCISKI INFO ---------- */

.product-tags {
	width: 88%;
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-height: 62px;
	/* Stała wysokość na wyrównanie */
}

.product-tag {
	display: block;
	width: 100%;
	padding: 7px 10px;
	font-family: var(--font-base);
	font-size: 0.6875rem;
	font-weight: var(--fw-semibold);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-align: center;
}

/* Czarny tag */
.product-tag--black {
	background-color: #000000;
	color: #ffffff;
}

.product-tag--black strong {
	font-weight: var(--fw-bold);
}

/* Tag KOD (dwukolorowy) */
.product-code-tag {
	display: flex;
	width: 100%;
}

.product-code-label {
	flex: 0 0 auto;
	padding: 7px 10px;
	background-color: #000000;
	color: #ffffff;
	font-family: var(--font-base);
	font-size: 0.6875rem;
	font-weight: var(--fw-semibold);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.product-code-value {
	flex: 1;
	padding: 7px 10px;
	background-color: #ffffff;
	color: #000000;
	border: 1px solid #000000;
	border-left: none;
	font-family: var(--font-base);
	font-size: 0.6875rem;
	font-weight: var(--fw-semibold);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-align: center;
}

/* ---------- SEPARATOR PRZED PUNKTAMI ---------- */

.product-divider-bottom {
	width: 100%;
	height: 1px;
	background-color: #e0e0e0;
	border: none;
	margin: 10px 0 10px;
}

/* ---------- PUNKTY LOJALNOŚCIOWE ---------- */

.product-points {
	font-family: var(--font-base);
	font-size: 0.5625rem;
	font-weight: var(--fw-regular);
	color: #888888;
	line-height: 1.6;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin: 0;
	text-align: center;
}

.product-points strong {
	font-weight: var(--fw-bold);
	color: #000000;
}

/* ---------- RESPONSYWNOŚĆ ---------- */

@media (max-width: 1200px) {
	.product-card {
		flex: 0 0 calc(33.333% - 12px);
	}

	.product-carousel-inner {
		margin: 0 50px;
	}
}

@media (max-width: 991px) {
	.product-carousel-inner {
		margin: 0 45px;
	}

	.carousel-arrow img {
		width: 28px;
		height: 28px;
	}

	.product-card {
		flex: 0 0 calc(50% - 9px);
	}
}

@media (max-width: 767px) {
	.product-carousel-inner {
		margin: 0 40px;
	}

	.carousel-arrow img {
		width: 24px;
		height: 24px;
	}

	.product-card {
		flex: 0 0 calc(100% - 20px);
		min-width: 240px;
		max-width: 100%;
	}
}

@media (max-width: 576px) {
	.product-carousel-inner {
		margin: 0 35px;
	}

	.carousel-arrow img {
		width: 20px;
		height: 20px;
	}
}


/* ===========================
   SEKCJA BARBER PRO
   Dodaj do styles.css
   =========================== */

/* ---------- SEKCJA GŁÓWNA ---------- */

.barberpro-section {
	padding: 0;
	margin-top: var(--space-3xl);
}

/* ---------- TABS ---------- */

.barberpro-tabs {
	display: flex;
	width: 100%;
}

.barberpro-tab {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 30px;
	background: #ffffff;
	border: 2px solid #000000;
	border-bottom: none;
	cursor: pointer;
	font-family: var(--font-base);
	font-size: 1rem;
	font-weight: var(--fw-semibold);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #000000;
	transition: all 0.2s ease;
}

.barberpro-tab:first-child {
	border-right: 1px solid #000000;
}

.barberpro-tab:last-child {
	border-left: 1px solid #000000;
}

/* Tab aktywny */
.barberpro-tab--active {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: #ffffff;
}

.barberpro-tab-text {
	flex: 1;
}

.barberpro-tab-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 2px solid currentColor;
}

.barberpro-tab--active .barberpro-tab-icon {
	border-color: #ffffff;
}

/* ---------- CONTENT AREA ---------- */

.barberpro-content {
	background-color: var(--color-accent);
	padding: 30px;
}

/* ---------- GRID ---------- */

.barberpro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 20px;
}

/* ---------- NOWA STRUKTURA - INTRO + CAROUSEL ---------- */
/* Na desktop: pokazujemy jako grid */
.barberpro-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 20px;
}

.barberpro-intro {
  display: block;
}

.barberpro-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 20px;
}

.barberpro-carousel {
  display: flex;
  align-items: stretch;
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.barberpro-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

/* ---------- CZARNY BOX INFORMACYJNY ---------- */

.barberpro-info-box {
	background-color: #000000;
	color: #ffffff;
	padding: 40px 30px;
	display: flex;
	flex-direction: column;
	/* BRAK BORDER-RADIUS - ostre krawędzie */
}

.barberpro-info-title {
	font-family: var(--font-base);
	font-size: 2rem;
	font-weight: var(--fw-black);
	line-height: 1.1;
	margin: 0 0 20px;
	text-transform: uppercase;
	padding-top: 50px;
}

.barberpro-info-divider {
	width: 70%;
	height: 2px;
	background-color: #ffffff;
	border: none;
	margin: 0 0 20px;
}

.barberpro-info-subtitle {
	font-family: var(--font-base);
	font-size: 1.1rem;
	font-weight: var(--fw-bold);
	margin: 0 0 25px;
	text-transform: uppercase;
}

.barberpro-info-text {
	font-family: var(--font-base);
	font-size: 0.9rem;
	font-weight: var(--fw-regular);
	line-height: 1.6;
	margin: 0 0 15px;
	color: #ffffff;
}

/* Przycisk Dołącz do BARBERPRO - jedna linia */
.barberpro-info-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	padding: 14px 28px;
	background-color: var(--color-accent);
	border: none;
	border-radius: 999px;
	cursor: pointer;
	font-family: var(--font-base);
	font-size: 0.95rem;
	font-weight: var(--fw-regular);
	color: #000000;
	margin-top: auto;
	white-space: nowrap;
	transition: background-color 0.2s ease;
}

.barberpro-info-cta:hover {
	background-color: var(--color-accent-dark);
}

.barberpro-info-cta-highlight {
	font-weight: var(--fw-bold);
	color: white;
}

/* ---------- KARTA PRODUKTU BARBER PRO ---------- */

.barberpro-card {
	background: #ffffff;
	padding: 20px 15px 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	border: 1px solid #e0e0e0;
	/* BRAK BORDER-RADIUS - ostre krawędzie */
}

/* ---------- BADGE - większy ---------- */

.barberpro-badge {
	position: absolute;
	top: -15px;
	right: 12px;
	z-index: 2;
}

.barberpro-badge img {
	display: block;
	width: 130px;
	height: auto;
}

/* ---------- ZDJĘCIE PRODUKTU ---------- */

.barberpro-card-image {
	width: 100%;
	height: 210px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	margin-top: 40px;
}

.barberpro-card-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* ---------- SEPARATOR POD ZDJĘCIEM ---------- */

.barberpro-card-divider-top {
	width: 100%;
	height: 2px;
	background-color: #e0e0e0;
	border: none;
	margin: 0 0 10px;
}

/* ---------- NAZWA PRODUKTU ---------- */

.barberpro-card-name {
	font-family: var(--font-base);
	font-size: 1rem;
	font-weight: var(--fw-regular);
	line-height: 1.35;
	color: #000000;
	margin: 0 0 10px;
	min-height: 2.7em;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ---------- POZNAJ CENĘ - NIE ITALIC ---------- */

.barberpro-card-price {
	font-family: var(--font-base);
	font-size: 1.5rem;
	font-weight: 300;
	color: #c0c0c0;
	line-height: 1.2;
	margin: 0 0 8px;
	/* NIE MA font-style: italic */
}

/* ---------- PRODUCENT ---------- */

.barberpro-card-producer {
	font-family: var(--font-base);
	font-size: 0.75rem;
	font-weight: var(--fw-regular);
	color: #666666;
	margin: 0 0 15px;
}

/* ---------- PRZYCISK ZALOGUJ SIĘ - 2 KOLUMNY ---------- */

.barberpro-card-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 92%;
	padding: 10px 20px;
	margin-top: auto;
	background: transparent;
	border: 2px solid #000000;
	border-radius: 999px;
	cursor: pointer;
	transition: all 0.2s ease;
	margin-bottom: 15px;
}

.barberpro-card-cta:hover {
	background-color: #000000;
}

.barberpro-card-cta:hover .barberpro-card-cta-main,
.barberpro-card-cta:hover .barberpro-card-cta-sub,
.barberpro-card-cta:hover .barberpro-card-cta-icon {
	color: #ffffff;
}

/* Kolumna 1 - tekst (2 wiersze) */
.barberpro-card-cta-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
}

.barberpro-card-cta-main {
	font-family: var(--font-base);
	font-size: 1.1rem;
	font-weight: var(--fw-bold);
	font-style: italic;
	color: var(--color-accent);
	text-transform: uppercase;
	line-height: 1;
}

.barberpro-card-cta-sub {
	font-family: var(--font-base);
	font-size: 0.55rem;
	font-weight: var(--fw-regular);
	color: #000000;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 1;
}

/* Kolumna 2 - ikona koszyka */
.barberpro-card-cta-icon {
	color: #000000;
	flex-shrink: 0;
}

/* ---------- SEPARATOR ---------- */

.barberpro-card-divider {
	width: 100%;
	height: 1px;
	background-color: #e0e0e0;
	border: none;
	margin: 0 0 12px;
}

/* ---------- STOPKA KARTY ---------- */

.barberpro-card-footer {
	text-align: center;
}

.barberpro-card-footer-title {
	font-family: var(--font-base);
	font-size: 0.65rem;
	font-weight: var(--fw-bold);
	color: #000000;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin: 0 0 3px;
}

.barberpro-card-footer-text {
	font-family: var(--font-base);
	font-size: 0.6rem;
	font-weight: var(--fw-regular);
	color: #666666;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin: 0;
}

/* ---------- RESPONSYWNOŚĆ ---------- */

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

	.barberpro-info-box {
		grid-column: 1 / -1;
		padding: 30px;
	}

	.barberpro-info-title {
		font-size: 1.75rem;
	}
}

@media (max-width: 991px) {
	.barberpro-grid {
		grid-template-columns: 1fr 1fr;
		gap: 15px;
	}

	.barberpro-content {
		padding: 20px;
	}

	.barberpro-tab {
		padding: 15px 20px;
		font-size: 0.9rem;
	}

	.barberpro-tab-icon {
		width: 35px;
		height: 35px;
	}

	.barberpro-badge img {
		width: 85px;
	}
}

@media (max-width: 767px) {
	.barberpro-tabs {
		flex-direction: column;
	}

	.barberpro-tab {
		border: 2px solid #000000;
	}

	.barberpro-tab:first-child {
		border-right: 2px solid #000000;
		border-bottom: none;
	}

	.barberpro-tab:last-child {
		border-left: 2px solid #000000;
	}

	.barberpro-tab--active {
		border-color: var(--color-accent);
	}

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

	.barberpro-info-box {
		padding: 25px 20px;
	}

	.barberpro-info-title {
		font-size: 1.5rem;
	}

	.barberpro-card {
		max-width: 320px;
		margin: 0 auto;
		width: 100%;
	}
}

@media (max-width: 576px) {
	.barberpro-content {
		padding: 15px;
	}

	.barberpro-tab {
		padding: 12px 15px;
		font-size: 0.8rem;
	}

	.barberpro-tab-icon {
		width: 30px;
		height: 30px;
	}

	.barberpro-tab-icon svg {
		width: 14px;
		height: 10px;
	}

	.barberpro-badge img {
		width: 75px;
	}
}


/* ===========================
   SEKCJA BONUS NA START
   Dodaj do styles.css
   =========================== */

/* ---------- SEKCJA GŁÓWNA ---------- */

.bonus-section {
	padding-top: var(--space-3xl);
	padding-bottom: var(--space-3xl);
}

/* ---------- NAGŁÓWEK ---------- */

.bonus-header {
	margin-bottom: var(--space-xl);
}

/* ---------- GRID 2 BANERY ---------- */

.bonus-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
}

/* ---------- BANER ---------- */

.bonus-banner {
	position: relative;
	height: 300px;
	overflow: hidden;
	/* BRAK border-radius - ostre krawędzie */
}

/* Zdjęcie w tle */
.bonus-banner-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%);
}

/* Przyciemnienie */
.bonus-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,
			rgba(0, 0, 0, 0.4) 0%,
			rgba(0, 0, 0, 0.2) 50%,
			rgba(0, 0, 0, 0.3) 100%);
	z-index: 1;
}

/* ---------- BADGE ---------- */

.bonus-badge {
	position: absolute;
	top: 35px;
	right: 45px;
	z-index: 3;
}

.bonus-badge img {
	display: block;
	width: auto;
	height: auto;
}

/* Badge biały - PRO mocje */
.bonus-badge--white img {
	width: 85px;
}

/* Badge czerwony - -10% */
.bonus-badge--red img {
	width: 115px;
}

/* ---------- TREŚĆ BANERA ---------- */

.bonus-banner-content {
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translateY(-50%);
	z-index: 2;
}

.bonus-banner-title {
	font-family: var(--font-base);
	font-size: 1.6rem;
	font-weight: var(--fw-bold);
	color: #ffffff;
	line-height: 1.2;
	margin: 0 0 10px;
}

.bonus-banner-subtitle {
	font-family: var(--font-base);
	font-size: 1.1rem;
	font-weight: var(--fw-bold);

	color: var(--color-accent);
	margin: 0;
}

.bonus-banner-subtitle--white {
	color: #ffffff;
	font-style: normal;
	font-weight: var(--fw-regular);
	margin-bottom: 20px;
}

/* ---------- POLE Z KODEM ---------- */

.bonus-code-box {
	display: inline-flex;
	margin-top: 15px;
}

.bonus-code-label {
	padding: 10px 15px;
	background-color: var(--color-accent);
	color: #ffffff;
	font-family: var(--font-base);
	font-size: 0.8rem;
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.bonus-code-value {
	padding: 10px 25px;
	background-color: #ffffff;
	color: #000000;
	font-family: var(--font-base);
	font-size: 0.95rem;
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

/* ---------- CTA (DÓŁ BANERA) ---------- */

.bonus-banner-cta {
	position: absolute;
	bottom: 20px;
	right: 15px;
	left: 30px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
	z-index: 2;
}

/* Linia przed tekstem */
.bonus-cta-line {
	flex: 1;
	height: 1px;
	background-color: #ffffff;
	opacity: 0.6;
}

/* Tekst CTA */
.bonus-cta-text {
	font-family: var(--font-base);
	font-size: 0.9rem;
	font-weight: var(--fw-bold);
	color: #ffffff;
	white-space: nowrap;
}

.bonus-cta-text--italic {
	font-style: italic;
}

/* Strzałka w ramce */
.bonus-cta-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;

	flex-shrink: 0;
}

.bonus-cta-arrow img {
	width: 40px;
	height: auto;
}

/* ---------- RESPONSYWNOŚĆ ---------- */

@media (max-width: 991px) {
	.bonus-grid {
		gap: 20px;
	}

	.bonus-banner {
		height: 260px;
	}

	.bonus-banner-title {
		font-size: 1.4rem;
	}

	.bonus-banner-subtitle {
		font-size: 1rem;
	}

	.bonus-banner-content {
		left: 25px;
	}

	.bonus-banner-cta {
		left: 25px;
		right: 15px;
	}
}

@media (max-width: 767px) {
	.bonus-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.bonus-banner {
		height: 280px;
	}

	.bonus-banner-title {
		font-size: 1.5rem;
	}

	.bonus-badge--white img,
	.bonus-badge--red img {
		width: 70px;
	}
}

@media (max-width: 576px) {
	.bonus-banner {
		height: 250px;
	}

	.bonus-banner-content {
		left: 20px;
	}

	.bonus-banner-cta {
		left: 20px;
		right: 12px;
		bottom: 15px;
	}

	.bonus-banner-title {
		font-size: 1.3rem;
	}

	.bonus-banner-subtitle {
		font-size: 0.95rem;
	}

	.bonus-code-label {
		padding: 8px 12px;
		font-size: 0.7rem;
	}

	.bonus-code-value {
		padding: 8px 18px;
		font-size: 0.85rem;
	}

	.bonus-cta-arrow {
		width: 35px;
		height: 30px;
	}

	.bonus-cta-arrow img {
		width: 16px;
	}
}

/* ===========================
   SEKCJA EDUKACJA / SZKOLENIA / WEBINARY
   Dodaj do styles.css
   =========================== */

/* ---------- SEKCJA GŁÓWNA ---------- */

.edu-section {
	padding-top: var(--space-3xl);
	padding-bottom: var(--space-3xl);
}

/* ---------- KARUZELA WRAPPER ---------- */
/* Identyczna struktura jak product-carousel */

.edu-carousel-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.edu-carousel-inner {
	flex: 1;
	margin: 0 60px;
	overflow: hidden;
}

.edu-carousel {
	width: 100%;
}

.edu-carousel-track {
	display: flex;
	gap: 20px;
}

/* Strzałki karuzeli - używają tych samych klas co product-carousel */
/* .carousel-arrow, .carousel-arrow--prev, .carousel-arrow--next */

/* ---------- KARTA BAZOWA ---------- */

.edu-card {
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 20px;
	padding: 25px;
	display: flex;
	flex-direction: column;
}

/* ---------- KARTA VIDEO (DUŻA) ---------- */

.edu-card--video {
	flex: 0 0 520px;
	min-width: 500px;
}

.edu-card-video-grid {
	display: grid;
	grid-template-columns: 210px 1fr;
	gap: 25px;
	height: 100%;
}

/* Kolumna lewa - zdjęcie */
.edu-card-video-left {
	display: flex;
	flex-direction: column;
}

.edu-card-video-image {
	position: relative;
	width: 100%;
	height: 280px;
	border-radius: 100px;
	overflow: hidden;
}

.edu-card-video-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Ikona Play */
.edu-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	background: transparent;
	border: 2px solid #ffffff;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s ease;
}

.edu-play-btn:hover {
	background: rgba(255, 255, 255, 0.2);
}

.edu-card-video-title {
	font-family: var(--font-base);
	font-size: 1.05rem;
	font-weight: var(--fw-bold);
	color: #000000;
	line-height: 1.35;
	margin: 15px 0 0;
}

/* Kolumna prawa - treść */
.edu-card-video-right {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.edu-card-type {
	font-family: var(--font-base);
	font-size: 0.85rem;
	font-weight: var(--fw-bold);
	color: #000000;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin: 0 0 15px;
}

.edu-card-badge {
	display: inline-flex;
	flex-direction: column;
	background-color: var(--color-accent);
	padding: 10px 15px;
	margin-bottom: 20px;
	align-self: flex-start;
}

.edu-card-badge-title {
	font-family: var(--font-base);
	font-size: 0.75rem;
	font-weight: var(--fw-bold);
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.edu-card-badge-time {
	font-family: var(--font-base);
	font-size: 0.7rem;
	font-weight: var(--fw-regular);
	color: #ffffff;
}

.edu-card-desc {
	font-family: var(--font-base);
	font-size: 0.8rem;
	font-weight: var(--fw-regular);
	color: #666666;
	line-height: 1.6;
	margin: 0;
	flex: 1;
}

/* ---------- KARTA ARTYKUŁ / RANKING ---------- */

.edu-card--article {
	flex: 0 0 300px;
	min-width: 280px;
}

.edu-card-header {
	margin-bottom: 15px;
}

.edu-card-header .edu-card-type {
	margin-bottom: 3px;
}

.edu-card-time {
	font-family: var(--font-base);
	font-size: 0.75rem;
	font-weight: var(--fw-regular);
	color: #888888;
	margin: 0;
}

/* Zdjęcie pill shape */
.edu-card-image {
	width: 100%;
	height: 250px;
	border-radius: 150px;
	overflow: hidden;
	margin-bottom: 15px;
}

.edu-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.edu-card-title {
	font-family: var(--font-base);
	font-size: 1.1rem;
	font-weight: var(--fw-bold);
	color: #000000;
	line-height: 1.3;
	margin: 0 0 auto;
	padding-bottom: 15px;
}

/* ---------- CTA (wspólne) ---------- */

.edu-card-cta {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	margin-top: auto;
}

.edu-card-cta-text {
	font-family: var(--font-base);
	font-size: 0.9rem;
	font-weight: var(--fw-bold);

	color: #000000;
}

.edu-card-cta-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 32px;

	flex-shrink: 0;
}

.edu-card-cta-arrow img {
	width: 28px;
	height: auto;
}

/* ---------- RESPONSYWNOŚĆ ---------- */

@media (max-width: 1200px) {
	.edu-carousel-inner {
		margin: 0 50px;
	}

	.edu-card--video {
		flex: 0 0 460px;
		min-width: 440px;
	}

	.edu-card-video-grid {
		grid-template-columns: 180px 1fr;
		gap: 20px;
	}

	.edu-card-video-image {
		height: 250px;
	}

	.edu-card--article {
		flex: 0 0 270px;
		min-width: 250px;
	}
}

@media (max-width: 991px) {
	.edu-carousel-inner {
		margin: 0 45px;
	}

	.edu-card--video {
		flex: 0 0 420px;
		min-width: 400px;
	}

	.edu-card-video-grid {
		grid-template-columns: 160px 1fr;
		gap: 15px;
	}

	.edu-card-video-image {
		height: 220px;
	}

	.edu-card-video-title {
		font-size: 0.95rem;
	}

	.edu-card--article {
		flex: 0 0 260px;
		min-width: 245px;
	}

	.edu-card-image {
		height: 220px;
	}
}

@media (max-width: 767px) {
	.edu-carousel-inner {
		margin: 0 40px;
	}

	.edu-card {
		padding: 20px;
	}

	.edu-card--video {
		flex: 0 0 340px;
		min-width: 320px;
	}

	.edu-card-video-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.edu-card-video-image {
		height: 200px;
		border-radius: 80px;
	}

	.edu-card--article {
		flex: 0 0 260px;
		min-width: 250px;
	}

	.edu-card-image {
		height: 200px;
		border-radius: 120px;
	}
}

@media (max-width: 576px) {
	.edu-carousel-inner {
		margin: 0 35px;
	}

	.edu-card--video {
		flex: 0 0 300px;
		min-width: 280px;
	}

	.edu-card--article {
		flex: 0 0 240px;
		min-width: 230px;
	}

	.edu-card-title {
		font-size: 1rem;
	}

	.edu-card-cta-arrow {
		width: 32px;
		height: 28px;
	}

	.edu-card-cta-arrow img {
		width: 14px;
	}
}

/* ---------- EDU BLOG PAGES (homepage 2-page carousel) ---------- */

.edu-blog-pages {
	width: 100%;
}

.edu-blog-page {
	display: none;
	grid-template-columns: 3fr 2fr;
	gap: 24px;
	align-items: stretch;
}

.edu-blog-page--active {
	display: grid;
}

.edu-blog-page__stack {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Featured card (expanded) */
.edu-card--featured {
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.edu-card--featured .edu-card-image-link {
	display: block;
	flex-shrink: 0;
}

.edu-card--featured .edu-card-image {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 0;
	height: auto;
}

.edu-card--featured .edu-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.edu-card--featured:hover .edu-card-image img {
	transform: scale(1.03);
}

.edu-card--featured .edu-card-body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.edu-card--featured .edu-card-lead {
	flex: 1;
	margin: 8px 0 16px;
}

/* Compact card (collapsed) */
.edu-card--compact {
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 16px;
	padding: 18px;
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 16px;
	align-items: start;
	flex: 1;
}

.edu-card--compact .edu-card-thumb {
	display: block;
	width: 96px;
	height: 72px;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
}

.edu-card--compact .edu-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.edu-card--compact:hover .edu-card-thumb img {
	transform: scale(1.04);
}

.edu-card--compact .edu-card-body {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.edu-card--compact .edu-card-title {
	font-size: 0.95rem;
	font-weight: var(--fw-bold);
	line-height: 1.4;
	margin: 0;
}

.edu-card--compact .edu-card-cta {
	margin-top: 8px;
}

/* Page number nav */
.edu-blog-page-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 28px;
}

.edu-page-btn {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1.5px solid #cccccc;
	background: transparent;
	font-family: var(--font-base);
	font-size: 0.85rem;
	font-weight: 700;
	color: #666666;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	line-height: 1;
}

.edu-page-btn--active,
.edu-page-btn:hover {
	background: #111111;
	border-color: #111111;
	color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
	.edu-blog-page {
		grid-template-columns: 1fr;
	}

	.edu-blog-page__stack {
		flex-direction: row;
	}

	.edu-card--compact {
		flex: 1;
	}
}

@media (max-width: 576px) {
	.edu-blog-page__stack {
		flex-direction: column;
	}

	.edu-card--compact {
		grid-template-columns: 80px 1fr;
		gap: 12px;
	}

	.edu-card--compact .edu-card-thumb {
		width: 80px;
		height: 62px;
	}

	.edu-carousel-wrapper .carousel-arrow {
		display: none;
	}
}


/* ===========================
   SEKCJA NEWSLETTER
   Dodaj do styles.css
   =========================== */

/* ---------- SEKCJA GŁÓWNA ---------- */

.newsletter-section {
	padding: var(--space-3xl) 0;
}

/* ---------- BANER WEWNĘTRZNY (CZARNY) ---------- */

.newsletter-banner {
	position: relative;
	background-color: #000000;
	padding: 45px 50px;
	overflow: hidden;
}

/* ---------- TREŚĆ ---------- */

.newsletter-content {
	position: relative;
	z-index: 2;
	max-width: 700px;
}

.newsletter-title {
	font-family: var(--font-base);
	font-size: 1.9rem;
	font-weight: var(--fw-bold);
	font-style: italic;
	color: #ffffff;
	margin: 0 0 15px;
}

.newsletter-desc {
	font-family: var(--font-base);
	font-size: 0.95rem;
	font-weight: var(--fw-regular);
	font-style: italic;
	color: #ffffff;
	line-height: 1.6;
	margin: 0 0 25px;
}

/* ---------- FORMULARZ ---------- */

.newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 750px;
}

.newsletter-form-row {
	display: flex;
	gap: 15px;
}

.newsletter-input {
	flex: 1;
	min-width: 0;
	padding: 16px 28px;
	background-color: #ffffff;
	border: none;
	border-radius: 999px;
	font-family: var(--font-base);
	font-size: 0.9rem;
	font-weight: var(--fw-regular);
	color: #000000;
	outline: none;
}

.newsletter-input::placeholder {
	color: #888888;
}

.newsletter-input:focus {
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
	flex-shrink: 0;
	padding: 16px 35px;
	background-color: #ffffff;
	border: none;
	border-radius: 999px;
	font-family: var(--font-base);
	font-size: 0.9rem;
	font-weight: var(--fw-bold);
	color: #000000;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.newsletter-btn:hover {
	background-color: #f0f0f0;
}

/* ---------- MASZYNKA DEKORACYJNA ---------- */

.newsletter-razor {
	position: absolute;
	right: 5%;
	bottom: 0;
	height: 100%;
	width: auto;
	max-width: 350px;
	z-index: 1;
	pointer-events: none;
}

/* ---------- RESPONSYWNOŚĆ ---------- */

@media (max-width: 1200px) {
	.newsletter-razor {
		right: 2%;
		max-width: 300px;
	}
}

@media (max-width: 991px) {
	.newsletter-banner {
		padding: 40px 35px;
	}

	.newsletter-content {
		max-width: 60%;
	}

	.newsletter-title {
		font-size: 1.6rem;
	}

	.newsletter-form {
		flex-direction: column;
		max-width: 400px;
	}

	.newsletter-razor {
		right: 0;
		max-width: 250px;
		opacity: 0.7;
	}
}

@media (max-width: 767px) {
	.newsletter-banner {
		padding: 35px 25px;
	}

	.newsletter-content {
		max-width: 100%;
	}

	.newsletter-title {
		font-size: 1.4rem;
	}

	.newsletter-desc {
		font-size: 0.9rem;
	}

	.newsletter-form {
		max-width: 100%;
	}

	.newsletter-input,
	.newsletter-btn {
		padding: 14px 24px;
	}

	.newsletter-razor {
		display: none;
	}
}

@media (max-width: 576px) {
	.newsletter-banner {
		padding: 30px 20px;
	}

	.newsletter-title {
		font-size: 1.25rem;
	}

	.newsletter-desc {
		font-size: 0.85rem;
	}

	.newsletter-input,
	.newsletter-btn {
		padding: 12px 20px;
		font-size: 0.85rem;
	}
}

/* ---------- NEWSLETTER — RODO + KOMUNIKAT ---------- */

.newsletter-rodo {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.78rem;
	line-height: 1.5;
	max-width: 600px;
}

.newsletter-rodo input[type="checkbox"] {
	flex-shrink: 0;
	margin-top: 2px;
	width: 16px;
	height: 16px;
	cursor: pointer;
	accent-color: #ffffff;
}

.newsletter-rodo a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: underline;
}

.newsletter-msg {
	display: none;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	margin-top: 12px;
	border-radius: 8px;
	border: 1px solid transparent;
	border-left-width: 3px;
	font-size: 0.875rem;
	font-weight: var(--fw-medium, 500);
	max-width: 600px;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.newsletter-msg i {
	flex-shrink: 0;
	font-size: 1rem;
}

.newsletter-msg--animate {
	animation: newsletterMsgFadeIn 0.3s ease forwards;
}

.newsletter-msg--hiding {
	opacity: 0 !important;
	transform: translateY(-4px) !important;
}

@keyframes newsletterMsgFadeIn {
	from { opacity: 0; transform: translateY(6px); }
	to   { opacity: 1; transform: translateY(0); }
}

.newsletter-msg--success {
	background-color: rgba(34, 197, 94, 0.15);
	color: #86efac;
	border-color: rgba(34, 197, 94, 0.25);
	border-left-color: #22c55e;
}

.newsletter-msg--warning {
	background-color: rgba(234, 179, 8, 0.15);
	color: #fde047;
	border-color: rgba(234, 179, 8, 0.25);
	border-left-color: #eab308;
}

.newsletter-msg--error {
	background-color: rgba(239, 68, 68, 0.15);
	color: #fca5a5;
	border-color: rgba(239, 68, 68, 0.25);
	border-left-color: #ef4444;
}

@media (max-width: 991px) {
	.newsletter-form-row {
		flex-direction: column;
	}
}

/* ===========================
   STOPKA
   =========================== */

.site-footer {
	background-color: #f3f3f3;
	padding-top: 4rem;
	padding-bottom: 3rem;
	margin-top: 0;
}

.footer-top {
	row-gap: 2.5rem;
}

/* lewa kolumna */

.footer-intro {
	margin-bottom: 2rem;
}

.footer-logo {
	font-family: var(--font-base);
	font-size: 2.4rem;
	font-weight: var(--fw-black);
	letter-spacing: 0.02em;
	margin-bottom: 1.5rem;
}

.footer-text {
	font-size: 1rem;
	line-height: 1.7;
	max-width: 32rem;
}

/* kolumny linków */

.footer-column {
	font-size: 0.95rem;
}

.footer-heading {
	font-size: 1rem;
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 1.1rem;
}

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

.footer-list li+li {
	margin-top: 0.35rem;
}

.footer-list a {
	color: #000000;
	text-decoration: none;
}

.footer-list a:hover {
	text-decoration: underline;
}

/* dół stopki – social media */

.footer-bottom {
	margin-top: 3rem;
}

.footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 0.95rem;
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.footer-social a {
	color: #000000;
	text-decoration: none;
}

.footer-social a:hover {
	text-decoration: underline;
}

/* Footer bottom layout */
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-copyright {
	font-size: 0.8rem;
	color: #666;
	margin: 0;
}

/* ===========================
   COOKIE CONSENT BANNER
   =========================== */

.seco-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: rgba(26, 26, 26, 0.97);
	color: #fff;
	padding: 1rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
	backdrop-filter: blur(8px);
}

.seco-cookie-banner__inner {
	max-width: 1200px;
	width: 100%;
	padding: 0 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.seco-cookie-banner__text {
	font-size: 0.85rem;
	line-height: 1.5;
	margin: 0;
	color: #ccc;
}

.seco-cookie-banner__link {
	color: #e34636;
	text-decoration: underline;
}

.seco-cookie-banner__link:hover {
	color: #fff;
}

.seco-cookie-banner__actions {
	display: flex;
	gap: 0.75rem;
	flex-shrink: 0;
}

.seco-cookie-banner__btn {
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	border: none;
	transition: all 0.2s ease;
	text-decoration: none;
	white-space: nowrap;
}

.seco-cookie-banner__btn--accept {
	background: #e34636;
	color: #fff;
}

.seco-cookie-banner__btn--accept:hover {
	background: #c43025;
}

.seco-cookie-banner__btn--more {
	background: transparent;
	color: #ccc;
	border: 1px solid #555;
}

.seco-cookie-banner__btn--more:hover {
	background: #333;
	color: #fff;
	border-color: #777;
}

@media (max-width: 768px) {
	.seco-cookie-banner__inner {
		flex-direction: column;
		text-align: center;
	}
	.seco-cookie-banner__actions {
		width: 100%;
		justify-content: center;
	}
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}

/* ===========================
   SECO COSMETICS – MOBILE FIXES v4
   WSZYSTKIE POPRAWKI
   =========================== */

/* ===========================
   GLOBAL
   =========================== */

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
}

/* ===========================
   ANIMACJE
   =========================== */

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

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   HOVER EFFECTS
   =========================== */

.benefit-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.category-card {
  position: relative;
  transition: box-shadow 0.2s ease;
}

.category-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.category-card:hover .category-card-title {
  color: var(--color-accent);
  text-decoration: underline;
}

/* stretched link — cały boks klikalny przez pseudo-element */
.category-card .category-card-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.category-card-image img {
  transition: transform 0.4s ease;
}

.category-card:hover .category-card-image img {
  transform: scale(1.06);
}

.product-card {
  transition: none;
}

.product-cta:hover {
  background-color: #c0372d;
}

.edu-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.edu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.hero-arrow {
  transition: all 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 1) !important;
  transform: scale(1.1);
}

.btn:active,
.product-cta:active {
  transform: scale(0.98);
}

/* ===========================
   CAROUSEL DOTS - ZAWSZE POD KARUZELĄ
   =========================== */

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 25px;
  padding: 0;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e0e0e0;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.carousel-dot:hover {
  background-color: #bdbdbd;
}

.carousel-dot.active,
.carousel-dot--active {
  background-color: var(--color-accent);
  transform: scale(1.3);
}

/* ===========================
   PRODUCT CAROUSEL - NAPRAWIONA STRUKTURA
   Strzałki absolute, kropki pod spodem
   =========================== */

.product-carousel-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.product-carousel-inner {
  align-self: stretch;
  width: calc(100% - 120px);
  margin: 0 60px;
}

.product-carousel-wrapper .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.product-carousel-wrapper .carousel-arrow--prev {
  left: -20px;
}

.product-carousel-wrapper .carousel-arrow--next {
  right: -20px;
}

.product-carousel-wrapper .carousel-dots {
  order: 10;
  margin-top: 25px;
}

/* EDU CAROUSEL - ta sama struktura */
.edu-carousel-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

.edu-carousel-wrapper .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.edu-carousel-wrapper .carousel-arrow--prev {
  left: -20px;
}

.edu-carousel-wrapper .carousel-arrow--next {
  right: -20px;
}

.edu-carousel-wrapper .carousel-dots {
  order: 10;
  margin-top: 25px;
}

/* CATEGORIES - ta sama struktura */
.product-categories-row {
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-categories-row .category-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.product-categories-row .category-arrow--prev {
  left: -20px;
}

.product-categories-row .category-arrow--next {
  right: -20px;
}

.product-categories-row .carousel-dots {
  order: 10;
  margin-top: 25px;
}


/* ===========================
   SCROLLBAR HIDDEN
   =========================== */

.benefit-list::-webkit-scrollbar,
.product-categories-list::-webkit-scrollbar,
.product-carousel-inner::-webkit-scrollbar,
.product-carousel-track::-webkit-scrollbar,
.edu-carousel-inner::-webkit-scrollbar,
.edu-carousel-track::-webkit-scrollbar,
.promo-strip-inner::-webkit-scrollbar {
  display: none;
}

.benefit-list,
.product-categories-list,
.product-carousel-inner,
.product-carousel-track,
.edu-carousel-inner,
.edu-carousel-track,
.promo-strip-inner {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ===========================
   TABLET (max 991px)
   =========================== */

@media (max-width: 991px) {
  
  .product-carousel-wrapper .carousel-arrow--prev {
    left: 5px;
  }
  
  .product-carousel-wrapper .carousel-arrow--next {
    right: 5px;
  }
  
  .benefit-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
  }
  
  .benefit-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
  
  .product-categories-list {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  
  .category-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
  }
  
  .join-panel {
    height: auto !important;
    min-height: auto !important;
  }
}

/* ===========================
   MOBILE (max 767px)
   =========================== */

@media (max-width: 767px) {
  
  /* ===== GLOBAL ===== */
  .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
  }
  
  .section {
    padding-block: var(--space-lg);
  }
  
  .section-title,
  .product-categories-title {
    font-size: 1.15rem;
  }
  
  
  /* ===== PROMO STRIP ===== */
  .promo-strip {
    padding-block: 12px;
  }
  
  .promo-strip-inner {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding-left: 5px;
  }
  
  .promo-tag-card,
  .promo-brand-logo {
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
    scroll-snap-align: start;
  }
  
  .promo-brand-scroller,
  .promo-strip-arrow {
    display: none;
  }
  
  /* ===== HERO - POPRAWIONE PROPORCJE ===== */
  .hero.section {
    padding-block: var(--space-md);
  }
  
  .hero .row {
    flex-direction: column;
  }
  
  .hero .col-lg-8,
  .hero .col-lg-4 {
    width: 100%;
    max-width: 100%;
  }
  
  .hero-main {
    min-height: 380px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
  }
  
  .hero-main-media {
    position: absolute;
    inset: 0;
  }
  
  .hero-main-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
  }
  
  .hero-main-overlay {
    position: relative;
    z-index: 2;
    padding: 100px 20px;
    max-width: 100%;
  }
  
  .hero-main-kicker {
    font-size: 0.65rem;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
  }
  
  .heading-hero {
    font-size: 1.8rem;
    line-height: 1.15;
    margin-bottom: 10px;
  }
  
  .hero-main-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  
  .hero-main-cta {
    padding: 12px 24px;
    font-size: 0.8rem;
    border-radius: 30px;
  }
  
  /* STRZAŁKI HERO - mniejsze, wycentrowane */
  .hero-main-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    pointer-events: none;
    z-index: 5;
    display: none;
  }
  
  .hero-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    pointer-events: auto;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-arrow img {
    width: 16px;
  }
  
  /* MAŁY HERO */
  .hero-side {
    min-height: 200px;
    margin-top: var(--space-md);
    border-radius: 20px;
  }
  
  .hero-side-media img {
    border-radius: 20px;
  }
  
  .hero-side-title {
    font-size: 1.4rem;
  }
  
  .hero-side-cta {
    padding: 10px 20px;
    font-size: 0.75rem;
  }
  
  /* ===== BENEFIT STRIP - PEŁNA SZEROKOŚĆ, JEDEN POD DRUGIM ===== */
  .benefit-strip {
    padding-block: var(--space-md);
  }
  
  .benefit-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-x: visible;
    padding: 0;
    margin: 0;
  }
  
  .benefit-card {
    flex: none;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    min-height: auto;
    height: auto;
    padding: 20px;
    scroll-snap-align: none;
  }
  
  .benefit-title {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .benefit-link {
    font-size: 0.85rem;
    margin-top: 15px;
  }
  
  .benefit-meta {
    font-size: 0.75rem;
  }
  
  /* ===== KATEGORIE - SZERSZE KARTY + KROPKI POD SPODEM ===== */
  .product-categories {
    padding-block: var(--space-xl);
  }
  
  .product-categories-row {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 20px;
    padding: var(--space-xs);
  }
  
  .category-arrow {
    display: none;
  }
  
  .product-categories-list {
    order: 1;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 10px;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
    scroll-padding-left: 16px;
  }
  
  .category-card {
    flex: 0 0 calc(100vw - 60px);
    min-width: 300px;
    max-width: 340px;
    scroll-snap-align: start;
  }
  
  .category-card-image {
    height: 200px;
  }
  
  .category-card-body {
    padding: 20px;
  }
  
  .category-card-title {
    font-size: 1.15rem;
  }
  
  .category-card-text {
    font-size: 0.9rem;
    -webkit-line-clamp: 4;
  }
  
  /* KROPKI KATEGORII - POD SPODEM */
  .product-categories-row .carousel-dots,
  .category-dots {
    order: 2;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    padding: 0;
  }
  
  /* ===== JOIN SECTION ===== */
  .join-section {
    padding-block: var(--space-xl);
  }
  
  .join-row {
    flex-direction: column;
  }
  
  .join-row .col-lg-6 {
    width: 100%;
  }
  
  .join-tab {
    padding: 16px 20px;
    font-size: 0.8rem;
    min-height: 56px;
  }
  
  .join-panel {
    padding: 24px;
    height: auto !important;
    min-height: auto !important;
    border-radius: 0 0 24px 24px;
  }
  
  .join-panel-title {
    font-size: 1.2rem;
  }
  
  .join-list li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.5;
  }
  
  .join-btn {
    padding: 16px 28px;
    font-size: 0.85rem;
    width: 100%;
  }
  
  /* ===== PROMO PRODUCTS ===== */
  .promo-products {
    padding-block: var(--space-xl);
  }
  
  .promo-banner {
    min-height: 180px;
    border-radius: 20px;
  }
  
  .promo-banner-heading {
    font-size: 1.5rem;
  }
  
  .promo-banner-arrows {
    display: none;
  }
  
  /* ===== PRODUCT CAROUSEL - KROPKI POD SPODEM ===== */
  .product-carousel-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: stretch; /* FIX - zamiast center */
  }
  
  .product-carousel-wrapper .carousel-arrow {
    display: none;
  }
  
  .product-carousel-inner {
    order: 1;
    width: 100%; /* FIX */
    flex: none; /* FIX - usuwa flex: 1 */
    margin: 0; /* FIX */
    padding: 0 0 10px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  .product-carousel-inner::-webkit-scrollbar {
    display: none;
  }
  
  .product-carousel {
    width: max-content; /* FIX */
  }
  
  .product-carousel-track {
    gap: 16px;
    padding: 0 16px; /* FIX */
    width: max-content; /* FIX */
  }
  
  .product-card {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
    scroll-snap-align: start;
  }
  
  .product-image {
    height: 170px;
  }
  
  .product-name {
    font-size: 1rem;
  }
  
  .product-price-value {
    font-size: 1.5rem;
  }
  
  .product-cta {
    padding: 14px 18px;
    font-size: 0.85rem;
  }
  
  /* KROPKI - WYCENTROWANE POD KARUZELĄ */
  .product-carousel-wrapper .carousel-dots {
    order: 2;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    padding: 0;
  }
  
  /* ===== BARBERPRO - ROZDZIELONE NA MOBILE ===== */
  .barberpro-section {
    padding-block: var(--space-lg);
  }
  
  .barberpro-content-area {
    padding: 15px;
  }
  
  /* Na mobile: content jako kolumna */
  .barberpro-content {
    display: flex !important;
    flex-direction: column !important;
  }
  
  /* Intro pełna szerokość na górze */
  .barberpro-intro {
    display: block !important;
    margin-bottom: 20px;
    width: 100%;
  }
  
  .barberpro-info-box {
    padding: 24px;
    width: 100%;
  }
  
  .barberpro-info-title {
    font-size: 1.2rem;
  }
  
  .barberpro-info-cta {
    width: 100%;
    justify-content: center;
  }
  
  /* Karuzela produktów */
  .barberpro-carousel-wrapper {
    display: flex !important;
    flex-direction: column;
    width: 100%;
  }
  
  .barberpro-carousel {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding-top: 20px;
    padding-bottom: 10px;
    scroll-padding-left: 0;
  }

  .barberpro-carousel::-webkit-scrollbar {
    display: none;
  }

  .barberpro-carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .barberpro-card {
    flex: 0 0 calc(100vw - 80px) !important;
    width: calc(100vw - 80px) !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 16px;
    scroll-snap-align: start;
  }

  .barberpro-card-image {
    height: 130px;
  }
  
  /* Białe kropki dla BarberPro */
  .barberpro-dots {
    display: flex !important;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  .carousel-dot--white {
    background-color: rgba(255, 255, 255, 0.4) !important;
    border: none;
  }
  
  .carousel-dot--white.carousel-dot--active,
  .carousel-dot--white.active {
    background-color: #ffffff !important;
    transform: scale(1.3);
  }
  
  /* Ukryj stary grid na mobile */
  .barberpro-grid {
    display: none !important;
  }
  
  /* ===== BONUS ===== */
  .bonus-section {
    padding-block: var(--space-xl);
  }
  
  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .bonus-banner {
    height: 250px;
    border-radius: 20px;
  }
  
  .bonus-banner-title {
    font-size: 1.2rem;
  }
  
  .bonus-banner-cta {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  
  /* ===== EDU SECTION - KROPKI POD SPODEM ===== */
  .edu-section {
    padding-block: var(--space-xl);
  }
  
  .edu-carousel-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: stretch; /* FIX - zamiast center */
  }
  
  .edu-carousel-wrapper .carousel-arrow {
    display: none;
  }
  
  .edu-carousel-inner {
    order: 1;
    width: 100%; /* FIX */
    flex: none; /* FIX - usuwa flex: 1 */
    margin: 0; /* FIX */
    padding: 0 0 10px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  .edu-carousel-inner::-webkit-scrollbar {
    display: none;
  }
  
  .edu-carousel {
    width: max-content; /* FIX */
  }
  
  .edu-carousel-track {
    gap: 16px;
    padding: 0 16px; /* FIX */
    width: max-content; /* FIX */
  }
  
  .edu-card {
    scroll-snap-align: start;
  }
  
  .edu-card--video {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
  }
  
  .edu-card-video-grid {
    grid-template-columns: 1fr;
  }
  
  .edu-card-video-image {
    height: 160px;
    border-radius: 35px;
  }
  
  .edu-card--article {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
  }
  
  .edu-card-image {
    height: 160px;
    border-radius: 60px;
  }
  
  /* KROPKI EDU - POD SPODEM */
  .edu-carousel-wrapper .carousel-dots {
    order: 2;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    padding: 0;
  }
  
  /* ===== NEWSLETTER ===== */
  .newsletter-section {
    padding-block: var(--space-lg);
  }
  
  .newsletter-banner {
    padding: 28px 22px;
    border-radius: 20px;
  }
  
  .newsletter-title {
    font-size: 1.25rem;
    line-height: 1.3;
  }
  
  .newsletter-desc {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }
  
  .newsletter-input,
  .newsletter-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.9rem;
  }
  
  .newsletter-razor {
    display: none;
  }
  
  /* ===== FOOTER ===== */
  .site-footer {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }
  
  .footer-logo {
    font-size: 1.8rem;
  }
  
  .footer-text {
    font-size: 0.9rem;
  }
  
  .footer-column {
    max-width: 100%;
  }
  
  .footer-social {
    gap: 1.5rem;
    font-size: 0.85rem;
    flex-wrap: wrap;
  }
  
}

/* ===========================
   SMALL MOBILE (max 480px)
   =========================== */

@media (max-width: 480px) {
  
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  
  .section-title {
    font-size: 1.05rem;
  }
  
  .hero-main {
    min-height: 340px;
  }
  
  .heading-hero {
    font-size: 1.5rem;
  }
  
  .hero-arrow {
    width: 36px;
    height: 36px;
  }
  
  .hero-arrow img {
    width: 14px;
  }
  
  .hero-side {
    min-height: 180px;
  }
  
  .hero-side-title {
    font-size: 1.2rem;
  }
  
  .promo-tag-card,
  .promo-brand-logo {
    flex: 0 0 90px;
    width: 90px;
    height: 90px;
  }
  
  .benefit-card {
    padding: 18px;
  }
  
  .benefit-title {
    font-size: 0.95rem;
  }
  
  .category-card {
    flex: 0 0 calc(100vw - 50px);
    min-width: 280px;
  }
  
  .category-card-image {
    height: 180px;
  }
  
  .product-card {
    flex: 0 0 calc(100vw - 50px);
    min-width: 280px;
  }
  
  .product-image {
    height: 160px;
  }
  
  .join-panel {
    padding: 20px;
  }
  
  .join-panel-title {
    font-size: 1.1rem;
  }
  
  .bonus-banner {
    height: 230px;
  }
  
  .newsletter-title {
    font-size: 1.15rem;
  }
  
  .footer-logo {
    font-size: 1.5rem;
  }
  
  .footer-social {
    gap: 1rem;
    font-size: 0.8rem;
  }
}

/* ===========================
   LOYALTY BANNER
   =========================== */

.loyalty-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #ffffff;
  padding: var(--space-md) 0;
  overflow: hidden;
}

.loyalty-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.loyalty-banner__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-transform: uppercase;
}

.loyalty-banner__text {
  font-size: var(--fs-body);
  line-height: 1.4;
  text-align: center;
}

.loyalty-banner__text strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .loyalty-banner {
    padding: var(--space-sm) 0;
  }

  .loyalty-banner__inner {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .loyalty-banner__badge {
    font-size: 1rem;
  }

  .loyalty-banner__text {
    font-size: var(--fs-small);
  }
}

/* ===========================
   GLOBAL UTILITIES
   =========================== */

html {
  scroll-behavior: smooth;
}

a, button, .btn {
  transition: all 0.2s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ===========================
   PRINT
   =========================== */

@media print {
  .hamburger-btn,
  .mobile-menu,
  .mobile-menu-overlay,
  .carousel-arrow,
  .carousel-dots {
    display: none !important;
  }
}
}