.producer-signup-page {
  min-height: 100vh;
  /* Wizard is intentionally a premium dark experience regardless of theme —
     white labels/inputs are used throughout. */
  background: linear-gradient(180deg, #0f172a 0%, #0a0f1a 100%);
  color: #fff;
  padding-bottom: 80px;
}

.signup-hero {
  background: linear-gradient(135deg, var(--hhc-forest) 0%, var(--hhc-forest) 100%);
  padding: 60px 24px;
  text-align: center;
}

.hero-content h1 {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
}

.progress-container {
  max-width: 700px;
  margin: -30px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.14);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--success) 0%, var(--success) 100%);
  transition: width 0.3s ease;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding: 0;
  list-style: none;
  counter-reset: producer-step;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1 1;
  min-width: 0;
  text-align: center;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.progress-step.active .step-number {
  background: var(--success);
  color: #fff;
  border-color: rgba(74, 222, 128, 0.55);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.progress-step.completed .step-number {
  background: rgba(34, 197, 94, 0.85);
  color: #fff;
  border-color: rgba(34, 197, 94, 0.9);
}

.step-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.progress-step.active .step-label {
  color: var(--success);
  font-weight: 600;
}

.progress-step.completed .step-label {
  color: rgba(255,255,255,0.75);
}

@media (max-width: 600px) {
  .progress-container {
    margin-top: -20px;
    padding: 0 12px;
  }
  .progress-steps {
    margin-top: 14px;
    gap: 4px;
  }
  .step-number {
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
  }
  .step-label {
    font-size: 0.68rem;
  }
  /* On small screens, hide inactive labels — the active label is enough context
     and the numbered circles remain for orientation. */
  .progress-step:not(.active):not(.completed) .step-label {
    opacity: 0.55;
  }
}

.form-container {
  max-width: 700px;
  margin: 40px auto 0;
  padding: 0 24px;
}

.form-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
}

.form-step h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.step-desc {
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--success);
  background: rgba(255,255,255,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-gap: 16px;
  gap: 16px;
}

.radio-group {
  display: flex;
  gap: 20px;
}

.radio-group.vertical {
  flex-direction: column;
  gap: 12px;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.radio-option input {
  accent-color: var(--success);
  margin-top: 4px;
}

.radio-content {
  display: flex;
  flex-direction: column;
}

.radio-content strong {
  color: white;
}

.radio-content small {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  grid-gap: 12px;
  gap: 12px;
}

.checkbox-grid.parking {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.checkbox-option:hover {
  background: rgba(255,255,255,0.06);
}

.checkbox-option input {
  accent-color: var(--success);
}

.checkbox-option span {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.checkbox-single label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.checkbox-single input {
  accent-color: var(--success);
  margin-top: 3px;
}

.help-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
  margin-left: 26px;
}

.char-count {
  display: block;
  text-align: right;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

.char-count.error {
  color: var(--danger);
}

/* Soy Description Styles */
.soy-option {
  border-color: rgba(251, 191, 36, 0.3) !important;
}

.soy-description-group {
  background: rgba(251, 191, 36, 0.05);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-top: 8px;
}

.soy-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--warning);
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.soy-description-group textarea {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(251, 191, 36, 0.3) !important;
}

.soy-description-group textarea.error {
  border-color: var(--danger) !important;
}

.soy-description-group textarea:focus {
  border-color: var(--warning) !important;
}

.soy-help-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  font-style: italic;
}

/* Custom Products Styles */
.custom-products-group {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255,255,255,0.1);
}

.custom-products-review {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-top: 8px;
}

.social-inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 12px;
  gap: 12px;
}

.social-inputs input {
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: white;
  font-size: 0.9rem;
}

/* Image Upload Styles */
.image-upload-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.image-upload-section .help-text {
  margin-left: 0;
  margin-bottom: 16px;
}

.upload-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: rgba(34, 197, 94, 0.1);
  border: 2px dashed rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  color: var(--success);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.upload-btn:hover:not(:disabled) {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.5);
}

.upload-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.logo-preview {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
}

.logo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.remove-image-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.9);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
}

.remove-image-btn:hover {
  background: var(--danger);
  transform: scale(1.1);
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  grid-gap: 12px;
  gap: 12px;
}

.photo-preview {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.2s;
}

.photo-preview:hover {
  border-color: rgba(34, 197, 94, 0.5);
  transform: scale(1.02);
}

.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-preview .remove-image-btn {
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: opacity 0.2s;
}

.photo-preview:hover .remove-image-btn {
  opacity: 1;
}

.photo-zoom-hint {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  border-radius: 6px;
  color: white;
  opacity: 0;
  transition: opacity 0.2s;
}

.photo-preview:hover .photo-zoom-hint {
  opacity: 1;
}

.add-photo-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.02);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: 10px;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s;
}

.add-photo-btn:hover:not(:disabled) {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  color: var(--success);
}

.add-photo-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.add-photo-btn span {
  font-size: 0.8rem;
  font-weight: 500;
}

.add-photo-btn small {
  font-size: 0.7rem;
  opacity: 0.6;
}

/* Lightbox Styles */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10001;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

.lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.review-summary {
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.review-section {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.review-section:last-child {
  border-bottom: none;
}

.review-section h4 {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-section p {
  color: white;
  margin: 4px 0;
}

.review-section .note {
  color: var(--warning);
  font-size: 0.85rem;
}

.soy-review {
  margin-top: 12px;
  padding: 12px;
  background: rgba(251, 191, 36, 0.1);
  border-radius: 8px;
  border-left: 3px solid var(--warning);
}

.soy-review .soy-label {
  font-size: 0.8rem;
  color: var(--warning);
  font-weight: 600;
  margin-bottom: 4px;
}

.soy-review .soy-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

/* Review Images Styles */
.review-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-logo img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
}

.review-logo span {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.review-photos span {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.review-photos-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.review-photos-grid img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
}

.photos-more {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 600;
}

.compliance-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compliance-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 10px;
  cursor: pointer;
}

.compliance-checkbox input {
  accent-color: var(--success);
  margin-top: 3px;
}

.compliance-checkbox span {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

.error-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 10px;
  color: var(--danger);
  margin-top: 20px;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  gap: 16px;
}

.btn-prev, .btn-next, .btn-submit {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-prev {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
}

.btn-prev:hover {
  background: rgba(255,255,255,0.1);
}

.btn-next {
  background: linear-gradient(135deg, var(--info) 0%, var(--info) 100%);
  border: none;
  color: white;
  margin-left: auto;
}

.btn-next:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-submit {
  background: linear-gradient(135deg, var(--success) 0%, var(--success) 100%);
  border: none;
  color: white;
  margin-left: auto;
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Success Page */
.success-container {
  max-width: 500px;
  margin: 80px auto;
  padding: 0 24px;
  text-align: center;
}

.success-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
}

.success-container h1 {
  font-size: 2rem;
  color: white;
  margin-bottom: 12px;
}

.success-container > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}

.success-detail {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.success-actions .btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--success) 0%, var(--success) 100%);
  border-radius: 10px;
  color: white;
  font-weight: 600;
  text-decoration: none;
}

.success-actions .btn-secondary {
  padding: 14px 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

@media (max-width: 640px) {
  .signup-hero {
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .form-step {
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .social-inputs {
    grid-template-columns: 1fr;
  }

  /* Compact step indicator on very small screens — keep it visible so
     producers always know where they are in the flow. */
  .progress-steps {
    display: flex;
  }
  .progress-step .step-label {
    display: none;
  }
  .progress-step.active .step-label {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 4px;
    white-space: nowrap;
  }
  .progress-step {
    position: relative;
  }
}


/*# sourceMappingURL=199.7d3a9d61.chunk.css.map*/