/* Swiper Container Anpassungen */
.regionalSwiper {
    width: 100%;
    padding-bottom: 40px !important;
  }
  
  /* Pagination-Punkte in Markenfarbe */
  .swiper-pagination-bullet-active {
    background-color: #404d3b !important;
    width: 20px !important;
    border-radius: 4px !important;
  }

/* Bistro-Menü PDF-Popup */
body.bistro-modal-open {
  overflow: hidden;
}

.bistro-pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.bistro-pdf-modal[hidden] {
  display: none;
}

.bistro-pdf-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 19, 0.76);
  cursor: pointer;
}

.bistro-pdf-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  height: min(90vh, 900px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.bistro-pdf-header {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  color: #fff;
  background: #404d3b;
}

.bistro-pdf-header h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.bistro-pdf-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.bistro-pdf-close:hover,
.bistro-pdf-close:focus-visible {
  background: rgba(255, 255, 255, 0.25);
  outline: 2px solid #fff;
}

.bistro-pdf-frame {
  width: 100%;
  flex: 1;
  border: 0;
  background: #ececec;
}

.bistro-pdf-actions {
  padding: 12px 18px;
  text-align: center;
  background: #f5f5f5;
}

.bistro-pdf-actions a {
  color: #404d3b;
  font-weight: 700;
  text-decoration: underline;
}

.bistro-pdf-empty {
  display: grid;
  flex: 1;
  place-items: center;
  padding: 32px;
  text-align: center;
  color: #404d3b;
  font-size: 1.1rem;
}

@media (max-width: 640px) {
  .bistro-pdf-modal {
    padding: 10px;
  }

  .bistro-pdf-dialog {
    height: 92vh;
    border-radius: 10px;
  }

  .bistro-pdf-header h2 {
    font-size: 1rem;
  }
}
