/* ===== Merchant Banner ===== */
.merchant-banner {
  background: linear-gradient(135deg, #e84b3a 0%, #ff8c42 100%);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.mb-left {
  flex: 1;
}

.mb-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.mb-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}

.mb-stats {
  display: flex;
  gap: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 3px;
}

.stat-label {
  font-size: 10px;
  color: rgba(255,255,255,0.75);
}

.mb-right {
  font-size: 68px;
  opacity: 0.75;
}

/* ===== Advantage Section ===== */
.adv-section {
  background: #fff;
  padding: 20px 16px;
  margin-bottom: 10px;
}

.adv-section-title {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
}

.merchant-adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.m-adv-item {
  text-align: center;
}

.m-adv-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 8px;
}

.m-adv-name {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.m-adv-desc {
  font-size: 11px;
  color: #999;
  line-height: 1.4;
}

/* ===== Process Section ===== */
.process-section {
  background: #fff;
  padding: 20px 16px;
  margin-bottom: 10px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.step-circle.active {
  background: linear-gradient(135deg, #e84b3a, #ff7961);
  color: #fff;
}

.step-line {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #f0f0f0;
  z-index: 0;
}

.step-info {
  text-align: center;
}

.step-name {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin-bottom: 3px;
}

.step-desc {
  font-size: 10px;
  color: #999;
}

/* ===== Form Section ===== */
.form-section {
  background: #fff;
  padding: 20px 16px;
  margin-bottom: 10px;
}

/* ===== Upload Section ===== */
.upload-section {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 16px;
}

.upload-title {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 10px;
}

.upload-tips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.upload-tip-item {
  font-size: 12px;
  color: #666;
  background: #fff;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px dashed #e0e0e0;
}

/* ===== FAQ Section ===== */
.faq-section {
  background: #fff;
  padding: 20px 16px;
  margin-bottom: 10px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #f5f5f5;
  padding: 14px 0;
  cursor: pointer;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.faq-arrow {
  font-size: 18px;
  color: #bbb;
  transition: transform 0.2s;
}

.faq-item.open .faq-arrow {
  transform: rotate(90deg);
}

.faq-a {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.open .faq-a {
  margin-top: 10px;
  max-height: 200px;
}

/* ===== Contact Bar ===== */
.contact-bar {
  background: #fff;
  padding: 16px;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #666;
}

.contact-phone {
  color: #e84b3a;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
}

.contact-time {
  font-size: 11px;
  color: #bbb;
}

/* Success Modal (reuse from payment) */
.success-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  z-index: 600;
  text-align: center;
  width: 80%;
  max-width: 320px;
  opacity: 0;
  transition: all 0.35s ease;
  pointer-events: none;
}

.success-modal.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.success-icon { font-size: 54px; margin-bottom: 14px; }
.success-title { font-size: 22px; font-weight: 700; color: #222; margin-bottom: 8px; }
.success-desc { font-size: 14px; color: #666; margin-bottom: 6px; }
.success-order-no { font-size: 12px; color: #bbb; margin-bottom: 24px; }

.success-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.success-btn-primary {
  background: linear-gradient(135deg, #e84b3a, #ff7961);
  color: #fff;
  border-radius: 10px;
  padding: 11px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  display: block;
}
