.online-booking-page {
  min-height: 100vh;
  padding: 64px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
}

.online-booking-header {
  position: fixed;
  top: env(safe-area-inset-top);
  left: 0;
  right: 0;
  height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 8px 16px;
  z-index: 25;
  box-sizing: border-box;
  transition: opacity 180ms ease;
}

.online-booking-back {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.online-booking-back img {
  width: 24px;
  height: 24px;
}

.online-booking-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 600;
  color: #1b1b1b;
  text-align: center;
}

.online-booking-card {
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 28px 16px calc(24px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  flex: 1;
  min-height: 0;
}

.online-booking-card--loading {
  pointer-events: none;
}

.online-booking-card__title {
  margin: 0 auto;
  max-width: 310px;
  text-align: center;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 600;
  color: #1b1b1b;
}

.online-booking-card__subtitle {
  margin: 8px auto 0;
  max-width: 320px;
  text-align: center;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  color: #1b1b1b;
}

.online-booking-link-box {
  margin-top: 24px;
  border: 1px solid #dcdfe4;
  border-radius: 16px;
  padding: 12px;
  background: #fff;
}

.online-booking-link-box__label {
  font-size: 12px;
  line-height: 1.2;
  color: #9ca3af;
  margin-bottom: 4px;
}

.online-booking-link-box__value {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
  color: #1b1b1b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.online-booking-copy {
  margin-top: 16px;
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 16px;
  background: #1b1b1b;
  color: #fff;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.online-booking-copy img {
  width: 22px;
  height: 22px;
}

@media (max-width: 430px) {
  .online-booking-card__title {
    font-size: 24px;
  }
}
