/* Submit page */
.submit-page {
  padding-top: 100px;
  padding-bottom: 64px;
  max-width: 640px;
}
.submit-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  margin-bottom: 8px;
}
.submit-subtitle {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 32px;
}

/* Progress bar */
.progress-bar {
  height: 4px;
  background: var(--cream);
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
  transition: width 0.4s ease;
}
.step-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
.step-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.step-label.active { color: var(--gold); }
.step-label.done { color: var(--green); }

/* Form steps */
.form-step h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

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

.form-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

.char-count {
  font-size: 11px;
  color: var(--text-muted);
  text-align: right;
  margin-top: 4px;
}

/* radio-group styles in style.css */

.tooltip-text {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 4px;
}

/* Photo upload */
.photo-preview {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.photo-preview img {
  width: 100px;
  height: 75px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--cream);
}

/* Step navigation */
.step-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--cream);
}

/* Optional expandable sections */
.optional-section {
  margin-top: 20px;
  border: 1px solid var(--cream);
  border-radius: var(--radius-sm);
  padding: 0;
}
.optional-section summary {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  cursor: pointer;
  list-style: none;
}
.optional-section summary::-webkit-details-marker { display: none; }
.optional-section summary::before {
  content: "+ ";
  color: var(--gold);
  font-weight: 700;
}
.optional-section[open] summary::before { content: "\2212  "; }
.optional-section[open] {
  padding: 0 16px 16px;
}

/* Preview card mock */
.preview-card-mock {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .step-labels { font-size: 10px; }
}
