/* Usunięcie paska przewijania */
html {
  overflow-y: scroll; 
  scroll-behavior: smooth;
}
::-webkit-scrollbar { display: none; }
body { -ms-overflow-style: none; scrollbar-width: none; }

:root {
  --bg: #ffffff;
  --fg: #0f172a;
  --accent: #0ea5e9;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif; color: var(--fg); background: var(--bg); line-height: 1.6; }

/* ====== HEADER ====== */
header.site-header {
  position: relative; top: 0; z-index: 50; 
  background: var(--bg);
  box-shadow: var(--shadow);
}
.nav-wrap {
  max-width: 1200px; margin: 0 auto; padding: 8px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; color: inherit; transition: transform 0.3s ease; }
.brand img { height: 30px; width: auto; transition: transform 0.3s ease; }
.brand:hover img { transform: scale(1.05); }

/* Hamburger */
.hamburger { display: none; border: 0; background: transparent; padding: 6px; border-radius: 8px; cursor: pointer; }
.hamburger .bar { display:block; width:24px; height:2px; margin:5px 0; background: var(--fg); border-radius: 2px; transition: transform .25s ease, opacity .2s; }
.hamburger[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav */
nav.primary { display: flex; gap: 16px; align-items: center; }
a.nav-link, button.nav-link {
  appearance: none; border: 0; background: none; font: inherit; color: var(--fg);
  text-decoration: none; padding: 8px 10px; border-radius: 6px; cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  font-size: 0.95rem;
}
a.nav-link:hover, button.nav-link:hover { background: var(--accent); color: #fff; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle { display: inline-flex; align-items: center; gap: 4px; }
.dropdown-toggle::after { content: "\25BC"; font-size: 0.6em; transition: transform 0.3s ease; }
body:not(.mobile) .dropdown:hover .dropdown-toggle::after { transform: rotate(180deg); }
body.mobile .dropdown.open .dropdown-toggle::after { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--bg); border-radius: 6px; padding: 6px; box-shadow: var(--shadow);
  display: none; min-width: 160px;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-item { display: block; text-decoration: none; color: var(--fg); padding: 6px 10px; border-radius: 4px; transition: background 0.3s ease, color 0.3s ease; font-size: 0.9rem; }
.dropdown-item:hover { background: var(--accent); color: #fff; }

/* Mobile */
@media (max-width: 720px) {
  .hamburger { display: inline-block; }
  nav.primary {
    display: none; flex-direction: column; align-items: stretch; background: var(--bg);
    position: absolute; top: 54px; left: 0; width: 100%; padding: 8px; box-shadow: var(--shadow);
  }
  nav.primary.open { display: flex; }
  a.nav-link, button.nav-link { width: 100%; text-align: left; }
  .dropdown-menu { position: static; box-shadow: none; padding: 0; }
  .dropdown-item { padding-left: 18px; }
  .dropdown:hover .dropdown-menu { display: none; }
  .dropdown.open > .dropdown-menu { display: block; }
  .dropdown-menu { display: none !important; }
  .dropdown.open .dropdown-menu { display: block !important; }
}

/* ====== LANGUAGE SWITCHER ====== */
.language-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.flag-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  transition: border-radius 0.3s ease;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.language-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-menu {
  min-width: 120px;
}

/* Mobile styles */
@media (max-width: 720px) {
  .language-toggle {
    width: 100%;
    justify-content: flex-start;
  }
  
  .language-menu {
    position: static;
    box-shadow: none;
    padding-left: 20px;
  }
}

/* ====== HERO ====== */
.hero {
  position: relative;
  width: 100%;
  height: 40vh;
  background: linear-gradient(rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.5)),
              url('../assets/img/hero.jpeg') no-repeat center center;
  background-size: cover;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: white;
}
.hero-content { max-width: 1200px; padding: 0 20px; animation: fadeIn 1.5s ease-in-out; }
.hero h1 { font-size: 2.5rem; margin-bottom: 0.8rem; font-weight: 700; text-shadow: 2px 2px 6px rgba(0,0,0,0.4); }
.slogan { font-size: 1.3rem; font-weight: 300; text-shadow: 1px 1px 4px rgba(0,0,0,0.4); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px);} to { opacity: 1; transform: translateY(0);} }

/* ====== ABOUT SECTION ====== */
.about-section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--fg);
  position: relative;
  display: block;
  padding-bottom: 5px;
  width: 100%;
}

.about-content h2::after {
  content: ''; 
  position: absolute; 
  width: 50px; 
  height: 2px; 
  background-color: var(--accent);
  bottom: 0; 
  left: 0;
}

.about-content p {
  color: var(--fg);
  margin-bottom: 1rem;
  text-align: left;
}

.about-image {
  float: right;
  margin: 0 0 15px 25px;
  max-width: 380px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

/* Clearfix dla poprawnego opływania */
.about-content::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsywność - wersja mobilna */
@media (max-width: 720px) {
  .about-image {
    float: none;
    display: block;
    margin: 30px auto 15px auto;
    max-width: 100%;
    order: 2; /* Umieszcza zdjęcie na końcu kontenera flex */
  }
  
  .about-content {
    display: flex;
    flex-direction: column;
  }
  
  .about-content h2 {
    order: 0; /* Tytuł na początku */
  }
  
  .about-content p {
    order: 1; /* Tekst po tytule */
  }
}

/* ====== PRODUCTS SLIDER ====== */
.products-section {
  max-width: 1200px;
  margin: 1rem auto;
  padding: 0 1rem;
  position: relative;
}
.products-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--fg);
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}
.products-section h2::after {
  content: ''; 
  position: absolute; 
  width: 50px; 
  height: 2px; 
  background-color: var(--accent);
  bottom: 0; 
  left: 0;
}
.products-container {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
}
.products-slider {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}
.product-card {
  min-width: 100%;
  margin: 0;
  background: var(--bg);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  max-height: 400px;
}
.product-content {
  display: flex;
  width: 100%;
  height: 100%;
}
.product-text {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 1;
}
.product-image {
  flex: 1;
  overflow: hidden;
  order: 2;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.05);
}
.product-info h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--fg);
}
.product-info p {
  color: #475569;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}
.product-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 1rem;
  align-self: flex-start;
  font-weight: 500;
}
.product-link:hover {
  background: #0284c7;
  transform: translateY(-2px);
}
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.slider-dots {
  display: flex;
  gap: 0.5rem;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.slider-dot:hover {
  transform: scale(1.2);
}
.slider-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}
.slider-arrow {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 20;
  border: none;
  transition: all 0.3s ease;
  position: relative;
}
.slider-arrow::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.slider-arrow:hover {
  background: var(--accent);
}
.slider-arrow:hover::after {
  opacity: 0.3;
}
.slider-arrow:hover svg {
  fill: white;
}
.slider-arrow svg {
  width: 24px;
  height: 24px;
  fill: var(--fg);
  transition: fill 0.3s ease;
}

/* Alternatywne ułożenie dla parzystych kart - zdjęcie po lewej, tekst po prawej */
.product-card:nth-child(even) .product-text {
  order: 2;
}
.product-card:nth-child(even) .product-image {
  order: 1;
}

@media (max-width: 700px) {
  .products-section {
    margin: 1.5rem auto;
    padding: 0 0.5rem;
  }
  .product-card {
    max-height: 500px;
    min-height: 450px;
  }
  .product-content {
    flex-direction: column;
  }
  .product-text,
  .product-card:nth-child(even) .product-text {
    order: 2;
  }
  .product-image,
  .product-card:nth-child(even) .product-image {
    order: 1;
    height: 200px;
    flex: none;
  }
  .product-image img {
    object-fit: cover;
  }
  .product-text {
    padding: 1.2rem;
    flex: 1;
  }
  .product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  .product-info p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .product-link {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    margin-top: 0.8rem;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
  }
  .slider-arrow svg {
    width: 20px;
    height: 20px;
  }
  .slider-controls {
    margin-top: 1.5rem;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .product-card {
    max-height: 460px;
    min-height: 420px;
  }
  .product-image {
    height: 160px;
  }
  .product-text {
    padding: 1rem;
  }
  .product-info h3 {
    font-size: 1.2rem;
  }
  .product-info p {
    font-size: 0.85rem;
  }
}

/* ====== CONTACT SECTION ====== */
.contact-section {
  max-width: 1200px;
  margin: 1rem auto;
  padding: 0 1rem;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--fg);
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.contact-section h2::after {
  content: ''; 
  position: absolute; 
  width: 50px; 
  height: 2px; 
  background-color: var(--accent);
  bottom: 0; 
  left: 0;
}

.contact-content {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-row {
  display: flex;
  gap: 2rem;
}

.contact-item {
  flex: 1;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--fg);
  position: relative;
  padding-bottom: 5px;
}

.contact-item h3::after {
  content: ''; 
  position: absolute; 
  width: 25px; 
  height: 2px; 
  background-color: var(--accent);
  bottom: 0; 
  left: 0;
}

.contact-item p {
  margin: 0.5rem 0;
  color: var(--fg); /* Zmiana z #475569 na var(--fg) - czarny kolor */
  line-height: 1.4;
}

.contact-item a {
  color: var(--fg); /* Zmiana z #475569 na var(--fg) - czarny kolor */
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.contact-item a:hover {
  color: var(--accent);
}

.map-container {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 350px;
  min-height: 300px;
}

/* Responsywność */
@media (max-width: 900px) {
  .contact-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-row {
    gap: 1.5rem;
  }
  
  .map-container {
    height: 300px;
    flex: none; /* Mapka nie będzie się rozciągać */
    width: 100%; /* Pełna szerokość */
  }
}

@media (max-width: 600px) {
  .contact-row {
    flex-direction: column;
    gap: 1rem;
    text-align: center; /* Wyśrodkowanie tekstu w wersji mobilnej */
  }
  
  .contact-info {
    gap: 1rem;
    text-align: center; /* Wyśrodkowanie tekstu w wersji mobilnej */
  }
  
  .contact-item {
    margin-bottom: 0.5rem;
  }
  
  .contact-item h3::after {
    left: 50%; /* Wyśrodkowanie podkreślenia nagłówka */
    transform: translateX(-50%);
  }
  
  .map-container {
    height: 250px;
    width: 100%; /* Pełna szerokość */
  }
}

/* ====== FOOTER ====== */
footer { 
  background-color: #0f172a; 
  color: #fff; 
  padding: 1rem 0 0;
  margin-top: 2rem;
  width: 100%;
}
.footer-content {
  display: flex; 
  justify-content: space-around; 
  flex-wrap: wrap;
  max-width: 1200px; 
  margin: 0 auto; 
  gap: 1rem;
  padding: 0 1rem;
  text-align: center;
}
.footer-section { 
  flex: 1; 
  min-width: 220px;
  padding: 0 8px;
  margin-bottom: 0.3rem;
}
.footer-section h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  position: relative; 
  display: inline-block; 
  padding-bottom: 4px;
}
.footer-section h3::after {
  content: ''; 
  position: absolute; 
  width: 40px; 
  height: 2px; 
  background-color: var(--accent);
  bottom: 0; 
  left: 50%; 
  transform: translateX(-50%);
}
.footer-section p { 
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Nowe style dla menu w stopce */
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.2rem 0;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-menu a::after {
  content: '';
  position: absolute;
  width: 40%; /* ZMIENIONE z 100% na 40% - krótsze podkreślenie */
  height: 1px;
  bottom: 0;
  left: 50%;
  background-color: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  opacity: 0; /* Dodane - początkowo niewidoczne */
}

.footer-menu a:hover {
  color: var(--accent);
}

.footer-menu a:hover::after {
  opacity: 1; /* Dodane - pojawia się po najechaniu */
}

.footer-bottom { 
  text-align: center; 
  padding: 0.5rem 0;
  background-color: #020617; 
  font-size: 0.8rem;
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .footer-content { flex-direction: column; text-align: center; }
  .footer-section { margin-bottom: 1rem; }
  .footer-section h3::after { left: 50%; transform: translateX(-50%); }
  
  /* Dodane dla lepszego wyglądu na mobile */
  .footer-menu a::after {
    width: 60%; /* Nieco szersze na mobile */
  }
}

/* ====== PRZYCISK POWROTU DO GÓRY ====== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 1000;
    border: none;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-to-top:hover {
    background: var(--accent);
}

.scroll-to-top:hover::after {
    opacity: 0.3;
}

.scroll-to-top:hover svg {
    fill: white;
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    fill: var(--fg);
    transition: fill 0.3s ease;
}

/* Responsywność */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

.hero-okna-pcv {
  background-image: url('img/okna-pcv-hero.png'); /* <-- Twoje nowe zdjęcie */
  background-size: cover;
  background-position: center;
}

/* ====== PRODUCT ABOUT SECTION ====== */
.product-about-section {
  max-width: 1200px;
  margin: 2rem auto; /* ZMIENIONE: było 3rem */
  padding: 0 1rem;
}

.product-about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem; /* ZMIENIONE: było 2rem */
  color: var(--fg);
  position: relative;
  display: block;
  padding-bottom: 8px; /* ZMIENIONE: było 10px */
  width: 100%;
  text-align: left;
}

.product-about-content h2::after {
  content: ''; 
  position: absolute; 
  width: 70px; /* ZMIENIONE: było 80px */
  height: 2px; /* ZMIENIONE: było 3px */
  background-color: var(--accent);
  bottom: 0; 
  left: 0;
}

.product-about-content p {
  color: var(--fg);
  margin-bottom: 1.2rem; /* ZMIENIONE: było 1.5rem */
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.6; /* ZMIENIONE: było 1.7 */
}

/* Nowy układ tekst-zdjęcie */
.text-with-image {
  display: flex;
  align-items: center;
  gap: 2rem; /* ZMIENIONE: było 3rem */
  margin: 1.5rem 0; /* ZMIENIONE: było 2rem 0 */
}

.text-with-image.reverse {
  flex-direction: row-reverse;
}

.text-content {
  flex: 1;
}

.image-content {
  flex: 1;
  border-radius: 8px; /* ZMIENIONE: było 10px */
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-content img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.image-content:hover img {
  transform: scale(1.05);
}

/* Sekcje z profilami */
.profile-section {
  margin: 2rem 0; /* ZMIENIONE: było 3rem 0 */
  padding: 0; /* ZMIENIONE: było 2rem 0 */
}

.profile-section h3 {
  font-size: 1.7rem; /* ZMIENIONE: było 1.8rem */
  margin-bottom: 1.2rem; /* ZMIENIONE: było 1.5rem */
  color: var(--fg);
  position: relative;
  padding-bottom: 6px; /* ZMIENIONE: było 8px */
}

.profile-section h3::after {
  content: ''; 
  position: absolute; 
  width: 50px; /* ZMIENIONE: było 60px */
  height: 2px; 
  background-color: var(--accent);
  bottom: 0; 
  left: 0;
}

.profile-text ul {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0; /* ZMIENIONE: było 1rem 0 */
}

.profile-text li {
  margin-bottom: 0.6rem; /* ZMIENIONE: było 0.8rem */
  padding-left: 1.5rem; /* ZMIENIONE: było 1.8rem */
  position: relative;
}

.profile-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1rem; /* ZMIENIONE: było 1.1rem */
}

/* Sekcja z listą cech */
.product-features {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 1.5rem; /* ZMIENIONE: było 2rem */
  border-radius: 10px; /* ZMIENIONE: było 12px */
  margin: 1.5rem 0; /* ZMIENIONE: było 2rem 0 */
  border-left: 3px solid var(--accent); /* ZMIENIONE: było 4px */
}

.product-features h3 {
  font-size: 1.4rem; /* ZMIENIONE: było 1.5rem */
  margin-bottom: 1.2rem; /* ZMIENIONE: było 1.5rem */
  color: var(--fg);
  text-align: center;
}

.product-features ul {
  columns: 2;
  column-gap: 2rem; /* ZMIENIONE: było 3rem */
  list-style: none;
  padding: 0;
}

.product-features li {
  margin-bottom: 0.6rem; /* ZMIENIONE: było 0.8rem */
  padding-left: 1.5rem; /* ZMIENIONE: było 1.8rem */
  position: relative;
  break-inside: avoid;
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1rem; /* ZMIENIONE: było 1.1rem */
}

/* Responsywność - wersja mobilna */
@media (max-width: 768px) {
  .product-about-section {
    margin: 1.5rem auto; /* ZMIENIONE: było 2rem */
    padding: 0 1rem;
  }
  
  .product-about-content h2 {
    font-size: 1.7rem; /* ZMIENIONE: było 1.8rem */
    text-align: left;
  }
  
  .product-about-content h2::after {
    left: 0;
    transform: none;
  }
  
  /* NA MOBILE: ZAWSZE TEKST NAD ZDJĘCIEM */
  .text-with-image,
  .text-with-image.reverse {
    flex-direction: column;
    gap: 1.2rem; /* ZMIENIONE: było 1.5rem */
    margin: 1.2rem 0; /* ZMIENIONE: było 1.5rem 0 */
  }
  
  .text-content {
    order: 1; /* Tekst zawsze pierwszy */
  }
  
  .image-content {
    order: 2; /* Zdjęcie zawsze drugie */
    width: 100%;
  }
  
  .product-about-content p {
    font-size: 1rem;
    text-align: justify;
    margin-bottom: 1rem; /* ZMIENIONE: było 1.2rem */
  }
  
  /* Sekcje profilowe na mobile */
  .profile-section {
    margin: 1.5rem 0; /* ZMIENIONE: było 2rem 0 */
    padding: 1rem 0; /* ZMIENIONE: było 1.5rem 0 */
  }
  
  .profile-section h3 {
    font-size: 1.4rem; /* ZMIENIONE: było 1.5rem */
    margin-bottom: 1rem; /* ZMIENIONE: było 1.2rem */
  }
  
  .product-features {
    padding: 1.2rem; /* ZMIENIONE: było 1.5rem */
    margin: 1.2rem 0; /* ZMIENIONE: było 1.5rem 0 */
  }
  
  .product-features h3 {
    font-size: 1.3rem; /* ZMIENIONE: było 1.4rem */
    margin-bottom: 1rem; /* ZMIENIONE: było 1.2rem */
  }
  
  .product-features ul {
    columns: 1;
  }
  
  .product-features li {
    padding-left: 1.3rem; /* ZMIENIONE: było 1.5rem */
    margin-bottom: 0.5rem; /* ZMIENIONE: było 0.6rem */
  }
}

@media (max-width: 480px) {
  .product-about-content h2 {
    font-size: 1.5rem; /* ZMIENIONE: było 1.6rem */
  }
  
  .profile-section h3 {
    font-size: 1.2rem; /* ZMIENIONE: było 1.3rem */
  }
  
  .product-features {
    padding: 1rem;
  }
  
  .product-features h3 {
    font-size: 1.2rem; /* ZMIENIONE: było 1.3rem */
  }
}