.store-wrap {
  max-width: 560px;
}

.store-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
}

.store-steps li {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(127, 127, 127, 0.15);
  font-size: 0.8rem;
}

.store-steps li.done {
  opacity: 0.55;
}

.store-steps li.active {
  background: var(--accent, #2563eb);
  color: #fff;
  opacity: 1;
}

.store-home-bar {
  margin: 0 0 0.75rem;
}

.store-home-bar .btn {
  font-size: 0.9rem;
}

.store-stage {
  min-height: 12rem;
}

.store-stage h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.store-stage .hint {
  margin: 0 0 1rem;
  color: inherit;
  opacity: 0.75;
  font-size: 0.95rem;
}

.store-tier-grid {
  display: grid;
  gap: 0.75rem;
}

.store-tier {
  text-align: left;
  cursor: pointer;
  border: 2px solid transparent;
  width: 100%;
}

.store-tier:hover {
  border-color: rgba(37, 99, 235, 0.35);
}

.store-tier.selected {
  border-color: var(--accent, #2563eb);
}

.store-plans {
  display: grid;
  gap: 0.5rem;
}

.store-plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(127, 127, 127, 0.25);
  border-radius: 0.5rem;
  cursor: pointer;
  background: transparent;
  color: inherit;
  width: 100%;
  text-align: left;
}

.store-plan:hover {
  border-color: rgba(37, 99, 235, 0.35);
}

.store-field {
  display: block;
}

.store-field input {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.65rem 0.75rem;
  font-size: 1rem;
  box-sizing: border-box;
}

.store-nav {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(127, 127, 127, 0.2);
}

.store-nav .btn.primary {
  margin-left: auto;
}

.store-nav.hidden {
  display: none;
}

.store-summary {
  padding: 1rem;
  border-radius: 0.5rem;
  background: rgba(127, 127, 127, 0.08);
}

.store-error {
  color: #b91c1c;
  margin: 0.75rem 0 0;
}

.store-loading {
  opacity: 0.7;
  font-style: italic;
}

.store-done-actions {
  margin-top: 1rem;
}
