/* Pricing-page product-first checkout flow. */
.growth-plugin-checkout {
  scroll-margin-top: 24px;
}

.growth-checkout-panel {
  display: grid;
  gap: 20px;
  border: 1px solid var(--growth-border);
  border-radius: 12px;
  background: var(--growth-panel-soft);
  padding: clamp(18px, 3vw, 30px);
}

.growth-checkout-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.growth-step-number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  background: var(--lime);
  color: #07131f;
  font-weight: 900;
}

.growth-checkout-step strong {
  display: block;
  margin-top: 5px;
  font-size: 1.05rem;
}

.growth-checkout-step .growth-control {
  width: min(100%, 620px);
}

.growth-checkout-step .fine-print {
  margin: 9px 0 0;
}

.growth-selected-plugin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--growth-border);
  border-radius: 10px;
  background: var(--growth-panel);
  padding: 18px;
}

.growth-selected-plugin[hidden] {
  display: none;
}

.growth-selected-plugin h3 {
  margin: 7px 0 5px;
}

.growth-selected-plugin p {
  margin: 0;
  color: var(--growth-text-soft);
}

.growth-pricing-plans {
  margin-top: 0;
}

.growth-pricing-plans .price-card {
  min-width: 0;
}

.growth-pricing-plans a[aria-disabled="true"] {
  opacity: .58;
  cursor: not-allowed;
  filter: saturate(.45);
}

.growth-checkout-status {
  margin: 0;
  color: var(--growth-text-soft);
  font-weight: 700;
}

body[data-page-kind="plugin-catalog"] .card-actions {
  grid-template-columns: minmax(0, 1fr);
}

@media (max-width: 680px) {
  .growth-selected-plugin {
    align-items: stretch;
    flex-direction: column;
  }

  .growth-selected-plugin .button {
    width: 100%;
  }
}
