/* Bottom Sheet for final step */
.sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  z-index: 1000;
}
.sheet-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.sheet-backdrop.is-hidden {
  visibility: hidden;
}
.bottom-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.bottom-sheet.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.bottom-sheet.is-open {
  pointer-events: auto;
}
.bottom-sheet__panel {
  position: relative;
  margin: 0 auto;
  width: calc(100% - 24px);
  max-width: 700px; /* match progress bar on mobile */
  background: #fde4ce;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: 0 -8px 28px rgba(8, 49, 90, 0.18);
  border: 1px solid #ff8443;
  border-bottom: none;
  padding: 8px;
  min-height: 50vh;
  padding-bottom: calc(16px + var(--nav-offset, 70px));
  transform: translateY(100%);
  transition: transform 0.22s ease;
}
@media (min-width: 1024px) {
  .bottom-sheet__panel {
    min-height: 360px;
    width: calc(100% - 32px); /* align with desktop progress bar gutters */
    max-width: 700px; /* match progress bar on desktop */
  }
}
.bottom-sheet.is-open .bottom-sheet__panel {
  transform: translateY(0);
}
.bottom-sheet__handle {
  width: 44px;
  height: 4px;
  border-radius: 4px;
  background: #ffb98c;
  margin: 4px auto 12px;
}
.bottom-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  color: #b54100;
}
.bottom-sheet__header {
  padding: 12px 14px;
}
.bottom-sheet__header[role="button"] {
  cursor: pointer;
}
.bottom-sheet__header .spark {
  display: inline-flex;
  width: 18px;
  height: 18px;
}
.bottom-sheet__title {
  margin: 0;
  font-size: 1.2rem;
  color: #b54100;
  font-weight: 700;
}
.bottom-sheet__chev {
  display: inline-flex;
  width: 20px;
  height: 20px;
  color: #b54100;
  transition: transform 0.2s ease;
  margin-left: auto;
}
.bottom-sheet.is-open .bottom-sheet__chev {
  transform: rotate(180deg);
}
.spotlight {
  background: #fff2e8;
  border: 1px solid #ffd9bf;
  border-radius: 10px;
  padding: 12px;
}
.spotlight p {
  margin: 6px 0;
}
.spotlight strong {
  color: #7a2a00;
  margin-top: 22px;
}
.spotlight-cta {
  margin-top: 16px !important;
}
.price-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0 12px;
}
.price-card {
  background: #fff;
  border: 1px solid #ffd9bf;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  min-height: 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(8, 49, 90, 0.06);
}
.price-card--accent {
  background: #ffe9d9;
  border-color: #ffcfb3;
}
.price-card__title {
  font-weight: 700;
  font-size: 1.2rem;
  color: #7a2a00;
  margin: 2px 0;
}
.price-card__price {
  font-weight: 800;
  color: #0f1724;
  font-size: 1.15rem;
  margin: 2px 0;
}
.spotlight-metrics {
  display: none;
}
.spotlight-metric h5 {
  margin: 0 0 2px;
  font-size: 0.85rem;
  color: #6b3e00;
}
.spotlight-metric p {
  margin: 0;
  font-weight: 700;
  color: #0f1724;
}
.sheet-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
  margin-right: 10px;
}
.sheet-close {
  position: absolute;
  right: 12px;
  top: 8px;
  background: transparent;
  border: none;
  color: #7a2a00;
  font-size: 22px;
  cursor: pointer;
}
