/* ── Vendor Registration Page ── */

/* Keep header coherent with site chrome on load */
.path-become-a-vendor header.aunom-hdr {
  mix-blend-mode: normal !important;
  background: rgba(250, 248, 245, 0.95) !important;
  z-index: 5000;
  position: fixed !important;
}
.path-become-a-vendor header.aunom-hdr.compact {
  background: rgba(250, 248, 245, 0.95) !important;
}
.path-become-a-vendor .hdr-logo,
.path-become-a-vendor .hdr-links a,
.path-become-a-vendor .hdr-cta {
  color: #101010 !important;
  mix-blend-mode: normal !important;
}
.path-become-a-vendor .hdr-cta {
  border-color: #b8703e !important;
  color: #b8703e !important;
}
.path-become-a-vendor .mob-toggle i {
  background: #101010 !important;
}

/* Avoid artificial gap under fixed header */
.path-become-a-vendor main {
  padding-top: 0;
}

/* Page-level: hide bgCanvas, strip parent padding so sections go edge-to-edge */
.path-become-a-vendor #bgCanvas {
  display: none;
}
.path-become-a-vendor .block-page-title-block {
  display: none;
}
.path-become-a-vendor .region-content {
  padding: 0 !important;
}
.path-become-a-vendor .vendor-reg {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ── Hero ── */
.vendor-reg__hero {
  background: linear-gradient(135deg, #101010 0%, #1a1a1a 50%, #2a1f15 100%);
  padding: 7.5rem 2rem 4.5rem;
  text-align: center;
}
.vendor-reg__hero-content {
  max-width: 700px;
  margin: 0 auto;
}
.vendor-reg__badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(184, 112, 62, 0.2);
  border: 1px solid rgba(184, 112, 62, 0.4);
  border-radius: 50px;
  color: #b8703e;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
}
a.vendor-reg__badge:hover {
  background: rgba(184, 112, 62, 0.35);
  border-color: #b8703e;
}
.vendor-reg__title {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #f5f1eb;
  line-height: 1.15;
  margin: 0 0 1.2rem;
}
.vendor-reg__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  color: rgba(245, 241, 235, 0.65);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* ── Trust bar ── */
.vendor-reg__trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem;
  background: #f5f1eb;
  border-bottom: 1px solid #ece6dc;
}
.vendor-reg__trust-item {
  text-align: center;
}
.vendor-reg__trust-number {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #b8703e;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.vendor-reg__trust-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.vendor-reg__trust-divider {
  width: 1px;
  height: 36px;
  background: #ddd;
}

/* ── Main grid ── */
.vendor-reg__main {
  background: #fff;
  padding: 3.5rem 2rem;
}
.vendor-reg__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1140px;
  margin: 0 auto;
}

/* ── Form card ── */
.vendor-reg__form-card {
  background: #fff;
  border: 1px solid #ece6dc;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
.vendor-reg__form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #101010;
  margin: 0 0 0.4rem;
}
.vendor-reg__form-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #888;
  margin: 0 0 2rem;
}

/* Form elements */
.vendor-reg__form-card .form-item {
  margin-bottom: 1.4rem;
}
.vendor-reg__form-card label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #101010;
  margin-bottom: 0.5rem;
}
.vendor-reg__form-card input[type="text"],
.vendor-reg__form-card input[type="email"],
.vendor-reg__form-card input[type="password"],
.vendor-reg__form-card textarea,
.vendor-reg__form-card select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #e0dbd4;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  background: #faf9f7;
  color: #101010;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.vendor-reg__form-card input:focus,
.vendor-reg__form-card textarea:focus,
.vendor-reg__form-card select:focus {
  outline: none;
  border-color: #b8703e;
  box-shadow: 0 0 0 3px rgba(184, 112, 62, 0.1);
  background: #fff;
}
.vendor-reg__form-card textarea {
  resize: vertical;
  min-height: 90px;
}
.vendor-reg__form-card .description {
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.3rem;
}

/* Fieldset */
.vendor-reg__form-card fieldset {
  border: 1px solid #ece6dc;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  background: #faf9f7;
}
.vendor-reg__form-card fieldset legend {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #b8703e;
  padding: 0 0.6rem;
}

/* Checkbox */
.vendor-reg__form-card .form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.vendor-reg__form-card .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #b8703e;
  flex-shrink: 0;
}
.vendor-reg__form-card .form-check-label {
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: #555;
}
.vendor-reg__form-card .form-check-label a {
  color: #b8703e;
  text-decoration: underline;
}

/* Submit button */
.vendor-reg__form-card .form-actions {
  margin-top: 2rem;
}
.vendor-reg__form-card .vendor-reg-submit,
.vendor-reg__form-card input[type="submit"] {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  background: #b8703e;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.3s, transform 0.15s;
}
.vendor-reg__form-card input[type="submit"]:hover {
  background: #a0612f;
  transform: translateY(-1px);
}

/* Account info (logged-in) */
.vendor-reg-account-info {
  padding: 1rem 1.2rem;
  background: #f5f1eb;
  border: 1px solid #ece6dc;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #555;
}

/* ── Benefits column ── */
.vendor-reg__benefits-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #101010;
  margin: 0 0 2rem;
}
.vendor-reg__benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid #ece6dc;
}
.vendor-reg__benefit:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 2rem;
}
.vendor-reg__benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(184, 112, 62, 0.08);
  border-radius: 12px;
  color: #b8703e;
}
.vendor-reg__benefit strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #101010;
  margin-bottom: 0.25rem;
}
.vendor-reg__benefit p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

/* ── Testimonial ── */
.vendor-reg__testimonial {
  background: #f5f1eb;
  border-radius: 12px;
  padding: 1.8rem;
  margin-top: 1rem;
}
.vendor-reg__testimonial blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  color: #333;
  line-height: 1.6;
  margin: 0 0 0.8rem;
  border: none;
  padding: 0;
}
.vendor-reg__testimonial cite {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: #b8703e;
  font-style: normal;
  font-weight: 600;
}

/* ── How it works steps ── */
.vendor-reg__steps {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  text-align: center;
  background: #fff;
}
.vendor-reg__steps-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #101010;
  margin: 0 0 2.5rem;
}
.vendor-reg__steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
}
.vendor-reg__step {
  flex: 1;
  max-width: 240px;
  text-align: center;
}
.vendor-reg__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #101010;
  color: #f5f1eb;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.vendor-reg__step h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #101010;
  margin: 0 0 0.5rem;
}
.vendor-reg__step p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
  margin: 0;
}
.vendor-reg__step-arrow {
  color: #ccc;
  margin-top: 0.6rem;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .vendor-reg__title { font-size: 2.4rem; }
  .vendor-reg__grid { grid-template-columns: 1fr; gap: 3rem; }
  .vendor-reg__trust { gap: 1.5rem; flex-wrap: wrap; }
  .vendor-reg__steps-grid { flex-direction: column; align-items: center; gap: 2rem; }
  .vendor-reg__step-arrow { display: none; }
}
@media (max-width: 680px) {
  .vendor-reg__hero { padding: 7rem 1.5rem 3rem; }
  .vendor-reg__title { font-size: 1.9rem; }
  .vendor-reg__subtitle { font-size: 0.95rem; }
  .vendor-reg__trust { padding: 1.5rem 1rem; gap: 1rem; }
  .vendor-reg__trust-number { font-size: 1.2rem; }
  .vendor-reg__main { padding: 2rem 1rem; }
  .vendor-reg__form-card { padding: 1.5rem; }
  .vendor-reg__trust-divider { display: none; }
}
