/*
 * WP Royal Freemius Plans – Frontend styles
 * Scoped to the plan selector wrapper to avoid theme conflicts.
 */

/* Scope to your Freemius selector wrapper */
.theme-sidebar-choice[data-simple-plan-freemius-selector],
.theme-sidebar-choice[data-wprfplans-selector],
.theme-sidebar-choice {
  font-family: inherit;
}

/* Plan rows */
.theme-sidebar-choice[data-simple-plan-freemius-selector] > label,
.theme-sidebar-choice[data-wprfplans-selector] > label,
.theme-sidebar-choice > label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.10);
  cursor: pointer;
}

/* Left content */
.theme-sidebar-choice .plan-info {
  flex: 1;
  min-width: 0;
}

.theme-sidebar-choice .plan-info > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 500;
  color: #2b2f36;
  margin: 0;
}

.theme-sidebar-choice .plan-info small {
  display: block;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(43,47,54,0.70);
}

/* Radio */
.theme-sidebar-choice input[type="radio"] {
  width: 16px;
  height: 16px;
  margin-top: 6px !important; 
  margin: 0;
  accent-color: #2f80ed; /* blue like screenshot */
  flex: 0 0 auto;
}

/* Price on the right */
.theme-sidebar-choice .price {
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
  color: rgba(43,47,54,0.65);
  white-space: nowrap;
  margin-top: 2px;
}

.theme-sidebar-choice .price sup {
  font-size: 0.55em;
  vertical-align: super;
}

/* Description paragraph under plans */
.theme-sidebar-choice + p,
.theme-sidebar-choice ~ p {
  margin: 1rem 0;
  font-size: 1rem;
}

.purchase-btn-wrap{
  gap: 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 1rem;
}

/* Primary button (Buy Now) */
.purchase-btn {
  display: block;
  width: 100%;
  padding: 18px 16px;
  border: 0;
  border-radius: 0;
  background: #0b47ea; /* orange */
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  cursor: pointer;
}
.purchase-btn:hover {
  background: #7e5a42; /* orange */
}

.secure-pay{
 display: flex; justify-content: center;
}
.secure-pay img{
 max-width: 100%;
 height: auto;
 margin-top: 1rem;
}
/* Small screens */
@media (max-width: 480px) {
  .theme-sidebar-choice .plan-info > div { font-size: 24px; }
  .theme-sidebar-choice .price { font-size: 40px; }
  .theme-sidebar-choice + p,
  .theme-sidebar-choice ~ p { font-size: 18px; }
}
