.swash-booking-form {
  width: 100%;
  color: #07111b;
  font-family: inherit;
}

.swash-booking-form *,
.swash-booking-form *::before,
.swash-booking-form *::after {
  box-sizing: border-box;
}

.swash-booking-form__form {
  display: grid;
  gap: 24px;
}

.swash-booking-form__step {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: -10px;
}

.swash-booking-form__step span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #2098ff;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(32, 152, 255, 0.26);
}

.swash-booking-form__step strong {
  color: #07111b;
  font-size: 0.92rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.swash-form-grid {
  display: grid;
  gap: 14px;
}

.swash-form-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.swash-form-grid--services {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.swash-service-option {
  position: relative;
  cursor: pointer;
}

.swash-service-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.swash-service-option span {
  display: block;
  min-height: 92px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(7, 17, 27, 0.10);
  box-shadow: 0 12px 28px rgba(7, 17, 27, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.swash-service-option strong,
.swash-service-option em {
  display: block;
}

.swash-service-option strong {
  margin-bottom: 8px;
  color: #07111b;
  font-size: 1rem;
  font-weight: 950;
}

.swash-service-option em {
  color: #5d6873;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 800;
}

.swash-service-option input:checked + span {
  border-color: rgba(32, 152, 255, 0.65);
  background: linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
  box-shadow: 0 18px 42px rgba(32, 152, 255, 0.14);
  transform: translateY(-2px);
}

.swash-field {
  display: grid;
  gap: 8px;
}

.swash-field--full {
  grid-column: 1 / -1;
}

.swash-field > span {
  color: #07111b;
  font-size: 0.88rem;
  font-weight: 900;
}

.swash-field input,
.swash-field select,
.swash-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(7, 17, 27, 0.12);
  background: #fff;
  color: #07111b;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.swash-field textarea {
  min-height: 110px;
  padding-top: 14px;
  resize: vertical;
}

.swash-field input:focus,
.swash-field select:focus,
.swash-field textarea:focus {
  border-color: rgba(32, 152, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(32, 152, 255, 0.10);
}

.swash-field--slots {
  grid-column: 1 / -1;
}

.swash-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 54px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(7, 17, 27, 0.08);
}

.swash-slots p {
  width: 100%;
  margin: 0;
  color: #5d6873;
  font-size: 0.94rem;
  font-weight: 800;
}

.swash-slot {
  cursor: pointer;
}

.swash-slot input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.swash-slot span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(7, 17, 27, 0.12);
  color: #07111b;
  font-size: 0.92rem;
  font-weight: 950;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.swash-slot input:checked + span {
  background: #2098ff;
  color: #fff;
  border-color: #2098ff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(32, 152, 255, 0.20);
}

.swash-booking-form__submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 8px;
}

.swash-booking-form__submit button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 34px;
  border: 0;
  border-radius: 14px;
  background: #2098ff;
  color: #fff;
  font-size: 1rem;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(32, 152, 255, 0.24);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.swash-booking-form__submit button:hover:not(:disabled) {
  transform: translateY(-2px);
  background: #07111b;
  box-shadow: 0 22px 44px rgba(7, 17, 27, 0.20);
}

.swash-booking-form__submit button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.swash-booking-form__submit p {
  margin: 0;
  color: #5d6873;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: right;
}

.swash-form-message {
  display: none;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 850;
  line-height: 1.45;
}

.swash-form-message.is-success,
.swash-form-message.is-error {
  display: block;
}

.swash-form-message.is-success {
  background: rgba(40, 167, 69, 0.10);
  border: 1px solid rgba(40, 167, 69, 0.22);
  color: #146c2e;
}

.swash-form-message.is-error {
  background: rgba(220, 53, 69, 0.10);
  border: 1px solid rgba(220, 53, 69, 0.22);
  color: #8a1f2d;
}

@media (max-width: 760px) {
  .swash-form-grid--two,
  .swash-form-grid--services {
    grid-template-columns: 1fr;
  }

  .swash-booking-form__submit {
    flex-direction: column;
    align-items: stretch;
  }

  .swash-booking-form__submit button {
    width: 100%;
  }

  .swash-booking-form__submit p {
    text-align: center;
  }
}

/* Section complète S-WASH Booking : shortcode [swash_booking_section] */
html,
body {
  overflow-x: hidden;
}

.swash-booking-section {
  --swash-dark: #07111b;
  --swash-blue: #2098ff;
  --swash-blue-light: #7fc7ff;
  --swash-text: #5d6873;
  --swash-white: #ffffff;

  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(64px, 7vw, 104px) clamp(14px, 2vw, 28px) clamp(64px, 7vw, 104px);
  background:
    radial-gradient(circle at 84% 12%, rgba(32, 152, 255, 0.14), transparent 30%),
    radial-gradient(circle at 10% 82%, rgba(32, 155, 224, 0.08), transparent 30%),
    linear-gradient(180deg, #f5f9fc 0%, #ffffff 48%, #eef7ff 100%);
  color: var(--swash-dark);
  font-family: inherit;
  overflow: hidden;
}

.swash-booking-section *,
.swash-booking-section *::before,
.swash-booking-section *::after {
  box-sizing: border-box;
}

.swash-booking-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 27, 0.022) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 17, 27, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.28;
  pointer-events: none;
}

.swash-booking-section__inner {
  position: relative;
  z-index: 1;
  width: min(1480px, 100%);
  margin: 0 auto;
}

.swash-booking-section__header {
  max-width: 840px;
  margin: 0 auto clamp(38px, 5vw, 64px);
  text-align: center;
}

.swash-booking-section__header h2 {
  margin: 0;
  color: var(--swash-dark);
  font-family: "Arial Black", "Montserrat", "Poppins", system-ui, sans-serif;
  font-size: clamp(1.85rem, 3.8vw, 3.35rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.swash-booking-section__line {
  display: block;
  width: 64px;
  height: 5px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: var(--swash-blue);
  box-shadow: 0 0 18px rgba(32, 152, 255, 0.35);
}

.swash-booking-section__header p {
  max-width: 700px;
  margin: 24px auto 0;
  color: var(--swash-text);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.65;
}

.swash-booking-section__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.65fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch;
}

.swash-booking-section__info,
.swash-booking-section__panel {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
}

.swash-booking-section__info {
  padding: clamp(26px, 3vw, 40px);
  background:
    radial-gradient(circle at 82% 10%, rgba(32, 152, 255, 0.16), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(32, 152, 255, 0.16);
  box-shadow:
    0 30px 90px rgba(7, 17, 27, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.swash-booking-section__info::before {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(32, 152, 255, 0.10);
  pointer-events: none;
}

.swash-booking-section__tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(32, 152, 255, 0.10);
  border: 1px solid rgba(32, 152, 255, 0.18);
  color: var(--swash-blue);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.swash-booking-section__info h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: var(--swash-dark);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.swash-booking-section__info p {
  position: relative;
  z-index: 1;
  margin: 0 0 26px;
  color: var(--swash-text);
  font-size: 1rem;
  line-height: 1.65;
}

.swash-booking-section__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.swash-booking-section__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(245, 249, 252, 0.92);
  border: 1px solid rgba(7, 17, 27, 0.07);
  box-shadow: 0 12px 28px rgba(7, 17, 27, 0.035);
}

.swash-booking-section__list strong {
  color: var(--swash-dark);
  font-size: 0.96rem;
  font-weight: 900;
}

.swash-booking-section__list span {
  color: var(--swash-blue);
  font-size: 0.9rem;
  font-weight: 950;
  white-space: nowrap;
}

.swash-booking-section__panel {
  min-height: 520px;
  padding: clamp(18px, 2.4vw, 30px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.90));
  border: 1px solid rgba(32, 152, 255, 0.18);
  box-shadow:
    0 34px 100px rgba(7, 17, 27, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.swash-booking-section__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(32, 152, 255, 0.10), transparent 42%);
  pointer-events: none;
}

.swash-booking-section__form {
  position: relative;
  z-index: 1;
  min-height: 460px;
  padding: clamp(20px, 2.4vw, 30px);
  border-radius: 24px;
  background: rgba(245, 249, 252, 0.74);
  border: 1px solid rgba(32, 152, 255, 0.16);
}

@media (max-width: 980px) {
  .swash-booking-section__layout {
    grid-template-columns: 1fr;
  }

  .swash-booking-section__panel {
    min-height: auto;
  }

  .swash-booking-section__form {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .swash-booking-section {
    padding: 52px 14px 58px;
  }

  .swash-booking-section__header h2 {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
    letter-spacing: 0.035em;
  }

  .swash-booking-section__line {
    width: 56px;
    height: 5px;
    margin-top: 18px;
  }

  .swash-booking-section__header p {
    margin-top: 20px;
    font-size: 0.98rem;
  }

  .swash-booking-section__info,
  .swash-booking-section__panel {
    border-radius: 24px;
  }

  .swash-booking-section__list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .swash-booking-section__form {
    min-height: 280px;
    border-radius: 18px;
    padding: 20px 14px;
  }
}

/* v1.2 : section réservation simplifiée, formulaire unique centré */
.swash-booking-section__panel {
  width: min(980px, 100%);
  margin: 0 auto;
}

.swash-booking-section__form {
  min-height: auto;
}

.swash-booking-section__form .swash-booking-form__form {
  max-width: 860px;
  margin: 0 auto;
}

.swash-booking-section__layout,
.swash-booking-section__info,
.swash-booking-section__tag,
.swash-booking-section__list {
  display: none !important;
}

/* v1.5 : captcha anti-spam */
.swash-captcha-box {
  align-items: end;
}

.swash-captcha-box__note {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(32, 152, 255, 0.08);
  border: 1px solid rgba(32, 152, 255, 0.16);
  color: #5d6873;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .swash-captcha-box__note {
    min-height: auto;
  }
}
