.eviva-cherry-widget {
    --ink: #2f3440;
    --muted: #5b6770;
    --paper: #ffffff;
    --line: #d9dbe5;
    --brand-100: #f2eef8;
    --brand-200: #e4ddf0;
    --brand-500: #5f4876;
    --brand-600: #4d3a60;
    --brand-700: #4a2e63;
    --gold-400: #ffb700;
    --good: #4d3a60;
    --shadow: 0 16px 34px rgba(62, 50, 80, 0.14);
    color: var(--ink);
    font-family: inherit;
  }

.eviva-cherry-widget * {
    box-sizing: border-box;
  }

  /* Keep Cherry widget controls isolated from broad #get-started button rules. */
  #get-started .eviva-cherry-widget button {
    text-wrap: initial;
    width: auto;
    font-size: inherit;
  }

  .eviva-cherry-widget .wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
      radial-gradient(circle at 5% 5%, var(--brand-100) 0%, var(--brand-100) 13%, transparent 38%),
      radial-gradient(circle at 95% 0%, #f7f3fc 0%, #f7f3fc 14%, transparent 42%),
      linear-gradient(160deg, #ffffff 0%, #fcfbff 54%, #f8f9fc 100%);
    box-shadow: var(--shadow);
  }

  .eviva-cherry-widget .pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #cdbce2;
    background: linear-gradient(120deg, #f4f0fb 0%, #ebe3f6 70%, #fff2c6 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 183, 0, 0.25);
  }

  .eviva-cherry-widget .pill-row {
    margin-top: 2px;
    margin-bottom: 8px;
  }

  .eviva-cherry-widget .pill-logo {
    display: block;
    height: 20px;
    width: auto;
  }

  .eviva-cherry-widget .title {
    margin: 12px 0 8px;
    font-family: inherit;
    font-weight: 700;
    font-size: clamp(1.55rem, 3.2vw, 2.3rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--brand-600);
  }

  .eviva-cherry-widget .sub {
    margin: 0;
    max-width: 76ch;
    color: var(--muted);
    font-size: 1rem;
  }

  .eviva-cherry-widget .meta {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    justify-content: space-between;
  }

  .eviva-cherry-widget .feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
  }

  .eviva-cherry-widget .feature-item {
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-600);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
  }

  .eviva-cherry-widget .feature-icon {
    color: var(--gold-400);
    font-size: 1.05rem;
    line-height: 1;
    text-shadow: 0 1px 0 rgba(77, 58, 96, 0.3);
  }

  .eviva-cherry-widget .apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border-radius: 12px;
    padding: 11px 18px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(130deg, var(--brand-500) 0%, var(--brand-600) 100%);
    border: 1px solid #463355;
    box-shadow: 0 10px 20px rgba(77, 58, 96, 0.28);
    transition: transform 0.2s ease;
  }

  .eviva-cherry-widget .apply-btn .pill {
    padding: 6px 11px;
    background: linear-gradient(120deg, #f8f3ff 0%, #efe6f9 70%, #fff3cf 100%);
    flex: 0 0 auto;
  }

  .eviva-cherry-widget .apply-btn .pill-logo {
    height: 18px;
  }

  .eviva-cherry-widget .apply-btn:hover {
    transform: translateY(-1px);
  }

  .eviva-cherry-widget .cards {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .eviva-cherry-widget .card {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
    background: var(--paper);
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
  }

  .eviva-cherry-widget .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, var(--brand-500) 0%, var(--gold-400) 100%);
  }

  .eviva-cherry-widget .procedure {
    margin: 0;
    font-family: inherit;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    color: var(--brand-600);
  }

  .eviva-cherry-widget .procedure-row {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .eviva-cherry-widget .procedure-media {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #cfc0df;
    background: #fff;
    box-shadow: 0 6px 14px rgba(77, 58, 96, 0.16);
  }

  .eviva-cherry-widget .procedure-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .eviva-cherry-widget .card-prompt {
    border: 1px dashed #cfd4e5;
    border-radius: 12px;
    background: #fafbff;
    padding: 8px;
    display: grid;
    gap: 8px;
  }

  .eviva-cherry-widget .quick-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  #get-started .eviva-cherry-widget .quick-btn,
  .eviva-cherry-widget .quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    appearance: none;
    border: 1px solid #cbc3da;
    background: linear-gradient(135deg, #f6f2fb 0%, #efe8f7 100%);
    color: var(--brand-600);
    border-radius: 10px;
    min-height: 34px;
    padding: 6px 8px;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-align: center;
    white-space: normal;
    cursor: pointer;
  }

  .eviva-cherry-widget .quick-pointer {
    color: var(--gold-400);
    margin-right: 5px;
    font-size: 0.8rem;
    vertical-align: baseline;
  }

  #get-started .eviva-cherry-widget .quick-btn:hover,
  .eviva-cherry-widget .quick-btn:hover {
    border-color: var(--brand-500);
    background: linear-gradient(135deg, #efe8f8 0%, #e8ddf5 100%);
  }

  #get-started .eviva-cherry-widget .quick-btn.is-active,
  .eviva-cherry-widget .quick-btn.is-active {
    border-color: var(--brand-500);
    color: #fff;
    background: linear-gradient(130deg, var(--brand-500) 0%, var(--brand-600) 100%);
    box-shadow: 0 4px 10px rgba(77, 58, 96, 0.25), inset 0 -2px 0 rgba(255, 183, 0, 0.8);
  }

  #get-started .eviva-cherry-widget .quick-btn.is-active .quick-pointer,
  .eviva-cherry-widget .quick-btn.is-active .quick-pointer {
    color: #ffe28a;
  }

  #get-started .eviva-cherry-widget .quick-btn:focus-visible,
  .eviva-cherry-widget .quick-btn:focus-visible {
    outline: 2px solid var(--gold-400);
    outline-offset: 1px;
  }

  .eviva-cherry-widget .term-tabs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 3px;
  }

  #get-started .eviva-cherry-widget .term-tab, .eviva-cherry-widget .term-tab {
    width: 100%;
    min-width: 0;
    appearance: none;
    border: 1px solid #cfd4e5;
    background: #f8f9ff;
    color: #596476;
    border-radius: 8px;
    min-height: 34px;
    padding: 3px 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
  }

  #get-started .eviva-cherry-widget .term-tab.is-active,
  .eviva-cherry-widget .term-tab.is-active {
    border-color: var(--brand-500);
    color: #fff;
    background: linear-gradient(130deg, var(--brand-500) 0%, var(--brand-600) 100%);
    box-shadow: 0 4px 10px rgba(77, 58, 96, 0.25), inset 0 -2px 0 rgba(255, 183, 0, 0.8);
  }

  #get-started .eviva-cherry-widget .term-tab:focus-visible,
  .eviva-cherry-widget .term-tab:focus-visible {
    outline: 2px solid var(--gold-400);
    outline-offset: 1px;
  }

  .eviva-cherry-widget .plan-panel {
    border: 2px solid var(--brand-500);
    border-radius: 12px;
    padding: 11px;
    background: linear-gradient(160deg, #f5f1fb 0%, #fcfbff 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 183, 0, 0.35);
  }

  .eviva-cherry-widget .plan-panel.is-apr {
    border-color: #7a8496;
    background: linear-gradient(160deg, #f7f8fd 0%, #fbfcff 100%);
    box-shadow: none;
  }

  .eviva-cherry-widget .plan-label {
    margin: 0;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid #f0c968;
    background: linear-gradient(110deg, #fff7df 0%, #ffeab3 100%);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #5f4500;
  }

  .eviva-cherry-widget .plan-panel.is-apr .plan-label {
    border-color: #cfd5e2;
    background: #eef1f7;
    color: #4f5c72;
  }

  .eviva-cherry-widget .plan-value {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: 1.78rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--brand-700);
    text-shadow: 0 1px 0 rgba(255, 183, 0, 0.3);
  }

  .eviva-cherry-widget .plan-panel.is-apr .plan-value {
    color: var(--brand-700);
    text-shadow: 0 1px 0 rgba(255, 183, 0, 0.3);
  }

  .eviva-cherry-widget .plan-value.is-message {
    font-size: 1.16rem;
    line-height: 1.25;
    letter-spacing: 0;
    font-weight: 700;
  }

  .eviva-cherry-widget .plan-note {
    margin: 5px 0 0;
    font-size: 0.78rem;
    color: #5f6877;
  }

  .eviva-cherry-widget .plan-row {
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .eviva-cherry-widget .plan-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
    min-height: 34px;
    padding: 7px 10px;
    border-radius: 9px;
    border: 1px solid #463355;
    background: linear-gradient(130deg, var(--brand-500) 0%, var(--brand-600) 100%);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.01em;
  }

  .eviva-cherry-widget .plan-apply-btn.is-hidden {
    display: none;
  }

  .eviva-cherry-widget .include-wrap {
    margin-top: 2px;
    padding: 9px 10px;
    border-radius: 10px;
    border: 1px solid #d8dce8;
    background: #fdfdff;
  }

  .eviva-cherry-widget .include-title {
    margin: 0 0 6px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--brand-600);
  }

  .eviva-cherry-widget .include-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 4px;
  }

  .eviva-cherry-widget .include-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: #465164;
    font-size: 0.8rem;
    line-height: 1.25;
    font-weight: 600;
  }

  .eviva-cherry-widget .include-icon {
    color: #4d3a60;
    font-size: 0.8rem;
    margin-top: 2px;
    flex: 0 0 auto;
  }

  .eviva-cherry-widget .foot {
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.42;
  }

  @media (max-width: 980px) {
    .eviva-cherry-widget .cards {
      grid-template-columns: 1fr;
    }

    .eviva-cherry-widget .feature-list {
      flex-direction: column;
      width: 100%;
      gap: 4px;
    }

    .eviva-cherry-widget .apply-btn {
      margin-inline: auto;
    }
  }

  @media (max-width: 420px) {
    .eviva-cherry-widget .quick-actions {
      grid-template-columns: 1fr;
    }

    .eviva-cherry-widget .term-tabs {
      gap: 4px;
    }

    .eviva-cherry-widget .term-tab {
      min-height: 32px;
      padding: 4px 2px;
      font-size: 0.7rem;
      letter-spacing: 0.01em;
    }

    .eviva-cherry-widget .plan-row {
      align-items: flex-start;
      flex-direction: column;
      gap: 6px;
    }
  }
