/* ═══════════════════════════════════════════════════════════════════
   Wholesale & Bulk Inquiry Page
   ═══════════════════════════════════════════════════════════════════ */

.wholesale-section { background: var(--cream); }

.wholesale-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 4rem;
  align-items: start;
}

/* ── Info Panel ─────────────────────────────────────────────────────────── */
.wholesale-info-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  color: var(--purple-dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.wholesale-info-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.wholesale-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.wholesale-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.wholesale-benefit-icon {
  width: 30px;
  height: 30px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.wholesale-benefits-list strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--purple-dark);
  margin-bottom: 0.2rem;
}

.wholesale-benefits-list p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.wholesale-contact-note {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: var(--gold-hover);
}

.wholesale-contact-note svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }

.wholesale-contact-note strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-hover);
  margin-bottom: 0.2rem;
}

.wholesale-contact-note p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.wholesale-contact-note a {
  color: var(--gold-hover);
  font-weight: 600;
  text-decoration: underline;
}

/* ── Form Panel ─────────────────────────────────────────────────────────── */
.wholesale-form-wrap {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.wholesale-form-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: var(--purple-faint);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.wholesale-form-notice svg { flex-shrink: 0; margin-top: 1px; color: var(--purple-mid); }
.wholesale-form-notice a   { color: var(--gold); font-weight: 600; }

.wholesale-submit-btn {
  margin-top: 0.5rem;
  gap: 0.6rem;
}

.wholesale-form-footer-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .wholesale-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 480px) {
  .wholesale-form-wrap { padding: 1.5rem 1.25rem; }
}
