.opakowania {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  color: #333;
}

.opakowania h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
  
  font-weight: 700;
  line-height: 54px;
  color: #222;
}

.underline {
  width: 60px;
  height: 4px;
  background-color: orange;
  margin: 0 auto 0;
  border-radius: 2px;
}

.opakowania .content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center; /* <-- To sprawia, że tekst jest wyśrodkowany względem obrazka */
}

.image {
  flex: 1 1 400px 400px;
  max-width: 100%;
  max-height: 450px;
  border-radius: 8px;
  object-fit: cover;
}


.text {
    font-family: Roboto;
  flex: 1 1 400px;
  font-size: 18px;
    line-height: 28px;
    letter-spacing: 0em;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: orange;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s;
}

.btn:hover {
  background-color: darkorange;
}

@media (max-width: 768px) {
  .content {
    flex-direction: column;
  }

  .image, .text {
    flex: 1 1 100%;
  }

  .text {
    margin-top: 20px;
  }
}



.produkt {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 60px;
  font-family: Arial, sans-serif;
  color: #333;
}

.produkt h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
  
  font-weight: 700;
  line-height: 54px;
  color: #222;
}

.produkt .content {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center; /* <-- To sprawia, że tekst jest wyśrodkowany względem obrazka */
}


.pslider-container {
  flex: 1 1;
  max-width: 800px;
  margin: 20px auto;
  font-family: sans-serif;
}

.main-view {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 8px;
  text-align: center;
}

.main-view img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
}

.thumbnails {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 4px;
  opacity: 0.6;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.thumb:hover {
  opacity: 1;
}

.thumb.active {
  opacity: 1;
  border-color: #3498db; /* Kolor wyróżnienia */
}










.pmenu-container {
    width: 250px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    margin: auto;
}

.pmenu-item {
    display: block;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
}

.pmenu-item:last-child {
    border-bottom: none;
}

.psubmenu-active {
  color: #e67e22 !important;
}

.pmenu-item:hover {
    background: #fff4e6;
    color: #e67e22;
    padding-left: 28px;
}

.pmenu-item::after {
    content: "›";
    position: absolute;
    right: 20px;
    opacity: 0.3;
    transition: 0.2s;
}

.pmenu-item:hover::after {
    opacity: 1;
    color: #e67e22;
}

.pmenu-title {
    padding: 15px 20px;
    font-weight: bold;
    font-size: 16px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
}
