/* Shoppers page — layout/helpers (replaces inline styles from shoppers.html). */
.section-bg-default {
  background: var(--color-bg);
}

.section-bg-surface {
  background: var(--color-surface);
}

.split-section-shoppers {
  background: var(--color-surface);
}

.shopper-signup-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.shopper-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.shopper-field-label {
  display: block;
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.shopper-input {
  width: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  color: var(--color-text);
  outline: none;
  font-family: inherit;
  transition: border-color 250ms ease;
}

.shopper-input:focus {
  border-color: var(--color-primary);
}

.shopper-form-footer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.shopper-form-footer a {
  color: var(--color-accent);
}

.shopper-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.calc-disclaimer {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.hiw-start-footer {
  margin-top: 3rem;
}

@media (max-width: 480px) {
  .shopper-form-grid {
    grid-template-columns: 1fr;
  }
}
