.selector-widget {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  background:
    radial-gradient(circle at 0% 0%, rgba(232,136,58,.18), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(200,101,26,.14), transparent 28%),
    linear-gradient(135deg, #fff8f2 0%, #fff2e8 48%, #fde8d8 100%);
  border: 1px solid rgba(91,52,24,.14);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(109,58,18,.14);
  overflow: hidden;
  color: #1e1e1e;
}

.selector-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  min-height: 380px;
}

.selector-left {
  padding: 32px;
  border-right: 1px solid rgba(91,52,24,.14);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6c360f;
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8651a, #e8883a);
}

.selector-left h1 {
  margin: 14px 0 12px;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1;
  letter-spacing: -.03em;
}

.selector-intro {
  max-width: 520px;
  color: #4f5b66;
  line-height: 1.6;
  font-size: 15px;
}

.device-card {
  width: 100%;
  max-width: 520px;
  min-height: 170px;
  border: 2px dashed rgba(143,70,16,.25);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,248,242,.95));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.placeholder-box {
  width: 100%;
  min-height: 130px;
  border-radius: 18px;
  border: 1px solid rgba(143,70,16,.18);
  background: repeating-linear-gradient(
    45deg,
    rgba(200,101,26,.05),
    rgba(200,101,26,.05) 12px,
    rgba(255,255,255,.55) 12px,
    rgba(255,255,255,.55) 24px
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #5d3010;
}

.placeholder-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #c8651a, #e8883a);
  color: white;
  font-size: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-weight: 800;
}

.placeholder-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}

.placeholder-sub {
  font-size: 13px;
  line-height: 1.55;
  color: #6a4a33;
}

.selector-right {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.step {
  font-size: 13px;
  color: #5b412e;
  font-weight: 700;
  white-space: nowrap;
}

.progress {
  flex: 1;
  height: 8px;
  background: rgba(143,70,16,.12);
  border-radius: 999px;
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #cb5d00, #ff7500);
  border-radius: 999px;
  transition: width .25s ease;
}

.question-title {
  font-size: 30px;
  line-height: 1.08;
  margin: 6px 0 8px;
  letter-spacing: -.03em;
}

.question-desc {
  margin: 0 0 18px;
  color: #4f5b66;
  font-size: 14px;
  line-height: 1.6;
}

.options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.option {
  border: 1px solid rgba(143,70,16,.16);
  background: rgba(255,255,255,.78);
  color: #1e1e1e;
  border-radius: 18px;
  padding: 16px;
  text-align: left;
  cursor: pointer;
  transition: .18s ease;
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.option:hover,
.option.is-selected {
  transform: translateY(-1px);
  border-color: rgba(200,101,26,.55);
  background: #ffffff;
}

.option.is-selected {
  box-shadow: 0 0 0 2px rgba(200,101,26,.22);
}

.option-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
}

.option-sub {
  font-size: 12px;
  color: #4f5b66;
  line-height: 1.45;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  border: none;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 800;
  cursor: pointer;
  font-size: 14px;
  transition: .18s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.btn-ghost {
  background: rgba(255,255,255,.75);
  color: #2a2a2a;
  border: 1px solid rgba(143,70,16,.16);
}

.btn-primary {
    background: linear-gradient(135deg, #ff7500, #ff7500);
    color: white !important;
    /* box-shadow: 0 10px 24px rgba(200, 101, 26, .24); */
}

.nav-note {
  font-size: 12px;
  color: #4f5b66;
}

.result {
  display: grid;
  gap: 16px;
}

.result-main {
  border: 1px solid rgba(143,70,16,.16);
  border-radius: 22px;
  padding: 20px;
  background: rgba(255,255,255,.74);
}

.result-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7a3f12;
  margin-bottom: 10px;
}

.result-title {
  font-size: 36px;
  line-height: 1;
  letter-spacing: -.04em;
  margin: 0 0 10px;
}

.result-claim {
  font-size: 16px;
  font-weight: 700;
  color: #7a3f12;
  margin-bottom: 12px;
}

.result-text {
  margin: 0 0 16px;
  color: #435160;
  font-size: 14px;
  line-height: 1.65;
}

.result-grid {
  display: grid;
    /* grid-template-columns: 1fr 260px; */
    gap: 16px;
    align-items: center;
}

.why {
  margin: 0;
  padding-left: 18px;
  color: #222;
  font-size: 14px;
  line-height: 1.7;
}

.product-box {
    /* border: 2px dashed rgba(143, 70, 16, .22); */
    border-radius: 18px;
    /* background: linear-gradient(180deg, #fffdfa, #fff4eb); */
    /* min-height: 180px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 12px; */
}

.product-box img,
.stage-product-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.alt-box {
  border: 1px dashed rgba(143,70,16,.24);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.62);
  color: #384655;
  font-size: 14px;
}

.alternative-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.alternative-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #7a3f12;
  text-decoration: none;
  font-weight: 800;
}

.alternative-list span {
  color: #4f5b66;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .selector-grid {
    grid-template-columns: 1fr;
  }

  .selector-left {
    border-right: none;
    border-bottom: 1px solid rgba(91,52,24,.14);
  }

  .result-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .selector-left,
  .selector-right {
    padding: 20px;
  }

  .options {
    grid-template-columns: 1fr;
  }

  .question-title {
    font-size: 24px;
  }

  .result-title {
    font-size: 30px;
  }

  .nav {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
.result-description {
  color: #435160;
  font-size: 14px;
  line-height: 1.65;
}

.result-score-info {
  margin-top: 16px;
}
.selector-grid p {
    font-size:15px;
}

p.question-desc {
    font-size: 14px;
}

.nav-note {
    font-weight: 800;
    text-decoration:underline
}


.selector-left h1 {

    color: #ff7500 !important;
}
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
  }

  .tag {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(143,70,16,.18);
    background: rgba(255,255,255,.7);
    color: #5d3010;
    font-size: 12px;
    font-weight: 700;
  }