/* =============================================================================
   702 Housing Checkout Stepper — stepper.css
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.hcs-wrap,
.hcs-wrap * { box-sizing: border-box; }

.hcs-wrap {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 60px;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* =============================================================================
   PROGRESS BAR — dots only, no labels
   ============================================================================= */
.hcs-progress { padding: 32px 0 36px; overflow: hidden; }

.hcs-progress__track {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hcs-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.hcs-progress__dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E0E0E0;
  border: 2px solid #E0E0E0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  z-index: 1;
}

.hcs-progress__num  { color: #999; font-size: 14px; font-weight: 600; line-height: 1; }
.hcs-progress__check { color: #fff; font-size: 16px; font-weight: 700; display: none; }
.hcs-progress__label { display: none; } /* hidden per design */

.hcs-progress__step.is-active .hcs-progress__dot { background: #1BB28A; border-color: #1BB28A; }
.hcs-progress__step.is-active .hcs-progress__num  { color: #fff; }
.hcs-progress__step.is-done   .hcs-progress__dot  { background: #1BB28A; border-color: #1BB28A; }
.hcs-progress__step.is-done   .hcs-progress__num  { display: none; }
.hcs-progress__step.is-done   .hcs-progress__check { display: block; }

.hcs-progress__line {
  flex: 1;
  height: 2px;
  background: #E0E0E0;
  margin: 0 6px;
  min-width: 24px;
  transition: background 0.3s;
}
.hcs-progress__line.is-done { background: #1BB28A; }
@media (min-width: 480px) { .hcs-progress__line { min-width: 48px; } }

/* =============================================================================
   STEP PANELS — no shadow, no border
   ============================================================================= */
.hcs-step { background: #fff; padding: 0 0 8px; }

.hcs-step__title {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #000 !important;
  text-align: center !important;
  margin: 0 0 32px !important;
  padding: 0 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  line-height: 1.3 !important;
}

/* =============================================================================
   FIELD GRID — single column always
   ============================================================================= */
.hcs-fields-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* WC form-row wrapper */
.hcs-fields-grid .form-row,
.hcs-fields-grid p.form-row {
  margin: 0 !important;
  padding: 0 0 4px !important;
  position: relative;
  width: 100% !important;
}

/* All fields full width */
.hcs-fields-grid .form-row input,
.hcs-fields-grid .form-row select,
.hcs-fields-grid .form-row textarea,
.hcs-fields-grid input,
.hcs-fields-grid select,
.hcs-fields-grid textarea {
  width: 100% !important;
}

/* ---- Labels ---- */
.hcs-fields-grid label,
.hcs-fields-grid .form-row label {
  display: block !important;
  color: #000 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 18px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 150% !important;
  margin-bottom: 6px !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

/* Required asterisk — black, no underline */
.hcs-fields-grid label abbr,
.hcs-fields-grid label abbr[title] {
  color: #000 !important;
  text-decoration: none !important;
  border-bottom: none !important;
  cursor: default !important;
  margin-left: 2px;
}

/* ---- Text inputs ---- */
.hcs-fields-grid input[type="text"],
.hcs-fields-grid input[type="email"],
.hcs-fields-grid input[type="tel"],
.hcs-fields-grid input[type="password"],
.hcs-fields-grid input[type="number"] {
  display: block !important;
  width: 100% !important;
  height: 48px !important;
  padding: 8px 12px !important;
  border-radius: 6px !important;
  border: 1px solid rgba(0,0,0,0.15) !important;
  background: transparent !important;
  color: #000 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 150% !important;
  outline: none !important;
  -webkit-appearance: none;
  appearance: none;
}

/* ---- Select ---- */
.hcs-fields-grid select {
  display: block !important;
  width: 100% !important;
  height: 48px !important;
  padding: 8px 40px 8px 12px !important;
  border-radius: 6px !important;
  border: 1px solid rgba(0,0,0,0.15) !important;
  background: transparent !important;
  color: #000 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 150% !important;
  outline: none !important;
  cursor: pointer !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23000' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
}

/* ---- Textarea ---- */
.hcs-fields-grid textarea {
  display: block !important;
  width: 100% !important;
  min-height: 209px !important;
  height: auto !important;
  padding: 14px !important;
  border-radius: 14px !important;
  border: 1.159px solid rgba(0,0,0,0.15) !important;
  background: rgba(0,0,0,0.05) !important;
  color: #000 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 150% !important;
  outline: none !important;
  resize: vertical !important;
  -webkit-appearance: none;
  appearance: none;
}

/* ---- Select2 overrides — WC replaces native selects with Select2 ---- */

/* Force the wrapper to be full width first —
   only apply grid to wrappers that contain radio inputs, not selects */
.hcs-fields-grid .woocommerce-input-wrapper {
  display: block !important;
  width: 100% !important;
}

/* Radio-specific wrapper gets the grid pairing layout */
.hcs-fields-grid .woocommerce-input-wrapper:has(input[type="radio"]) {
  display: grid !important;
  grid-template-columns: 18px 1fr !important;
  grid-auto-rows: auto !important;
  align-items: center !important;
  column-gap: 10px !important;
  row-gap: 14px !important;
  width: 100% !important;
}

/* Select2 container — override inline width set by Select2 JS */
.hcs-fields-grid .select2-container,
.hcs-fields-grid .woocommerce-input-wrapper .select2-container,
.hcs-fields-grid .woocommerce-input-wrapper .select2 {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  display: block !important;
}

.hcs-fields-grid .select2-container .select2-selection--single {
  height: 48px !important;
  padding: 8px 40px 8px 12px !important;
  border-radius: 6px !important;
  border: 1px solid rgba(0,0,0,0.15) !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  outline: none !important;
}

.hcs-fields-grid .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #000 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 150% !important;
  padding: 0 !important;
}

/* Placeholder text color */
.hcs-fields-grid .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999 !important;
  font-size: 18px !important;
  font-weight: 400 !important;
}

/* Line chevron caret — replace Select2's triangle with a stroke chevron */
.hcs-fields-grid .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
  top: 0 !important;
  right: 12px !important;
  width: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Hide the default border-trick triangle */
.hcs-fields-grid .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none !important;
}

/* Inject line chevron via pseudo-element */
.hcs-fields-grid .select2-container--default .select2-selection--single .select2-selection__arrow::after {
  content: '' !important;
  display: block !important;
  width: 10px !important;
  height: 10px !important;
  border-right: 1.5px solid #000 !important;
  border-bottom: 1.5px solid #000 !important;
  transform: rotate(45deg) translateY(-3px) !important;
  pointer-events: none !important;
}

/* Open state */
.hcs-fields-grid .select2-container--open .select2-selection--single {
  border-color: #1BB28A !important;
  box-shadow: 0 0 0 3px rgba(27,178,138,0.12) !important;
}

/* Dropdown */
.hcs-fields-grid .select2-dropdown {
  border: 1px solid rgba(0,0,0,0.15) !important;
  border-radius: 6px !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  z-index: 99999 !important;
}

.hcs-fields-grid .select2-results__option {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #000 !important;
  padding: 10px 14px !important;
}

.hcs-fields-grid .select2-results__option--highlighted {
  background: #1BB28A !important;
  color: #fff !important;
}

.hcs-fields-grid .select2-search--dropdown .select2-search__field {
  border: 1px solid rgba(0,0,0,0.15) !important;
  border-radius: 4px !important;
  font-size: 15px !important;
  padding: 6px 10px !important;
  outline: none !important;
}

/* Error state on Select2 */
.hcs-fields-grid .woocommerce-invalid .select2-selection--single {
  border-color: #e53935 !important;
  box-shadow: 0 0 0 3px rgba(229,57,53,0.1) !important;
}

/* Readonly */
.hcs-fields-grid input[readonly] {
  background: rgba(0,0,0,0.03) !important;
  color: #888 !important;
  cursor: default !important;
}

/* Focus */
.hcs-fields-grid input:focus,
.hcs-fields-grid select:focus,
.hcs-fields-grid textarea:focus {
  border-color: #1BB28A !important;
  box-shadow: 0 0 0 3px rgba(27,178,138,0.12) !important;
}

/* Error state */
.hcs-fields-grid input.hcs-error,
.hcs-fields-grid select.hcs-error,
.hcs-fields-grid textarea.hcs-error {
  border-color: #e53935 !important;
  box-shadow: 0 0 0 3px rgba(229,57,53,0.1) !important;
}

/* Error message — absolute, doesn't push layout */
p.form-row,
.hcs-fields-grid > div { position: relative; }

.hcs-field-error {
  position: absolute;
  bottom: -18px;
  left: 0;
  font-size: 12px;
  font-weight: 500;
  color: #e53935;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

/* =============================================================================
   RADIO BUTTONS — radio LEFT, label text RIGHT
   ============================================================================= */
.hcs-ack-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  width: 100%;
}

.hcs-ack-label {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #333 !important;
  margin: 0 0 4px !important;
  line-height: 1.5 !important;
}

/* Radio label: input on left, text on right */
.hcs-radio-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #000 !important;
  cursor: pointer !important;
  line-height: 1.4 !important;
}

/* Custom radio input */
.hcs-radio-label input[type="radio"] {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(0,0,0,0.15) !important;
  background: transparent !important;
  cursor: pointer !important;
  position: relative !important;
  flex-shrink: 0 !important;
  transition: border-color 0.15s, background 0.15s !important;
  margin: 0 !important;
}

.hcs-radio-label input[type="radio"]:checked {
  border: 1px solid #000 !important;
  background: #000 !important;
}

.hcs-radio-label input[type="radio"]:checked::after {
  content: '' !important;
  position: absolute !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: #fff !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

/* Radio label text — sits to the right of the input */
.hcs-radio-label span,
.hcs-radio-label > *:not(input) {
  flex: 1 !important;
  text-align: left !important;
}

/* ---- WooCommerce input wrapper — base: block so selects stretch full width ---- */
.hcs-fields-grid .woocommerce-input-wrapper {
  display: block !important;
  width: 100% !important;
}

/* Scope grid layout ONLY to wrappers that contain radio inputs */
.hcs-fields-grid .woocommerce-input-wrapper:has(input[type="radio"]) {
  display: grid !important;
  grid-template-columns: 18px 1fr !important;
  grid-auto-rows: auto !important;
  align-items: center !important;
  column-gap: 10px !important;
  row-gap: 14px !important;
  width: 100% !important;
}

/* Each WC radio input — same custom circle style */
.hcs-fields-grid .woocommerce-input-wrapper input[type="radio"].input-radio {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(0,0,0,0.15) !important;
  background: transparent !important;
  cursor: pointer !important;
  position: relative !important;
  flex-shrink: 0 !important;
  transition: border-color 0.15s, background 0.15s !important;
  margin: 0 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

.hcs-fields-grid .woocommerce-input-wrapper input[type="radio"].input-radio:checked {
  border: 1px solid #000 !important;
  background: #000 !important;
}

.hcs-fields-grid .woocommerce-input-wrapper input[type="radio"].input-radio:checked::after {
  content: '' !important;
  position: absolute !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: #fff !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

/* WC radio label — sits inline after the input, no asterisk styling bleed */
.hcs-fields-grid .woocommerce-input-wrapper label.radio {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #000 !important;
  cursor: pointer !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  padding: 0 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

/* Hide asterisk inside WC radio labels */
.hcs-fields-grid .woocommerce-input-wrapper label.radio .required,
.hcs-fields-grid .woocommerce-input-wrapper label.radio span.required {
  display: none !important;
}

/* =============================================================================
   PHOTO ID UPLOAD ZONE
   ============================================================================= */
.hcs-upload-label {
  display: block !important;
  color: #000 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 150% !important;
  margin-bottom: 8px !important;
}

.hcs-upload-label abbr {
  color: #000 !important;
  text-decoration: none !important;
  margin-left: 2px;
}

.hcs-upload-sublabel {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #6C6C6C;
  margin-top: 2px;
  line-height: 1.4;
}

.hcs-upload-zone {
  position: relative;
  border: 1.5px dashed rgba(0,0,0,0.2);
  border-radius: 10px;
  background: rgba(0,0,0,0.02);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  overflow: hidden;
}

.hcs-upload-zone:hover,
.hcs-upload-zone.is-dragging {
  border-color: #1BB28A;
  background: rgba(27,178,138,0.04);
}

/* Hide the real file input but keep it accessible */
.hcs-upload-zone input[type="file"] {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  cursor: pointer !important;
  z-index: 2 !important;
}

.hcs-upload-zone__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  gap: 8px;
  pointer-events: none;
  text-align: center;
}

.hcs-upload-zone__icon {
  color: #aaa;
  flex-shrink: 0;
}

.hcs-upload-zone__text {
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #555 !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

.hcs-upload-zone__link {
  color: #1BB28A;
  text-decoration: underline;
  font-weight: 500;
}

.hcs-upload-zone__formats {
  font-size: 12px !important;
  color: #aaa !important;
  margin: 0 !important;
}

/* Preview row after file selected */
.hcs-upload-preview {
  margin-top: 10px;
}

.hcs-upload-preview__file {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(27,178,138,0.3);
  background: rgba(27,178,138,0.05);
}

.hcs-upload-preview__name {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hcs-upload-preview__remove {
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 0 4px;
  flex-shrink: 0;
  transition: color 0.15s;
}
.hcs-upload-preview__remove:hover { color: #e53935; }

/* Error on upload zone */
.hcs-upload-zone.hcs-error {
  border-color: #e53935 !important;
  background: rgba(229,57,53,0.03) !important;
}

/* =============================================================================
   CHECKBOX
   ============================================================================= */
.hcs-checkbox-label {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #333 !important;
  cursor: pointer !important;
}
.hcs-checkbox-label input[type="checkbox"] {
  width: 18px !important; height: 18px !important;
  accent-color: #1BB28A !important; flex-shrink: 0 !important; cursor: pointer !important;
}

/* =============================================================================
   CONDITIONAL BLOCKS
   ============================================================================= */
.hcs-conditional { display: none; }
.hcs-conditional.is-visible { display: block; }

/* =============================================================================
   NAV BUTTONS
   ============================================================================= */
.hcs-step__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #F0F0F0;
  gap: 12px;
}

/* Top nav on final step — no border, less top margin */
.hcs-step__nav--top {
  margin-top: 0;
  margin-bottom: 24px;
  padding-top: 0;
  border-top: none;
  border-bottom: 1px solid #F0F0F0;
  padding-bottom: 20px;
}

.hcs-step__nav-hint {
  font-size: 14px;
  color: #888;
  font-weight: 400;
}

.hcs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: none;
  transition: background 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.hcs-btn--next, .hcs-btn--primary { background: #1BB28A; color: #fff !important; }
.hcs-btn--next:hover, .hcs-btn--primary:hover { background: #17a07c; }

.hcs-btn--back, .hcs-btn--ghost {
  background: transparent; color: #555 !important;
  border: 1.5px solid #DADADA;
}
.hcs-btn--back:hover, .hcs-btn--ghost:hover { border-color: #1BB28A; color: #1BB28A !important; }

#hcs-terms-accept:disabled { opacity: 0.4; cursor: not-allowed; }

/* =============================================================================
   TERMS MODAL
   ============================================================================= */
.hcs-terms-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 99999; display: flex; align-items: center; justify-content: center; padding: 16px;
}
.hcs-terms-modal {
  background: #fff; border-radius: 12px; width: 100%; max-width: 720px;
  max-height: 90vh; display: flex; flex-direction: column;
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.hcs-terms-modal__title {
  font-size: 20px !important; font-weight: 700 !important; color: #1BB28A !important;
  padding: 24px 28px 16px !important; margin: 0 !important;
  border-bottom: 1px solid #F0F0F0; flex-shrink: 0; text-transform: none !important;
}
.hcs-terms-modal__body {
  flex: 1; overflow-y: auto; padding: 20px 28px;
  font-size: 14px; line-height: 1.65; color: #333; -webkit-overflow-scrolling: touch;
}
.hcs-terms-modal__body p { margin: 0 0 14px !important; }
.hcs-terms-modal__body::-webkit-scrollbar { width: 4px; }
.hcs-terms-modal__body::-webkit-scrollbar-thumb { background: #1BB28A; border-radius: 4px; }
.hcs-terms-modal__footer { flex-shrink: 0; border-top: 1px solid #F0F0F0; padding: 16px 28px 20px; }
.hcs-terms-modal__confirm {
  display: flex !important; align-items: flex-start !important; gap: 10px !important;
  font-size: 13px !important; font-weight: 500 !important; color: #333 !important;
  cursor: pointer !important; margin-bottom: 16px !important; line-height: 1.5 !important;
}
.hcs-terms-modal__confirm input[type="checkbox"] {
  width: 18px !important; height: 18px !important; flex-shrink: 0 !important;
  margin-top: 2px !important; accent-color: #1BB28A !important; cursor: pointer !important;
}
.hcs-terms-modal__actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }

/* =============================================================================
   FINAL STEP — WC order review
   ============================================================================= */
.hcs-step--final .shop_table { width: 100%; border-collapse: collapse; font-family: 'Inter', sans-serif; }
.hcs-step--final .shop_table th {
  padding: 12px 16px; font-size: 13px; font-weight: 600; color: #6C6C6C;
  background: #F5F5F5; border-bottom: 1px solid #E8E8E8; text-transform: none;
}
.hcs-step--final .shop_table td { padding: 16px; font-size: 14px; color: #111; border-bottom: 1px solid #F0F0F0; vertical-align: middle; }
.hcs-step--final .shop_table .order-total td,
.hcs-step--final .shop_table .order-total th { background: #1BB28A; color: #fff !important; font-weight: 700; font-size: 15px; }
.hcs-step--final .shop_table .order-total .amount { color: #fff !important; }
.hcs-step--final #payment { background: #fff; border-radius: 8px; border: 1px solid #E8E8E8; padding: 20px; margin-top: 20px; }
.hcs-step--final #place_order,
.hcs-step--final button#place_order {
  width: 100% !important; background: #1BB28A !important; color: #fff !important;
  font-family: 'Inter', sans-serif !important; font-size: 16px !important; font-weight: 700 !important;
  padding: 14px !important; border: none !important; border-radius: 6px !important; cursor: pointer !important;
}
.hcs-step--final #place_order:hover { background: #17a07c !important; }

/* =============================================================================
   DATEPICKER
   ============================================================================= */
.ui-datepicker {
  font-family: 'Inter', sans-serif !important; font-size: 13px !important;
  border-radius: 8px !important; border: 1px solid #DADADA !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important; z-index: 99999 !important;
}
.ui-datepicker .ui-datepicker-header { background: #1BB28A !important; border: none !important; border-radius: 8px 8px 0 0 !important; padding: 8px !important; }
.ui-datepicker .ui-datepicker-title { color: #fff !important; font-weight: 600 !important; }
.ui-datepicker td .ui-state-active { background: #1BB28A !important; color: #fff !important; border: none !important; }
.ui-datepicker td .ui-state-default:hover { background: #e8f8f4 !important; color: #1BB28A !important; }

/* =============================================================================
   RESPONSIVE
   ============================================================================= */
@media (max-width: 480px) {
  .hcs-wrap { padding: 0 16px 48px; }
  .hcs-btn  { padding: 11px 18px; font-size: 15px; }
  .hcs-step__title { font-size: 18px !important; }
  .hcs-step__nav-hint { display: none; }
}

/* ---- Future availability acknowledgement ---- */
.hcs-avail-ack {
  background: #fffbf0;
  border: 1.5px solid #EB9914;
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hcs-avail-ack__header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hcs-avail-ack__heading {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #EB9914 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}

.hcs-avail-ack__date {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 16px;
  background: #EB9914;
  color: #fff;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
}

.hcs-avail-ack__body {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #555 !important;
  margin: 0 !important;
  line-height: 1.55 !important;
}
