﻿/* ---------- Accordion podstawowy ---------- */
.accordion-container {
  margin: 20px 0 40px 0;
  max-width: 100%;
}

/* Nagłówek */
.accordion-header {
  cursor: pointer;
  padding: 15px 20px;
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Strzałka */
.accordion-header::after {
  content: "\25BC"; /* ▼ */
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* Strzałka po otwarciu */
.accordion-header.active::after {
  transform: rotate(-180deg);
}

/* Treść */
.accordion-content {
  display: none;
  padding: 15px 20px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  line-height: 1.6;
}

/* Opcjonalnie: efekt animacji */
.accordion-content.open {
  display: block;
}

/* Nagłówek */
.accordion-header {
  cursor: pointer;
  padding: 16px 20px;
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Ikona SVG */
.accordion-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  color: #111; /* dziedziczy kolor brandu */
}

/* Obrót po otwarciu */
.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}
