.booth-page .register-header__logo {
  height: clamp(46px, 4.2vw, 62px);
}

.booth-form {
  padding: clamp(0.9rem, 2.1vw, 1.4rem);
  gap: clamp(0.9rem, 1.8vw, 1.2rem);
}

.booth-form__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.72rem, 1.4vw, 1rem);
}

.booth-interest {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.booth-interest__title {
  margin: 0 0 0.5rem;
  padding: 0;
}

.booth-interest__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.64rem, 1.4vw, 0.95rem);
}

.booth-interest-card {
  display: block;
  min-width: 0;
}

.booth-interest-card__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booth-interest-card__body {
  min-height: 118px;
  padding: clamp(0.74rem, 1.25vw, 0.92rem);
  gap: 0.26rem;
  position: relative;
  display: grid;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.booth-interest-card__body::after {
  content: "";
  position: absolute;
  top: 0.66rem;
  right: 0.66rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
}

.booth-interest-card__name {
  font-size: clamp(0.95rem, 0.18vw + 0.92rem, 1.08rem);
  font-weight: 700;
  line-height: 1.3;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.95);
}

.booth-interest-card__price {
  font-size: clamp(1.24rem, 0.38vw + 1.14rem, 1.46rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-accent);
}

.booth-interest-card__input:checked + .booth-interest-card__body {
  border-color: rgba(255, 204, 0, 0.62);
  background: rgba(255, 204, 0, 0.12);
  box-shadow: 0 0 0 1px rgba(255, 204, 0, 0.2);
}

.booth-interest-card__input:checked + .booth-interest-card__body::after {
  border-color: rgba(255, 204, 0, 0.82);
  background: var(--color-accent);
}

.booth-interest-card__input:focus-visible + .booth-interest-card__body {
  border-color: rgba(255, 204, 0, 0.72);
  box-shadow: 0 0 0 2px rgba(255, 204, 0, 0.2);
}

.booth-form__actions .booth-submit,
.booth-form__actions .register-back {
  font-family: var(--font-display);
  font-size: clamp(0.84rem, 0.16vw + 0.82rem, 0.96rem);
  font-weight: 700;
  line-height: 1.1;
}

.booth-form__actions .register-back {
  justify-content: center;
}

@media (max-width: 992px) {
  .booth-interest__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .booth-form__grid {
    grid-template-columns: 1fr;
  }
}
