/* ============================================================================
   WOW — Select Timeslot Section
   ========================================================================== */

.wow-select-timeslot {
  margin: 32px auto;
  padding: 24px;
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  font-family: var(--wow-font-family, 'Assistant', sans-serif);
  color: #1f1f1f;
}

.wow-select-timeslot__title {
  margin: 0 0 12px 0;
  font-size: 22px;
  font-weight: 800;
}

.wow-select-timeslot__intro {
  margin: 0 0 16px 0;
  font-size: 14px;
  line-height: 1.7;
  color: #4a4a4a;
}

.wow-select-timeslot__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 24px 0;
}

.wow-select-timeslot__block-title {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 800;
}

.wow-select-timeslot__block-text {
  margin: 0 0 16px 0;
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.6;
}

.wow-select-timeslot__calendar-host {
  display: flex;
  justify-content: center;
}

.wow-select-timeslot__cutoff {
  margin: 12px 0 0 0;
  font-size: 13px;
  color: #444;
  text-align: right;
}

.wow-select-timeslot__cutoff strong {
  color: #111;
  font-weight: 700;
  margin-left: 4px;
}

.wow-select-timeslot__cutoff span {
  color: #d74d29;
  font-weight: 700;
  margin-right: 4px;
}

.wow-select-timeslot__hour-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 16px;
}

.wow-select-timeslot__hour-label {
  font-size: 15px;
  font-weight: 700;
  flex: 0 0 auto;
  color: #1f1f1f;
  white-space: nowrap;
}

.wow-select-timeslot__hour-input {
  flex: 0 1 220px;
  max-width: 220px;
}

.wow-select-timeslot__select {
  width: 100%;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  min-height: 38px;
}

.wow-select-timeslot__empty {
  font-size: 13px;
  color: #7a7a7a;
  padding: 16px 0;
  text-align: center;
}

@media (max-width: 600px) {
  .wow-select-timeslot {
    padding: 16px;
  }

  .wow-select-timeslot__hour-row {
    gap: 12px;
  }

  .wow-select-timeslot__hour-input {
    flex-basis: 160px;
    max-width: 160px;
  }
}
