
    /* ═══════════════════════════════════════════════════════════
       MEAL PLANS PAGE — Scoped Styles
       Single source of truth, no patch layers, fully responsive
    ═══════════════════════════════════════════════════════════ */

    /* ── Section shell ── */
    .plans-section {
      background: var(--off-white);
      padding: 7rem 2rem;
    }
    .plans-section .container {
      max-width: var(--max);
      margin: 0 auto;
    }

    /* ── Billing Toggle ── */
    .billing-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-top: 2.5rem;
      flex-wrap: wrap;
    }
    .billing-toggle-label {
      font-family: var(--font-body);
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-light);
      transition: color 0.3s;
    }
    .billing-toggle-label.active { color: var(--forest-deep); }
    .billing-switch {
      position: relative;
      width: 50px;
      height: 28px;
      cursor: pointer;
      touch-action: manipulation;
    }
    .billing-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
    .billing-slider {
      position: absolute;
      inset: 0;
      background: rgba(201,168,76,0.25);
      border: 1px solid rgba(201,168,76,0.45);
      transition: background 0.3s;
    }
    .billing-slider::before {
      content: '';
      position: absolute;
      width: 20px; height: 20px;
      left: 3px; top: 3px;
      background: var(--gold);
      transition: transform 0.3s var(--ease-out);
    }
    .billing-switch input:checked + .billing-slider { background: rgba(201,168,76,0.1); }
    .billing-switch input:checked + .billing-slider::before { transform: translateX(22px); }
    .billing-save-badge {
      font-family: var(--font-body);
      font-size: 0.52rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--forest-deep);
      background: var(--gold);
      padding: 0.22rem 0.65rem;
    }
    .price-weekly  { display: flex; }
    .price-monthly { display: none; }
    body.show-monthly .price-weekly  { display: none; }
    body.show-monthly .price-monthly { display: flex; }

    /* ══════════════════════════════════════════
       PLAN CARDS STACK
    ══════════════════════════════════════════ */
    .plans-stack {
      margin-top: 4rem;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    /* ── Individual Plan Card ── */
    .plan-card {
      display: grid;
      grid-template-columns: 280px 1fr auto;
      align-items: stretch;
      background: var(--white);
      border: 1px solid rgba(201,168,76,0.18);
      border-bottom: none;
      position: relative;
      transition: box-shadow 0.4s var(--ease-out), border-color 0.3s;
    }
    .plan-card:last-child { border-bottom: 1px solid rgba(201,168,76,0.18); }
    .plan-card:hover {
      box-shadow: 0 8px 40px rgba(14,35,24,0.09);
      z-index: 1;
      border-color: rgba(201,168,76,0.35);
    }

    /* Featured plan card */
    .plan-card.plan-featured {
      background: var(--forest-deep);
      border-color: var(--gold);
      border-width: 1px;
      z-index: 2;
      box-shadow: 0 16px 56px rgba(14,35,24,0.22);
    }
    .plan-card.plan-featured:hover {
      box-shadow: 0 24px 72px rgba(14,35,24,0.3);
      border-color: var(--gold-light);
    }

    /* Featured badge */
    .plan-badge {
      position: absolute;
      top: 0; left: 0;
      background: var(--gold);
      color: var(--forest-deep);
      font-family: var(--font-body);
      font-size: 0.48rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      padding: 0.28rem 0.9rem;
      white-space: nowrap;
    }

    /* ── Left panel: name + price ── */
    .plan-identity {
      padding: 2.75rem 2.5rem;
      border-right: 1px solid rgba(201,168,76,0.15);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .plan-card.plan-featured .plan-identity {
      border-right-color: rgba(201,168,76,0.2);
    }

    .plan-number {
      font-family: var(--font-body);
      font-size: 0.52rem;
      font-weight: 700;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.6rem;
      display: block;
    }
    .plan-name {
      font-family: var(--font-display);
      font-size: 2.6rem;
      font-weight: 300;
      color: var(--forest-deep);
      line-height: 1;
      margin-bottom: 0.4rem;
    }
    .plan-card.plan-featured .plan-name { color: var(--white); }

    .plan-tagline {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 300;
      color: var(--text-light);
      line-height: 1.55;
      margin-bottom: 1.75rem;
    }
    .plan-card.plan-featured .plan-tagline { color: rgba(255,255,255,0.45); }

    .plan-price-wrap {
      display: flex;
      align-items: flex-end;
      gap: 0.2rem;
    }
    .plan-currency {
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 400;
      color: var(--text-mid);
      margin-bottom: 0.3rem;
    }
    .plan-card.plan-featured .plan-currency { color: rgba(255,255,255,0.45); }

    .plan-price {
      font-family: var(--font-display);
      font-size: 3.8rem;
      font-weight: 300;
      color: var(--forest-deep);
      line-height: 1;
    }
    .plan-card.plan-featured .plan-price { color: var(--white); }

    .plan-freq {
      font-family: var(--font-body);
      font-size: 0.68rem;
      font-weight: 400;
      color: var(--text-light);
      margin-bottom: 0.35rem;
      letter-spacing: 0.04em;
    }
    .plan-card.plan-featured .plan-freq { color: rgba(255,255,255,0.35); }

    /* ── Middle panel: features list ── */
    .plan-features {
      padding: 2.75rem 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .plan-features-label {
      font-family: var(--font-body);
      font-size: 0.52rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.25rem;
    }

    .plan-features-list {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.05rem 1.5rem;
    }
    .plan-features-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
      padding: 0.6rem 0;
      border-bottom: 1px solid rgba(201,168,76,0.12);
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 300;
      color: var(--text-mid);
      line-height: 1.45;
    }
    .plan-card.plan-featured .plan-features-list li {
      color: rgba(255,255,255,0.65);
      border-bottom-color: rgba(255,255,255,0.07);
    }
    .plan-features-list li:last-child { border-bottom: none; }
    .plan-check {
      color: var(--gold);
      font-size: 0.65rem;
      flex-shrink: 0;
      margin-top: 0.18rem;
    }
    .plan-card.plan-featured .plan-check { color: var(--gold-light); }

    /* ── Right panel: CTA ── */
    .plan-cta {
      padding: 2.75rem 2.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      min-width: 200px;
      border-left: 1px solid rgba(201,168,76,0.15);
    }
    .plan-card.plan-featured .plan-cta {
      border-left-color: rgba(201,168,76,0.2);
    }

    /* Plan-specific CTA button */
    .plan-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 1rem 1.25rem;
      font-family: var(--font-body);
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid var(--forest-deep);
      background: transparent;
      color: var(--forest-deep);
      position: relative;
      overflow: hidden;
      cursor: pointer;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
      transition: color 0.35s;
      white-space: nowrap;
    }
    .plan-btn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--forest-deep);
      transform: translateY(101%);
      transition: transform 0.4s var(--ease-out);
      z-index: 0;
    }
    .plan-btn span { position: relative; z-index: 1; }
    .plan-btn:hover { color: var(--cream); }
    .plan-btn:hover::after { transform: translateY(0); }

    /* Featured variant */
    .plan-card.plan-featured .plan-btn {
      border-color: var(--gold);
      color: var(--gold-light);
      background: rgba(201,168,76,0.08);
    }
    .plan-card.plan-featured .plan-btn::after { background: var(--gold); }
    .plan-card.plan-featured .plan-btn:hover { color: var(--forest-deep); }

    .plan-cta-note {
      font-family: var(--font-body);
      font-size: 0.65rem;
      font-weight: 300;
      color: var(--text-light);
      text-align: center;
      line-height: 1.5;
    }
    .plan-card.plan-featured .plan-cta-note { color: rgba(255,255,255,0.3); }

    /* ── Custom Plan Footer ── */
    .plans-custom {
      margin-top: 2.5rem;
      padding: 2rem 2.5rem;
      background: var(--white);
      border: 1px solid rgba(201,168,76,0.18);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .plans-custom-text p:first-child {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--forest-deep);
      margin-bottom: 0.3rem;
    }
    .plans-custom-text p:last-child {
      font-size: 0.82rem;
      color: var(--text-light);
      font-weight: 300;
    }

    /* ══════════════════════════════════════════
       WHAT'S INCLUDED STRIP
    ══════════════════════════════════════════ */
    .includes-strip {
      background: var(--forest-deep);
      padding: 6rem 2rem;
    }
    .includes-strip .container {
      max-width: var(--max);
      margin: 0 auto;
    }
    .includes-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      margin-top: 4rem;
      border: 1px solid rgba(201,168,76,0.15);
    }
    .includes-item {
      padding: 2.5rem 2rem;
      border-right: 1px solid rgba(201,168,76,0.15);
      text-align: center;
    }
    .includes-item:last-child { border-right: none; }
    .includes-icon {
      width: 40px; height: 40px;
      border: 1px solid rgba(201,168,76,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.25rem;
      font-size: 1.2rem;
    }
    .includes-item h4 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 0.5rem;
    }
    .includes-item p {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.42);
      line-height: 1.7;
      font-weight: 300;
    }

    /* ══════════════════════════════════════════
       FAQ — REDESIGNED
    ══════════════════════════════════════════ */
    .faq-section {
      background: var(--white);
      padding: 8rem 2rem;
    }
    .faq-section .container {
      max-width: 860px;
      margin: 0 auto;
    }

    /* Two-column layout on desktop */
    .faq-layout {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 5rem;
      margin-top: 5rem;
      align-items: start;
    }

    .faq-sidebar {
      position: sticky;
      top: calc(var(--nav-h) + 2rem);
    }
    .faq-sidebar-rule {
      width: 32px;
      height: 1px;
      background: var(--gold);
      margin-bottom: 1.5rem;
    }
    .faq-sidebar p {
      font-size: 0.82rem;
      color: var(--text-light);
      font-weight: 300;
      line-height: 1.8;
      margin-bottom: 2rem;
    }
    .faq-sidebar-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-body);
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      border-bottom: 1px solid rgba(201,168,76,0.3);
      padding-bottom: 0.25rem;
      transition: color 0.3s, border-color 0.3s;
    }
    .faq-sidebar-cta:hover { color: var(--forest-deep); border-color: var(--forest-deep); }

    /* FAQ accordion */
    .faq-accordion { border-top: 1px solid rgba(201,168,76,0.2); }
    .faq-item { border-bottom: 1px solid rgba(201,168,76,0.2); }

    .faq-trigger {
      width: 100%;
      background: none;
      border: none;
      padding: 1.6rem 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.25rem;
      cursor: pointer;
      text-align: left;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
    }

    .faq-q {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 400;
      color: var(--forest-deep);
      line-height: 1.3;
    }

    .faq-icon {
      width: 30px; height: 30px;
      border: 1px solid rgba(201,168,76,0.35);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 1.1rem;
      line-height: 1;
      transition: transform 0.35s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s;
    }
    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: var(--gold);
      color: var(--forest-deep);
      border-color: var(--gold);
    }

    .faq-answer {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.4s var(--ease-out);
    }
    .faq-item.open .faq-answer { max-height: 400px; }

    .faq-answer-inner {
      padding: 0 3rem 1.75rem 0;
    }
    .faq-answer-inner p {
      font-size: 0.9rem;
      color: var(--text-mid);
      line-height: 1.9;
      font-weight: 300;
    }

    /* ══════════════════════════════════════════
       TABLET  ≤ 1100px
    ══════════════════════════════════════════ */
    @media (max-width: 1100px) {
      .plan-card {
        grid-template-columns: 240px 1fr auto;
      }
      .plan-name { font-size: 2.2rem; }
      .plan-price { font-size: 3.2rem; }
      .plan-features-list { grid-template-columns: 1fr; }
      .plan-cta { min-width: 170px; padding: 2rem 1.75rem; }
    }

    /* ══════════════════════════════════════════
       TABLET  ≤ 900px  — stack panels vertically
    ══════════════════════════════════════════ */
    @media (max-width: 900px) {
      .plans-section { padding: 5rem 1.5rem; }

      .plan-card {
        grid-template-columns: 1fr;
        border-bottom: none;
      }
      .plan-card:last-child { border-bottom: 1px solid rgba(201,168,76,0.18); }
      .plan-identity {
        border-right: none;
        border-bottom: 1px solid rgba(201,168,76,0.12);
        padding: 2.25rem 2rem 1.75rem;
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
      }
      .plan-card.plan-featured .plan-identity { border-bottom-color: rgba(201,168,76,0.2); }
      .plan-identity-left { flex: 1; min-width: 160px; }
      .plan-price-wrap { margin-top: 0; }
      .plan-tagline { margin-bottom: 0; }

      .plan-features { padding: 1.75rem 2rem; border-bottom: 1px solid rgba(201,168,76,0.12); }
      .plan-card.plan-featured .plan-features { border-bottom-color: rgba(201,168,76,0.2); }
      .plan-features-list { grid-template-columns: 1fr 1fr; }

      .plan-cta {
        border-left: none;
        padding: 1.75rem 2rem 2.25rem;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        min-width: auto;
        flex-wrap: wrap;
        gap: 1rem;
      }
      .plan-btn { width: auto; min-width: 200px; }

      .plans-custom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 1.75rem 2rem;
      }

      .includes-grid { grid-template-columns: 1fr 1fr; }
      .includes-item:nth-child(2) { border-right: none; }
      .includes-item { border-bottom: 1px solid rgba(201,168,76,0.15); }
      .includes-item:nth-child(3) { border-right: 1px solid rgba(201,168,76,0.15); }
      .includes-item:nth-child(3),
      .includes-item:nth-child(4) { border-bottom: none; }

      .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
      .faq-sidebar { position: static; }
    }

    /* ══════════════════════════════════════════
       MOBILE  ≤ 640px  — single-column, full polish
    ══════════════════════════════════════════ */
    @media (max-width: 640px) {
      .plans-section { padding: 4rem 1.25rem; }
      .includes-strip { padding: 4rem 1.25rem; }
      .faq-section { padding: 5rem 1.25rem; }

      .plans-stack { gap: 1.25rem; }

      /* Each card becomes its own fully-contained block */
      .plan-card {
        border: 1px solid rgba(201,168,76,0.22) !important;
        border-radius: 2px;
        box-shadow: 0 4px 24px rgba(14,35,24,0.07);
        overflow: hidden;
      }
      .plan-card.plan-featured {
        border-color: var(--gold) !important;
        box-shadow: 0 12px 48px rgba(14,35,24,0.18) !important;
      }

      /* Identity panel — full column on mobile */
      .plan-identity {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 2rem 1.5rem 1.5rem;
      }
      .plan-identity-left { width: 100%; }
      .plan-name { font-size: 2.4rem; }
      .plan-tagline { margin-bottom: 1rem; }
      .plan-price { font-size: 3.5rem; }

      /* Features — single column on mobile */
      .plan-features { padding: 1.5rem; }
      .plan-features-list { grid-template-columns: 1fr; }
      .plan-features-list li { font-size: 0.85rem; padding: 0.65rem 0; }

      /* CTA — stack vertically */
      .plan-cta {
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem 1.5rem 1.75rem;
        gap: 0.75rem;
      }
      .plan-btn {
        width: 100%;
        min-width: auto;
        padding: 1.05rem 1rem;
        min-height: 52px;
        font-size: 0.6rem;
      }
      .plan-cta-note { text-align: center; }

      .billing-toggle { gap: 0.6rem; }
      .plans-stack { margin-top: 2.5rem; }

      .plans-custom {
        padding: 1.5rem;
        gap: 1rem;
      }

      /* Includes: 1 col on small phones */
      .includes-grid { grid-template-columns: 1fr; }
      .includes-item { border-right: none !important; border-bottom: 1px solid rgba(201,168,76,0.12); }
      .includes-item:last-child { border-bottom: none; }

      /* FAQ mobile */
      .faq-layout { margin-top: 3rem; gap: 1.5rem; }
      .faq-q { font-size: 1.05rem; }
      .faq-trigger { padding: 1.35rem 0; }
      .faq-answer-inner { padding-right: 0; }
    }

    @media (max-width: 400px) {
      .plan-name { font-size: 2rem; }
      .plan-price { font-size: 3rem; }
      .plan-features-list li { font-size: 0.82rem; }
    }
  

/* ── Available dietary styles ── */
.dietary-section {
  background: var(--cream);
  padding: 7rem 2.5rem;
  border-top: 1px solid rgba(201,168,76,0.14);
}

.dietary-section .container {
  max-width: var(--max);
  margin: 0 auto;
}

.dietary-section .center-title {
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.dietary-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(201,168,76,0.22);
  border: 1px solid rgba(201,168,76,0.22);
}

.dietary-card {
  position: relative;
  min-height: 235px;
  padding: 2.25rem 1.65rem;
  background: var(--white);
}

.dietary-mark {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.dietary-card h3 {
  margin-bottom: 0.9rem;
  font-size: 1.55rem;
  font-weight: 400;
}

.dietary-card p {
  font-size: 0.82rem;
  line-height: 1.75;
}

.dietary-note {
  max-width: 850px;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--text-light);
}

@media (max-width: 1100px) {
  .dietary-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .dietary-section { padding: 5rem 1.25rem; }
  .dietary-grid { grid-template-columns: 1fr; }
  .dietary-card { min-height: auto; padding: 1.75rem 1.5rem; }
}


/* === Square Payment Actions === */
.plan-payment-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  width: 100%;
}
.plan-payment-actions .plan-btn { width: 100%; }
.plan-btn-secondary {
  background: transparent !important;
  color: var(--forest-deep) !important;
  border: 1px solid rgba(27, 69, 55, .35) !important;
}
.plan-btn-secondary:hover,
.plan-btn-secondary:focus-visible {
  background: var(--forest-deep) !important;
  color: #fff !important;
  border-color: var(--forest-deep) !important;
}
@media (max-width: 620px) {
  .plan-payment-actions { grid-template-columns: 1fr; }
}


/* === Refined Square Membership Buttons === */
.plan-payment-actions {
  grid-template-columns: 1fr;
  gap: .9rem;
  min-width: 250px;
}
.plan-payment-actions .plan-btn {
  width: 100%;
  min-height: 72px;
  padding: 0;
  border: 1px solid rgba(216, 184, 98, .72);
  border-radius: 2px;
  background: linear-gradient(135deg, rgba(201,168,76,.12), rgba(201,168,76,.04));
  color: var(--gold-light);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025), 0 8px 22px rgba(0,0,0,.12);
  overflow: hidden;
  isolation: isolate;
  transition: transform .28s var(--ease-out), border-color .28s ease, box-shadow .28s ease, color .28s ease;
}
.plan-payment-actions .plan-btn::after {
  z-index: -1;
  transform: translateY(102%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.plan-payment-actions .plan-btn:hover,
.plan-payment-actions .plan-btn:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold-light);
  color: var(--forest-deep);
  box-shadow: 0 12px 28px rgba(0,0,0,.2), 0 0 0 1px rgba(216,184,98,.12);
  outline: none;
}
.plan-payment-actions .plan-btn:hover::after,
.plan-payment-actions .plan-btn:focus-visible::after {
  transform: translateY(0);
}
.plan-payment-actions .plan-btn-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 72px;
  padding: .85rem 1rem .85rem 1.05rem;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "kicker arrow" "label arrow";
  align-items: center;
  column-gap: 1rem;
  text-align: left;
}
.plan-payment-actions .plan-btn-kicker {
  grid-area: kicker;
  display: block;
  font-size: .51rem;
  font-weight: 500;
  letter-spacing: .22em;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: .66;
}
.plan-payment-actions .plan-btn-label {
  grid-area: label;
  display: block;
  margin-top: .28rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: .015em;
  line-height: 1.1;
  text-transform: none;
}
.plan-payment-actions .plan-btn-arrow {
  grid-area: arrow;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  transition: transform .28s var(--ease-out);
}
.plan-payment-actions .plan-btn:hover .plan-btn-arrow,
.plan-payment-actions .plan-btn:focus-visible .plan-btn-arrow {
  transform: translateX(3px);
}
.plan-payment-actions .plan-btn-secondary {
  background: rgba(255,255,255,.035) !important;
  color: rgba(255,255,255,.88) !important;
  border-color: rgba(255,255,255,.22) !important;
}
.plan-payment-actions .plan-btn-secondary::after {
  background: rgba(255,255,255,.95) !important;
}
.plan-payment-actions .plan-btn-secondary:hover,
.plan-payment-actions .plan-btn-secondary:focus-visible {
  color: var(--forest-deep) !important;
  border-color: rgba(255,255,255,.82) !important;
  background: rgba(255,255,255,.035) !important;
}
@media (max-width: 620px) {
  .plan-payment-actions { min-width: 0; width: 100%; }
  .plan-payment-actions .plan-btn,
  .plan-payment-actions .plan-btn-content { min-height: 68px; }
}
