/* ===========================
   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 */
.topbar-text {
	font-size: var(--fs-topbar);
	font-weight: var(--fw-semibold);
	line-height: 1.2;
}

/* menu główne */
.nav-main-link {
	font-size: var(--fs-menu);
	font-weight: var(--fw-medium);
	position: relative;
	white-space: nowrap;
}

/* ===========================
   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;
}

/* ===========================
   TOP BAR (biały)
   =========================== */

.topbar {
	background-color: #ffffff;
	color: #000000;
	padding-block: var(--space-md);
	font-size: var(--fs-small);
}

.topbar-lang-btn {
	display: inline-flex;
	align-items: center;
	gap: var(--space-xs);
	background: none;
	border: none;
	color: inherit;
	cursor: pointer;
	font-family: var(--font-base);
	font-size: var(--fs-small);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.topbar-lang-btn i {
	font-size: 1rem;
}

.topbar-lang-separator {
	opacity: 0.6;
}

.topbar-links .topbar-link {
	text-transform: none;
	font-size: 0.8125rem;
	letter-spacing: 0.06em;
}

/* ===========================
   HEADER – CZARNY PASEK
   =========================== */

.site-header {
	border-bottom: none;
}

/* górny pasek: telefon + mail + biała linia */
.header-contact {
	background-color: #000000;
	color: #ffffff;
	padding-block: var(--space-md);
	border-bottom: 1px solid #ffffff;
}

.header-contact .topbar-text {
	font-size: var(--fs-topbar);
	line-height: 1.2;
	font-weight: var(--fw-semibold);
	text-align: center;
}

/* dolny pasek: logo + search + CTA + ikony */
.header-main {
	background-color: #000000;
	padding-block: var(--space-md);
}

.header-logo {
	max-height: 40px;
}

.header-search-input {
	border-radius: var(--radius-pill);
	border: none;
	padding-inline: var(--space-lg);
	font-size: var(--fs-body);
	background-color: #ffffff;
	color: #000000;
}

.header-search-input::placeholder {
	color: var(--color-text-muted);
}

.header-actions {
	color: #ffffff;
}

.header-login-btn {
	padding-inline: 1.8rem;
}

.header-badge-img {
	max-height: 42px;
}

/* ikony – białe na czarnym tle */

.icon-btn {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1.2rem;
	color: #ffffff;
	padding: 0;
}

.icon-btn:hover {
	color: var(--color-accent);
}


/* MENU – w szerokości kontenera, wyrównane do logo */

.nav-main {
	background-color: #ffffff;
}

/* linia tylko pod kontenerem, nie na całą szerokość okna */
.nav-main .container {
	border-bottom: 2px solid #000000;
}

/* lista: wyrównanie do lewej, więcej oddechu */
.nav-main-list {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	/* start = ten sam lewy margines co logo */
	gap: var(--space-lg);
	overflow-x: auto;
	padding-block: var(--space-md);
	/* było var(--space-sm) – więcej powietrza */
	padding-left: 0;
	list-style: none;
	gap: 2.75rem;
	/* większy odstęp między pozycjami */
	padding-top: 2rem;
}

.nav-main-link {
	text-transform: none;
	font-size: var(--fs-menu);
	font-weight: var(--fw-regular);
	position: relative;
	white-space: nowrap;
	color: #000000;
}


/* hover – tylko kolor tekstu */
.nav-main-link:hover {
	color: var(--color-accent);
}

/* === kwadraty przed Nowości / Promocje === */

.nav-main-link--new,
.nav-main-link--promo {
	padding-left: 24px;
	/* trochę bliżej tekstu */
}

/* pomarańczowy kwadrat – większy */
.nav-main-link--new::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-color: var(--color-accent);
}

/* przerywany kwadrat – też większy */
.nav-main-link--promo::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border: 2px dashed #000000;
}

/* ===========================
   PROMO BAR (guest header)
   =========================== */

.promo-bar {
  background: #f5f5f5;
  padding: 15px 0;
}

.promo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.promo-bar-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.2s ease;
}

.promo-bar-arrow:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.promo-bar-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.promo-bar-text {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.promo-bar-link {
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: underline;
}

.promo-bar-link:hover {
  color: #e63946;
}

@media (max-width: 768px) {
  .promo-bar {
    display: none;
  }
}

/* ===========================
   MEGA MENU
   Dodaj do styles.css
   =========================== */

/* ---------- NAV-MAIN MUSI BYĆ RELATIVE ---------- */

.nav-main {
  position: relative;
}

/* ---------- KONTENER GŁÓWNY ---------- */

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mega-menu--open {
  visibility: visible;
  opacity: 1;
}

/* Wewnętrzny kontener z białym tłem */
.mega-menu > .container {
  background-color: #ffffff;
  border-top: 4px solid #333333;
  padding-top: 35px;
  padding-bottom: 40px;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mega-menu--open > .container {
  transform: translateY(0);
  opacity: 1;
}

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

.mega-menu-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding-right: 60px; /* miejsce na przycisk X */
}

/* ---------- KOLUMNA ---------- */

.mega-menu-col {
  flex: 0 0 auto;
}

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

.mega-menu-title {
  font-family: var(--font-base);
  font-size: 0.95rem;
  font-weight: var(--fw-bold);
  color: #000000;
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-border);
  white-space: nowrap;
}

/* Aktywny nagłówek - czerwone podkreślenie */
.mega-menu-title--active {
  border-bottom-color: var(--color-accent);
}

/* ---------- LISTA LINKÓW ---------- */

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

.mega-menu-list li {
  margin-bottom: 8px;
}

.mega-menu-link {
  font-family: var(--font-base);
  font-size: 0.9rem;
  font-weight: var(--fw-regular);
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.mega-menu-link:hover {
  color: var(--color-accent);
}

/* Aktywny link - czerwony */
.mega-menu-link--active {
  color: var(--color-accent);
  font-weight: var(--fw-bold);
}

/* ---------- DODATKOWY LINK (Darmowa dostawa) ---------- */

.mega-menu-extra {
  display: inline-block;
  margin-top: 25px;
  font-family: var(--font-base);
  font-size: 0.9rem;
  font-weight: var(--fw-regular);
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mega-menu-extra:hover {
  color: var(--color-accent);
}

/* ---------- PRZYCISK ZAMKNIĘCIA ---------- */

.mega-menu-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid #000000;
  cursor: pointer;
  color: #000000;
  transition: all 0.2s ease;
}

.mega-menu-close:hover {
  background-color: #000000;
  color: #ffffff;
}

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

@media (max-width: 1200px) {
  .mega-menu-grid {
    gap: 30px;
    justify-content: flex-start;
  }
}

@media (max-width: 991px) {
  .mega-menu-grid {
    gap: 25px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  .mega-menu-col {
    min-width: 130px;
    flex: 0 0 calc(33.333% - 20px);
  }
  
  .mega-menu-title {
    font-size: 0.9rem;
  }
  
  .mega-menu-link {
    font-size: 0.85rem;
  }
}

@media (max-width: 767px) {
  .mega-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.3);
  }
  
  .mega-menu > .container {
    padding-top: 60px;
    padding-bottom: 30px;
    min-height: 100%;
  }
  
  .mega-menu-grid {
    flex-direction: column;
    gap: 25px;
    padding-right: 0;
  }
  
  .mega-menu-col {
    flex: 0 0 100%;
    min-width: 100%;
  }
  
  .mega-menu-title {
    font-size: 1rem;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  
  .mega-menu-list li {
    margin-bottom: 10px;
  }
  
  .mega-menu-link {
    font-size: 0.95rem;
  }
  
  .mega-menu-close {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1001;
    background-color: #ffffff;
  }
  
  .mega-menu-extra {
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  .mega-menu > .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .mega-menu-close {
    width: 36px;
    height: 36px;
  }
  
  .mega-menu-close svg {
    width: 14px;
    height: 14px;
  }
}

/* ===========================
   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-end;
	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;
}

/* ========== 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;
}

/* wrapper na 4 karty */
.product-categories-list {
	flex: 1 1 auto;
	display: flex;
	gap: var(--space-xs);
}

/* pojedyncza karta kategorii */
.category-card {
	flex: 1 1 0;
	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);
}

/* 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;
}

/* 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;
}


/* ===========================
   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;
	gap: 18px;
}

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

.product-card {
	flex: 0 0 calc(25% - 14px);
	min-width: 260px;
	max-width: 300px;
	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;
}

/* 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;
}

/* ---------- 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;
	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 {
  display: block;
}

.barberpro-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.barberpro-dots {
  display: none;
}

/* ---------- 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;
	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;
	}
}


/* ===========================
   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;
	gap: 15px;
	max-width: 750px;
}

.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;
	}
}

/* ===========================
   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;
}/* ===========================
   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 {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

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

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

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

.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);
}

.icon-btn {
  transition: transform 0.2s ease;
}

.icon-btn:hover {
  transform: scale(1.1);
}

/* ===========================
   TOPBAR LOGO MOBILE
   =========================== */

.topbar-logo-mobile {
  display: none;
}

.topbar-logo-mobile img {
  height: 22px;
  width: auto;
}

/* ===========================
   HEADER MOBILE ELEMENTS
   =========================== */

.header-search-mobile {
  display: none;
}

.header-pro-btn {
  display: none;
  padding: 8px 14px;
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.header-pro-btn-highlight {
  color: var(--color-accent);
}

/* ===========================
   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;
}

.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;
}

/* ===========================
   HAMBURGER MENU
   =========================== */

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active,
.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.active,
.mobile-menu.open {
  transform: translateX(0);
}

/* MOBILE MENU HEADER - X odsunięty od logo, czarny */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
}

.mobile-menu-logo {
  flex-shrink: 0;
}

.mobile-menu-logo img {
  display: block;
  height: 18px;
  width: auto;
  filter: none !important;
}

.mobile-menu-close {
  width: 32px;
  height: 32px;
  min-width: 32px;
  flex-shrink: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background: #e8e8e8;
}

.mobile-menu-close svg {
  width: 12px;
  height: 12px;
}

.mobile-menu-close svg path {
  stroke: #000000 !important;
}

.mobile-menu-search {
  padding: 15px 20px;
  border-bottom: 1px solid #e0e0e0;
}

.mobile-menu-search input {
  width: 100%;
  border-radius: 25px;
  padding: 14px 20px;
  border: 1px solid #e0e0e0;
  font-size: 0.95rem;
  background: #f9f9f9;
}

.mobile-menu-search input:focus {
  border-color: var(--color-accent);
  outline: none;
  background: #fff;
}

.mobile-menu-nav {
  padding: 10px 0;
}

.mobile-menu-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-nav li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-nav a {
  display: block;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
  color: var(--color-accent);
  background-color: #fafafa;
}

.mobile-menu-extra {
  padding: 15px 20px;
  border-top: 1px solid #e0e0e0;
}

.mobile-menu-extra a {
  display: block;
  padding: 12px 0;
  color: #666;
  font-size: 0.9rem;
  text-decoration: none;
}

.mobile-menu-cta {
  padding: 20px;
}

.mobile-menu-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ===========================
   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;
  }
  
  /* ===== TOPBAR + HEADER STICKY RAZEM ===== */
  
  /* Wrapper dla sticky - topbar */
  .topbar {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999 !important;
    padding-top: max(16px, env(safe-area-inset-top)) !important;
   
    background: #000 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Header też fixed, pod topbar */
  .site-header {
    position: fixed !important;
    top: 46px !important; /* wysokość topbar */
    left: 0 !important;
    right: 0 !important;
    z-index: 998 !important;
    background: #000 !important;
  }
  
  /* Spacer pod fixed header */
  body {
    padding-top: 105px !important; /* topbar ~46px + header ~59px */
  }
  
  .topbar .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  .topbar-logo-mobile {
    display: block !important;
    order: 1;
  }
  
  .topbar-logo-mobile img {
    display: block !important;
    height: 20px;
    filter: brightness(0) invert(1);
  }
  
  .topbar-lang-btn {
    display: flex !important;
    font-size: 0.7rem;
    order: 2;
    color: #fff;
    background: transparent;
    border: none;
  }
  
  .topbar-lang-btn i,
  .topbar-lang-btn span {
    color: #fff;
  }
  
  .topbar-links {
    display: none !important;
  }
  
  /* ===== HEADER MOBILE - WSZYSTKIE ELEMENTY WIDOCZNE ===== */
  .header-contact {
    display: none !important;
  }
  
  .header-main {
    padding-block: 12px !important;
  }
  
  /* Napraw row - nie stack pionowo */
  .header-main .row.align-items-center {
    flex-wrap: nowrap !important;
    display: flex !important;
  }
  
  /* Ukryj logo i search form z desktopa */
  .header-main .row .col-12.col-md-3 {
    display: none !important;
  }
  
  .header-main .row .col-12.col-md-5 {
    display: none !important;
  }
  
  /* Rozszerz kolumnę z akcjami na 100% */
  .header-main .row .col-12.col-md-4 {
    display: block !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  
  /* HEADER ACTIONS - wszystkie elementy w jednej linii */
  .header-main .header-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
  }
  
  /* ===== WIDOCZNE ELEMENTY ===== */
  
  /* HAMBURGER - widoczny, z lewej */
  .header-main .header-actions .hamburger-btn {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 26px !important;
    height: 18px !important;
    margin-right: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* SEARCH ICON - widoczny */
  .header-main .header-actions .header-search-mobile {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* SECO PRO BUTTON - widoczny */
  .header-main .header-actions .header-pro-btn {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* IKONY SERCE I KOSZYK - widoczne */
  .header-main .header-actions .icon-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* ===== UKRYTE ELEMENTY ===== */
  
  /* Badge BarberPro - ukryty na mobile */
  .header-main .header-actions .header-badge-link {
    display: none !important;
  }
  
  /* Login button - ukryty na mobile (jest w menu) */
  .header-main .header-actions .header-login-btn {
    display: none !important;
  }
  
  /* NAV - ukryta (jest mobile menu) */
  .nav-main {
    display: none !important;
  }
  
  /* ===== 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;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    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;
    min-width: 260px !important;
    max-width: 300px;
    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;
  }
  
  /* MEGA MENU HIDDEN */
  .mega-menu {
    display: none;
  }
}

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

@media (max-width: 480px) {
  
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  
  .section-title {
    font-size: 1.05rem;
  }
  
  .topbar-logo-mobile img {
    height: 18px;
  }
  
  .icon-btn {
    width: 34px;
    height: 34px;
  }
  
  .hamburger-btn {
    width: 24px;
    height: 16px;
  }
  
  .header-pro-btn {
    padding: 6px 10px;
    font-size: 0.65rem;
  }
  
  .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;
  }
}

/* ===========================
   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;
  }
}
/* ===========================
   HEADER DROPDOWNS - LOGIN & CART
   =========================== */
.header-login-dropdown,
.header-cart-dropdown {
  position: relative;
}

.login-dropdown-menu,
.cart-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  min-width: 280px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.header-login-dropdown:hover .login-dropdown-menu,
.header-cart-dropdown:hover .cart-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Login Dropdown Styles */
.login-dropdown-menu {
  padding: 20px;
}

.login-dropdown-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.login-dropdown-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.login-dropdown-form input {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9375rem;
}

.login-dropdown-form button {
  padding: 12px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.login-dropdown-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.login-dropdown-links a {
  font-size: 0.875rem;
  color: #666;
  text-decoration: none;
}

.login-dropdown-divider {
  height: 1px;
  background: #eee;
  margin: 12px 0;
}

.login-dropdown-pro {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
}

/* Cart Dropdown Styles */
.cart-dropdown-menu {
  min-width: 320px;
  padding: 0;
  overflow: hidden;
}

.cart-dropdown-header {
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  font-weight: 700;
  color: #1a1a1a;
}

.cart-dropdown-items {
  max-height: 300px;
  overflow-y: auto;
}

.cart-dropdown-item {
  display: flex;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid #f5f5f5;
}

.cart-dropdown-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-dropdown-item-info {
  flex: 1;
}

.cart-dropdown-item-info h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #1a1a1a;
}

.cart-dropdown-item-info p {
  font-size: 0.75rem;
  color: #888;
  margin: 0;
}

.cart-dropdown-item-price {
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
}

.cart-dropdown-summary {
  padding: 16px 20px;
  background: #f9f9f9;
  border-top: 1px solid #eee;
}

.cart-dropdown-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cart-dropdown-total span {
  color: #666;
}

.cart-dropdown-total strong {
  font-size: 1.125rem;
  color: #1a1a1a;
}

.cart-dropdown-shipping {
  font-size: 0.8125rem;
  color: #4CAF50;
  margin-bottom: 16px;
}

.cart-dropdown-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 20px 20px;
}

.cart-dropdown-actions .btn {
  width: 100%;
  padding: 12px;
  text-align: center;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.875rem;
  display: block;
}

.cart-dropdown-actions .btn-outline {
  background: transparent;
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
}

.cart-dropdown-actions .btn-primary {
  background: #E53935;
  border: 2px solid #E53935;
  color: #fff;
}

/* Hide dropdowns on mobile - use mobile cart/search instead */
@media (max-width: 767px) {
  .login-dropdown-menu,
  .cart-dropdown-menu {
    display: none !important;
  }
}

/* ===========================
   MOBILE SEARCH OVERLAY
   =========================== */
.mobile-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 9999;
  display: none;
  flex-direction: column;
  padding: 20px;
}

.mobile-search-overlay.active {
  display: flex;
}

.mobile-search-container {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.mobile-search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.mobile-search-header span {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
}

.mobile-search-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-search-input {
  position: relative;
  margin-bottom: 24px;
}

.mobile-search-input i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

.mobile-search-input input {
  width: 100%;
  padding: 14px 14px 14px 48px;
  border: 2px solid #1a1a1a;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
}

.mobile-search-popular p {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 12px;
}

.mobile-search-popular .popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mobile-search-popular .popular-tags a {
  display: inline-block;
  padding: 8px 16px;
  background: #f5f5f5;
  border-radius: 20px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.875rem;
}

/* ===========================
   MOBILE CART SIDEBAR
   =========================== */
.mobile-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-cart-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #1a1a1a;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}

.mobile-cart-sidebar.active {
  right: 0;
}

.mobile-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #333;
  color: #fff;
}

.mobile-cart-header span {
  font-size: 1.125rem;
  color: #fff;
}

.mobile-cart-header strong {
  color: #E53935;
}

.mobile-cart-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #333;
}

.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px 0;
}

.cart-item-brand {
  font-size: 0.75rem;
  color: #888;
  margin: 0 0 8px 0;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid #555;
  background: transparent;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.cart-item-qty span {
  color: #fff;
  font-weight: 600;
}

.cart-item-price {
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.mobile-cart-summary {
  padding: 20px;
  border-top: 1px solid #333;
  background: #222;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  color: #fff;
}

.cart-row span {
  color: #ccc;
}

.cart-row strong {
  font-size: 1.25rem;
  color: #fff;
}

.cart-shipping .free {
  color: #4CAF50;
  font-weight: 600;
}

.mobile-cart-actions {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #1a1a1a;
}

.mobile-cart-actions .btn {
  width: 100%;
  padding: 14px 20px;
  text-align: center;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: block;
}

.mobile-cart-actions .btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.mobile-cart-actions .btn-primary {
  background: #E53935;
  border: 2px solid #E53935;
  color: #fff;
}

/* ===========================
   BACK TO TOP BUTTON
   =========================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #E53935;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* ===========================
   MOBILE MENU - SUBMENU
   =========================== */
.mobile-menu-nav .has-submenu > a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-nav .has-submenu > a span:first-child {
  flex: 1;
}

.mobile-menu-nav .submenu-toggle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.5rem;
  font-weight: 300;
  color: #666;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.mobile-menu-nav .has-submenu.open > a .submenu-toggle {
  transform: rotate(45deg);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  background: #f9f9f9;
  transition: max-height 0.3s ease;
}

.mobile-menu-nav .has-submenu.open .mobile-submenu {
  max-height: 500px;
}

.mobile-submenu li {
  border-bottom: 1px solid #eee !important;
}

.mobile-submenu li:last-child {
  border-bottom: none !important;
}

.mobile-submenu a {
  padding: 14px 20px 14px 35px !important;
  font-size: 0.9375rem !important;
  font-weight: 400 !important;
  color: #444 !important;
}

.mobile-submenu a:hover {
  color: var(--color-accent) !important;
}

.mobile-submenu .see-all {
  color: var(--color-accent) !important;
  font-weight: 600 !important;
}

/* ===========================
   MOBILE MENU - SECO PRO BUTTON
   =========================== */
.mobile-menu-pro {
  padding: 15px 20px;
}

.mobile-pro-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-pro-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.mobile-pro-btn .pro-icon {
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.125rem;
}

.mobile-pro-btn .pro-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mobile-pro-btn .pro-text strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.mobile-pro-btn .pro-text small {
  color: #999;
  font-size: 0.75rem;
}

.mobile-pro-btn .pro-arrow {
  color: #fff;
  font-size: 1.25rem;
}

/* ===========================
   MOBILE MENU - CONTACT & SOCIAL
   =========================== */
.mobile-menu-contact {
  padding: 20px;
  background: #f5f5f5;
  margin-top: auto;
}

.mobile-menu-contact .contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: #333;
  font-size: 0.9375rem;
}

.mobile-menu-contact .contact-row i {
  width: 20px;
  color: #666;
}

.mobile-menu-contact .contact-row a {
  color: #333;
  text-decoration: none;
}

.mobile-menu-contact .contact-row a:hover {
  color: var(--color-accent);
}

.mobile-menu-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}

.mobile-menu-social a {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.mobile-menu-social a:hover {
  background: var(--color-accent);
  color: #fff;
}

/* ============================================
   LOGGED-IN USER HEADER STYLES
   Added: 30.01.2026 by klaudiusz@localhost
   ============================================ */

/* Header User Profile */
.header-user-profile {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  padding: 8px 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 25px;
  transition: background 0.2s ease;
}

.header-user-profile:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.header-user-greeting {
  font-size: 14px;
  white-space: nowrap;
}

.header-user-greeting strong {
  font-weight: 600;
}

/* Header User Points Badge */
.header-user-points {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  min-width: 60px;
  line-height: 1.2;
}

.header-user-points-value {
  font-size: 13px;
  font-weight: 700;
}

.header-user-points-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Topbar Loyalty Section */
.topbar-loyalty {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #333;
}

.topbar-loyalty-points {
  font-weight: 700;
  color: var(--color-accent);
}

.topbar-loyalty-link {
  color: #333;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.topbar-loyalty-link:hover {
  color: var(--color-accent);
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .header-user-profile {
    padding: 6px 10px;
    font-size: 13px;
  }

  .header-user-points {
    padding: 4px 8px;
    min-width: 50px;
  }

  .header-user-points-value {
    font-size: 12px;
  }

  .header-user-points-label {
    font-size: 9px;
  }

  .topbar-loyalty {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-user-profile,
  .header-user-points {
    display: none;
  }
}

/* ============================================
   B2C LOGGED-IN HEADER STYLES
   Based on seco-html-final/produkt-b2c.html
   Added: 30.01.2026 by klaudiusz@localhost
   ============================================ */

/* A. TOP BAR (czarny) */
.b2c-topbar {
  background: #1a1a1a;
  padding: 8px 0;
}

.b2c-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.b2c-topbar__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #fff;
}

.b2c-topbar__lang-sep {
  opacity: 0.5;
}

.b2c-topbar__loyalty {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #fff;
}

.b2c-topbar__loyalty-points {
  color: #e63946;
  font-weight: 700;
}

.b2c-topbar__loyalty-link {
  color: #fff;
  text-decoration: underline;
}

.b2c-topbar__loyalty-link:hover {
  color: #e63946;
}

.b2c-topbar__links {
  display: flex;
  gap: 20px;
  font-size: 13px;
}

.b2c-topbar__links a {
  color: #fff;
  text-decoration: none;
}

.b2c-topbar__links a:hover {
  color: #e63946;
}

/* B. CONTACT BAR (biały z czerwonym tekstem) */
.b2c-contact-bar {
  background: #fff;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.b2c-contact-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: #e63946;
}

.b2c-contact-bar__sep {
  color: #ddd;
}

.b2c-contact-bar__inner a {
  color: #e63946;
}

/* C. HEADER MAIN (biały) */
.b2c-header {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.b2c-header__inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.b2c-header__logo {
  flex-shrink: 0;
  text-decoration: none;
}

.b2c-header__logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.05em;
}

.b2c-header__search {
  flex: 1;
  max-width: 500px;
}

.b2c-header__search input {
  width: 100%;
  padding: 12px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  background: #f5f5f5;
  border: none;
  border-radius: 25px;
}

.b2c-header__search input::placeholder {
  color: #999;
}

.b2c-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.b2c-header__profile {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
}

.b2c-header__profile:hover {
  background: #333;
  color: #fff;
}

.b2c-header__profile strong {
  margin-left: 4px;
}

.b2c-header__points {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 12px;
  background: #fff;
  border: 2px solid #e63946;
  border-radius: 20px;
}

.b2c-header__points-value {
  font-size: 12px;
  font-weight: 700;
  color: #e63946;
  line-height: 1;
}

.b2c-header__points-label {
  font-size: 10px;
  color: #e63946;
  line-height: 1;
}

.b2c-header__icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #1a1a1a;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}

.b2c-header__icon-btn:hover {
  color: #e63946;
}

.b2c-header__cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e63946;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
}

/* D. NAVIGATION (biały) */
.b2c-nav {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.b2c-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 15px 0;
  margin: 0;
}

.b2c-nav__list li {
  display: flex;
  align-items: center;
}

.b2c-nav__link {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.b2c-nav__link:hover {
  color: #e63946;
}

.b2c-nav__link--active {
  color: #e63946;
}

.b2c-nav__link--new::before,
.b2c-nav__link--promo::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.b2c-nav__link--new::before {
  background: #4CAF50;
}

.b2c-nav__link--promo::before {
  background: #e63946;
}

/* E. PROMO BAR (szary) */
.b2c-promo-bar {
  background: #f5f5f5;
  padding: 15px 0;
}

.b2c-promo-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.b2c-promo-bar__arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.2s ease;
}

.b2c-promo-bar__arrow:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.b2c-promo-bar__content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.b2c-promo-bar__text {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.b2c-promo-bar__link {
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: underline;
}

.b2c-promo-bar__link:hover {
  color: #e63946;
}

/* B2C Header Responsive */
@media (max-width: 991px) {
  .b2c-header__search {
    max-width: 300px;
  }

  .b2c-header__profile {
    padding: 8px 15px;
    font-size: 13px;
  }

  .b2c-nav__list {
    gap: 15px;
  }

  .b2c-nav__link {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .b2c-topbar,
  .b2c-contact-bar,
  .b2c-header,
  .b2c-nav,
  .b2c-promo-bar {
    display: none;
  }
}

/* ===========================
   B2B HEADER STYLES
   =========================== */

/* PASEK 1 - TOPBAR (biały) */
.b2b-topbar {
  background: #ffffff;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.b2b-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.b2b-topbar__lang {
  display: flex;
  align-items: center;
  gap: 8px;
}

.b2b-topbar__lang-icon {
  color: #666;
  font-size: 14px;
}

.b2b-topbar__lang-options {
  display: flex;
  align-items: center;
  gap: 5px;
}

.b2b-topbar__lang-link {
  color: #666;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.b2b-topbar__lang-link--active {
  color: #1a1a1a;
  font-weight: 700;
}

.b2b-topbar__lang-separator {
  color: #ccc;
}

.b2b-topbar__info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.b2b-topbar__info-label {
  color: #666;
}

.b2b-topbar__info-value {
  color: #e63946;
  font-weight: 700;
}

.b2b-topbar__info-separator {
  color: #ccc;
  margin: 0 5px;
}

.b2b-topbar__links {
  display: flex;
  gap: 20px;
}

.b2b-topbar__link {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.b2b-topbar__link:hover {
  color: #e63946;
}

/* PASEK 2 - HEADER INFO (czarny) */
.b2b-header-info {
  background: #1a1a1a;
  padding: 12px 0;
}

.b2b-header-info .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.b2b-header-info__logo img {
  height: 24px;
  filter: brightness(0) invert(1);
}

.b2b-header-info__advisor {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #fff;
}

.b2b-header-info__advisor-label {
  color: #999;
}

.b2b-header-info__advisor-name {
  font-weight: 700;
}

.b2b-header-info__advisor-separator {
  color: #666;
}

.b2b-header-info__advisor-phone {
  color: #fff;
}

.b2b-header-info__advisor-email {
  color: #fff;
  text-decoration: none;
}

.b2b-header-info__advisor-email:hover {
  text-decoration: underline;
}

/* Separator */
.b2b-header-separator {
  margin: 0;
  border: none;
  border-top: 1px solid #eee;
}

/* PASEK 3 - HEADER MAIN (biały) */
.b2b-header-main {
  background: #ffffff;
  padding: 20px 0;
}

.b2b-header-main .container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.b2b-badge-pro {
  display: block;
  flex-shrink: 0;
}

.b2b-badge-pro__img {
  height: 50px;
  width: auto;
}

.b2b-search {
  flex: 1;
  max-width: 600px;
  display: flex;
  position: relative;
}

.b2b-search__input {
  width: 100%;
  padding: 12px 50px 12px 20px;
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.b2b-search__input:focus {
  border-color: #1a1a1a;
}

.b2b-search__btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #1a1a1a;
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.b2b-search__btn:hover {
  background: #333;
}

.b2b-header-main__actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.b2b-user-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #f5f5f5;
  border: none;
  padding: 8px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.2s;
}

.b2b-user-btn:hover {
  background: #eee;
}

.b2b-user-btn__greeting {
  font-size: 12px;
  color: #666;
}

.b2b-user-btn__name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}

.b2b-action-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #1a1a1a;
  position: relative;
  transition: color 0.2s;
}

.b2b-action-btn:hover {
  color: #e63946;
}

.b2b-action-btn__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #e63946;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

/* B2B Header Responsive */
@media (max-width: 991px) {
  .b2b-topbar__info {
    display: none;
  }

  .b2b-header-info__advisor {
    font-size: 12px;
  }

  .b2b-search {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .b2b-topbar,
  .b2b-header-info,
  .b2b-header-separator,
  .b2b-header-main {
    display: none;
  }
}