
html{
  -webkit-font-smoothing:antialiased !important;
  overflow-x: hidden;
}

body{  
  overflow-x: hidden;
  margin:0;
}
/* Sony VLOGGERS Landing Page - Styles */
/* Wszystkie klasy z prefiksem lpv- */
/* Brak globalnego resetu CSS - reset tylko dla konkretnych elementów */

/* ============================================
   FONTY - SST Roman, Light, Bold
   ============================================ */

@font-face {
  font-family: "SST";
  src: url("fonts/SSTW02Roman.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "SST";
  src: url("https://images.scentre.pl/images/scentre_vloggers/fonts/SSTW02Light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "SST";
  src: url("https://images.scentre.pl/images/scentre_vloggers/fonts/SSTW02Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
}

/* ============================================
   ZMIENNE CSS - Kolory i rozmiary z Figmy
   ============================================ */

:root {
  /* Kolory z Figmy - dokładne wartości */
  --lpv-color-black: #020200;
  --lpv-color-white: #ffffff;
  --lpv-color-foreground: #ffffff;
  --lpv-color-foreground-muted: #9e9e9e;
  --lpv-color-border: #d8d8d8;
  --lpv-color-img-bg: #f2f5f9;
  --lpv-color-background: #ffffff;
  
  /* Kolory sekcji/kategorii - dokładne z Figmy */
  --lpv-color-videoblog: rgba(5, 178, 190, 0.73);
  --lpv-color-storytelling: rgba(117, 48, 237, 0.56);
  --lpv-color-streaming: rgba(195, 67, 238, 0.63);
  --lpv-color-hybrid: rgba(255, 180, 43, 0.59);
  
  /* Kolory akcji */
  --lpv-color-primary: #2d75c7;
  --lpv-color-button: #2d75c7;
  --lpv-color-button-hover: #245fa3;
  
  /* Breakpointy */
  --lpv-breakpoint-xl: 1440px;
  --lpv-breakpoint-lg: 1230px;
  --lpv-breakpoint-md: 960px;
  
  /* Max-width kontenera - z Figmy */
  --lpv-max-screen-width: 1190px;
  --lpv-container-xl: 1218px;
  --lpv-container-lg: 1218px;
  --lpv-container-md: 960px;
  
  /* Odstępy z Figmy */
  --lpv-gap-0-5: 2px;
  --lpv-gap-1: 4px;
  --lpv-gap-2: 8px;
  --lpv-gap-3: 12px;
  --lpv-gap-4: 16px;
  --lpv-gap-5: 20px;
  --lpv-gap-6: 24px;
  --lpv-gap-7: 32px;
  --lpv-gap-9: 44px;
  --lpv-gap-11: 64px;
  
  /* Paddingi z Figmy */
  --lpv-p-0: 0px;
  --lpv-p-3: 6px;
  --lpv-p-4: 8px;
  --lpv-p-5: 12px;
  --lpv-p-6: 16px;
  --lpv-p-7: 20px;
  --lpv-p-8: 24px;
  --lpv-p-10: 44px;
  
  /* Zaokrąglenia z Figmy */
  --lpv-r-1: 4px;
  --lpv-r-2: 8px;
  
  /* Czcionki */
  --lpv-font-family: "SST", sans-serif;
  --lpv-font-family-system: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  --lpv-font-weight-light: 300;
  --lpv-font-weight-normal: 400;
  --lpv-font-weight-medium: 500;
  --lpv-font-weight-bold: 700;
}

/* ============================================
   RESET DLA KONKRETNYCH ELEMENTÓW
   (Brak globalnego resetu - kod osadzany na innej stronie)
   ============================================ */

.lpv-wrap * {
  box-sizing: border-box;
}

.lpv-wrap input,
.lpv-wrap button,
.lpv-wrap textarea {
  margin: 0;
  padding: 0;
  font-family: inherit;
}


/* ============================================
   LAYOUT GŁÓWNY
   ============================================ */

.lpv-wrap {
  font-family: var(--lpv-font-family-system);
  font-weight: var(--lpv-font-weight-normal);
  color: var(--lpv-color-black);
  line-height: 1.5;
  background: var(--lpv-color-white);
  padding: var(--lpv-gap-6);
  display: flex;
  flex-direction: column;
  gap: var(--lpv-gap-6);
}


.lpv-top-menu-inner-text {
  display: none;
}

/* ============================================
   SYSTEM KONTENERÓW - Responsywne breakpointy
   ============================================ */

.lpv-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* >1440px → max-width: 1376px */
@media (min-width: 1441px) {
  .lpv-container {
    max-width: var(--lpv-container-xl);
  }
}

/* 1230–1440px → max-width: 1218px */
@media (min-width: 1230px) and (max-width: 1440px) {
  .lpv-container {
    max-width: var(--lpv-container-lg);
  }
}

/* 960–1230px → max-width: 960px */
@media (min-width: 960px) and (max-width: 1229px) {
  .lpv-container {
    max-width: var(--lpv-container-md);
  }
}

/* <960px → mobile, 100% szerokości */
@media (max-width: 959px) {
  .lpv-container {
    max-width: 100%;
  }
}

/* ============================================
   KOMPONENTY UNIWERSALNE
   ============================================ */

/* TOPBAR - Sony Centre information bar */
.lpv-topbar {
  background: var(--lpv-color-black);
  padding: var(--lpv-p-8) 0;
  width: 100%;
}

.lpv-topbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--lpv-max-screen-width);
  margin: 0 auto;
  padding: 0 var(--lpv-p-8);
}

.lpv-topbar-left {
  display: flex;
  align-items: center;
  gap: var(--lpv-gap-7);
}

.lpv-topbar-logo {
  height: 32px;
  width: auto;
}

.lpv-topbar-text {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: var(--lpv-font-weight-normal);
  font-family: var(--lpv-font-family-system);
  color: #dddddd;
  line-height: normal;
  text-align: left;
  white-space: pre;
}

.lpv-topbar-link, .lpv-topbar-link p, .lpv-topbar-link span {
  text-decoration: none;
}

.lpv-topbar-link:visited, .lpv-topbar-link:hover, .lpv-topbar-link:active, .lpv-topbar-link:focus {
  text-decoration: none;
}

.lpv-topbar:hover {
  opacity: 0.9;
}


/* TOP MENU - Nawigacja główna */
.lpv-top-menu {
  background: var(--lpv-color-white);
  padding: 0 var(--lpv-p-0);
  width: 100%;
}

.lpv-top-menu-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--lpv-max-screen-width);
  margin: 0 auto;
  padding: 0 var(--lpv-p-8);
  gap: var(--lpv-gap-9);
}

.lpv-logo {
  display: block;
  overflow: hidden;
  height: 20px;
}


.lpv-logo img {
  width: 100%;
  height: 100%;
  display: block;
}

.lpv-nav {
  display: flex;
  align-items: center;
  gap: var(--lpv-gap-9);
}

.lpv-nav-link {
  margin: 0;
  padding: var(--lpv-p-4) var(--lpv-p-3);
  text-decoration: none;
  color: var(--lpv-color-black);
  font-size: 18px;
  font-weight: var(--lpv-font-weight-medium);
  font-family: var(--lpv-font-family-system);
  transition: color 0.3s ease;
}

.lpv-nav-link:hover {
  color: var(--lpv-color-button);
}

.lpv-nav-link-active {
  font-weight: var(--lpv-font-weight-medium);
}

/* Aktywne linki - różny kolor dla każdej podstrony */
.lpv-nav-link-videoblog {
  color: #00d8e5;
}

.lpv-nav-link-storytelling {
  color: #9c27b0;
}

.lpv-nav-link-streaming {
  color: #e91e63;
}

.lpv-nav-link-hybrid {
  color: #ff9800;
}

/* HAMBURGER MENU - Mobile */
.lpv-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1000;
  position: relative;
}

.lpv-hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--lpv-color-black);
  transition: all 0.3s ease;
}

.lpv-hamburger.active  {
  opacity: 0;
}


.lpv-mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.lpv-mobile-menu-overlay.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* HERO SECTION - Video + boksy */
.lpv-hero-section {
  position: relative;
  height: 800px;
  width: 100%;
  overflow: hidden;
}

.lpv-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100%;
  min-width: 200vh; /* 16:9 aspect ratio */
  transform: translate(-50%, -50%);
  z-index: 1;
  border: 0;
  pointer-events: none;
}

.lpv-hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: var(--lpv-gap-11) var(--lpv-p-0) var(--lpv-gap-9) var(--lpv-p-0);
  gap: var(--lpv-gap-11);
}

.lpv-hero-content {
  color: var(--lpv-color-white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  width: 100%;
}

.lpv-hero-title {
  margin: 0;
  padding: 0;
  font-size: 55px;
  font-weight: var(--lpv-font-weight-medium);
  font-family: "SST", sans-serif;
  line-height: normal;
  letter-spacing: -1.65px;
  white-space: nowrap;
}

.lpv-hero-subtitle {
  margin: 0;
  padding: 0;
  font-size: 19px;
  font-weight: var(--lpv-font-weight-normal);
  font-family: var(--lpv-font-family-system);
  line-height: 1.2;
  letter-spacing: -0.38px;
  text-align: center;
}

.lpv-hero-boxes {
  display: flex;
  gap: var(--lpv-gap-6);
  max-width: var(--lpv-container-lg);
  padding: 0 var(--lpv-p-8);
  margin: 80px auto 0;
}

.lpv-hero-box {
  flex: 1 1 0;
  margin: 0;
  padding: var(--lpv-gap-6);
  text-decoration: none;
  color: var(--lpv-color-white);
  display: flex;
  flex-direction: column;
  gap: var(--lpv-gap-9);
  align-items: flex-start;
  height: 335px;
  backdrop-filter: blur(4.2px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.lpv-hero-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.lpv-hero-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.1);
  border-radius: var(--lpv-r-2);
}

.lpv-hero-box:hover::before {
  opacity: 1;
}

.lpv-hero-box > * {
  position: relative;
  z-index: 2;
}

.lpv-hero-box-videoblog {
  background: var(--lpv-color-videoblog);
}

.lpv-hero-box-storytelling {
  background: var(--lpv-color-storytelling);
}

.lpv-hero-box-streaming {
  background: var(--lpv-color-streaming);
}

.lpv-hero-box-hybrid {
  background: var(--lpv-color-hybrid);
}

.lpv-hero-box-label {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: var(--lpv-font-weight-normal);
  font-family: var(--lpv-font-family-system);
  line-height: normal;
  letter-spacing: -0.32px;
  text-align: left;
}

.lpv-hero-box-title {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 23px;
  font-weight: var(--lpv-font-weight-medium);
  font-family: "SST", sans-serif;
  line-height: 1.2;
  letter-spacing: -0.46px;
  text-align: left;
}

.lpv-hero-box-link {
  margin: 0;
  padding: var(--lpv-p-3) var(--lpv-p-0);
  font-size: 14px;
  font-weight: var(--lpv-font-weight-medium);
  font-family: "SST", sans-serif;
  line-height: normal;
  border-radius: var(--lpv-r-1);
  display: flex;
  align-items: center;
  gap: var(--lpv-p-3);
  text-align: left;
}

/* SIDEBAR - Uniwersalny mechanizm (Sheet-Params) */
.lpv-sidebar {
  position: fixed;
  top: 0;
  right: -700px;
  width: 700px;
  max-width: 90vw;
  height: 100vh;
  background: var(--lpv-color-white);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 0 4px 16px rgba(0, 0, 0, 0.15);
}

.lpv-sidebar.lpv-sidebar-open {
  right: 0;
}

.lpv-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
  transition: opacity 0.3s ease;
}

.lpv-sidebar-overlay.lpv-sidebar-overlay-open {
  display: block;
}

.lpv-sidebar-close {
  position: absolute;
  top: var(--lpv-gap-2);
  right: var(--lpv-gap-6);
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  font-size: 40px;
  font-weight: var(--lpv-font-weight-light);
  cursor: pointer;
  color: var(--lpv-color-black);
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.lpv-sidebar-close:hover {
  opacity: 0.6;
}

.lpv-sidebar-content {
  padding: var(--lpv-p-7) var(--lpv-p-8);
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: var(--lpv-gap-6);
  height: calc(100% - 20px);
  position: relative;
}

.lpv-sidebar-title {
  margin: 0;
  padding: 0;
  font-size: 22px;
  font-weight: var(--lpv-font-weight-medium);
  font-family: "SST", sans-serif;
  color: var(--lpv-color-black);
  letter-spacing: -0.44px;
  line-height: normal;
}

.lpv-sidebar-image {
  width: 100%;
  height: 400px;
  border: 1px solid var(--lpv-color-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lpv-sidebar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lpv-sidebar-desc {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: var(--lpv-font-weight-normal);
  font-family: var(--lpv-font-family-system);
  color: var(--lpv-color-black);
  letter-spacing: -0.32px;
  line-height: 26px;
}

.lpv-sidebar-close-wrapper {
  position: sticky;
  bottom: 0;
  width: 100%;
  background: var(--lpv-color-white);
  padding: var(--lpv-p-7) 0;
  margin: 0 calc(-1 * var(--lpv-p-8));
  padding-left: var(--lpv-p-8);
  padding-right: var(--lpv-p-8);
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.lpv-sidebar-close-btn {
  margin: 0;
}

/* SIDEBAR PRODUCTS - Lista produktów */
.lpv-sidebar-products-list {
  display: flex;
  flex-direction: column;
  gap: var(--lpv-gap-7);
  width: 100%;
}

.lpv-sidebar-product-item {
  display: flex;
  gap: var(--lpv-gap-6);
  align-items: flex-start;
  width: 100%;
}

.lpv-sidebar-product-img {
  width: 160px;
  height: 160px;
  background: var(--lpv-color-img-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--lpv-p-6) var(--lpv-p-6);
  flex-shrink: 0;
}

.lpv-sidebar-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.lpv-sidebar-product-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--lpv-gap-5);
  padding: 0 0 var(--lpv-p-8);
  align-items: flex-start;
}

.lpv-sidebar-product-info {
  display: flex;
  flex-direction: column;
  gap: var(--lpv-gap-4);
}

.lpv-sidebar-product-title {
  margin: 0;
  padding: 0;
  font-size: 24px;
  font-weight: var(--lpv-font-weight-normal);
  font-family: "SST", sans-serif;
  color: var(--lpv-color-black);
  letter-spacing: -0.48px;
  line-height: 48px;
}

.lpv-sidebar-product-desc {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: var(--lpv-font-weight-normal);
  font-family: "SST", sans-serif;
  color: var(--lpv-color-black);
  letter-spacing: -0.28px;
  line-height: 22px;
}

/* ============================================
   KOMPONENTY PODSTRON - REUŻYWALNE
   ============================================ */

/* HERO SECTION - Wersja dla podstron */
.lpv-hero-section-subpage {
  height: 800px;
  min-height: 800px;
}

.lpv-hero-overlay-subpage {
  justify-content: center;
  padding: var(--lpv-gap-11) 0;
}

.lpv-hero-text-subpage {
  max-width: var(--lpv-max-screen-width);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--lpv-gap-6);
  padding: 0 var(--lpv-p-8);
}

.lpv-hero-text-subpage > * {
  width: 50%;
}

.lpv-hero-label {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: var(--lpv-font-weight-medium);
  font-family: var(--lpv-font-family-system);
  color: var(--lpv-color-white);
  letter-spacing: -0.38px;
  line-height: normal;
  text-align: left;
}

.lpv-hero-title-subpage {
  margin: 0;
  padding: 0;
  font-size: 48px;
  font-weight: var(--lpv-font-weight-medium);
  font-family: "SST", sans-serif;
  color: var(--lpv-color-white);
  letter-spacing: -1.65px;
  line-height: 1.3;
  text-align: left;
}

/* STICKY NAVIGATION */
.lpv-sticky-nav {
  position: sticky;
  top: 0;
  background: var(--lpv-color-white);
  z-index: 100;
  padding: var(--lpv-gap-6) 0;
  transition: box-shadow 0.3s ease;
  margin: 0 -36px;
}

.lpv-sticky-nav-inner {
  max-width: var(--lpv-max-screen-width);
  margin: 0 auto;
  padding: 0 var(--lpv-p-8);
  display: flex;
  gap: var(--lpv-gap-7);
  align-items: center;
  justify-content: center;
}

.lpv-sticky-link {
  margin: 0;
  padding: var(--lpv-p-6) var(--lpv-p-5);
  text-decoration: none;
  color: var(--lpv-color-black);
  font-size: 16px;
  font-weight: var(--lpv-font-weight-medium);
  font-family: var(--lpv-font-family-system);
  line-height: normal;
  border-radius: var(--lpv-r-2);
  transition: background 0.3s ease;
  white-space: nowrap;
}

.lpv-sticky-link:hover {
  background: rgba(0, 0, 0, 0.05);
}

.lpv-sticky-nav.lpv-sticky-scrolled {
  box-shadow: 0 13px 8px rgba(0, 0, 0, 0.06);
}

/* SECTION PARAMS - Grid banerów z możliwościami */
.lpv-section-params {
  background: var(--lpv-color-white);
  padding: var(--lpv-gap-9) 0;
  display: flex;
  flex-direction: column;
  gap: var(--lpv-gap-11);
  align-items: center;
}

.lpv-section-params-title {
  max-width: var(--lpv-max-screen-width);
  padding: var(--lpv-p-4) var(--lpv-p-8);
  display: flex;
  flex-direction: column;
  gap: var(--lpv-gap-4);
  align-items: center;
  text-align: center;
}

.lpv-section-label {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: var(--lpv-font-weight-medium);
  font-family: var(--lpv-font-family-system);
  color: var(--lpv-color-black);
  line-height: normal;
  text-transform: uppercase;
}

.lpv-section-heading {
  margin: 0;
  padding: 0;
  font-size: 36px;
  font-weight: var(--lpv-font-weight-medium);
  font-family: "SST", sans-serif;
  color: var(--lpv-color-black);
  letter-spacing: -0.72px;
  line-height: normal;
}

.lpv-section-desc-small {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: var(--lpv-font-weight-normal);
  font-family: var(--lpv-font-family-system);
  color: var(--lpv-color-black);
  letter-spacing: -0.36px;
  line-height: 1.3;
  max-width: 1142px;
}

/* Grid banerów - layout Videoblog (1 wysoki + 4 normalne) */
.lpv-params-grid-videoblog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: var(--lpv-gap-6);
  max-width: var(--lpv-max-screen-width);
  width: 100%;
  height: 760px;
  overflow: hidden;
}

.lpv-param-banner-tall {
  grid-row: span 2;
}

.lpv-param-banner {
  margin: 0;
  padding: var(--lpv-gap-7);
  background: #2a2728;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.lpv-param-banner:hover {
  transform: scale(1.02);
}

.lpv-param-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.lpv-param-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #2d2c2c 0%, rgba(45, 44, 44, 0.24) 100%);
  z-index: 2;
}

.lpv-param-banner-title {
  margin: 0;
  padding: 0;
  font-size: 30px;
  font-weight: var(--lpv-font-weight-medium);
  font-family: "SST", sans-serif;
  color: var(--lpv-color-white);
  letter-spacing: -0.6px;
  line-height: normal;
  position: relative;
  z-index: 3;
}

.lpv-param-banner-icon {
  margin: 0;
  padding: var(--lpv-p-4);
  background: rgba(2, 2, 0, 0.5);
  color: var(--lpv-color-white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 3;
}

.lpv-param-banner-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--lpv-color-white);
  stroke-width: 2;
}

/* SECTION ARTICLES - Naprzemienne artykuły */
.lpv-section-articles {
  background: var(--lpv-color-white);
  padding: var(--lpv-gap-9) 0;
  display: flex;
  flex-direction: column;
  gap: var(--lpv-gap-11);
  align-items: center;
}

.lpv-articles-list {
  display: flex;
  flex-direction: column;
  gap: 84px;
  width: 100%;
  max-width: var(--lpv-max-screen-width);
  padding: 0 var(--lpv-p-8);
}

.lpv-article-row,
.lpv-article-row-reverse {
  display: flex;
  gap: var(--lpv-gap-9);
  align-items: flex-start;
  justify-content: center;
}

.lpv-article-row-reverse {
  flex-direction: row-reverse;
}

.lpv-article-col-text,
.lpv-article-col-img {
  flex: 1;
  min-width: 0;
}

.lpv-article-col-text {
  display: flex;
  flex-direction: column;
  gap: var(--lpv-gap-7);
  align-items: flex-start;
  justify-content: center;
}

.lpv-article-product-code {
  margin: 0;
  padding: 0;
  font-size: 32px;
  font-weight: var(--lpv-font-weight-bold);
  font-family: "SST", sans-serif;
  color: var(--lpv-color-black);
  letter-spacing: -1px;
  line-height: normal;
}

.lpv-article-title {
  margin: 0;
  padding: 0;
  font-size: 32px;
  font-weight: var(--lpv-font-weight-normal);
  font-family: "SST", sans-serif;
  color: var(--lpv-color-black);
  letter-spacing: -1px;
  line-height: 42px;
}

.lpv-article-desc {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: var(--lpv-font-weight-normal);
  font-family: var(--lpv-font-family-system);
  color: var(--lpv-color-black);
  letter-spacing: 0;
  line-height: 30px;
}

.lpv-article-buttons {
  display: flex;
  gap: var(--lpv-gap-2);
  align-items: flex-start;
  padding: var(--lpv-gap-6) 0;
  width: 100%;
}

.lpv-article-col-img {
  display: flex;
  align-items: flex-start;
}

.lpv-article-col-img img {
  width: 100%;
  height: 526px;
  object-fit: cover;
  display: block;
}

/* Przycisk outlined (dla "Polecane obiektywy") */
.lpv-button-outlined {
  background: var(--lpv-color-white) !important;
  color: var(--lpv-color-primary) !important;
  border: 1px solid var(--lpv-color-primary) !important;
}

.lpv-button-outlined:hover {
  background: rgba(45, 117, 199, 0.1);
}

/* BANNER SECTION - Duży banner środkowy */
.lpv-banner-section {
  position: relative;
  width: 100%;
  height: 460px;
  margin: 0 auto;
  padding: var(--lpv-gap-9) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lpv-banner-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.lpv-banner-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.lpv-banner-section-content {
  position: relative;
  z-index: 3;
  max-width: var(--lpv-max-screen-width);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--lpv-gap-6);
  padding: 0 var(--lpv-p-8);
}

.lpv-banner-section-label {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: var(--lpv-font-weight-medium);
  font-family: "SST", sans-serif;
  color: var(--lpv-color-white);
  letter-spacing: 0px;
  line-height: normal;
}

.lpv-banner-section-title {
  margin: 0;
  padding: 0;
  font-size: 55px;
  font-weight: var(--lpv-font-weight-medium);
  font-family: "SST", sans-serif;
  color: var(--lpv-color-white);
  letter-spacing: -1.65px;
  line-height: normal;
}

/* SECTION SLIDER - Przewijany slider z kartami */
.lpv-section-slider {
  background: var(--lpv-color-white);
  padding: var(--lpv-gap-11) 0;
  width: 100%;
  overflow: visible;
}

.lpv-slider-wrapper {
  position: relative;
  max-width: var(--lpv-max-screen-width);
  margin: 0 auto;
  padding-left: var(--lpv-p-8);
  overflow: visible;
}

.lpv-slider-track {
  display: flex;
  gap: var(--lpv-gap-9);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-right: var(--lpv-p-8);
  width: 2424px;
  /* 4 karty x 560px + 3 gapy x 44px = 2240 + 132 = 2372px + padding */
  position: relative;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.lpv-slider-track-3 {
  width: 1820px;
}

.lpv-slider-track::-webkit-scrollbar {
  display: none;
}

.lpv-slider-card {
  flex: 0 0 560px;
  display: flex;
  flex-direction: column;
  gap: var(--lpv-gap-7);
}

.lpv-slider-card-img {
  height: 340px;
  overflow: hidden;
}

.lpv-slider-card-img img {
  width: 100%;
  height: 526px;
  object-fit: cover;
  object-position: 50% 0%;
}

.lpv-slider-card-content {
  display: flex;
  flex-direction: column;
  gap: var(--lpv-gap-7);
  align-items: flex-start;
}

.lpv-slider-card-title {
  margin: 0;
  padding: 0;
  font-size: 32px;
  font-weight: var(--lpv-font-weight-normal);
  font-family: "SST", sans-serif;
  color: var(--lpv-color-black);
  letter-spacing: -0.64px;
  line-height: 42px;
  min-height: 70px;
}

.lpv-slider-card-compatibility {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: var(--lpv-font-weight-medium);
  font-family: "SST", sans-serif;
  color: var(--lpv-color-primary);
  letter-spacing: 0px;
  line-height: normal;
}

.lpv-slider-card-desc {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: var(--lpv-font-weight-normal);
  font-family: var(--lpv-font-family-system);
  color: var(--lpv-color-black);
  letter-spacing: 0;
  line-height: 30px;
  min-height: 200px;
}

.lpv-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: var(--lpv-p-5) !important;
  background: var(--lpv-color-white);
  border: 1px solid var(--lpv-color-border);
  border-radius: var(--lpv-r-2);
  cursor: pointer;
  z-index: 100;
  transition: background 0.3s ease;
  pointer-events: auto;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lpv-slider-arrow:hover {
  background: #f5f5f5;
}

.lpv-slider-arrow-prev {
  left: 0;
}

.lpv-slider-arrow-next {
  right: 0;
}

.lpv-slider-arrow img {
  width: 14px;
  height: 14px;
  display: block;
  pointer-events: none;
}

/* SECTION TABLE - Tabela porównawcza */
.lpv-section-table {
  background: var(--lpv-color-white);
  padding: var(--lpv-gap-9) 0;
  display: flex;
  flex-direction: column;
  gap: var(--lpv-gap-11);
  align-items: center;
}

.lpv-table-title {
  max-width: var(--lpv-max-screen-width);
  padding: var(--lpv-p-4) var(--lpv-p-8);
  display: flex;
  flex-direction: column;
  gap: var(--lpv-gap-4);
  align-items: center;
  text-align: center;
}

.lpv-table {
  max-width: var(--lpv-max-screen-width);
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 var(--lpv-p-8);
}

.lpv-table-row {
  display: flex;
  width: 100%;
  border-top: 1px solid var(--lpv-color-border);
  min-height: 100px;
}

.lpv-table-row-alt {
  background: var(--lpv-color-img-bg);
}

.lpv-table-header {
  padding-bottom: var(--lpv-gap-6);
  border-top: none;
}

.lpv-table-cell {
  flex: 1;
  padding: var(--lpv-gap-6) var(--lpv-p-6);
  display: flex;
  flex-direction: column;
  gap: var(--lpv-gap-2);
  align-items: flex-start;
  justify-content: center;
}

.lpv-table-cell-feature {
  display: flex;
  flex-direction: row;
  gap: var(--lpv-gap-2);
  align-items: center;
  justify-content: flex-start;
}

.lpv-table-cell-icon {
  width: 20px;
  height: 20px;
}

.lpv-table-product-img {
  width: 100%;
  height: auto;
  margin-bottom: var(--lpv-gap-4);
}

.lpv-table-cell-feature span {
  font-size: 12px;
  font-weight: var(--lpv-font-weight-medium);
  font-family: var(--lpv-font-family-system);
  color: var(--lpv-color-black);
  line-height: normal;
  text-align: left;
}

.lpv-table-cell-icon {
  width: 20px;
  height: 20px;
}

.lpv-table-product-img {
  width: 100%;
  height: auto;
  margin-bottom: var(--lpv-gap-4);
}

.lpv-table-product-name {
  margin: 0;
  padding: 0;
  font-size: 24px !important;
  font-weight: var(--lpv-font-weight-medium);
  font-family: var(--lpv-font-family-system);
  color: var(--lpv-color-black);
  letter-spacing: -0.48px;
  line-height: normal;
}

.lpv-table-product-subtitle {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: var(--lpv-font-weight-medium);
  font-family: var(--lpv-font-family-system);
  color: var(--lpv-color-black);
  line-height: normal;
  text-align: left;
}

.lpv-table-cell p {
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: var(--lpv-font-weight-medium);
  font-family: var(--lpv-font-family-system);
  color: var(--lpv-color-black);
  line-height: 1.3;
  text-align: left;
  word-break: break-word;
}

.lpv-table-bold {
  font-weight: var(--lpv-font-weight-bold);
}

.lpv-table-sensor-box {
  width: 20px;
  height: 12px;
  background: var(--lpv-color-white);
  border: 1px solid var(--lpv-color-border);
}

.lpv-table-sensor-1inch {
  width: 20px;
  height: 12px;
}

.lpv-table-sensor-apsc {
  width: 32px;
  height: 19px;
}

.lpv-table-sensor-fullframe {
  width: 45.271px;
  height: 26.88px;
}

/* SECTION LINKS - Linki do innych kategorii */
.lpv-section-links {
  background: var(--lpv-color-white);
  padding: var(--lpv-gap-9) 0;
  display: flex;
  flex-direction: column;
  gap: var(--lpv-gap-11);
  align-items: center;
}

.lpv-section-links-title {
  margin: 0;
  padding: var(--lpv-p-4) var(--lpv-p-8);
  font-size: 18px;
  font-weight: var(--lpv-font-weight-medium);
  font-family: var(--lpv-font-family-system);
  color: var(--lpv-color-black);
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
}

.lpv-links-grid {
  display: flex;
  gap: var(--lpv-gap-9);
  max-width: var(--lpv-max-screen-width);
  width: var(--lpv-max-screen-width);
  padding: 0 var(--lpv-p-8);
}

.lpv-link-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.lpv-link-card-image {
  position: relative;
  width: 100%;
  height: 367px;
  overflow: hidden;
  flex-shrink: 0;
}

.lpv-link-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.lpv-link-card-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--lpv-p-10) var(--lpv-p-8);
}

.lpv-link-card:hover .lpv-link-card-hover-overlay {
  opacity: 1;
}

/* Różne kolory overlay dla każdej karty */
.lpv-link-card:nth-child(1) .lpv-link-card-hover-overlay {
  background: rgba(66, 43, 165, 0.88);
}

.lpv-link-card:nth-child(2) .lpv-link-card-hover-overlay {
  background: rgba(0, 188, 212, 0.88);
}

.lpv-link-card:nth-child(3) .lpv-link-card-hover-overlay {
  background: rgba(255, 152, 0, 0.88);
}

.lpv-link-card:nth-child(4) .lpv-link-card-hover-overlay {
  background: rgba(213, 0, 249, 0.88);
}

.lpv-link-card-hover-title {
  margin: 0;
  padding: 0;
  font-size: 35px;
  font-weight: var(--lpv-font-weight-medium);
  font-family: "SST", sans-serif;
  color: var(--lpv-color-white);
  letter-spacing: -0.7px;
  line-height: 42px;
  max-width: 100%;
}

.lpv-link-card-hover-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--lpv-p-3);
  padding: var(--lpv-p-3) 0;
  background: transparent;
  border: none;
  border-radius: var(--lpv-r-1);
  color: var(--lpv-color-white);
  font-size: 14px;
  font-weight: var(--lpv-font-weight-medium);
  font-family: "SST", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}

.lpv-link-card-hover-btn img {
  width: 14px;
  height: 14px;
}

.lpv-link-card-text {
  padding: var(--lpv-gap-7) 0;
  flex: 1;
  display: flex;
  align-items: center;
}

.lpv-link-card-title {
  margin: 0;
  padding: 0;
  font-size: 22px;
  font-weight: var(--lpv-font-weight-normal);
  font-family: "SST", sans-serif;
  color: var(--lpv-color-black);
  letter-spacing: -0.44px;
  line-height: 42px;
}

/* ============================================
   SEKCJE STRONY GŁÓWNEJ
   ============================================ */

.lpv-section-title {
  margin: 0 0 var(--lpv-gap-6) 0;
  padding: var(--lpv-p-4) var(--lpv-p-8);
  font-size: 36px;
  font-weight: var(--lpv-font-weight-medium);
  font-family: "SST", sans-serif;
  color: var(--lpv-color-black);
  letter-spacing: -0.72px;
  line-height: normal;
  text-align: center;
  color: var(--lpv-color-black);
}

/* SECTION CMS - Witamy w świecie α */
.lpv-section-cms {
  background: var(--lpv-color-white);
  padding: var(--lpv-gap-6) 0;
}

.lpv-cms-banner {
  max-width: var(--lpv-max-screen-width);
  margin: 0 auto;
  padding: 0 var(--lpv-p-8);
  display: flex;
  gap: var(--lpv-gap-9);
  overflow: hidden;
}

.lpv-cms-col-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--lpv-gap-6);
  padding: 80px 0;
  backdrop-filter: blur(23.9px);
  background: rgba(255, 255, 255, 0.5);
}

.lpv-cms-title {
  margin: 0;
  padding: 0;
  font-size: 38px;
  font-weight: var(--lpv-font-weight-normal);
  font-family: "SST", sans-serif;
  color: var(--lpv-color-black);
  letter-spacing: -1px;
  line-height: normal;
  white-space: nowrap;
}

.lpv-cms-desc {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: var(--lpv-font-weight-normal);
  font-family: var(--lpv-font-family-system);
  color: var(--lpv-color-black);
  line-height: 26px;
}

.lpv-cms-col-images {
  flex: 1;
  display: flex;
  gap: var(--lpv-gap-5);
  align-items: center;
  justify-content: center;
}

.lpv-cms-img {
  width: 291px;
  height: 322px;
  object-fit: cover;
  border-radius: 0;
}

.lpv-cms-img:last-child {
  width: auto;
  height: 322px;
}

/* SECTION BANNERS - Banery promocyjne */
.lpv-section-banners {
  max-width: var(--lpv-max-screen-width);
  margin: 0 auto;
  padding: 0 var(--lpv-p-8);
  display: flex;
  flex-direction: column;
  gap: var(--lpv-gap-7);
}

.lpv-banner-link {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lpv-banner-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.lpv-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

/* SECTION NEW - Najnowsze produkty */
.lpv-section-new {
  background: var(--lpv-color-white);
  padding: var(--lpv-gap-9) 0;
  max-width: var(--lpv-max-screen-width);
  margin: 0 auto;
}

.lpv-products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--lpv-gap-4);
  justify-content: center;
  align-items: flex-start;
  padding: 0 var(--lpv-p-8);
}

.lpv-product-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lpv-product-img {
  background: var(--lpv-color-img-bg);
  padding: var(--lpv-gap-6) var(--lpv-p-6);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.lpv-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.lpv-product-info {
  display: flex;
  flex-direction: column;
  gap: var(--lpv-gap-5);
  padding: var(--lpv-p-5) 0;
  align-items: flex-start;
  justify-content: flex-end;
  height: 161px;
}

.lpv-product-code {
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: var(--lpv-font-weight-normal);
  font-family: var(--lpv-font-family-system);
  color: var(--lpv-color-black);
  line-height: normal;
}

.lpv-product-name {
  margin: 0;
  padding: 0;
  font-size: 17px;
  font-weight: var(--lpv-font-weight-bold);
  font-family: "SST", sans-serif;
  color: var(--lpv-color-black);
  line-height: normal;
}

/* SECTION NEWSLETTER - Newsletter subscription */

.lpv-bg-orange{
  background-color: #FF4500 !important;
}

.lpv-section-newsletter {
  position: relative;
  background: var(--lpv-color-black);
  padding: var(--lpv-gap-9) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 425px;
}

.lpv-newsletter-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.scentre.pl/images/scentre_vloggers/newsletter-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.lpv-newsletter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.lpv-newsletter-container {
  position: relative;
  z-index: 3;
  max-width: var(--lpv-max-screen-width);
  width: 100%;
  padding: 0 var(--lpv-p-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--lpv-gap-6);
}

.lpv-newsletter-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--lpv-gap-2);
}

.lpv-newsletter-title {
  margin: 0;
  padding: 0;
  font-size: 30px;
  font-weight: var(--lpv-font-weight-normal);
  font-family: "SST", sans-serif;
  color: var(--lpv-color-white);
  letter-spacing: -0.6px;
  line-height: normal;
  text-align: center;
}

.lpv-newsletter-centre-logo {
  height: 35.855px;
  width: auto;
}

.lpv-newsletter-desc {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: var(--lpv-font-weight-normal);
  font-family: "SST", sans-serif;
  color: var(--lpv-color-white);
  letter-spacing: -0.36px;
  line-height: normal;
  text-align: center;
  max-width: 600px;
}

.lpv-newsletter-features {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: var(--lpv-p-6) 0;
  width: 100%;
  max-width: 1000px;
}

.lpv-newsletter-feature {
  flex: 1;
  display: flex;
  gap: 19.54px;
  align-items: center;
  padding: 4.885px 13.027px;
}

.lpv-newsletter-icon {
  width: 48.221px;
  height: 48.221px;
  flex-shrink: 0;
}

.lpv-newsletter-feature-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lpv-newsletter-feature-text p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: var(--lpv-font-weight-normal);
  font-family: "SST", sans-serif;
  color: var(--lpv-color-white);
  line-height:1.3;
}

.lpv-newsletter-feature-text strong {
  font-weight: var(--lpv-font-weight-bold);
}

.lpv-newsletter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--lpv-gap-7);
  padding: var(--lpv-p-5) var(--lpv-p-7);
  background: var(--lpv-color-primary);
  color: var(--lpv-color-white);
  text-decoration: none;
  font-size: 16px;
  font-weight: var(--lpv-font-weight-normal);
  font-family: "SST", sans-serif;
  letter-spacing: -0.32px;
  line-height: normal;
  border-radius: var(--lpv-r-1);
  transition: background 0.3s ease;
  width: 254px;
}

.lpv-newsletter-button:hover {
  background: var(--lpv-color-button-hover);
}

.lpv-newsletter-arrow {
  width: 14px;
  height: 14px;
}

/* SECTION CATEGORIES - Wszystkie produkty */
.lpv-section-categories {
  background: var(--lpv-color-white);
  padding: var(--lpv-gap-7) 0;
  max-width: var(--lpv-max-screen-width);
  margin: 0 auto;
}

.lpv-categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--lpv-gap-4);
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 var(--lpv-p-8);
  max-width: var(--lpv-max-screen-width);
  margin: 0 auto;
}

.lpv-category-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.lpv-category-item:hover {
  opacity: 1;
}

.lpv-category-img {
  background: var(--lpv-color-img-bg);
  padding: var(--lpv-gap-6) var(--lpv-p-6);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lpv-category-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.lpv-category-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.lpv-category-img:hover::before {
  opacity: 1;
}

.lpv-category-img:hover img {
  transform: scale(1.05);
  opacity: 0.6;
}

.lpv-category-img img {
  max-width: 100%;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
  opacity: 0.4;
}

.lpv-category-text {
  display: flex;
  flex-direction: column;
  gap: var(--lpv-gap-2);
  padding: var(--lpv-p-5) 0;
  align-items: flex-start;
  justify-content: flex-end;
  height: 64px;
}

.lpv-category-label {
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: var(--lpv-font-weight-normal);
  font-family: "SST", sans-serif;
  color: var(--lpv-color-black);
  line-height: normal;
}

.lpv-category-name {
  margin: 0;
  padding: 0;
  font-size: 17px;
  font-weight: var(--lpv-font-weight-bold);
  font-family: "SST", sans-serif;
  color: var(--lpv-color-black);
  line-height: normal;
}


/* ============================================
   PRZYCISKI
   ============================================ */

.lpv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--lpv-gap-7);
  margin: 0;
  padding: var(--lpv-p-5) var(--lpv-p-7);
  background: var(--lpv-color-primary);
  color: var(--lpv-color-white);
  text-decoration: none;
  font-size: 16px;
  font-weight: var(--lpv-font-weight-normal);
  font-family: var(--lpv-font-family-system);
  line-height: normal;
  border: none;
  border-radius: var(--lpv-r-1);
  cursor: pointer;
  transition: background 0.3s ease;
  justify-content: space-between
}

.lpv-button:hover {
  background: var(--lpv-color-button-hover);
}

.lpv-button-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12.222px;
  margin: 0;
  padding: var(--lpv-p-4) var(--lpv-p-6);
  background: var(--lpv-color-primary);
  color: var(--lpv-color-white);
  text-decoration: none;
  font-size: 14px;
  font-weight: var(--lpv-font-weight-medium);
  font-family: "SST", sans-serif;
  line-height: normal;
  border: none;
  border-radius: var(--lpv-r-1);
  cursor: pointer;
  transition: background 0.3s ease;
}

.lpv-button-small:hover {
  background: var(--lpv-color-button-hover);
}

/* ============================================
   FOOTER
   ============================================ */

.lpv-footer {
  background: var(--lpv-color-white);
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.lpv-footer::before {
  content: '';
  width: 100%;
  max-width: var(--lpv-max-screen-width);
  height: 0;
  border-top: 1px solid var(--lpv-color-border);
  position: relative;
  top: -20px;
}

.lpv-footer-links {
  display: flex;
  gap: var(--lpv-gap-7);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.lpv-footer-link {
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: var(--lpv-color-black);
  font-size: 16px;
  font-weight: var(--lpv-font-weight-normal);
  font-family: var(--lpv-font-family-system);
  line-height: normal;
  transition: color 0.3s ease;
}

.lpv-footer-link:hover {
  color: var(--lpv-color-primary);
}

.lpv-footer-logo-link {
  text-decoration: none;
  display: block;
}

.lpv-footer-logo {
  height: 28px;
  display: block;
}

/* ============================================
   RESPONSYWNOŚĆ - MEDIA QUERIES
   ============================================ */

/* Desktop XL - >1440px */
@media (min-width: 1441px) {
  .lpv-top-menu-inner,
  .lpv-cms-banner,
  .lpv-section-banners,
  .lpv-section-new,
  .lpv-section-categories {
    max-width: var(--lpv-container-lg);
  }
}

/* Desktop L - 1230-1440px */
@media (min-width: 1230px) and (max-width: 1440px) {
  .lpv-top-menu-inner,
  .lpv-cms-banner,
  .lpv-section-banners,
  .lpv-section-new,
  .lpv-section-categories {
    max-width: var(--lpv-container-lg);
  }
}

/* Desktop M - 960-1230px */
@media (min-width: 960px) and (max-width: 1229px) {
  .lpv-top-menu-inner,
  .lpv-cms-banner,
  .lpv-section-banners,
  .lpv-section-new,
  .lpv-section-categories {
    max-width: var(--lpv-container-md);
  }
  
  .lpv-hero-boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--lpv-gap-4);
  }
  
  .lpv-products-grid,
  .lpv-categories-grid {
    gap: var(--lpv-gap-4);
  }
}

/* Mobile - <960px */
@media (max-width: 959px) {

  .lpv-top-menu-inner-text {
    display: inline-block;
    font-size: 18px;
    font-weight: var(--lpv-font-weight-medium);
    font-family: var(--lpv-font-family-system);
    color: var(--lpv-color-black);
    line-height: normal;
    text-align: center;
    white-space: normal;
  
  }

  /* Topbar Mobile */
  .lpv-topbar {
    padding: var(--lpv-p-7) var(--lpv-p-4);
  }
  
  .lpv-topbar-container {
    flex-direction: column;
    gap: var(--lpv-gap-4);
    padding: 0 var(--lpv-gap-4);
  }
  
  .lpv-topbar-left {
    justify-content: center;
    gap: var(--lpv-gap-2);
    flex-direction: column;
  }
  
  .lpv-topbar-logo {
    height: 32px;
  }
  
  .lpv-topbar-text {
    font-size: 16px;
    text-align: center;
    white-space: normal;
  }
  
  .lpv-logo {
    width: 160px;
    height: 28.16px;
  }
  
  .lpv-logo-white {
    width: 160px;
    height: 28.16px;
  }

  .lpv-top-menu{
    padding: var(--lpv-p-8) var(--lpv-p-4);
  }


  .lpv-wrap {
    padding: 0;
    gap:0;
  }
  
  /* Top Menu Mobile */
  .lpv-top-menu-inner {
    flex-direction: row;
    gap: var(--lpv-gap-4);
    padding: 0 var(--lpv-gap-4);
  }
  
  .lpv-hamburger {
    display: flex !important;
    order: 2;
  }
  
  .lpv-logo {
    order: 1;
    flex-shrink: 0;
    height: 20px;
  }
  
  .lpv-nav {
    display: flex;
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background: var(--lpv-color-white);
    flex-direction: column;
    gap: 0;
    padding: var(--lpv-gap-11) var(--lpv-p-8);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .lpv-nav.active {
    left: 0;
  }
  
  .lpv-nav-link {
    width: 100%;
    text-align: left;
    font-size: 18px;
    padding: var(--lpv-p-5) 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .lpv-sticky-link{
    padding: var(--lpv-p-5);
  }

  .lpv-sticky-nav-inner{
    flex-direction: column;
    gap:  0;
  }
  
  /* Hero Section Mobile */
  .lpv-hero-section {
    height: auto;
    min-height: 0;
  }
  
  .lpv-hero-title {
    font-size: 32px;
    letter-spacing: -0.96px;
  }
  
  .lpv-hero-title-subpage {
    font-size: 28px;
    letter-spacing: -0.84px;
  }
  
  .lpv-hero-subtitle {
    font-size: 16px;
    letter-spacing: -0.32px;
    padding: 0 var(--lpv-gap-4);
  }
  
  .lpv-hero-boxes {
    flex-direction: column;
    gap: var(--lpv-gap-4);
    width: 100%;
    padding: 0 var(--lpv-gap-4);
    margin: 40px auto 0;
  }
  
  .lpv-hero-box {
    width: 100%;
    height: auto;
    border-radius: var(--lpv-r-2);
    gap: var(--lpv-gap-4);
    overflow: visible
  }

  .lpv-hero-box-label{
    font-size: 18px;
  }

  .lpv-hero-box-title{
    display: none;
  }
  
  /* CMS Section Mobile */
  .lpv-cms-banner {
    flex-direction: column;
    padding: 0 var(--lpv-gap-4);
  }
  
  .lpv-cms-col-text {
    padding: var(--lpv-gap-9) var(--lpv-gap-4);
  }
  
  .lpv-cms-title {
    font-size: 28px;
    letter-spacing: -0.56px;
    white-space: normal;
  }
  
  .lpv-cms-desc {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
  
  .lpv-cms-col-images {
    flex-direction: column;
    gap: var(--lpv-gap-4);
  }
  
  .lpv-cms-img {
    width: 100%;
    height: auto;
  }
  
  .lpv-cms-img:last-child {
    width: 100%;
    height: auto;
  }
  
  /* Banners Mobile */
  .lpv-section-banners {
    padding: 0 var(--lpv-gap-4);
    gap: var(--lpv-gap-4);
  }
  
  /* Products Mobile */
  .lpv-section-new {
    padding: var(--lpv-gap-9) var(--lpv-gap-4);
  }
  
  .lpv-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--lpv-gap-4);
    padding: 0;
  }
  
  .lpv-product-item {
    width: 100%;
  }
  
  /* Categories Mobile */
  .lpv-section-categories {
    padding: var(--lpv-gap-7) var(--lpv-gap-4);
  }
  
  .lpv-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--lpv-gap-4);
    padding: 0;
  }
  
  .lpv-category-item {
    width: 100%;
  }
  
  /* Section Title Mobile */
  .lpv-section-title {
    font-size: 28px;
    letter-spacing: -0.56px;
    padding: var(--lpv-p-4) 0;
  }
  
  /* Sidebar Mobile - drawer od dołu */
  .lpv-sidebar {
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 90vh;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px 12px 0 0;
    padding-top: var(--lpv-p-6);
  }
  .lpv-sidebar-close{
    display: none;
  }
  .lpv-sidebar-image{
    height: auto;
    min-height: 240px;
  }
  
  .lpv-sidebar.lpv-sidebar-open {
    transform: translateY(0);
    right: auto;
  }
  
  .lpv-sidebar-close-wrapper {
    width: 100%;
  }
  
  .lpv-sidebar-close-btn {
    width: 100%;
  }
  
  /* Section Params Mobile - scrollable horizontal */
  .lpv-section-params {
    overflow: visible;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
  }
  
  .lpv-params-grid-videoblog {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: var(--lpv-gap-4);
    padding-left: var(--lpv-gap-4);
    padding-right: var(--lpv-gap-4);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    height: auto;
    width: auto;
    max-width: 100%;
  }
  
  .lpv-params-grid-videoblog::-webkit-scrollbar {
    display: none;
  }
  
  .lpv-param-banner {
    flex: 0 0 280px;
    width: 280px;
    height: 280px;
    min-width: 280px;
  }
  
  /* Section Articles Mobile - horizontal scrollable */
  .lpv-articles-list {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: var(--lpv-gap-6);
    padding-left: var(--lpv-p-6);
    padding-right: var(--lpv-p-6);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: auto;
    max-width: 100%;
    align-items: flex-start;
  }
  
  .lpv-articles-list::-webkit-scrollbar {
    display: none;
  }

  .lpv-banner-section-title{
    font-size: 32px;
  }

  .lpv-section-slider{
    padding: var(--lpv-gap-6) 0;
  }
  
  .lpv-article-row,
  .lpv-article-row-reverse {
    flex: 0 0 280px;
    width: 280px;
    min-width: 280px;
    flex-direction: column;
    gap: var(--lpv-gap-4);

  }
  
  .lpv-article-col-text {
    order: 2;
  }
  
  .lpv-article-col-img {
    order: 1;
  }
  .lpv-article-buttons{
    flex-direction: column;
  }
  
  .lpv-article-buttons .lpv-button {
    width: 100%;
  }
  
  .lpv-article-col-img img {
    height: 300px;
    width: 100%;
    object-fit: cover;
  }
  
  .lpv-article-product-code {
    font-size: 20px;
  }
  
  .lpv-article-title {
    font-size: 18px;
    line-height: 1.3;
  }
  
  .lpv-article-desc {
    font-size: 14px;
    line-height: 1.4;
  }
  
  /* Section Slider Mobile - horizontal scrollable */
  .lpv-slider-wrapper {
    padding-left: var(--lpv-p-6);
    padding-right: var(--lpv-p-6);
  }
  
  .lpv-slider-track {
    width: auto;
    max-width: none;
    padding-right: var(--lpv-p-4);
  }
  
  .lpv-slider-card {
    flex: 0 0 280px;
    width: 280px;
    min-width: 280px;
  }
  
  .lpv-slider-card-img {
    height: 200px;
  }
  
  .lpv-slider-card-img img {
    height: 200px;
  }
  
  .lpv-slider-card-title {
    font-size: 20px;
  }
  
  .lpv-slider-card-compatibility {
    font-size: 16px;
  }
  
  .lpv-slider-card-desc {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .lpv-slider-arrow {
    display: none;
  }
  .lpv-slider-card-title{
    line-height: 1.3;
  }

  .lpv-links-grid{
    flex-direction: column;
    gap: var(--lpv-gap-6);
    padding: 0 var(--lpv-p-4);
    width: 100%;
    max-width: none;
  }
  
  .lpv-link-card {
    width: 100%;
  }
  
  
  .lpv-link-card-hover-title {
    font-size: 24px;
    line-height: 1.3;
  }
  
  .lpv-link-card-hover-btn {
    font-size: 14px;
    padding: var(--lpv-p-3) var(--lpv-p-6);
  }
  
  .lpv-section-links{
    padding: var(--lpv-gap-2) 0;
    gap: var(--lpv-gap-4);
  }
  .lpv-link-card-text{
    padding: var(--lpv-p-4) 0;
  }
  
  /* Section Table Mobile - horizontal scrollable (desktop layout) */
  .lpv-section-table {
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
    margin: -22px 0;
  }
  
  .lpv-table {
    width: auto;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .lpv-table::-webkit-scrollbar {
    display: none;
  }
  
  .lpv-table-row {
    min-width: 900px; /* Wymusza szerokość większą niż ekran */
  }
  
  .lpv-table-cell {
    min-width: 200px; /* Minimalna szerokość każdej komórki */
  }
  
  .lpv-table-cell-feature {
    position: sticky;
    left: 0;
    background: var(--lpv-color-white);
    z-index: 10;
    border-right: 2px solid var(--lpv-color-border);
    max-width: 160px; /* Mniejsza szerokość dla sticky kolumny */
    min-width: 160px; /* Mniejsza szerokość dla sticky kolumny */
  }
  .lpv-table-cell-feature span{
    text-align: left;
  }
  .lpv-table-cell {
    min-width: 160px;
    max-width: 160px;
  }
  .lpv-table-row {
    min-width: 640px;
  }
  
  /* Sidebar Product Items Mobile - vertical layout */
  .lpv-sidebar-product-item {
    flex-direction: column;
    gap: var(--lpv-gap-4);
    align-items: center;
    box-sizing: border-box;
  }
  
  .lpv-sidebar-product-img {
    width: 100%;
    height: 200px;
    padding: var(--lpv-p-6);
    box-sizing: border-box;
  }
  
  .lpv-sidebar-product-text {
    width: 100%;
    padding: 0;
    text-align: left;
    align-items: flex-start;
  }

  .lpv-hero-label{
    font-size: 14px;
  }
  .lpv-button{
    width: 100%;
    box-sizing: border-box;
  }

  /* Newsletter Mobile */
  .lpv-section-newsletter {
    padding: var(--lpv-p-10) var(--lpv-p-7);
    min-height: auto;
  }
  
  .lpv-newsletter-container {
    padding: 0;
    gap: var(--lpv-gap-4);
  }
  
  .lpv-newsletter-title {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
  
  .lpv-newsletter-desc {
    font-size: 18px;
    letter-spacing: -0.32px;
  }
  
  .lpv-newsletter-features {
    flex-direction: column;
    gap: 0;
    padding: var(--lpv-p-4) 0;
    align-items: center;
  }
  
  .lpv-newsletter-feature {
    width: 100%;
    max-width: max-content;
    gap: var(--lpv-gap-4);
    padding: var(--lpv-p-3);
  }
  
  .lpv-newsletter-icon {
    width: 40px;
    height: 40px;
  }
  
  .lpv-newsletter-feature-text p {
    font-size: 16px;
  }
  
  .lpv-newsletter-button {
    width: 100%;
    max-width: 320px;
  }
  
  /* Footer Mobile */
  .lpv-footer {
    padding: 40px 0;
    gap: 30px;
  }
  
  .lpv-footer-links {
    flex-direction: column;
    gap: var(--lpv-gap-6);
    padding: 0 var(--lpv-p-4);
  }
  
  .lpv-footer-link {
    font-size: 18px;
    text-align: center;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.lpv-hidden {
  display: none;
}

.lpv-visible {
  display: block;
}

