:root {
  --sponsor-primary: #0d6efd;
  --sponsor-accent: #0aa0d9;
  --sponsor-soft-sky: rgba(13, 110, 253, 0.1);
  --sponsor-soft-border: rgba(13, 110, 253, 0.25);
}

.booth-package-alert.alert-soft-sky {
  background-color: var(--color-soft-sky);
  border: 1px solid #c6dee7;
  color: var(--color-dark-sky);
  box-shadow: 0 8px 20px rgba(0, 119, 168, 0.08);
}

.booth-package-alert.alert-soft-sky .booth-package-alert__icon,
.booth-package-alert--info .booth-package-alert__icon {
  color: var(--color-dark-sky);
}

.booth-package-alert.alert-success {
  background-color: rgba(31, 164, 99, 0.12);
  border: 1px solid rgba(15, 107, 63, 0.28);
  color: #0f6b3f;
  box-shadow: 0 8px 24px rgba(15, 107, 63, 0.12);
}

.booth-package-alert.alert-success .booth-package-alert__icon,
.booth-package-alert--success .booth-package-alert__icon {
  color: #0f6b3f;
}

.sponsor-header-logo {
  max-height: 110px;
}

.sponsor-title {
  letter-spacing: 0.08em;
  color: #0b2a53;
}

.bg-soft-sky {
  background-color: var(--sponsor-soft-sky) !important;
  border-color: var(--sponsor-soft-border) !important;
}

.badge.bg-outline-sky {
  color: var(--sponsor-accent);
  border: 1px solid var(--sponsor-accent);
  background-color: transparent;
}

.form-check.sponsor-package-card,
.form-check.addon-card {
  margin: 0;
  position: relative;
  display: flex;
  width: 100%;
}

.form-check.sponsor-package-card .form-check-input,
.form-check.addon-card .form-check-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(50%);
  z-index: -1;
}

.option-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
  border: 1px solid rgba(22, 50, 79, 0.08);
  border-radius: 1.25rem;
  padding: 1.5rem;
  min-height: 100%;
  height: 100%;
  flex: 1 1 auto;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
  color: inherit;
  user-select: none;
  box-shadow: 0 1rem 2.25rem rgba(12, 74, 110, 0.08);
}

/* Make grid columns flex to align cards to equal heights (scoped) */
.equalize-cards > [class^="col-"],
.equalize-cards > [class*=" col-"] {
  display: flex;
}

/* Vertically center content inside equalized cards */
.equalize-cards .option-card {
  justify-content: center;
}

.equalize-cards .option-card__head,
.equalize-cards .option-card__list,
.equalize-cards .option-card__list--addon {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.option-card.option-card--radio {
  padding: 1.85rem 1.75rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 249, 255, 0.98) 100%);
  border: 1px solid rgba(13, 110, 253, 0.12);
}

.option-card--disabled {
  cursor: not-allowed;
  background: linear-gradient(145deg, rgba(248, 249, 252, 0.92) 0%, rgba(235, 237, 243, 0.96) 100%);
  border-color: rgba(108, 117, 125, 0.2) !important;
  color: rgba(73, 80, 87, 0.7) !important;
  box-shadow: none;
}

.option-card--disabled .option-card__title,
.option-card--disabled .option-card__list,
.option-card--disabled .option-card__list li,
.option-card--disabled .option-card__price,
.option-card--disabled .option-card__check,
.option-card--disabled .option-card__check i {
  color: rgba(73, 80, 87, 0.6) !important;
}

.option-card--disabled .option-card__price {
  background: rgba(222, 226, 230, 0.4);
  border-color: transparent;
  color: rgba(73, 80, 87, 0.55) !important;
}

.option-card--disabled .option-card__price.badge,
.option-card--disabled .option-card__price.badge.bg-dark-sky,
.option-card--disabled .option-card__price.badge.bg-outline-sky {
  background: rgba(222, 226, 230, 0.4) !important;
  border-color: rgba(206, 212, 218, 0.8) !important;
  color: rgba(73, 80, 87, 0.55) !important;
}

.option-card__status {
  /* margin-top: 1rem; */
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(220, 53, 69, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.option-card__status::before {
  content: 'ⓘ';
  font-family: "Bootstrap Icons";
  font-weight: normal;
}

.option-card.option-card--radio::after {
  content: '';
  position: absolute;
  inset: 0.55rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(13, 110, 253, 0.08), rgba(10, 160, 217, 0.08));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.option-card--premium {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(10, 160, 217, 0.14) 52%, rgba(10, 160, 217, 0.2) 100%);
  border: 1px solid rgba(10, 160, 217, 0.32);
  color: #0b2a53;
  padding: 2rem 1.95rem;
  box-shadow: 0 1.4rem 3.4rem rgba(13, 110, 253, 0.18);
  overflow: hidden;
}

.option-card--premium::before,
.option-card--premium::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  opacity: 0.5;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.option-card--premium::before {
  width: 180px;
  height: 180px;
  right: -60px;
  top: -40px;
  background: radial-gradient(circle at center, rgba(13, 110, 253, 0.25), rgba(13, 110, 253, 0));
}

.option-card--premium::after {
  width: 260px;
  height: 260px;
  right: -140px;
  bottom: -140px;
  background: radial-gradient(circle at center, rgba(10, 208, 247, 0.22), rgba(10, 208, 247, 0));
}

.option-card--premium .option-card__title {
  color: #0b2a53;
  font-size: 1.3rem;
}

.option-card--premium .option-card__list li {
  color: #2d4765;
}

.option-card--premium .option-card__list i {
  color: rgba(13, 110, 253, 0.85) !important;
}

.option-card--premium .option-card__check {
  border-color: rgba(13, 110, 253, 0.35);
  background: #ffffff;
  color: #0b2a53;
}

.form-check-input:not(:checked) + .option-card.option-card--premium:hover::before,
.form-check-input:not(:checked) + .option-card.option-card--premium:hover::after {
  opacity: 0.5;
  transform: scale(1.05);
}

.option-card--premium .option-card__check i {
  color: rgba(13, 110, 253, 0.9);
}

.option-card__head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
}

.option-card__title-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.option-card__title {
  font-weight: 700;
  color: #0b2a53;
  font-size: 1.28rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.option-card__price {
  font-size: 0.95rem;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
}

.option-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.option-card__subtext {
  line-height: 1.4;
}

.option-card__list--addon li {
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.option-card__list--addon li:last-child {
  margin-bottom: 0;
}

.option-card__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 999px;
  border: 2px solid #c8d5e6;
  background: #fff;
  color: #0b5ed7;
  font-size: 1rem;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  pointer-events: none;
  flex-shrink: 0;
}

.option-card__check i {
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.form-check-input:focus-visible + .option-card {
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}

.form-check-input:checked + .option-card {
  background: linear-gradient(140deg, rgba(10, 160, 217, 0.18), rgba(11, 94, 215, 0.22));
  border-color: rgba(10, 160, 217, 0.52);
  box-shadow: 0 1.6rem 3.2rem rgba(13, 110, 253, 0.18);
}

.form-check-input:checked + .option-card--premium {
  background: linear-gradient(125deg, rgba(255, 255, 255, 1) 0%, rgba(10, 160, 217, 0.22) 48%, rgba(10, 160, 217, 0.28) 100%);
  border-color: rgba(10, 160, 217, 0.55);
  box-shadow: 0 1.8rem 3.2rem rgba(13, 110, 253, 0.2);
}

.form-check-input:checked + .option-card--premium .option-card__price {
  background-color: var(--color-dark-sky) !important;
  color: #fff;
  border-color: var(--color-dark-sky);
}

.form-check-input:checked + .option-card .option-card__check {
  border-color: transparent;
  background: linear-gradient(135deg, #0b5ed7, #0aa0d9);
  box-shadow: 0 0.5rem 1.25rem rgba(13, 110, 253, 0.22);
}

.form-check-input:checked + .option-card .option-card__check i {
  opacity: 1;
  transform: scale(1);
  color: #fff;
}

.form-check-input:not(:checked) + .option-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 160, 217, 0.38);
  box-shadow: 0 1.25rem 2.6rem rgba(13, 110, 253, 0.12);
}

.form-check-input:not(:checked) + .option-card:hover .option-card__check {
  opacity: 0.85;
  transform: scale(0.92);
}

.option-card--checkbox .option-card__check {
  border-radius: 0.6rem;
}

.option-card--booth {
  align-items: flex-start;
  gap: 0.6rem;
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: none;
}

.option-card--booth .option-card__subtext {
  color: #4f5d75;
  font-size: 0.9rem;
}

.option-card--booth .option-card__price {
  font-size: 0.85rem;
  padding: 0.3rem 0.75rem;
}

.option-card--booth .option-card__check {
  width: 1.5rem;
  height: 1.5rem;
  border-width: 1.5px;
}

.booth-size-options {
  display: grid;
  gap: 1rem;
}

.booth-size-card {
  margin: 0;
  position: relative;
}

.booth-size-card .form-check-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(50%);
  z-index: -1;
}

.booth-option-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid #d8e2ef;
  border-radius: 0.85rem;
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.booth-option-label:hover {
  border-color: rgba(10, 160, 217, 0.35);
  box-shadow: 0 0.6rem 1.3rem rgba(13, 110, 253, 0.08);
}

.booth-option-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  border: 1.5px solid #c8d5e6;
  color: rgba(13, 110, 253, 0.85);
  font-size: 0.85rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.booth-option-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.booth-option-title {
  font-weight: 600;
  color: #16324f;
}

.booth-option-meta {
  color: #5a6a85;
  font-size: 0.87rem;
}

.booth-option-price {
  font-size: 0.82rem;
  padding: 0.3rem 0.8rem;
}

.package-choice-feedback {
  color: #dc3545;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.booth-size-card .form-check-input:focus-visible + .booth-option-label {
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

.booth-size-card .form-check-input:checked + .booth-option-label {
  border-color: rgba(10, 160, 217, 0.45);
  box-shadow: 0 0.75rem 1.6rem rgba(13, 110, 253, 0.12);
  transform: translateY(-1px);
}

.booth-size-card .form-check-input:checked + .booth-option-label .booth-option-indicator {
  border-color: transparent;
  background: linear-gradient(135deg, #0b5ed7, #0aa0d9);
  color: #fff;
  box-shadow: 0 0.45rem 1.1rem rgba(13, 110, 253, 0.22);
}

.premium-package-col {
  display: flex;
}

.premium-package-col .sponsor-package-card {
  width: 100%;
}

.premium-package-col .option-card--premium {
  min-height: 100%;
}

.option-card--checkbox .option-card__title {
  font-weight: 600;
}

.form-check-input:focus {
  outline: none;
  box-shadow: none;
}

#summary-items .summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px dashed #d8e2ef;
  font-size: 0.95rem;
}

#summary-items .summary-row:last-child {
  border-bottom: none;
}

#summary-items .summary-label {
  color: #4f5d75;
}

#summary-items .summary-amount {
  font-weight: 600;
}

#total-amount-display {
  font-size: 1.5rem;
  padding: 0.25rem 1.5rem;
  border-radius: 999px;
}

.sponsor-map-frame {
  border: 1px solid #d8e2ef;
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: #f8fbff;
}

.booth-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booth-layout__map,
.booth-layout__controls {
  width: 100%;
}

.booth-layout__map--full {
  flex: 1 1 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.booth-layout__map--full .sponsor-map-frame {
  margin-left: auto;
  margin-right: auto;
}

.booth-layout__controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booth-package-alert {
  font-size: 0.95rem;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md, 0.85rem);
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.booth-package-alert__icon {
  font-size: 1.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.booth-package-alert__body {
  flex: 1;
}

.booth-package-alert.fade-in {
  animation: package-alert-fade 0.4s ease-out;
}

@keyframes package-alert-fade {
  from {
    transform: translateY(6px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.booth-map .booth {
  --booth-pulse-shadow-start: rgba(13, 110, 253, 0.55);
  --booth-pulse-shadow-mid: rgba(13, 110, 253, 0.9);
}

.booth-map .booth[data-booth^="4"],
.booth-map .booth[data-booth^="ISRM"] {
  --booth-pulse-shadow-start: rgba(21, 125, 210, 0.55);
  --booth-pulse-shadow-mid: rgba(21, 125, 210, 0.9);
}

.booth-map .booth[data-booth^="6"] {
  --booth-pulse-shadow-start: rgba(239, 163, 0, 0.55);
  --booth-pulse-shadow-mid: rgba(239, 163, 0, 0.9);
}

.booth-map .booth[data-booth^="8"] {
  --booth-pulse-shadow-start: rgba(46, 204, 113, 0.55);
  --booth-pulse-shadow-mid: rgba(46, 204, 113, 0.9);
}

.booth-map .booth.booth--pulse rect,
.booth-map .booth.booth--pulse polygon {
  animation: booth-pulse 1.5s ease-in-out infinite, booth-dash 2s linear infinite;
  stroke: #2ecc71;
  stroke-width: 2.5;
  stroke-dasharray: 6 4;
}

@keyframes booth-pulse {
  0% {
    filter: drop-shadow(0 0 6px var(--booth-pulse-shadow-start, rgba(13, 110, 253, 0.35)));
  }
  50% {
    filter: drop-shadow(0 0 18px var(--booth-pulse-shadow-mid, rgba(13, 110, 253, 0.6)));
  }
  100% {
    filter: drop-shadow(0 0 6px var(--booth-pulse-shadow-start, rgba(13, 110, 253, 0.35)));
  }
}

@keyframes booth-dash {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 20;
  }
}

/* Mobile full-bleed map */
@media (max-width: 576px) {
  /* Tighten spacing between package/addon cards */
  .card-body > .row.g-3 {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .card-body > .row.g-3 > [class^="col-lg-"],
  .card-body > .row.g-3 > [class*=" col-lg-"] {
    padding-left: 0;
    padding-right: 0;
  }

  .sponsor-package-card.px-2,
  .addon-card.px-2 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .option-card__list,
  .option-card__list--addon {
    margin-bottom: 0 !important;
  }

  /* Slightly compress the card head spacing */
  .option-card__head {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-left: -1rem;
    margin-right: -1rem;
    width: calc(100% + 2rem);
  }

  .sponsor-map-frame {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    /* Bleed to viewport edges regardless of ancestor padding */
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 50% !important;
    transform: translateX(-50%);
  }

  .sponsor-map-frame .booth-map {
    padding: 0 !important;
    background: transparent !important;
  }

  .sponsor-map-frame .booth-map .container {
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  .sponsor-map-frame .booth-map .map-container {
    padding: 0 !important;
    max-width: none !important;
  }
}

.booth-map .booth.booth--blocked {
  cursor: not-allowed;
}

.booth-map .booth.booth--blocked rect,
.booth-map .booth.booth--blocked polygon {
  opacity: 0.35;
  filter: grayscale(0.35);
}

.booth-map .booth.booth--blocked text {
  opacity: 0.45;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem;
  background-color: rgba(248, 249, 250, 0.8);
  border-left: 3px solid #adb5bd;
  border-radius: 4px;
}

.info-box-icon {
  color: #6c757d;
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-box-text {
  margin-bottom: 0;
  color: #495057;
  line-height: 1.5;
}


.booth-legend {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.75rem 1.5rem;
font-size: 0.95rem;
color: #16324f;
  align-items: center;
  gap: 0.75rem 1.5rem;
  font-size: 0.95rem;
  color: #16324f;
}

.booth-legend__title {
  font-weight: 600;
  margin-right: 0.5rem;
}

.booth-legend__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.booth-legend__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.booth-legend__swatch {
  display: inline-block;
  width: 36px;
  height: 6px;
  border-radius: 4px;
  background: #157dd2;
}

.booth-legend__swatch--8 {
  background: #2ecc71;
}

.booth-legend__swatch--6 {
  background: #efa300;
}

.booth-legend__swatch--4 {
  background: #157dd2;
}

.booth-legend__label {
  white-space: nowrap;
  color: inherit;
}

.booth-map-note {
  margin-bottom: 0;
}

.booth-control-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booth-toggle-stack {
  display: grid;
  gap: 1.25rem;
}

.booth-toggle-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid #d8e2ef;
  border-radius: 0.85rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booth-toggle-option--invoice {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.payment-note {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.payment-note__info {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #003366;
}

.payment-note__info i {
  color: #0dcaf0;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}

.payment-note__text {
  color: #003366;
}

.payment-note__action {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.payment-note__action .booth-toggle-label {
  gap: 0.75rem;
}

.payment-note__hint {
  margin-bottom: 0;
}


.booth-toggle-label {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1rem;
  margin: 0;
  cursor: pointer;
  flex: 1 1 auto;
}

.booth-toggle-extra {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  transition: opacity 0.2s ease;
}

.booth-toggle-extra__label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4f5d75;
  letter-spacing: 0.04em;
}

.booth-toggle-extra__input {
  width: 5rem;
  min-width: 5rem;
  text-align: center;
  padding: 0.35rem 0.25rem;
}

.booth-toggle-extra.is-active {
  opacity: 1;
}

.booth-toggle-extra:not(.is-active) {
  opacity: 0.6;
}

.booth-toggle-extra__input:disabled {
  background-color: #f1f4f9;
  color: #94a3b8;
}

.booth-toggle-option.is-disabled {
  border-color: rgba(216, 226, 239, 0.8);
  background: #f7f9fc;
  box-shadow: none;
}

.booth-toggle-option.is-disabled .booth-toggle-label {
  cursor: not-allowed;
}

.booth-toggle-option.is-disabled .booth-toggle-title,
.booth-toggle-option.is-disabled .booth-toggle-meta {
  color: #92a3bc;
}

.booth-toggle-option.is-disabled .booth-toggle-switch {
  background: #e4ebf5;
}

.booth-toggle-option.is-disabled .booth-toggle-thumb {
  box-shadow: 0 0.25rem 0.6rem rgba(145, 167, 194, 0.2);
}

.booth-toggle-label {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1rem;
  margin: 0;
  cursor: pointer;
}

.booth-toggle-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(50%);
  z-index: -1;
}

.booth-toggle-switch {
  position: relative;
  width: 46px;
  height: 24px;
  border-radius: 999px;
  background: #dbe5f1;
  transition: background 0.2s ease;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
}

.booth-toggle-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0.4rem 0.8rem rgba(15, 70, 150, 0.2);
  transform: translateX(0);
  transition: transform 0.2s ease;
}

.booth-toggle-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: #16324f;
}

.booth-toggle-title {
  font-weight: 600;
}

.booth-toggle-meta {
  font-size: 0.88rem;
  color: #5a6a85;
}

.booth-toggle-option:hover {
  border-color: rgba(10, 160, 217, 0.35);
  box-shadow: 0 0.6rem 1.3rem rgba(13, 110, 253, 0.08);
}

.booth-toggle-option--invoice:hover {
  border-color: transparent;
  box-shadow: none;
}

.booth-toggle-input:focus-visible + .booth-toggle-label .booth-toggle-switch {
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

.booth-toggle-input:checked + .booth-toggle-label .booth-toggle-switch {
  background: linear-gradient(135deg, #0b5ed7, #0aa0d9);
}

.booth-toggle-input:checked + .booth-toggle-label .booth-toggle-thumb {
  transform: translateX(20px);
}

.booth-toggle-input:checked + .booth-toggle-label .booth-toggle-meta {
  color: #0b5ed7;
}

.needs-validation .invalid-feedback {
  display: none !important;
}

.needs-validation.was-validated .form-control:invalid ~ .invalid-feedback,
.needs-validation.was-validated .form-select:invalid ~ .invalid-feedback,
.needs-validation.was-validated .form-check-input:invalid ~ .invalid-feedback {
  display: block !important;
}

.form-control.is-invalid ~ .invalid-feedback,
.form-select.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-feedback {
  display: block !important;
}

.booth-toggle-dependent label {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.booth-selected-summary {
  background: linear-gradient(140deg, rgba(13, 110, 253, 0.08) 0%, rgba(10, 160, 217, 0.05) 45%, rgba(239, 246, 255, 0.95) 100%);
  border: 1px solid rgba(13, 110, 253, 0.16);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 1.35rem 2.6rem rgba(13, 110, 253, 0.08);
}

.booth-selected-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.booth-selected-title {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.booth-selected-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.85rem;
  background: rgba(13, 110, 253, 0.18);
  color: #0b2a53;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(13, 110, 253, 0.25);
}

.booth-selected-meta {
  color: #5a6a85;
  font-size: 0.86rem;
}

.booth-selected-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.booth-selected-count {
  background: rgba(13, 110, 253, 0.15);
  color: #0b2a53;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
}

.booth-selected-count.has-selection {
  background: #0b5ed7;
  color: #fff;
}

.booth-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  min-height: 2rem;
}

.booth-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(10, 160, 217, 0.28);
  color: #0b2a53;
  font-weight: 500;
  font-size: 0.85rem;
  box-shadow: 0 0.45rem 1.1rem rgba(13, 110, 253, 0.12);
  backdrop-filter: blur(8px);
}

.booth-chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.18);
  color: #0b2a53;
  font-size: 0.85rem;
}

.booth-chip-label {
  font-weight: 600;
}

.booth-chip-meta {
  color: #395272;
  font-size: 0.78rem;
}

.booth-chip-empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(22, 50, 79, 0.06);
  border: 1px dashed rgba(22, 50, 79, 0.14);
  color: #5a6a85;
  font-size: 0.85rem;
  line-height: 1;
  min-height: calc(1.65rem + 0.8rem);
}

.booth-chip-empty::before {
  content: '';
  display: inline-flex;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  border: 1px dashed rgba(22, 50, 79, 0.18);
  background: transparent;
}

.booth-limit-message {
  /* margin-top: 0.35rem; */
  color: #5a6a85 !important;
  transition: opacity 0.2s ease;
}

.booth-limit-message--pulse {
  animation: boothLimitPulse 0.8s ease;
}

@keyframes boothLimitPulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 575.98px) {
  .booth-selected-summary {
    padding: 1rem;
  }

  .booth-selected-title {
    align-items: center;
  }

  .booth-selected-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.75rem;
    font-size: 1.05rem;
  }
}

@media (min-width: 1200px) {
  .booth-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }

  .booth-layout__map {
    flex: 0 0 56%;
  }

  .booth-layout__controls {
    flex: 1;
    /* max-width: 420px; */
  }

  .booth-layout__controls .row.g-3 {
    margin-bottom: 0.5rem !important;
  }
}

/* Square map between LG and XL viewports */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .sponsor-map-frame .booth-map .map-container {
    aspect-ratio: 1 / 1;
    padding: 0 !important;
    max-width: none !important;
  }
}

#form-alert {
  font-size: 0.95rem;
}

.card-header {
  background-color: #fff;
}

.form-check-input:checked {
  background-color: var(--sponsor-primary);
  border-color: var(--sponsor-primary);
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

@media (max-width: 767.98px) {
  .sponsor-title {
    letter-spacing: 0.05em;
    font-size: 1.75rem;
  }

  .sponsor-package-card,
  .addon-card {
    padding: 1rem;
  }

  #summary-items .summary-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  #summary-items .summary-amount {
    align-self: flex-end;
  }
}
