/* Öffnungszeiten Modal Styles */
.opening-hours-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  animation: fadeIn 0.3s ease-in-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.opening-hours-modal {
  background: white;
  border-radius: var(--border-radius, 1rem);
  box-shadow: 0 10px 40px rgba(30, 56, 83, 0.15);
  max-width: 550px;
  width: 100%;
  position: relative;
  padding: 40px 30px 30px;
  transform: scale(0.9);
  animation: scaleIn 0.3s ease-in-out 0.1s forwards;
}

@keyframes scaleIn {
  to {
    transform: scale(1);
  }
}

.opening-hours-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary, #1e3853);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  opacity: 0.6;
}

.opening-hours-modal__close:hover {
  opacity: 1;
  background: var(--blue-gray, #f4f5f6);
  transform: rotate(90deg);
}

.opening-hours-modal__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--secondary, #f14d31);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
}

.opening-hours-modal__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary, #1e3853);
  margin: 0 0 15px;
  text-align: center;
}

.opening-hours-modal__content {
  color: var(--primary, #1e3853);
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: center;
}

.opening-hours-modal__content p {
  margin: 0 0 10px;
}

.opening-hours-modal__content p:last-child {
  margin-bottom: 0;
}

.opening-hours-modal__content strong {
  color: var(--secondary, #f14d31);
  font-weight: 600;
}

.opening-hours-modal__button {
  background: var(--secondary, #f14d31);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: var(--btn-border-radius, 0.5rem);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

.opening-hours-modal__button:hover {
  background: var(--primary, #1e3853);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 56, 83, 0.3);
}

/* Responsive Anpassungen */
@media (max-width: 576px) {
  .opening-hours-modal {
    padding: 35px 25px 25px;
  }
  
  .opening-hours-modal__title {
    font-size: 20px;
  }
  
  .opening-hours-modal__icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* Body scroll lock wenn Modal offen ist */
body.modal-open {
  overflow: hidden;
}
