.fi-clf {
  --fi-clf-bg: transparent;
  --fi-clf-surface: transparent;
  --fi-clf-text: #121917;
  --fi-clf-muted: #62726d;
  --fi-clf-accent: #a6ff33;
  --fi-clf-accent-2: #d7ff9a;
  --fi-clf-track: rgba(18, 25, 23, 0.08);
  --fi-clf-ring: rgba(166, 255, 51, 0.18);
  color: var(--fi-clf-text);
  padding: 40px 16px 64px;
}

.fi-clf__shell {
  max-width: 760px;
  margin: 0 auto;
}

.fi-clf__intro {
  text-align: center;
  margin-bottom: 16px;
}

.fi-clf__title {
  margin: 0;
  color: var(--fi-clf-text);
  font-size: clamp(1.7rem, 3.6vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
}

.fi-clf__spots,
.fi-clf__helper {
  color: var(--fi-clf-muted);
}

.fi-clf__spots {
  margin: 14px 0 0;
  text-align: center;
  color: var(--fi-clf-text);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.fi-clf__panel {
  background: var(--fi-clf-surface);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.fi-clf__progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 0 0;
}

.fi-clf__progress-bar {
  width: min(100%, 560px);
  height: 8px;
  border-radius: 999px;
  background: var(--fi-clf-track);
  overflow: hidden;
}

.fi-clf__progress-fill {
  display: block;
  width: 16.6667%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--fi-clf-accent), var(--fi-clf-accent-2));
  transition: width 0.22s ease;
}

.fi-clf__progress-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fi-clf__form {
  position: relative;
  min-height: 420px;
}

.fi-clf__step {
  display: none;
  max-width: 520px;
  margin: 0 auto;
  padding: 24px 0 20px;
}

.fi-clf__step.is-active {
  display: block;
  animation: fi-clf-fade 0.12s ease;
}

.fi-clf__step--booking {
  max-width: none;
}

.fi-clf__label {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.1rem, 1.8vw, 1.38rem);
  font-weight: 500;
  line-height: 1.18;
  text-align: center;
}

.fi-clf__helper {
  margin: 0 0 12px;
  text-align: center;
}

.fi-clf__input {
  width: 100%;
  min-height: 64px;
  border: 1px solid rgba(18, 25, 23, 0.14);
  border-radius: 18px;
  padding: 0 18px;
  font-size: 1.1rem;
  color: var(--fi-clf-text);
  background: #fff;
  box-sizing: border-box;
  text-align: center;
}

.fi-clf__input:focus {
  outline: none;
  border-color: rgba(18, 25, 23, 0.45);
  box-shadow: 0 0 0 4px var(--fi-clf-ring);
}

.fi-clf__choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 180px));
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
  width: 100%;
}

.fi-clf__choice,
.fi-clf__button {
  appearance: none;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, opacity 0.16s ease;
}

.fi-clf__choice {
  min-height: 62px;
  min-width: 156px;
  padding: 0 28px;
  background: #fff;
  color: var(--fi-clf-text);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border: 2px solid rgba(18, 25, 23, 0.86);
  border-radius: 999px;
  box-shadow: none;
}

.fi-clf__choice:hover,
.fi-clf__choice:focus-visible {
  transform: translateY(-1px) scale(1.01);
  border-color: rgba(18, 25, 23, 1);
}

.fi-clf__choice.is-selected {
  background: #121917;
  color: #fff;
  border-color: #121917;
  box-shadow: 0 12px 24px rgba(18, 25, 23, 0.16);
}

.fi-clf__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.fi-clf__button {
  min-height: 58px;
  padding: 0 28px;
  font-size: 1.14rem;
  font-weight: 700;
  border-radius: 999px;
}

.fi-clf__button--primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 220px;
  background: var(--fi-clf-accent);
  color: #111;
  box-shadow: 0 14px 30px rgba(166, 255, 51, 0.24);
}

.fi-clf__button--primary::after {
  content: "\279C";
  display: inline-block;
  font-size: 1em;
  font-weight: inherit;
  transition: transform 0.18s ease;
  animation: fi-clf-arrow-nudge 1.15s ease-in-out infinite;
}

.fi-clf__button--primary:hover::after,
.fi-clf__button--primary:focus-visible::after,
.fi-clf__button--primary.is-busy::after {
  transform: translateX(5px);
}

.fi-clf__button--primary:hover,
.fi-clf__button--primary:focus-visible {
  transform: translateY(-1px);
}

.fi-clf__button--ghost {
  background: #edf1f0;
  color: var(--fi-clf-text);
}

.fi-clf__button[disabled] {
  cursor: default;
  opacity: 0.7;
  box-shadow: none;
}

.fi-clf__button.is-busy {
  opacity: 0.95;
}

.fi-clf__error {
  min-height: 22px;
  margin: 10px 0 0;
  color: #b42318;
  font-size: 0.94rem;
  text-align: center;
}

.fi-clf__status {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--fi-clf-muted);
  font-size: 1.05rem;
}

.fi-clf__booking {
  margin-top: 6px;
}

.fi-clf__step--booking .fluent-booking-form-wraper {
  opacity: 1 !important;
}

.fi-clf__hidden-form {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

@keyframes fi-clf-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fi-clf-arrow-nudge {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}

@media (max-width: 767px) {
  .fi-clf {
    padding: 20px 10px 48px;
  }

  .fi-clf__step {
    padding: 24px 0 16px;
  }

  .fi-clf__actions {
    flex-direction: column-reverse;
  }

  .fi-clf__button {
    width: 100%;
  }

  .fi-clf__choices {
    grid-template-columns: minmax(0, 320px);
    justify-content: center;
    gap: 12px;
  }

}
