/* Plan-specific billing toggle styles */
.plan-billing-toggle {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
  background: var(--gray-100);
  border-radius: 30px;
  padding: 0.25rem;
  width: fit-content;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-left: auto;
  margin-right: auto;
}

/* Checkout Modal Styles */
.checkout-plan-details {
  margin-bottom: 2rem;
  text-align: center;
}

#checkout-plan-name {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}

.checkout-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.checkout-features {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background-color: var(--gray-100);
  border-radius: var(--border-radius-lg);
}

.checkout-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checkout-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--gray-700);
}

.checkout-feature-item:last-child {
  margin-bottom: 0;
}

.checkout-feature-item i {
  color: var(--success);
  margin-right: 0.75rem;
}

.checkout-coupon {
  margin-bottom: 1.5rem;
}

.coupon-feedback {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.error-text {
  color: var(--danger);
}

.form-control.error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2);
}

/* Responsive styles */
@media (max-width: 768px) {
  .plan-billing-toggle {
    flex-direction: column;
    width: 100%;
    border-radius: 15px;
  }
  
  .radio-container {
    width: 100%;
    text-align: center;
    margin: 0.25rem 0;
  }
  
  .checkout-price {
    font-size: 2rem;
  }
}