#epos-picker { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; scroll-margin-top: 120px; }
#epos-picker .wrap { max-width: 640px; margin: 0 auto; }

#epos-picker .progress-shell { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
#epos-picker .progress-track { flex: 1; height: 6px; background: #ECECEC; border-radius: 4px; overflow: hidden; }
#epos-picker .progress-fill { height: 100%; background: var(--brand-orange); width: 0%; transition: width 0.4s ease; }
#epos-picker .progress-label { font-size: 11px; font-weight: 600; letter-spacing: 0.5px; color: #888; white-space: nowrap; }

#epos-picker .card {
  background: var(--bg-soft);
  color: #fefefe;
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  animation: eposFadeIn 0.35s ease;
}
@keyframes eposFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

#epos-picker .eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--brand-yellow); margin-bottom: 12px; }
#epos-picker .tool-title { font-size: 26px; font-weight: 800; line-height: 1.25; margin: 0 0 14px 0; color: #fefefe; }
#epos-picker h3.qtext { font-size: 20px; font-weight: 700; line-height: 1.3; margin: 0 0 6px 0; color: #fefefe; }
#epos-picker .sub { font-weight: 400; font-size: 14px; line-height: 1.6; color: #d7dbe0; max-width: 460px; margin-bottom: 18px; }
#epos-picker .qsub { font-weight: 400; font-size: 12.5px; line-height: 1.5; color: #b7bec7; margin-bottom: 18px; }

#epos-picker .options { display: flex; flex-direction: column; gap: 10px; }
#epos-picker .options.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 480px) { #epos-picker .options.grid2 { grid-template-columns: 1fr; } }

#epos-picker .option-btn {
  text-align: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  background: #fefefe;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 13px 16px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
#epos-picker .option-btn:hover { border-color: var(--brand-yellow); }
#epos-picker .option-btn.selected { border-color: var(--brand-orange); background: #FFF1EB; }
#epos-picker .option-btn .chk {
  flex: 0 0 auto;
  width: 16px; height: 16px;
  margin-top: 1px;
  border-radius: 4px;
  border: 1.5px solid #ccc;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; color: #fefefe;
}
#epos-picker .option-btn.selected .chk { background: var(--brand-orange); border-color: var(--brand-orange); }
#epos-picker .option-btn .opt-text { display: flex; flex-direction: column; gap: 3px; }
#epos-picker .option-btn .opt-desc { font-size: 11.5px; font-weight: 400; color: #666; line-height: 1.4; }

#epos-picker .start-btn, #epos-picker .submit-btn, #epos-picker .continue-btn {
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  color: #fefefe;
  background: var(--brand-orange);
  border: none;
  border-radius: 8px;
  padding: 15px 28px;
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.2s ease, transform 0.15s ease;
}
#epos-picker .continue-btn:disabled { opacity: 0.35; cursor: not-allowed; }
#epos-picker .start-btn:hover, #epos-picker .submit-btn:hover, #epos-picker .continue-btn:not(:disabled):hover { background: var(--brand-deep); transform: translateY(-1px); }
#epos-picker .start-meta { font-size: 12px; color: #b7bec7; margin-top: 14px; }

#epos-picker .back-link { display: inline-block; font-size: 11.5px; color: #b7bec7; margin-top: 16px; cursor: pointer; text-decoration: underline; }

#epos-picker .other-input {
  width: 100%;
  font-family: inherit;
  font-size: 14.5px;
  padding: 13px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  margin-top: 10px;
  color: var(--text-dark);
}
#epos-picker .other-input:focus { outline: none; border-color: var(--brand-orange); }

#epos-picker .field { margin-bottom: 16px; }
#epos-picker .field label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--brand-yellow); margin-bottom: 6px; }
#epos-picker .field input {
  width: 100%;
  font-family: inherit;
  font-size: 14.5px;
  padding: 12px 14px;
  border: none;
  border-radius: 7px;
  color: var(--text-dark);
}
#epos-picker .field input:focus { outline: 2px solid var(--brand-orange); }
#epos-picker .privacy-note { font-size: 10.5px; color: #b7bec7; margin-top: 4px; line-height: 1.5; }

#epos-picker .hero-match { background: var(--brand-orange); color: #fefefe; border-radius: 10px; padding: 26px 24px; margin-bottom: 22px; box-shadow: 0 8px 25px rgba(222,84,30,0.25); }
#epos-picker .hero-match .eyebrow2 { font-size: 10.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #FFE2D3; margin-bottom: 8px; }
#epos-picker .hero-match .pick-name { font-size: 28px; font-weight: 800; margin-bottom: 10px; }
#epos-picker .hero-match .pick-cost { font-size: 13.5px; color: #FFE2D3; }
#epos-picker .hero-match .pick-cost strong { color: #fefefe; font-size: 16px; }

#epos-picker .why-list { list-style: none; padding: 0; margin: 14px 0 0 0; }
#epos-picker .why-list li { font-size: 12.5px; line-height: 1.6; color: #FFE2D3; padding-left: 16px; position: relative; margin-bottom: 6px; }
#epos-picker .why-list li:before { content: "—"; position: absolute; left: 0; color: #fefefe; }

#epos-picker .callout { background: #FFF1EB; border-left: 3px solid var(--brand-orange); border-radius: 4px; padding: 12px 16px; margin: 16px 0; }
#epos-picker .callout p { font-size: 12px; line-height: 1.6; color: #5a3a2c; margin: 0; }

#epos-picker .section-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brand-orange); margin: 26px 0 12px 0; }

#epos-picker .prow { display: grid; grid-template-columns: 1fr 100px; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid #EEE; }
#epos-picker .prow:last-child { border-bottom: none; }
#epos-picker .prow .pname { font-size: 13px; font-weight: 600; color: var(--text-dark); }
#epos-picker .prow .pnote { font-size: 10.3px; color: #777; margin-top: 2px; }
#epos-picker .fitbar-track { background: #ECECEC; border-radius: 5px; height: 8px; margin-top: 4px; }
#epos-picker .fitbar-fill { background: var(--brand-yellow); height: 100%; border-radius: 5px; }
#epos-picker .prow.top .fitbar-fill { background: var(--brand-orange); }
#epos-picker .pct { font-size: 12.5px; font-weight: 700; text-align: right; color: var(--text-dark); }

#epos-picker .facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
#epos-picker .fact { background: #F5F5F5; border-radius: 7px; padding: 10px 14px; flex: 1; min-width: 105px; }
#epos-picker .fact .fl { display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--brand-orange); margin-bottom: 2px; }
#epos-picker .fact .fv { font-size: 12.5px; font-weight: 700; color: var(--text-dark); }

#epos-picker .cta-block { background: var(--bg-soft); border-radius: 10px; padding: 22px; margin-top: 26px; text-align: center; }
#epos-picker .cta-block p { font-size: 13px; color: #fefefe; margin: 0 0 12px 0; }
#epos-picker .cta-btn { display: inline-block; font-size: 13.5px; font-weight: 700; color: #fefefe; background: var(--brand-orange); border-radius: 8px; padding: 13px 24px; text-decoration: none; }
#epos-picker .cta-btn:hover { background: var(--brand-deep); }

#epos-picker .disclaimer { font-size: 10.3px; line-height: 1.6; color: #999; margin-top: 22px; }
#epos-picker .foot { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; padding-top: 14px; border-top: 1px solid #EEE; font-size: 10.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: #aaa; }

@media (max-width: 768px) {
  #epos-picker .card { padding: 26px 20px; }
  #epos-picker .tool-title { font-size: 21px; }
  #epos-picker h3.qtext { font-size: 18px; }
  #epos-picker .sub, #epos-picker .qsub { max-width: 100%; }
  #epos-picker .hero-match { padding: 20px 18px; }
  #epos-picker .hero-match .pick-name { font-size: 23px; }
  #epos-picker .facts { gap: 8px; }
  #epos-picker .fact { min-width: 90px; padding: 9px 12px; }
  #epos-picker .prow { grid-template-columns: 1fr 64px; gap: 6px; }
  #epos-picker .pct { font-size: 11.5px; }
  #epos-picker .option-btn { padding: 12px 14px; }
  #epos-picker .start-btn, #epos-picker .submit-btn, #epos-picker .continue-btn { width: 100%; }
}
