@charset "UTF-8";
/* =============================================
   CO LAB GMUNDEN — Booking Overlay
   SCSS source — compiled to booking.css by CodeKit
   ============================================= */
.booking {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  flex-direction: column;
  max-height: 100vh;
  overflow-y: auto;
}
.booking.is-open {
  display: flex;
}
.booking::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
}
.booking__header {
  flex-shrink: 0;
  height: var(--header-height);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-black);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 40px;
}
.booking__header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.booking__header-btn {
  background: none;
  border: none;
  font-family: "PP Fraktion Mono", "Courier New", "Courier", monospace;
  font-size: var(--font-body-s);
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  color: inherit;
  padding: 0;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.booking__header-btn:hover {
  opacity: 0.6;
}
.booking__panel {
  flex: 1 1 auto;
  min-height: 625px;
  background: var(--color-white);
  padding: var(--gap-lg);
  display: flex;
  align-items: flex-start;
  overflow-y: auto;
}
.booking__sidebar {
  width: 350px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}
.booking__section {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}
.booking__label {
  font-family: "PP Fraktion Mono", "Courier New", "Courier", monospace;
  font-weight: 400;
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  color: var(--color-black);
  text-transform: uppercase;
  margin: 0;
}
.booking__options {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}
.booking__option {
  display: flex;
  gap: var(--gap-sm);
  align-items: flex-start;
  font-family: "PP Editorial New", "Georgia", serif;
  font-weight: 200;
  font-size: 30px;
  line-height: normal;
  color: var(--color-black);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  transition: opacity 0.2s ease;
}
.booking__option:hover {
  opacity: 0.6;
}
.booking__option-prefix {
  flex-shrink: 0;
}
.booking__content {
  width: 732px;
  max-width: 100%;
  flex-shrink: 1;
  min-width: 0;
  margin-left: max(var(--gap-lg), 50% - 716px);
}
.booking__content-label {
  font-family: "PP Fraktion Mono", "Courier New", "Courier", monospace;
  font-weight: 400;
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  color: var(--color-black);
  margin-bottom: var(--gap-md);
}
.booking__calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: var(--gap-lg);
}
.booking__calendar-month {
  font-family: "PP Editorial New", "Georgia", serif;
  font-weight: 200;
  font-size: 30px;
  line-height: 26px;
  color: var(--color-black);
}
.booking__calendar-nav {
  display: flex;
  gap: var(--gap-md);
}
.booking__calendar-arrow {
  font-family: "PP Editorial New", "Georgia", serif;
  font-weight: 200;
  font-size: 30px;
  line-height: 26px;
  color: var(--color-black);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s ease;
}
.booking__calendar-arrow:hover {
  opacity: 0.6;
}
.booking__calendar-weekdays {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 12px;
}
.booking__calendar-weekday {
  font-family: "PP Fraktion Mono", "Courier New", "Courier", monospace;
  font-weight: 400;
  font-size: var(--font-body-xs);
  line-height: 20.8px;
  color: var(--color-black);
  width: 30px;
  text-align: center;
}
.booking__calendar-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.booking__calendar-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.booking__day {
  font-family: "PP Fraktion Mono", "Courier New", "Courier", monospace;
  font-weight: 400;
  font-size: var(--font-body-xs);
  line-height: 20.8px;
  color: var(--color-black);
  width: 30px;
  text-align: center;
  cursor: pointer;
  background: none;
  border: 1px solid transparent;
  padding: 5px;
  transition: opacity 0.2s ease;
}
.booking__day:hover:not(.booking__day--past):not(.booking__day--unavailable):not(.booking__day--empty) {
  opacity: 0.6;
}
.booking__day--empty {
  visibility: hidden;
  cursor: default;
}
.booking__day--past, .booking__day--unavailable {
  text-decoration: line-through;
  cursor: default;
}
.booking__day--selected {
  border: 1px solid var(--color-black);
  font-weight: 700;
}
.booking__loading {
  font-family: "PP Fraktion Mono", "Courier New", "Courier", monospace;
  font-weight: 400;
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  color: var(--color-black);
  opacity: 0.5;
}
.booking__transition {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.booking__transition-text {
  font-family: "PP Fraktion Mono", "Courier New", "Courier", monospace;
  font-weight: 400;
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  color: var(--color-black);
}
.booking__timeslots {
  margin-top: var(--gap-lg);
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}
.booking__timeslot {
  font-family: "PP Fraktion Mono", "Courier New", "Courier", monospace;
  font-weight: 400;
  font-size: var(--font-body-xs);
  line-height: 20.8px;
  color: var(--color-black);
  background: none;
  border: 1px solid transparent;
  padding: 5px;
  cursor: pointer;
  display: inline-flex;
  align-self: flex-start;
  transition: opacity 0.2s ease;
}
.booking__timeslot:hover:not(.booking__timeslot--unavailable) {
  opacity: 0.6;
}
.booking__timeslot--unavailable {
  text-decoration: line-through;
  cursor: default;
}
.booking__timeslot--selected {
  border: 1px solid var(--color-black);
}
.booking__form {
  width: 731px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}
.booking__field {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}
.booking__input, .booking__textarea {
  background: none;
  border: none;
  border-bottom: 1px solid var(--color-black);
  font-family: "PP Editorial New", "Georgia", serif;
  font-weight: 200;
  font-size: 30px;
  line-height: 26px;
  color: var(--color-black);
  padding: 10px 0;
  outline: none;
  width: 100%;
}
.booking__input::placeholder, .booking__textarea::placeholder {
  color: rgba(0, 0, 0, 0.2);
}
.booking__textarea {
  min-height: 152px;
  resize: vertical;
}
.booking__bottom {
  flex-shrink: 0;
  height: 106px;
  background: var(--color-sage);
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  padding: var(--gap-sm) var(--gap-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.booking__breadcrumb {
  font-family: "PP Fraktion Mono", "Courier New", "Courier", monospace;
  font-weight: 400;
  font-size: var(--font-body-s);
  line-height: normal;
  color: var(--color-black);
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-sm);
}
.booking__breadcrumb span {
  white-space: nowrap;
}
.booking__action {
  display: flex;
  gap: var(--gap-md);
  align-items: center;
  white-space: nowrap;
}
.booking__price {
  font-family: "PP Fraktion Mono", "Courier New", "Courier", monospace;
  font-weight: 400;
  font-size: var(--font-body-s);
  line-height: normal;
  color: var(--color-black);
}
.booking__cta {
  font-family: "PP Editorial New", "Georgia", serif;
  font-weight: 200;
  font-size: 30px;
  line-height: normal;
  color: var(--color-black);
  text-transform: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s ease;
}
.booking__cta:hover {
  opacity: 0.6;
}

@media (max-height: 767px) {
  .booking {
    height: 100dvh;
    overflow: hidden;
  }
  .booking__panel {
    min-height: 0;
  }
}
@media (max-width: 768px) {
  .booking__header {
    padding: 0 16px;
  }
  .booking__panel {
    flex-direction: column;
    gap: var(--gap-lg);
    padding: var(--gap-md);
    min-height: 0;
  }
  .booking__sidebar {
    width: 100%;
  }
  .booking__content {
    width: 100%;
    margin-left: 0;
  }
  .booking__options {
    width: 100%;
  }
  .booking__bottom {
    height: auto;
    min-height: 80px;
    padding: var(--gap-sm) 16px;
    flex-wrap: wrap;
    gap: var(--gap-sm);
  }
  .booking__action {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .booking__form {
    width: 100%;
  }
}
