/* ============================================
   CUSTOMER STORE SIMULATOR — v2 (simplified)
   ============================================ */

.sim-wrap {
  max-width: 600px;
  margin: 40px auto;
  font-family: 'Roboto', sans-serif;
  color: #1A1A1A;
}

/* ---- PROGRESS ---- */
.sim-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}
.sim-progress__step {
  flex: 1;
  text-align: center;
}
.sim-progress__bar {
  height: 4px;
  background: #e0dcd8;
  border-radius: 2px;
  margin-bottom: 6px;
  transition: background 0.3s;
}
.sim-progress__step.done .sim-progress__bar,
.sim-progress__step.active .sim-progress__bar {
  background: #2A9D8F;
}
.sim-progress__text {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #bbb;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  transition: color 0.3s;
}
.sim-progress__step.done .sim-progress__text,
.sim-progress__step.active .sim-progress__text {
  color: #2A9D8F;
}

/* ---- CARD ---- */
.sim-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.sim-card h2 {
  font-family: 'Barlow Condensed', 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  line-height: 1.25;
  color: #1A1A1A;
  margin: 0 0 4px;
  text-transform: none;
  letter-spacing: -0.2px;
  border: none;
  padding: 0;
}
.sim-card__sub {
  font-size: 0.9rem;
  color: #777;
  margin: 0 0 24px;
  line-height: 1.45;
}

/* ---- INPUTS ---- */
.sim-field {
  margin-bottom: 20px;
}
.sim-field label {
  display: block;
  font-size: 0.82rem;
  color: #555;
  margin-bottom: 6px;
  font-weight: 500;
}
.sim-dollar-wrap {
  position: relative;
}
.sim-dollar-wrap::before {
  content: '$';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: #999;
  pointer-events: none;
}
.sim-input {
  width: 100%;
  padding: 12px 14px 12px 30px;
  border: 2px solid #e0dcd8;
  border-radius: 8px;
  font-size: 1.1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: #1A1A1A;
  background: #FAFAF8;
  transition: border-color 0.2s, box-shadow 0.2s;
  -moz-appearance: textfield;
  appearance: textfield;
}
.sim-input--plain { padding-left: 14px; }
.sim-input::-webkit-outer-spin-button,
.sim-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.sim-input:focus {
  outline: none;
  border-color: #2A9D8F;
  box-shadow: 0 0 0 3px rgba(42,157,143,0.12);
  background: #fff;
}
.sim-hint {
  font-size: 0.75rem;
  color: #aaa;
  margin-top: 4px;
}

/* ---- SLIDER ---- */
.sim-slider {
  margin-bottom: 20px;
}
.sim-slider__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.82rem;
  color: #555;
  margin-bottom: 8px;
  font-weight: 500;
}
.sim-slider__val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #2A9D8F;
}
.sim-range {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e0dcd8;
  outline: none;
  cursor: pointer;
}
.sim-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #2A9D8F;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
  cursor: pointer;
}
.sim-range::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #2A9D8F;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
  cursor: pointer;
}

/* ---- OUTPUT BOX ---- */
.sim-output {
  background: #F5F3F0;
  border-radius: 10px;
  padding: 16px;
  margin: 20px 0;
  text-align: center;
}
.sim-output__label {
  font-size: 0.7rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  margin-bottom: 2px;
}
.sim-output__val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1.1;
  color: #2A9D8F;
}
.sim-output--row {
  display: flex;
  gap: 12px;
}
.sim-output--row > div { flex: 1; }
.sim-output--row .sim-output__val { font-size: 1.5rem; }

/* ---- SPLIT BAR ---- */
.sim-bar {
  margin: 16px 0;
}
.sim-bar__track {
  display: flex;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
}
.sim-bar__seg {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.25s ease;
  min-width: 0;
  overflow: hidden;
}
.sim-bar__seg--cost { background: linear-gradient(135deg, #E76F51, #E9A23B); }
.sim-bar__seg--profit { background: linear-gradient(135deg, #2A9D8F, #52C4A0); }
.sim-bar__seg--raise { background: linear-gradient(135deg, #4A90D9, #6BB3F0); }
.sim-bar__seg-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #fff;
  white-space: nowrap;
  padding: 0 6px;
}
.sim-bar__legend {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  font-size: 0.68rem;
  color: #999;
}

/* ---- CALLOUT ---- */
.sim-callout {
  font-size: 0.88rem;
  color: #555;
  font-style: italic;
  line-height: 1.5;
  margin: 14px 0;
  min-height: 1.3em;
}

/* ---- RESULT HIGHLIGHT ---- */
.sim-highlight {
  background: linear-gradient(135deg, #2A9D8F, #52C4A0);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin: 20px 0;
}
.sim-highlight__top {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  margin-bottom: 2px;
}
.sim-highlight__big {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1.1;
}
.sim-highlight__sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ---- SUMMARY ROWS ---- */
.sim-rows { margin: 16px 0; }
.sim-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0ebe8;
  font-size: 0.88rem;
}
.sim-row:last-child { border-bottom: none; }
.sim-row__label { color: #777; }
.sim-row__val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: #1A1A1A;
}

/* ---- BUTTONS ---- */
.sim-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-family: 'Barlow Condensed', 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  text-decoration: none;
  color: #fff;
  margin-top: 8px;
}
.sim-btn--go {
  background: linear-gradient(135deg, #2A9D8F, #52C4A0);
}
.sim-btn--go:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(42,157,143,0.3);
}
.sim-btn--go:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.sim-btn--back {
  background: none;
  color: #aaa;
  font-size: 0.82rem;
  padding: 8px;
  letter-spacing: 0;
  text-transform: none;
}
.sim-btn--back:hover { color: #2A9D8F; }
.sim-btn--cta {
  background: linear-gradient(135deg, #D14E14, #E87A1A);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  font-size: 1.05rem;
  letter-spacing: 1.2px;
  margin-top: 14px;
}
.sim-btn--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(244,97,34,0.3);
}
.sim-cta-wrap {
  text-align: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 2px solid #f0ebe8;
}
.sim-cta-wrap p {
  font-size: 0.88rem;
  color: #777;
  margin-bottom: 12px;
}
.sim-cta-link {
  display: block;
  margin-top: 10px;
  font-size: 0.82rem;
  color: #2A9D8F;
  text-decoration: underline;
}
.sim-cta-link:hover { color: #238B7E; }

/* ---- QUOTE ---- */
.sim-quote {
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
  color: #1A1A1A;
  text-align: center;
  margin: 24px 0 8px;
  line-height: 1.5;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
  .sim-wrap { margin: 20px auto; }
  .sim-card { padding: 22px 18px; border-radius: 10px; }
  .sim-card h2 { font-size: 1.25rem; }
  .sim-output__val { font-size: 1.8rem; }
  .sim-output--row .sim-output__val { font-size: 1.3rem; }
  .sim-highlight__big { font-size: 1.8rem; }
}
