/* Vendor Application Styles */
.vendor-hero {
  text-align: center;
  padding: 40px 0 20px;
}

.vendor-hero h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.vendor-hero p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.application-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 24px auto;
  max-width: 600px;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--bg-gray);
  color: var(--text-light);
}

.flow-step.active .step-num {
  background: var(--primary);
  color: white;
}

.flow-step.completed .step-num {
  background: #10B981;
  color: white;
}

.step-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.flow-step.active .step-label {
  color: var(--text-primary);
  font-weight: 500;
}

.step-arrow {
  color: var(--border-light);
  font-size: 0.85rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.benefit-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.benefit-card i {
  font-size: 1.3rem;
  color: var(--primary);
  margin-top: 2px;
}

.benefit-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}

.benefit-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

.form-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 24px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-primary);
  font-size: 0.85rem;
}

.form-group label .required {
  color: #EF4444;
  margin-left: 2px;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.form-input:focus {
  border-color: var(--primary);
  outline: none;
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

.help-text {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 4px;
}

.alert-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #EF4444;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  font-size: 0.85rem;
}

.alert-success {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10B981;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  font-size: 0.85rem;
}

.status-card {
  text-align: center;
  padding: 40px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.status-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.status-details h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.status-details p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-lg {
  padding: 12px 28px;
  font-size: 1rem;
}
