/* Shared orange glassmorphism booking widget — homepage + schedule */

@keyframes bk-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bk-card-rise {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bk-panel-in-left {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bk-panel-in-right {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bk-tile-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bk-select-pop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bk-shimmer {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.32),
      0 24px 56px rgba(160, 50, 0, 0.22);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.42),
      0 28px 64px rgba(160, 50, 0, 0.28);
  }
}

.hr-booking {
  --bk-orange: #ff7020;
  --bk-orange-deep: #e85a0a;
  --bk-orange-active: #ff6600;
  --bk-orange-glass: rgba(255, 255, 255, 0.19);
  --bk-orange-glass-strong: rgba(255, 255, 255, 0.27);
  --bk-orange-border: rgba(255, 255, 255, 0.27);
  --bk-app-max: min(1040px, 100%);
  --bk-date-col: minmax(0, 1fr);
  --bk-time-col: minmax(0, 1fr);
  --bk-times-min: clamp(240px, 30vh, 320px);
  --bk-times-max: clamp(280px, 36vh, 380px);
  --bk-stage-min: clamp(420px, 48vh, 520px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
  background-color: var(--bk-orange);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  border-radius: clamp(20px, 2.8vw, 32px);
}

.hr-booking--page {
  margin-top: 4.5rem;
  border-radius: 0;
  min-height: calc(100vh - 4.5rem);
  display: flex;
  align-items: safe center;
}

.hr-booking__watermark {
  position: absolute;
  left: 50%;
  bottom: -0.08em;
  transform: translateX(-50%);
  width: max-content;
  max-width: 100%;
  font-family: var(--hr-font-display, "Funnel Display", system-ui, sans-serif);
  font-size: clamp(4.5rem, 16vw, 11rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.16);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.hr-booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.16) 0%, transparent 42%),
    radial-gradient(circle at 82% 88%, rgba(0, 0, 0, 0.08) 0%, transparent 48%);
  pointer-events: none;
  z-index: 0;
}

.hr-booking .container {
  position: relative;
  z-index: 1;
  max-width: none;
  width: 100%;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.hr-booking__head {
  max-width: min(760px, 100%);
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4.5vw, 3.25rem);
  padding-inline: clamp(0.5rem, 2vw, 1rem);
  text-align: center;
  animation: bk-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hr-booking__eyebrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: clamp(1rem, 2.2vw, 1.5rem);
  animation: bk-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.04s both;
}

.hr-booking__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.hr-booking__badge--soft {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.hr-booking__heading {
  margin: 0 0 clamp(0.9rem, 2vw, 1.25rem);
  font-family: var(--hr-font-display, "Funnel Display", system-ui, sans-serif);
  font-size: clamp(2.65rem, 7vw, 4.75rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.045em;
  color: #fff;
}

.hr-booking__heading-line {
  display: block;
  animation: bk-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hr-booking__heading-line:first-child {
  animation-delay: 0.1s;
}

.hr-booking__heading-line--soft {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  animation-delay: 0.16s;
}

.hr-booking__subhead {
  margin: 0 auto;
  max-width: 40ch;
  font-size: clamp(1rem, 1.85vw, 1.1875rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
  animation: bk-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.hr-booking__app {
  max-width: var(--bk-app-max);
  width: 100%;
  margin-inline: auto;
}

.hr-booking__card {
  position: relative;
  border-radius: clamp(24px, 3.2vw, 34px);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--bk-orange-glass);
  border: 1px solid var(--bk-orange-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 24px 56px rgba(160, 50, 0, 0.22);
  animation:
    bk-card-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both,
    bk-shimmer 6s ease-in-out 1.2s infinite;
}

.hr-booking__stage {
  position: relative;
  z-index: 1;
  min-height: var(--bk-stage-min);
  perspective: 1400px;
}

.hr-booking__stage.is-revealed {
  min-height: clamp(420px, 48vh, 520px);
}

.hr-booking__fold {
  display: grid;
  grid-template-columns: var(--bk-date-col) 1px var(--bk-time-col);
  gap: 0 clamp(0.85rem, 1.8vw, 1.25rem);
  align-items: stretch;
  transform-style: preserve-3d;
  transition: opacity 0.45s ease;
}

.hr-booking__divider {
  align-self: stretch;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.28) 18%,
    rgba(255, 255, 255, 0.42) 50%,
    rgba(255, 255, 255, 0.28) 82%,
    transparent
  );
}

.hr-booking__panel {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 0;
  padding: clamp(1rem, 1.8vw, 1.35rem);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition:
    transform 0.85s cubic-bezier(0.4, 0, 0.15, 1),
    opacity 0.55s ease,
    filter 0.55s ease;
}

.hr-booking__panel--date {
  animation: bk-panel-in-left 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.hr-booking__panel--time {
  animation: bk-panel-in-right 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}

.hr-booking__panel--date,
.hr-booking__panel--time {
  border-radius: clamp(14px, 2vw, 18px);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.23);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.21);
}

.hr-booking__panel--date .hr-booking__dates {
  flex: 1 1 auto;
  min-height: 0;
  align-content: stretch;
  grid-auto-rows: 1fr;
}

.hr-booking__panel--time {
  overflow: hidden;
}

.hr-booking__step {
  display: block;
  margin: 0;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hr-booking__step-mark {
  display: none;
}

.hr-booking__range {
  margin: 0;
  font-family: var(--hr-font-display, "Funnel Display", system-ui, sans-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

.hr-booking__weekdays {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.45rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
}

.hr-booking__dates {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.45rem;
}

.hr-booking__date-spacer {
  min-height: clamp(3rem, 4.8vh, 3.6rem);
}

.hr-booking__date-btn {
  aspect-ratio: 1;
  min-height: clamp(3rem, 4.8vh, 3.6rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: clamp(10px, 1.4vw, 12px);
  background: rgba(255, 255, 255, 0.17);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease;
  animation: bk-tile-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hr-booking__date-btn:nth-child(1) { animation-delay: 0.04s; }
.hr-booking__date-btn:nth-child(2) { animation-delay: 0.07s; }
.hr-booking__date-btn:nth-child(3) { animation-delay: 0.1s; }
.hr-booking__date-btn:nth-child(4) { animation-delay: 0.13s; }
.hr-booking__date-btn:nth-child(5) { animation-delay: 0.16s; }
.hr-booking__date-btn:nth-child(6) { animation-delay: 0.19s; }
.hr-booking__date-btn:nth-child(7) { animation-delay: 0.22s; }
.hr-booking__date-btn:nth-child(8) { animation-delay: 0.25s; }
.hr-booking__date-btn:nth-child(9) { animation-delay: 0.28s; }
.hr-booking__date-btn:nth-child(10) { animation-delay: 0.31s; }
.hr-booking__date-btn:nth-child(n + 11) { animation-delay: 0.34s; }

.hr-booking__date-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.39);
  transform: translateY(-2px);
}

.hr-booking__date-btn.is-selected {
  background: #fff;
  border-color: #fff;
  color: var(--bk-orange-deep);
  box-shadow:
    0 10px 24px rgba(120, 40, 0, 0.32),
    0 0 0 3px rgba(255, 255, 255, 0.35);
  animation: bk-select-pop 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hr-booking__slots-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.hr-booking__slots-title {
  margin: 0;
  font-family: var(--hr-font-display, "Funnel Display", system-ui, sans-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

.hr-booking__panel--time.is-locked .hr-booking__slots-title::after {
  content: none;
}

.hr-booking__tz {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
}

.hr-booking__times-wrap {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: var(--bk-times-min);
  max-height: var(--bk-times-max);
  overflow: hidden;
  margin-top: 0.15rem;
}

.hr-booking__times {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  flex: 1 1 auto;
  min-height: 0;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 0.35rem;
  align-content: start;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.45) rgba(255, 255, 255, 0.08);
}

.hr-booking__times-wrap::before,
.hr-booking__times-wrap::after {
  content: none;
}

.hr-booking__time-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: clamp(10px, 1.4vw, 12px);
  background: rgba(255, 255, 255, 0.17);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease;
  animation: bk-tile-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hr-booking__time-btn:nth-child(1) { animation-delay: 0.05s; }
.hr-booking__time-btn:nth-child(2) { animation-delay: 0.09s; }
.hr-booking__time-btn:nth-child(3) { animation-delay: 0.13s; }
.hr-booking__time-btn:nth-child(4) { animation-delay: 0.17s; }
.hr-booking__time-btn:nth-child(5) { animation-delay: 0.21s; }
.hr-booking__time-btn:nth-child(6) { animation-delay: 0.25s; }
.hr-booking__time-btn:nth-child(n + 7) { animation-delay: 0.29s; }

.hr-booking__time-btn span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.hr-booking__time-btn:hover:not(:disabled):not(.is-placeholder) {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.39);
  transform: translateX(4px);
}

.hr-booking__time-btn.is-selected {
  background: #fff;
  border-color: #fff;
  color: var(--bk-orange-deep);
  box-shadow:
    0 10px 24px rgba(120, 40, 0, 0.32),
    0 0 0 3px rgba(255, 255, 255, 0.35);
  animation: bk-select-pop 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hr-booking__time-btn.is-selected span {
  color: var(--bk-orange-deep);
  opacity: 0.78;
}

.hr-booking__time-btn.is-placeholder,
.hr-booking__time-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.hr-booking__hint,
.hr-booking__empty {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
}

.hr-booking__hint {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hr-booking__hint.is-selected {
  animation: bk-fade-up 0.4s ease both;
}

.hr-booking__hint::before {
  content: none;
}

.hr-booking__hint.is-selected::before {
  content: "✓";
  font-weight: 700;
}

.hr-booking__panel--time .hr-booking__hint {
  justify-content: center;
  text-align: center;
}

.hr-booking__reveal {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.97);
  transition:
    opacity 0.5s ease 0.12s,
    visibility 0.5s ease 0.12s,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}

.hr-booking__reveal-inner {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  padding: clamp(0.5rem, 1vw, 0.85rem);
}

.hr-booking__stage.is-revealed .hr-booking__fold {
  opacity: 0;
  pointer-events: none;
}

.hr-booking__stage.is-revealed .hr-booking__panel--date {
  transform: rotateY(88deg) translateZ(0);
  opacity: 0;
  filter: blur(2px);
}

.hr-booking__stage.is-revealed .hr-booking__panel--time {
  transform: rotateY(-88deg) translateZ(0);
  opacity: 0;
  filter: blur(2px);
}

.hr-booking__stage.is-revealed .hr-booking__reveal {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.hr-booking__back {
  margin: 0 0 0.65rem;
  padding: 0;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.hr-booking__back:hover {
  color: #fff;
}

.hr-booking__form-title {
  margin: 0 0 0.65rem;
  font-family: var(--hr-font-display, "Funnel Display", system-ui, sans-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 700;
  color: #fff;
}

.hr-booking__summary {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #fff;
}

.hr-booking__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.hr-booking__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hr-booking__field--full {
  grid-column: 1 / -1;
}

.hr-booking__field label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
}

.hr-booking__field label span {
  color: rgba(255, 255, 255, 0.72);
}

.hr-booking__field input,
.hr-booking__field textarea {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.12);
  color: #fff;
  font: inherit;
  font-size: 0.9375rem;
}

.hr-booking__field input::placeholder,
.hr-booking__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.hr-booking__field input:focus,
.hr-booking__field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.hr-booking__field textarea {
  resize: vertical;
  min-height: 88px;
}

.hr-booking__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hr-booking__status {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: #fff;
}

.hr-booking__status.is-error {
  color: #ffe0cc;
}

.hr-booking__submit {
  margin-top: 0.85rem;
  width: 100%;
  min-height: 2.85rem;
}

.hr-booking__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

body.home-redesign .hr-dark-zone > .hr-booking,
body.home-redesign .hr-booking {
  margin-inline: var(--hr-gutter, 1.25rem);
  width: calc(100% - 2 * var(--hr-gutter, 1.25rem));
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .hr-booking__fold {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .hr-booking__divider {
    display: none;
  }
}

@media (max-width: 720px) {
  .hr-booking__fields {
    grid-template-columns: 1fr;
  }

  .hr-booking__heading {
    font-size: clamp(2.2rem, 12vw, 3rem);
    letter-spacing: -0.035em;
  }

  .hr-booking__subhead {
    font-size: 0.975rem;
    max-width: 34ch;
  }

  .hr-booking__watermark {
    font-size: clamp(3rem, 22vw, 5rem);
  }

  /* Schedule page: switch from vertical-centered flex to natural flow
     so a tall card (date + time + details form) never gets clipped. */
  .hr-booking--page {
    display: block;
    min-height: 0;
    margin-top: 3.75rem;
    padding-top: clamp(1.75rem, 6vw, 2.5rem);
    padding-bottom: clamp(2.25rem, 8vw, 3.5rem);
  }

  .hr-booking__card {
    padding: clamp(0.9rem, 4vw, 1.25rem);
  }

  .hr-booking__panel {
    padding: clamp(0.85rem, 3.5vw, 1.1rem);
  }

  /* On mobile, let the details form push content in normal flow
     (rather than absolute-overlay) so a tall form never gets clipped. */
  .hr-booking__reveal {
    position: relative;
    inset: auto;
    display: none;
    transform: none;
  }

  .hr-booking__stage.is-revealed .hr-booking__reveal {
    display: block;
  }

  .hr-booking__stage.is-revealed .hr-booking__fold {
    display: none;
  }

  .hr-booking__stage,
  .hr-booking__stage.is-revealed {
    min-height: 0;
  }
}

@media (max-width: 380px) {
  .hr-booking__dates,
  .hr-booking__weekdays {
    gap: 0.3rem;
  }

  .hr-booking__date-btn {
    font-size: 0.9375rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hr-booking__head,
  .hr-booking__eyebrow,
  .hr-booking__heading-line,
  .hr-booking__subhead,
  .hr-booking__card,
  .hr-booking__panel--date,
  .hr-booking__panel--time,
  .hr-booking__date-btn,
  .hr-booking__time-btn,
  .hr-booking__hint.is-selected {
    animation: none !important;
  }

  .hr-booking__fold,
  .hr-booking__panel,
  .hr-booking__reveal,
  .hr-booking__date-btn,
  .hr-booking__time-btn {
    transition: none;
  }

  .hr-booking__stage.is-revealed .hr-booking__panel--date,
  .hr-booking__stage.is-revealed .hr-booking__panel--time {
    transform: none;
    filter: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.home-redesign .hr-booking,
body.mn-page .hr-booking {
  --bk-orange: #ff7020;
  --bk-orange-active: #ff6600;
  --bk-orange-glass: rgba(255, 255, 255, 0.19);
  --bk-orange-border: rgba(255, 255, 255, 0.27);
  --bk-app-max: min(1040px, 100%);
  --bk-date-col: minmax(0, 1fr);
  --bk-time-col: minmax(0, 1fr);
  --bk-times-min: clamp(240px, 30vh, 320px);
  --bk-times-max: clamp(280px, 36vh, 380px);
  background-color: var(--bk-orange) !important;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px) !important;
  background-size: 48px 48px !important;
  background-position: 0 0 !important;
  border: none !important;
  box-shadow: none !important;
}

body.home-redesign .hr-booking::before,
body.mn-page .hr-booking::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.16) 0%, transparent 42%),
    radial-gradient(circle at 82% 88%, rgba(0, 0, 0, 0.08) 0%, transparent 48%) !important;
}

body.home-redesign .hr-booking__head,
body.mn-page .hr-booking__head {
  margin-bottom: clamp(2rem, 4.5vw, 3.25rem) !important;
}

.hr-booking__head--page {
  max-width: min(760px, 100%);
}

body.home-redesign .hr-booking__date-btn.is-selected,
body.mn-page .hr-booking__date-btn.is-selected,
body.home-redesign .hr-booking__time-btn.is-selected,
body.mn-page .hr-booking__time-btn.is-selected {
  background: #fff !important;
  border-color: #fff !important;
  box-shadow:
    0 10px 24px rgba(120, 40, 0, 0.32),
    0 0 0 3px rgba(255, 255, 255, 0.35) !important;
  color: var(--bk-orange-deep) !important;
}

body.home-redesign .hr-booking__time-btn.is-selected span,
body.mn-page .hr-booking__time-btn.is-selected span {
  color: var(--bk-orange-deep) !important;
  opacity: 0.78;
}

body.home-redesign .hr-booking__date-btn:hover,
body.mn-page .hr-booking__date-btn:hover,
body.home-redesign .hr-booking__time-btn:hover:not(:disabled):not(.is-placeholder),
body.mn-page .hr-booking__time-btn:hover:not(:disabled):not(.is-placeholder) {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.39) !important;
}

body.home-redesign .hr-booking__panel--time.is-locked .hr-booking__slots-title::after,
body.mn-page .hr-booking__panel--time.is-locked .hr-booking__slots-title::after {
  content: none !important;
}

body.home-redesign .hr-booking__times-wrap,
body.mn-page .hr-booking__times-wrap {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

body.home-redesign .hr-booking__times-wrap::before,
body.home-redesign .hr-booking__times-wrap::after,
body.mn-page .hr-booking__times-wrap::before,
body.mn-page .hr-booking__times-wrap::after {
  content: none !important;
}

body.home-redesign .hr-booking__hint::before,
body.mn-page .hr-booking__hint::before {
  content: none !important;
  display: none !important;
}

body.mn-page .hr-booking__submit.mn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.85rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.21);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

body.mn-page .hr-booking__submit.mn-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.5);
}

body.mn-page.schedule-page {
  background: #ff7020;
}

body.mn-page.schedule-page .mn-footer {
  background: #fff;
}

@media (min-width: 1200px) {
  body.home-redesign .hr-booking,
  body.mn-page .hr-booking {
    --bk-date-col: minmax(0, 1fr) !important;
    --bk-time-col: minmax(0, 1fr) !important;
  }
}

@media (max-width: 1024px) {
  body.home-redesign .hr-booking,
  body.mn-page .hr-booking {
    --bk-date-col: minmax(0, 1fr) !important;
    --bk-time-col: minmax(0, 1fr) !important;
  }
}
