.cm-selection-ctas {
  display: flex;
  width: 100%;
  max-width: 572px;
  flex-wrap: wrap;
  gap: 12px;
}

.cm-selection-ctas .text-block-105,
.cm-selection-launcher {
  width: 280px;
  min-height: 58px;
}

.cm-selection-launcher {
  padding: 16px;
  border: 1px solid #8cc63f;
  border-radius: 3px;
  color: #4f7d20;
  background: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
}

.cm-selection-launcher:hover {
  background: #f6f9f2;
}

.cm-selection-launcher:focus-visible {
  outline: 3px solid rgba(140, 198, 63, 0.55);
  outline-offset: 3px;
}

.cm-selection-product-panel {
  max-width: 880px;
  margin: 32px auto 48px;
  padding: 0 20px;
  scroll-margin-top: 20px;
}

.cm-selection-product-panel[hidden],
.cm-selection-product-status[hidden] {
  display: none;
}

.cm-selection-product-status {
  max-width: 760px;
  margin: 16px auto 0;
  padding: 16px 18px;
  border-left: 4px solid #8cc63f;
  border-radius: 8px;
  color: #202a24;
  background: #f6f9f2;
  font-family: Montserrat, sans-serif;
  line-height: 1.6;
}

.cm-selection-root {
  --cm-selection-border: #dce3d8;
  --cm-selection-brand: #8cc63f;
  --cm-selection-focus: #4f7d20;
  --cm-selection-muted: #606a64;
  --cm-selection-surface: #ffffff;
  --cm-selection-soft: #f6f9f2;
  color: #202a24;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.cm-selection-root,
.cm-selection-root * {
  box-sizing: border-box;
}

.cm-selection-root .cm-selection-shell {
  box-sizing: border-box;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 40px);
  border: 1px solid var(--cm-selection-border);
  border-radius: 18px;
  background: var(--cm-selection-surface);
  box-shadow: 0 14px 40px rgba(25, 46, 33, 0.07);
}

.cm-selection-root .cm-selection-navigation {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.cm-selection-root .cm-selection-navigation-spacer {
  width: 1px;
}

.cm-selection-root .cm-selection-back,
.cm-selection-root .cm-selection-escape {
  min-height: 44px;
  padding: 8px 0;
  border: 0;
  color: var(--cm-selection-focus);
  background: transparent;
  font: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.cm-selection-root .cm-selection-back::before {
  content: "\2190";
  margin-right: 7px;
  text-decoration: none;
}

.cm-selection-root .cm-selection-position {
  color: var(--cm-selection-muted);
  font-size: 14px;
}

.cm-selection-root .cm-selection-step {
  outline: none;
}

.cm-selection-root .cm-selection-title {
  margin: 0 0 12px;
  font: inherit;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  line-height: 1.25;
}

.cm-selection-root .cm-selection-text {
  max-width: 68ch;
  margin: 0 0 12px;
  color: var(--cm-selection-muted);
}

.cm-selection-root .cm-selection-choices,
.cm-selection-root .cm-selection-multi-fieldset {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  border: 0;
}

.cm-selection-root .cm-selection-choice,
.cm-selection-root .cm-selection-multi-choice {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--cm-selection-border);
  border-radius: 12px;
  color: inherit;
  background: var(--cm-selection-surface);
  font: inherit;
  text-align: left;
  transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.cm-selection-root .cm-selection-choice {
  flex-direction: column;
  cursor: pointer;
}

.cm-selection-root .cm-selection-choice:hover,
.cm-selection-root .cm-selection-multi-choice:hover {
  border-color: var(--cm-selection-brand);
  background: var(--cm-selection-soft);
}

.cm-selection-root .cm-selection-choice--selected,
.cm-selection-root .cm-selection-multi-choice--selected {
  border-color: var(--cm-selection-brand);
  background: var(--cm-selection-soft);
  box-shadow: inset 4px 0 var(--cm-selection-brand);
}

.cm-selection-root .cm-selection-multi-choice {
  cursor: pointer;
}

.cm-selection-root .cm-selection-multi-choice input {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: var(--cm-selection-brand);
}

.cm-selection-root .cm-selection-multi-copy {
  display: grid;
  gap: 4px;
}

.cm-selection-root .cm-selection-choice-label {
  font-weight: 650;
}

.cm-selection-root .cm-selection-choice-description {
  color: var(--cm-selection-muted);
  font-size: 14px;
  font-weight: 400;
}

.cm-selection-root .cm-selection-primary {
  min-height: 50px;
  margin-top: 24px;
  padding: 13px 22px;
  border: 1px solid var(--cm-selection-brand);
  border-radius: 10px;
  color: #1f3211;
  background: var(--cm-selection-brand);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 150ms ease, border-color 150ms ease;
}

.cm-selection-root .cm-selection-primary:not(:disabled):hover {
  border-color: #7db334;
  background: #7db334;
}

.cm-selection-root .cm-selection-primary:disabled {
  border-color: var(--cm-selection-border);
  color: var(--cm-selection-muted);
  background: var(--cm-selection-soft);
  cursor: not-allowed;
}

.cm-selection-root .cm-selection-section {
  margin-top: 20px;
  padding: 18px 20px;
  border-left: 4px solid var(--cm-selection-brand);
  border-radius: 10px;
  background: var(--cm-selection-soft);
}

.cm-selection-root .cm-selection-step--info,
.cm-selection-root .cm-selection-step--insight,
.cm-selection-root .cm-selection-step--result {
  padding: 24px;
  border-top: 4px solid var(--cm-selection-brand);
  border-radius: 12px;
  background: var(--cm-selection-soft);
}

.cm-selection-root .cm-selection-step--info .cm-selection-section,
.cm-selection-root .cm-selection-step--result .cm-selection-section {
  background: var(--cm-selection-surface);
}

.cm-selection-root .cm-selection-section-title {
  margin: 0 0 8px;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
}

.cm-selection-root .cm-selection-section .cm-selection-text:last-child {
  margin-bottom: 0;
}

.cm-selection-root .cm-selection-comparison {
  max-width: 100%;
  margin-top: 24px;
  overflow-x: auto;
  border: 1px solid var(--cm-selection-border);
  border-radius: 10px;
  -webkit-overflow-scrolling: touch;
}

.cm-selection-root .cm-selection-comparison-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: var(--cm-selection-surface);
}

.cm-selection-root .cm-selection-comparison-table caption {
  padding: 14px 16px;
  font-weight: 650;
  text-align: left;
}

.cm-selection-root .cm-selection-comparison-table th,
.cm-selection-root .cm-selection-comparison-table td {
  padding: 12px 14px;
  border-top: 1px solid var(--cm-selection-border);
  text-align: left;
  vertical-align: top;
}

.cm-selection-root .cm-selection-comparison-table thead th {
  border-top: 0;
  background: #eef6e4;
}

.cm-selection-root .cm-selection-comparison-table tbody th {
  font-weight: 650;
}

.cm-selection-root .cm-selection-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cm-selection-root .cm-selection-footer {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--cm-selection-border);
}

.cm-selection-root .cm-selection-choice:focus-visible,
.cm-selection-root .cm-selection-primary:focus-visible,
.cm-selection-root .cm-selection-back:focus-visible,
.cm-selection-root .cm-selection-escape:focus-visible,
.cm-selection-root .cm-selection-multi-choice input:focus-visible {
  outline: 3px solid rgba(140, 198, 63, 0.55);
  outline-offset: 3px;
}

.cm-selection-root .cm-selection-title:focus-visible {
  outline: 2px solid var(--cm-selection-focus);
  outline-offset: 4px;
}

.cm-selection-root .cm-selection-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 600px) {
  .cm-selection-ctas {
    max-width: none;
    flex-direction: column;
  }

  .cm-selection-ctas .text-block-105,
  .cm-selection-launcher {
    width: 100%;
  }

  .cm-selection-product-panel {
    margin-top: 24px;
    padding: 0 12px;
  }

  .cm-selection-root .cm-selection-shell {
    padding: 20px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(25, 46, 33, 0.06);
  }

  .cm-selection-root .cm-selection-choice,
  .cm-selection-root .cm-selection-multi-choice {
    padding: 13px 14px;
  }

  .cm-selection-root .cm-selection-primary {
    width: 100%;
  }

  .cm-selection-root .cm-selection-step--info,
  .cm-selection-root .cm-selection-step--insight,
  .cm-selection-root .cm-selection-step--result {
    padding: 20px 16px;
  }

  .cm-selection-root .cm-selection-actions {
    display: block;
  }
}
