.akcesoria-baner {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    margin-bottom: 50px;
}

.akcesoria-tytul {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.8);
    padding: 20px 40px;
    border-radius: 10px;
}

.akcesoria-tytul h1 {
    font-size: 2.8rem;
    color: black;
    margin: 0;
}

.akcesoria-produkt {
    margin-bottom: 80px;
}

.akcesoria-produkt h2 {
    text-align: center;
    font-size: 2rem;
    color: black;
    margin-bottom: 30px;
}

.akcesoria-zdjecia {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.akcesoria-zdjecia img {
    width: 30%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.akcesoria-opis {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: black;
    text-align: justify;
}

.container {
    padding: 0 20px;
}
.akcesoria-zdjecia {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}

.akcesoria-zdjecia a {
  display: block;
  max-width: 200px;
  transition: transform 0.3s ease;
}

.akcesoria-zdjecia img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: zoom-in;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.akcesoria-zdjecia a:hover {
  transform: scale(1.05);
}


