.main ul.pickup-list {
  list-style: none!important;
}
.pickup-points {
  margin: 2em 0;
}
.pickup-points h3 {
  margin: 2em 0 0.5em;
}
span.pick-item-name {
  font-weight: bold;
}
.addr-block {
  margin-top: 2em;
}
.main ul.pickup-list li::marker {
  content: "";
}

.pickup-accordion {
  max-width: 1200px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid #e0e0e0;
  margin-bottom: 10px;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  background: #f5f5f5;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: #e8e8e8;
}

.accordion-header h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.accordion-icon {
  font-size: 14px;
  transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #fff;
}

.accordion-item.active .accordion-content {
  max-height: 122000px; /* Достаточно большое значение */
  transition: max-height 0.5s ease-in;
}

/* Сетка для пунктов выдачи */
.pickup-list.columns-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 20px;
  margin: 0;
  list-style: none;
}

.pickup-item {
  background: #fafafa;
  padding: 0 15px;
  break-inside: avoid;
}

.pick-item-name {
  font-weight: bold;
  color: #666;
}

.addr-block,
.phone-block,
.schedule-block {
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Адаптивность */
@media (max-width: 992px) {
  /* .pickup-list.columns-3 {
      grid-template-columns: repeat(2, 1fr);
  } */
}

@media (max-width: 576px) {
  .pickup-list.columns-3 {
      grid-template-columns: 1fr;
  }
  
  .accordion-header h3 {
      font-size: 16px;
  }
}
