:root {
  --bpf-shell-bg: #d7d4d6;
  --bpf-panel-bg: #efedec;
  --bpf-panel-border: #37474f;
  --bpf-text: #3e4a51;
  --bpf-muted: #7c848a;
  --bpf-accent: #48b98e;
  --bpf-accent-dark: #2f8f67;
  --bpf-card-bg: rgba(255, 255, 255, 0.8);
  --bpf-card-border: rgba(57, 73, 79, 0.16);
  --bpf-shadow: 0 18px 42px rgba(31, 43, 51, 0.16);
}

.bpf-shell,
.bpf-shell * {
  box-sizing: border-box;
}

.bpf-shell {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px;
  color: var(--bpf-text);
  font-family: "Avenir Next", "Segoe UI", Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.bpf-shell__glow {
  position: absolute;
  inset: auto auto 0 0;
  pointer-events: none;
  filter: blur(4px);
  opacity: 0.7;
}

.bpf-shell__glow--one {
  width: 220px;
  height: 220px;
  left: -44px;
  top: 56px;
  background:
    radial-gradient(circle at 45% 40%, rgba(246, 193, 207, 0.45), transparent 35%),
    radial-gradient(circle at 75% 72%, rgba(236, 153, 190, 0.35), transparent 20%),
    radial-gradient(circle at 28% 78%, rgba(241, 225, 178, 0.18), transparent 25%);
}

.bpf-shell__glow--two {
  width: 180px;
  height: 180px;
  right: -24px;
  bottom: 10px;
  background:
    radial-gradient(circle at 50% 50%, rgba(160, 202, 149, 0.18), transparent 40%),
    radial-gradient(circle at 35% 55%, rgba(224, 137, 172, 0.18), transparent 25%);
}

.bpf-panel {
  position: relative;
  z-index: 1;
  background: var(--bpf-panel-bg);
  border: 2px solid var(--bpf-panel-border);
  border-radius: 16px;
  box-shadow: var(--bpf-shadow);
  padding: 28px 18px 20px;
}

.bpf-panel--thankyou {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 20px 24px;
}

.bpf-panel__header,
.bpf-thankyou {
  text-align: center;
  margin-bottom: 18px;
}

.bpf-panel__status {
  margin: 12px auto 0;
  color: var(--bpf-muted);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bpf-eyebrow {
  margin: 0 0 8px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bpf-muted);
}

.bpf-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.bpf-subtitle {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--bpf-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.bpf-notice {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.45;
  border: 1px solid transparent;
}

.bpf-notice--success {
  background: rgba(72, 185, 142, 0.12);
  border-color: rgba(72, 185, 142, 0.32);
  color: #256d52;
}

.bpf-notice--error {
  background: rgba(208, 79, 79, 0.1);
  border-color: rgba(208, 79, 79, 0.28);
  color: #8f3333;
}

.bpf-notice--warning {
  background: rgba(245, 171, 53, 0.12);
  border-color: rgba(245, 171, 53, 0.3);
  color: #8a5b0f;
}

.bpf-stepper {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 12px;
}

.bpf-stepper__item {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 10px 8px 12px;
  border-radius: 16px;
  color: var(--bpf-muted);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(57, 73, 79, 0.08);
  overflow: hidden;
}

.bpf-stepper__item.is-active {
  color: var(--bpf-text);
  background: linear-gradient(180deg, rgba(72, 185, 142, 0.14), rgba(255, 255, 255, 0.92));
  border-color: rgba(72, 185, 142, 0.62);
  box-shadow: 0 12px 30px rgba(47, 53, 58, 0.12);
}

.bpf-stepper__item.is-complete {
  background: rgba(72, 185, 142, 0.08);
  border-color: rgba(72, 185, 142, 0.18);
}

.bpf-stepper__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(57, 73, 79, 0.08);
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.bpf-stepper__item.is-active .bpf-stepper__index {
  background: var(--bpf-accent);
  color: #fff;
  transform: scale(1.02);
}

.bpf-stepper__item.is-complete .bpf-stepper__index {
  background: rgba(72, 185, 142, 0.18);
  color: #246f52;
}

.bpf-stepper__label {
  font-size: 0.82rem;
}

.bpf-steps {
  display: grid;
  gap: 22px;
}

.bpf-progress {
  width: 100%;
  height: 8px;
  margin: 0 0 22px;
  border-radius: 999px;
  background: rgba(57, 73, 79, 0.08);
  overflow: hidden;
}

.bpf-progress__bar {
  display: block;
  width: 16.66%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--bpf-accent) 0%, var(--bpf-accent-dark) 100%);
  transition: width 0.22s ease;
}

.bpf-step {
  display: grid;
  gap: 22px;
  animation: bpf-fade-in 0.35s ease both;
}

.bpf-group {
  padding: 0;
}

.bpf-group + .bpf-group {
  padding-top: 0;
}

.bpf-group__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.bpf-group__title {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.2;
}

.bpf-group__subtitle {
  margin: 4px 0 0;
  color: var(--bpf-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.bpf-group__hint {
  white-space: nowrap;
  color: var(--bpf-muted);
  font-size: 0.92rem;
}

.bpf-choice-group {
  display: grid;
  gap: 14px;
}

.bpf-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bpf-choice-card {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 188px;
  padding: 18px 16px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 247, 0.9));
  border: 1px solid var(--bpf-card-border);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 22px rgba(31, 43, 51, 0.04);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  isolation: isolate;
}

.bpf-choice-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(72, 185, 142, 0.08), rgba(72, 185, 142, 0));
  opacity: 0;
  transition: opacity 0.16s ease;
  pointer-events: none;
}

.bpf-choice-card::after {
  content: '✓';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(72, 185, 142, 0.12);
  border: 1px solid rgba(72, 185, 142, 0.28);
  color: var(--bpf-accent-dark);
  font-size: 0.9rem;
  font-weight: 900;
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.bpf-choice-card.is-selected::after {
  opacity: 1;
  transform: scale(1);
}

.bpf-choice-card.is-selected::before {
  opacity: 1;
}

.bpf-choice-card:hover {
  transform: translateY(-2px);
  border-color: rgba(72, 185, 142, 0.42);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 32px rgba(31, 43, 51, 0.1);
}

.bpf-choice-card.is-selected {
  border-width: 2px;
  border-color: rgba(72, 185, 142, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 250, 245, 0.95));
  transform: translateY(-3px);
  box-shadow:
    0 0 0 3px rgba(72, 185, 142, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 40px rgba(72, 185, 142, 0.2);
}

.bpf-choice-card__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bpf-choice-card__media {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 110px;
}

.bpf-choice-card__emoji {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0.55) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.75));
  font-size: 2.45rem;
  box-shadow: 0 8px 22px rgba(57, 73, 79, 0.08);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.bpf-choice-card__image {
  display: block;
  width: 94px;
  height: 94px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(57, 73, 79, 0.08);
}

.bpf-choice-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bpf-choice-card__swatch {
  width: 94px;
  height: 94px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 16%),
    var(--bpf-accent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 22px rgba(57, 73, 79, 0.08);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.bpf-choice-card.is-selected .bpf-choice-card__emoji,
.bpf-choice-card.is-selected .bpf-choice-card__swatch {
  transform: scale(1.04);
  box-shadow: 0 10px 28px rgba(72, 185, 142, 0.12);
}

.bpf-choice-card.is-selected .bpf-choice-card__label {
  font-weight: 700;
}

.bpf-choice-card__body {
  display: grid;
  gap: 4px;
  align-content: end;
  min-height: 54px;
}

.bpf-choice-card__label {
  font-size: 1rem;
  line-height: 1.25;
}

.bpf-choice-card__note {
  color: var(--bpf-muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.bpf-choice-card__price {
  font-weight: 700;
  color: var(--bpf-text);
  font-size: 0.92rem;
}

.bpf-optional-tag {
  color: var(--bpf-muted);
  font-size: 0.88em;
  font-weight: 500;
}

.bpf-helper-note,
.bpf-summary,
.bpf-copy-block {
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(57, 73, 79, 0.08);
  border-radius: 14px;
  padding: 16px;
}

.bpf-helper-note {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  color: var(--bpf-muted);
}

.bpf-helper-note p {
  margin: 0;
}

.bpf-fields {
  display: grid;
  gap: 16px;
}

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

.bpf-field__label {
  font-size: 1rem;
  line-height: 1.35;
}

.bpf-field__label em {
  color: var(--bpf-muted);
  font-style: italic;
}

.bpf-field__help {
  margin: -4px 0 0;
  color: var(--bpf-muted);
  font-size: 0.9rem;
}

.bpf-field__warning {
  min-height: 1.25em;
  color: #8f3333;
  font-size: 0.9rem;
}

.bpf-delivery-zone-status {
  min-height: 1.25em;
  margin: 0;
  color: var(--bpf-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.bpf-delivery-zone-status.is-success {
  color: #256d52;
}

.bpf-delivery-zone-status.is-warning {
  color: #8f3333;
}

.bpf-field__control {
  width: 100%;
  border: 1px solid rgba(57, 73, 79, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  padding: 13px 14px;
  color: var(--bpf-text);
  font: inherit;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.bpf-field__control:focus {
  border-color: rgba(72, 185, 142, 0.68);
  box-shadow: 0 0 0 4px rgba(72, 185, 142, 0.15);
  background: #fff;
}

.bpf-field__control--textarea {
  min-height: 124px;
  resize: vertical;
}

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

.bpf-date-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 12px;
}

.bpf-copy-block {
  margin-top: 0;
}

.bpf-rating,
.bpf-nps {
  display: grid;
  gap: 14px;
}

.bpf-rating__stars {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bpf-rating__button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(57, 73, 79, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #c9c3bc;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, color 0.16s ease, background 0.16s ease;
}

.bpf-rating__button.is-active {
  color: #f0b74f;
  border-color: rgba(240, 183, 79, 0.6);
  background: rgba(255, 241, 215, 0.96);
}

.bpf-rating__button:hover,
.bpf-nps__button:hover {
  transform: translateY(-1px);
}

.bpf-nps__buttons {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 8px;
}

.bpf-nps__button {
  height: 46px;
  border: 1px solid rgba(57, 73, 79, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--bpf-text);
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.bpf-nps__button.is-active {
  border-color: rgba(72, 185, 142, 0.6);
  background: rgba(72, 185, 142, 0.12);
}

.bpf-nps__labels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--bpf-muted);
  font-size: 0.9rem;
}

.bpf-summary {
  display: grid;
  gap: 14px;
}

.bpf-summary__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.bpf-summary__head h3 {
  margin: 0;
  font-size: 1.15rem;
}

.bpf-summary__total {
  display: grid;
  justify-items: end;
  gap: 2px;
  color: var(--bpf-muted);
}

.bpf-summary__total strong {
  color: var(--bpf-text);
  font-size: 1.1rem;
}

.bpf-summary__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.bpf-summary__list li {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(57, 73, 79, 0.08);
}

.bpf-summary__list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.bpf-summary__list strong {
  color: var(--bpf-text);
}

.bpf-summary__list span {
  color: var(--bpf-muted);
}

.bpf-submit-note {
  margin: 6px 0 0;
  color: var(--bpf-muted);
  font-size: 0.93rem;
  text-align: center;
}

.ui-datepicker {
  z-index: 99999 !important;
  border: 1px solid rgba(57, 73, 79, 0.14);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(31, 43, 51, 0.16);
  padding: 12px;
}

.ui-datepicker-header {
  border: 0;
  background: transparent;
  padding: 0 0 10px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.ui-datepicker .ui-datepicker-prev {
  grid-column: 1;
}

.ui-datepicker .ui-datepicker-title {
  grid-column: 2;
  font-weight: 700;
  color: var(--bpf-text);
  text-align: center;
  justify-self: center;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  float: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(57, 73, 79, 0.14);
  background: rgba(57, 73, 79, 0.03);
  color: var(--bpf-text);
  cursor: pointer;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-next {
  grid-column: 3;
  justify-self: end;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background: rgba(72, 185, 142, 0.12);
  border-color: rgba(72, 185, 142, 0.28);
}

.ui-datepicker .ui-datepicker-prev .ui-icon,
.ui-datepicker .ui-datepicker-next .ui-icon {
  display: none;
}

.ui-datepicker .ui-datepicker-nav-label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
}

.ui-datepicker table {
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
}

.ui-datepicker th {
  color: var(--bpf-muted);
}

.ui-datepicker td a,
.ui-datepicker td span {
  text-align: center;
  border-radius: 10px;
}

.ui-datepicker td a {
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.92);
  color: var(--bpf-text);
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.ui-datepicker td a:hover {
  transform: translateY(-1px);
  background: rgba(72, 185, 142, 0.14);
  border-color: rgba(72, 185, 142, 0.3);
  color: #236a4f;
}

.ui-datepicker .ui-state-active,
.ui-datepicker .ui-state-hover {
  background: var(--bpf-accent);
  color: #fff;
  border-color: var(--bpf-accent);
}

.ui-datepicker .ui-state-disabled span,
.ui-datepicker .ui-state-disabled a {
  opacity: 0.34;
}

.ui-datepicker td.bpf-datepicker-day--open a {
  box-shadow: inset 0 0 0 1px rgba(57, 73, 79, 0.08);
}

.ui-datepicker td.bpf-datepicker-day--closed {
  background: rgba(57, 73, 79, 0.09);
}

.ui-datepicker td.bpf-datepicker-day--closed a,
.ui-datepicker td.bpf-datepicker-day--closed span {
  background: linear-gradient(180deg, rgba(250, 251, 252, 0.92), rgba(230, 234, 237, 0.96));
  color: #97a0a8;
  border-color: rgba(57, 73, 79, 0.1);
  text-decoration: none;
}

.ui-datepicker td.bpf-datepicker-day--closed a:hover {
  transform: none;
  background: linear-gradient(180deg, rgba(250, 251, 252, 0.92), rgba(230, 234, 237, 0.96));
  border-color: rgba(57, 73, 79, 0.1);
}

.bpf-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
}

.bpf-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, opacity 0.16s ease;
}

.bpf-btn:hover {
  transform: translateY(-1px);
}

.bpf-btn:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.bpf-btn--primary {
  color: #fff;
  background: linear-gradient(180deg, #4fbf95 0%, #3faa81 100%);
  box-shadow: 0 10px 22px rgba(62, 148, 111, 0.26);
}

.bpf-btn--primary:hover {
  box-shadow: 0 12px 24px rgba(62, 148, 111, 0.32);
}

.bpf-btn--ghost {
  color: var(--bpf-text);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(57, 73, 79, 0.14);
}

.bpf-copy-card {
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(57, 73, 79, 0.09);
  border-radius: 16px;
  padding: 16px;
}

.bpf-copy-card__head h3,
.bpf-copy-card__head p {
  margin: 0;
}

.bpf-copy-card__head h3 {
  font-size: 1.15rem;
}

.bpf-copy-card__head p {
  margin-top: 6px;
  color: var(--bpf-muted);
}

.bpf-copy-form {
  margin-top: 16px;
}

.bpf-copy-form__row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.bpf-copy-form__row .bpf-field__control {
  flex: 1 1 auto;
}

.bpf-copy-form__feedback {
  margin: 10px 0 0;
  min-height: 1.2em;
  color: var(--bpf-muted);
}

.bpf-thankyou__details {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(57, 73, 79, 0.08);
  text-align: left;
}

.bpf-thankyou__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(72, 185, 142, 0.12);
  color: #267255;
  font-weight: 700;
}

.bpf-shell--thankyou .bpf-panel {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

[hidden] {
  display: none !important;
}

@keyframes bpf-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .bpf-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bpf-stepper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .bpf-panel {
    padding: 22px 14px 16px;
    border-radius: 14px;
  }

  .bpf-choice-grid {
    grid-template-columns: 1fr;
  }

  .bpf-group__head,
  .bpf-summary__head {
    flex-direction: column;
  }

  .bpf-summary__list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .bpf-date-row,
  .bpf-copy-form__row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .bpf-nps__buttons {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .bpf-stepper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bpf-actions {
    justify-content: stretch;
    flex-wrap: wrap;
  }

  .bpf-btn {
    width: 100%;
    justify-content: center;
    display: inline-flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bpf-step,
  .bpf-choice-card,
  .bpf-btn,
  .bpf-rating__button,
  .bpf-nps__button {
    animation: none !important;
    transition: none !important;
  }
}
