/* =============================================
   FONDO DE PÁGINA (gradiente rosa → lavanda + puntos,
   mismo look que /tienda y la página de producto)
   ============================================= */
body.page-template-page-venta-mayorista,
body.page-template-page-venta-mayorista .website-wrapper,
body.page-template-page-venta-mayorista .main-page-wrapper {
  background-color: var(--lavender) !important;
  background-image:
    radial-gradient(rgba(0, 0, 0, 0.06) 1.5px, transparent 1.5px),
    linear-gradient(180deg, #ffd2e3 0%, #ffebf3 45%, var(--lavender) 100%) !important;
  background-size: 24px 24px, cover !important;
}

/* =============================================
   HERO TITLE SECTION
   ============================================= */
.wholesale-hero {
  position: relative;
  width: min(var(--max), calc(100% - 64px));
  margin: 80px auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-title-container {
  position: relative;
  display: inline-block;
}
.wholesale-hero h1 {
  font-family: "Recoleta", Georgia, serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--petrol);
  line-height: 1.15;
  margin: 0;
  max-width: 850px;
}
.hero-subtitle {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(16px, 2.5vw, 19px);
  line-height: 1.6;
  margin: 20px auto 0;
}

@media (max-width: 980px) {
  .wholesale-hero { margin-top: 50px; }
}

/* =============================================
   CONTENT SECTIONS & FORMS
   ============================================= */
.section {
  position: relative;
  padding: 60px 0;
}
.section-inner {
  width: min(var(--max), calc(100% - 64px));
  margin: auto;
}
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 980px) {
  .grid-2col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .reverse-mobile {
    direction: rtl;
  }
  .reverse-mobile > * {
    direction: ltr;
  }
}

/* Neubrutalist Form Card */
.form-card {
  background: var(--white);
  border: 2px solid var(--petrol);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 8px 8px 0 var(--petrol);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.form-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--petrol);
}
.form-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px dashed var(--line);
  border-radius: 16px;
  z-index: 1;
  pointer-events: none;
}
.form-card-inner {
  position: relative;
  z-index: 2;
}
.form-group {
  margin-bottom: 22px;
}
.form-label {
  display: block;
  font-family: "Inter NA", Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--petrol);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-control {
  width: 100%;
  border: 2px solid var(--petrol);
  border-radius: 12px;
  padding: 14px 18px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}
.form-control:focus {
  background: var(--pink-light);
  box-shadow: 3px 3px 0 var(--petrol);
  transform: translate(-1px, -1px);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid var(--petrol);
  border-radius: 99px;
  background: var(--petrol);
  color: var(--white);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.25s var(--ease);
  box-shadow: 4px 4px 0 var(--pink);
}
.form-submit-btn:hover {
  background: var(--orange);
  color: var(--white);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--petrol);
}
