/* ══ BOOKING SECTION ══════════════════════════════════════ */

.booking-section {
  padding: 72px 0 80px;
  background: var(--bg-soft);
}

.booking-hd {
  text-align: center;
  margin-bottom: 44px;
}

.booking-hd .chip {
  margin-bottom: 14px;
}

.booking-hd h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 36px);
  color: var(--green-dk);
  line-height: 1.12;
  letter-spacing: -.2px;
  margin-bottom: 10px;
}

.booking-intro {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 480px;
  margin: 0 auto;
}

/* ── Two-column grid ─────────────────────────────────────── */

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

/* ── Form card ───────────────────────────────────────────── */

.booking-form-col .w-form {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(23, 64, 54, 0.08);
  border-radius: 24px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 12px 40px rgba(23, 64, 54, 0.05);
}

/* ── Form rows (2-col) ───────────────────────────────────── */

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ── Field ───────────────────────────────────────────────── */

.booking-field {
  margin-bottom: 14px;
}

.booking-field label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--green-dk);
  margin-bottom: 6px;
}

.booking-field__optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  font-size: 11px;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(23, 64, 54, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.booking-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236d7a70' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 74, 57, 0.09);
}

.booking-field input.field-error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.09);
}

.booking-field textarea {
  resize: vertical;
  min-height: 84px;
}

/* date input — fake display input that looks exactly like standard form fields */
.booking-date-input {
  display: inline-flex;
  align-items: center;
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(23, 64, 54, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  user-select: none;
  min-height: 43px;
  box-sizing: border-box;
  font-weight: 500;
}

.booking-date-input:hover {
  border-color: rgba(23, 64, 54, 0.3);
}

.booking-date-input:focus,
.booking-date-input:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 74, 57, 0.09);
}

.booking-date-input::placeholder {
  color: var(--muted);
  font-weight: 400;
}

/* ── Orzeczenie checkbox ──────────────────────────────────── */

.booking-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  cursor: pointer;
  user-select: none;
}

.booking-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid rgba(23, 64, 54, 0.22);
  border-radius: 6px;
  background: white;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  position: relative;
  margin-top: 1px;
}

.booking-check input[type="checkbox"]:checked {
  background: var(--green-dk);
  border-color: var(--green-dk);
}

.booking-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(42deg);
}

.booking-check span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  padding-top: 1px;
}

.booking-check--orzeczenie span {
  color: var(--text);
  font-weight: 500;
}

/* ── Submit button ───────────────────────────────────────── */

.booking-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

/* ── Calendar panel (shared) ─────────────────────────────── */

.booking-cal-panel {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 64, 54, 0.08);
  border-radius: 24px;
  padding: 22px 20px 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 12px 40px rgba(23, 64, 54, 0.05);
}

.booking-cal-head {
  margin-bottom: 14px;
}

.booking-cal-label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .9px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.booking-day-title {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--green-dk);
}

/* ── Loading spinner ─────────────────────────────────────── */

.booking-loading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  color: var(--muted);
  font-size: 13.5px;
}

.booking-spinner {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--green);
}

/* ── Day nav ─────────────────────────────────────────────── */

.booking-date-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.booking-nav-btn {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1.5px solid rgba(23, 64, 54, 0.13);
  border-radius: 50%;
  background: white;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--green-dk);
  transition: background 0.18s, border-color 0.18s;
}

.booking-nav-btn:hover {
  background: var(--bg-soft);
  border-color: rgba(23, 64, 54, 0.25);
}

.booking-day-btn {
  flex: 1;
  padding: 8px 4px;
  border: 1.5px solid rgba(23, 64, 54, 0.11);
  border-radius: 12px;
  background: white;
  text-align: center;
  cursor: pointer;
  transition: all 0.18s;
}

.booking-day-btn strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dk);
  line-height: 1.2;
}

.booking-day-btn span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
}

.booking-day-btn.is-active {
  background: var(--green-dk);
  border-color: var(--green-dk);
}

.booking-day-btn.is-active strong,
.booking-day-btn.is-active span {
  color: white;
}

/* ── Slots ───────────────────────────────────────────────── */

.booking-slots {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.booking-slot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1.5px solid rgba(23, 64, 54, 0.11);
  border-radius: 13px;
  background: white;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: var(--text);
  transition: border-color 0.18s, background 0.18s;
}

.booking-slot:not(.is-disabled):hover {
  border-color: rgba(47, 74, 57, 0.35);
  background: rgba(47, 74, 57, 0.03);
}

.booking-slot.is-selected {
  border-color: var(--green-dk);
  background: rgba(36, 58, 44, 0.05);
}

.booking-slot.is-disabled {
  opacity: .42;
  cursor: not-allowed;
  background: rgba(23, 64, 54, 0.03);
}

.booking-slot.is-call-required {
  border-color: rgba(230, 130, 30, 0.35);
  cursor: pointer;
}

.booking-slot__time {
  flex: 1;
  font-size: 13.5px;
}

.booking-slot__time strong {
  font-weight: 700;
  color: var(--green-dk);
}

.booking-slot.is-disabled .booking-slot__time strong {
  color: var(--muted);
}

.booking-slot__status {
  font-size: 11.5px;
  color: var(--muted);
}

.booking-slot.is-selected .booking-slot__status {
  color: var(--green);
  font-weight: 600;
}

.booking-slot.is-call-required .booking-slot__status {
  color: var(--orange-dk);
}

.booking-slot__icon {
  flex: 0 0 22px;
  color: var(--muted);
  display: flex;
  align-items: center;
}

.booking-slot.is-selected .booking-slot__icon {
  color: var(--green);
}

.booking-slot-reserve-button {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 13px;
  background: linear-gradient(135deg, #f28a18 0%, #e96908 100%);
  color: white;
  border: 0;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  letter-spacing: .25px;
  box-shadow: 0 8px 22px rgba(239, 126, 20, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.booking-slot-reserve-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(239, 126, 20, 0.34);
}

.booking-empty,
.booking-error {
  font-size: 13.5px;
  color: var(--muted);
  padding: 12px 0;
  text-align: center;
}

.booking-error { color: #c53030; }

/* ── Modal overlay (mobile) ──────────────────────────────── */

#booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 28, 20, 0.52);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: flex-end;
  justify-content: center;
}

#booking-modal.is-open {
  display: flex;
}

.booking-modal__panel {
  background: var(--bg);
  border-radius: 24px 24px 0 0;
  padding: 52px 20px 24px;
  width: 100%;
  max-height: 90svh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.booking-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  background: rgba(23, 64, 54, 0.08);
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--text);
  transition: background 0.15s;
}

.booking-modal__close:hover {
  background: rgba(23, 64, 54, 0.14);
}

/* inside modal the cal panel loses card styling */
.booking-modal__body .booking-cal-panel {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
  box-shadow: none;
}

/* ── Success / thanks panel ──────────────────────────────── */

.thanks-panel {
  padding: 8px 0;
}

.thanks-confirm-hd {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(23, 64, 54, 0.08);
}

.thanks-check-circle {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(47, 74, 57, 0.09);
  border: 2px solid rgba(47, 74, 57, 0.18);
  display: grid;
  place-items: center;
}

.thanks-confirm-hd h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--green-dk);
  margin-bottom: 4px;
}

.thanks-confirm-hd p {
  font-size: 13.5px;
  color: var(--muted);
}

.thanks-data-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.thanks-data-card {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 140px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 64, 54, 0.08);
  border-radius: 14px;
}

.thanks-card-icon {
  color: var(--green-mid);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.thanks-card-body label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.thanks-card-body strong {
  font-size: 13.5px;
  color: var(--green-dk);
  font-weight: 600;
}

.thanks-termin-date {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dk);
}

.thanks-termin-time {
  font-size: 12px;
  color: var(--muted);
}

.thanks-cal-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 0 0 88px;
  padding: 12px 10px;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(239, 126, 20, 0.22);
  border-radius: 14px;
  color: var(--orange-dk);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  transition: background 0.2s, border-color 0.2s;
}

.thanks-cal-btn:hover {
  background: rgba(239, 126, 20, 0.06);
  border-color: rgba(239, 126, 20, 0.40);
}

.thanks-cal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.thanks-cal-icon svg {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.thanks-cal-label {
  display: block;
}

/* ── Countdown ───────────────────────────────────────────── */

.thanks-countdown-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 18px 0;
  padding: 16px 20px;
  background: rgba(47, 74, 57, 0.05);
  border: 1px solid rgba(47, 74, 57, 0.10);
  border-radius: 16px;
}

.thanks-countdown-side {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-mid);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  flex: 0 0 auto;
}

.thanks-countdown-grid {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.thanks-cnt-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thanks-cnt-num {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--green-dk);
  line-height: 1;
}

.thanks-cnt-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .6px;
  color: var(--muted);
  text-transform: uppercase;
}

.thanks-cnt-sep {
  font-size: 18px;
  color: rgba(23, 64, 54, 0.2);
  align-self: flex-start;
  padding-top: 3px;
}

/* ── Cancel box ──────────────────────────────────────────── */

.thanks-cancel-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(230, 130, 30, 0.06);
  border: 1px solid rgba(230, 130, 30, 0.18);
  border-radius: 16px;
  flex-wrap: wrap;
}

.thanks-cancel-box p {
  flex: 1;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  min-width: 200px;
}

.thanks-cancel-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: linear-gradient(135deg, #f28a18, #e96908);
  color: white;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(239, 126, 20, 0.28);
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 883px) {
  .booking-grid {
    display: block;
  }

  /* hide the inline calendar col — cal panel lives in modal */
  #booking-cal-inline-placeholder {
    display: none;
  }

  .booking-form-col .w-form {
    padding: 24px 18px;
  }

  .thanks-countdown-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .booking-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .thanks-data-row {
    flex-direction: column;
  }

  .thanks-data-card {
    min-width: unset;
  }

  .thanks-cal-btn {
    flex-direction: row;
    flex: unset;
    width: 100%;
  }
}

/* ── Desktop: date input style overrides ─────────────────── */
@media (min-width: 884px) {
  .booking-date-input {
    cursor: pointer;
  }
}

/* FIX: mobile booking modal iOS/Safari */
@media (max-width: 883px) {
  html.booking-modal-open,
  body.booking-modal-open {
    overflow: hidden;
    height: 100%;
  }

  #booking-modal {
    height: var(--booking-vh, 100dvh);
    max-height: var(--booking-vh, 100dvh);
    overflow: hidden;
    z-index: 9999;
  }

  .booking-modal__panel {
    height: calc(var(--booking-vh, 100dvh) - 64px);
    max-height: calc(var(--booking-vh, 100dvh) - 64px);
    overflow: hidden;
    padding: 56px 18px max(24px, env(safe-area-inset-bottom));
    border-radius: 28px 28px 0 0;
    display: flex;
    flex-direction: column;
  }

  .booking-modal__body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    min-height: 0;
  }

  .booking-date-nav {
    display: grid;
    grid-template-columns: 42px 1fr 1fr 1fr 42px;
    gap: 8px;
    align-items: center;
  }

  .booking-day-btn {
    min-width: 0;
    padding: 10px 4px;
  }

  .booking-slots {
    overflow: visible;
  }

  .booking-slot {
    min-height: 62px;
  }
}

/* Honeypot field - hidden from humans */
.booking-field-hp {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Styling for fake-input to match other form fields exactly */
.booking-date-input.fake-input {
  display: inline-flex;
  align-items: center;
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(23, 64, 54, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 43px;
  border-style: solid;
  box-shadow: none;
}

.booking-date-input.fake-input:hover {
  border-color: rgba(23, 64, 54, 0.3);
}

.booking-date-input.fake-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 74, 57, 0.09);
}

/* ── Selected date state (Bold Orange) ── */
.booking-date-input.has-value {
  font-weight: 700;
  color: var(--orange);
  border-color: rgba(230, 130, 30, 0.4);
  background: rgba(230, 130, 30, 0.03);
  border-style: solid;
}

/* ── Border flash animation ── */
@keyframes borderFlash {
  0% { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(230, 130, 30, 0.4); }
  50% { border-color: var(--orange); box-shadow: 0 0 0 8px rgba(230, 130, 30, 0.6); }
  100% { border-color: rgba(230, 130, 30, 0.4); box-shadow: none; }
}

.booking-date-input.flash-orange {
  animation: borderFlash 0.8s ease-out;
}

/* ── Calendar Ripple Effect (Kręgi na wodzie) ── */
.booking-cal-ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--orange);
  box-shadow: 0 0 12px rgba(230, 130, 30, 0.4);
  border-radius: 24px;
  pointer-events: none;
  box-sizing: border-box;
  z-index: 10;
  transform-origin: center;
}

/* ── Steps panel (desktop rekrutacja info) ── */
.booking-steps-panel {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 64, 54, 0.08);
  border-radius: 24px;
  padding: 28px 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 12px 40px rgba(23, 64, 54, 0.05);
}

.booking-steps-panel h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--green-dk);
  margin-bottom: 22px;
  line-height: 1.2;
}

.booking-steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-step-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.booking-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-dk);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.booking-step-content {
  flex: 1;
}

.booking-step-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dk);
  margin: 0 0 4px;
  line-height: 1.3;
}

.booking-step-content p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  margin: 0 0 6px;
}

.booking-step-content p:last-child {
  margin-bottom: 0;
}

.booking-step-content .step-address {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 4px;
}

.booking-step-change-btn {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange-dk);
  text-decoration: none;
  border-bottom: 1.5px dashed rgba(239, 126, 20, 0.35);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  transition: color 0.2s, border-color 0.2s;
}

.booking-step-change-btn:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.booking-date-input .placeholder-text {
  color: var(--muted);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
}

.booking-date-input .placeholder-desktop {
  display: none;
}

.booking-date-input .placeholder-mobile {
  display: none;
}

@media (min-width: 884px) {
  .booking-date-input .placeholder-desktop {
    display: inline-flex;
  }
}

@media (max-width: 883px) {
  .booking-date-input .placeholder-mobile {
    display: inline-flex;
  }
}

.booking-date-svg {
  width: 18px !important;
  height: 18px !important;
  vertical-align: middle !important;
  display: inline-block !important;
  margin: 0 6px !important;
  stroke: currentColor !important;
  stroke-width: 2.2 !important;
  position: relative !important;
  top: -1.5px !important;
}

.booking-date-input span {
  vertical-align: middle !important;
}

/* ── Form Height Synchronization & Textarea Expand (Desktop) ── */
@media (min-width: 884px) {
  .booking-grid.has-steps-active {
    align-items: stretch !important;
  }

  .booking-grid.has-steps-active .booking-form-col {
    display: flex;
    flex-direction: column;
  }

  .booking-grid.has-steps-active .booking-form-col .w-form,
  .booking-grid.has-steps-active #email-form {
    display: flex;
    flex-direction: column;
    height: 100% !important;
  }

  /* Sprawiamy, że pole textarea rozszerza się, wypełniając wolną przestrzeń */
  .booking-grid.has-steps-active .booking-field--textarea {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .booking-grid.has-steps-active .booking-field--textarea textarea {
    flex: 1 !important;
    resize: none !important;
    min-height: 120px !important;
  }
}



