/* Hours & Location modal (replaces Elementor popup) */
.donutfy-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 18px;
}

.donutfy-modal-overlay.is-open {
  display: flex;
}

.donutfy-modal {
  width: min(450px, 100%);
  max-height: min(80vh, 820px);
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  position: relative;
  padding: 18px 18px 10px;
}

.donutfy-modal-close {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #1f2124 !important;
  border: unset !important;
  font-size: 30px !important;
  font-weight: 600 !important;
}

.donutfy-modal-close:hover , .donutfy-modal-close:focus {
  background-color: rgb(255, 255, 255) !important;
}

.donutfy-modal-body {
  padding-top: 18px;
}

/* Lock scrolling when open */
html.donutfy-modal-open,
body.donutfy-modal-open {
  overflow: hidden;
}

