/* ═══════════════════════════════
   SHOPHELP FORM — form.css
═══════════════════════════════ */

.sh-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  font-family: 'Inter', -apple-system, sans-serif;
}

/* ── HEADER ── */
.sh-form-header {
  text-align: center;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  border-radius: 20px 20px 0 0;
  padding: 40px 32px 36px;
  color: #fff;
}

.sh-form-header-icon {
  font-size: 42px;
  margin-bottom: 12px;
  line-height: 1;
}

.sh-form-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  margin: 0 0 8px;
  color: #fff;
  line-height: 1.2;
}

.sh-form-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  margin: 0 0 22px;
}

.sh-trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.sh-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  padding: 5px 13px;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
}

.sh-check { color: #86efac; font-weight: 800; }

/* ── FORM BODY ── */
.sh-form {
  background: #fff;
  padding: 36px 36px 28px;
  border: 1px solid #e2e8f0;
  border-top: none;
}

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

.sh-field {
  margin-bottom: 18px;
}

.sh-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}

.sh-req { color: #ef4444; }
.sh-note { font-weight: 400; color: #94a3b8; font-size: 12px; }

.sh-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: #0f172a;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
  outline: none;
}

.sh-input:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,.12);
}

.sh-input::placeholder { color: #94a3b8; }
.sh-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.sh-textarea { resize: vertical; min-height: 100px; }

/* ── PLAN RADIO CARDS ── */
.sh-radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sh-radio-card {
  position: relative;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  display: block;
}

.sh-radio-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

.sh-radio-card:hover { border-color: #16a34a; background: #f0fdf4; }

.sh-radio-card:has(input:checked) {
  border-color: #16a34a;
  background: #f0fdf4;
  box-shadow: 0 0 0 3px rgba(22,163,74,.1);
}

.sh-radio-featured {
  border-color: #16a34a;
  background: #f0fdf4;
}

.sh-popular-tag {
  position: absolute;
  top: -10px;
  right: 12px;
  background: #16a34a;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.sh-radio-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sh-radio-dot {
  width: 16px;
  height: 16px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color .2s;
}

.sh-radio-card:has(input:checked) .sh-radio-dot {
  border-color: #16a34a;
  background: radial-gradient(circle, #16a34a 40%, #fff 40%);
}

.sh-radio-name { font-size: 14px; font-weight: 700; color: #0f172a; }
.sh-radio-price { font-size: 12px; color: #16a34a; font-weight: 600; margin-top: 2px; }

/* ── GOAL CHECKBOXES ── */
.sh-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sh-check-card {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  font-size: 13.5px;
  color: #475569;
}

.sh-check-card input[type="checkbox"] { accent-color: #16a34a; width: 15px; height: 15px; flex-shrink: 0; }
.sh-check-card:hover { border-color: #16a34a; background: #f0fdf4; }
.sh-check-card:has(input:checked) { border-color: #16a34a; background: #f0fdf4; color: #15803d; font-weight: 600; }
.sh-check-label { line-height: 1.3; }

/* ── ERROR ── */
.sh-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13.5px;
  color: #dc2626;
  margin-bottom: 16px;
}

/* ── SUBMIT BUTTON ── */
.sh-submit-btn {
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 8px 24px rgba(34,197,94,.3);
  margin-bottom: 14px;
}

.sh-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(34,197,94,.4); }
.sh-submit-btn:disabled { opacity: .7; cursor: not-allowed; transform: none; }

/* ── WHATSAPP ── */
.sh-whatsapp-row { text-align: center; padding-bottom: 4px; }
.sh-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: #16a34a;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background .2s;
}
.sh-whatsapp-link:hover { background: #f0fdf4; text-decoration: none; color: #15803d; }

/* ── WHAT HAPPENS NEXT ── */
.sh-next-steps {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-top: none;
  border-radius: 0 0 20px 20px;
  padding: 28px 36px 32px;
}

.sh-next-title {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  text-align: center;
}

.sh-steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sh-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
  flex: 1;
  min-width: 160px;
  max-width: 200px;
}

.sh-step-num {
  width: 28px;
  height: 28px;
  background: #16a34a;
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sh-step-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sh-step-text strong { font-size: 13px; color: #0f172a; font-weight: 700; }
.sh-step-text span { font-size: 12px; color: #64748b; }
.sh-step-arrow { font-size: 20px; color: #94a3b8; flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .sh-form { padding: 24px 18px 20px; }
  .sh-form-header { padding: 32px 20px 28px; }
  .sh-row { grid-template-columns: 1fr; gap: 0; }
  .sh-radio-grid { grid-template-columns: 1fr; }
  .sh-check-grid { grid-template-columns: 1fr; }
  .sh-steps-row { flex-direction: column; align-items: stretch; }
  .sh-step { max-width: 100%; }
  .sh-step-arrow { display: none; }
  .sh-next-steps { padding: 24px 18px 28px; }
}
