.badge-plan {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}
.badge-pro {
  background: var(--accent-light);
  color: var(--accent);
}
.badge-free {
  background: #f0f0f4;
  color: #6b6b80;
}

.billing-toggle {
  display: inline-flex;
  border: 1px solid var(--bs-border-color);
  border-radius: 6px;
  overflow: hidden;
}
.billing-toggle-btn {
  padding: 6px 20px;
  border: none;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 500;
  color: #6b6b80;
  cursor: pointer;
  transition: all 0.15s;
}
.billing-toggle-btn.active {
  background: var(--accent);
  color: #fff;
}

.billing-price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--bs-body-color);
}

.billing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.billing-features li {
  padding: 4px 0;
  font-size: 0.9rem;
  color: #444;
}
.billing-features li::before {
  content: "\2713";
  color: var(--accent);
  font-weight: 700;
  margin-right: 8px;
}

#paymentElement {
  min-height: 80px;
}

.fw-600 {
  font-weight: 600;
}
