/* premium.css */

/* Typography bumps */
.ll-premium-features .ll-premium-intro label span,
.ll-gbp-addon-text {
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.25;
}

/* Optional: scope container to avoid theme bleed
.ll-premium-scope { } */

/* Two-column bulleted lists */
.two-column-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem; /* row gap / col gap */
  margin: 0;
  padding-left: 1.2em;   /* space for bullets */
  list-style: disc;      /* restore bullets */
}
@media (max-width: 600px) {
  .two-column-list ul { grid-template-columns: 1fr; }
}

/* Shared base for Premium/GBP blocks (OceanWP often ~62.5% html font-size) */
.ll-premium-features {
  font-size: 1.6rem; /* ≈16px with OceanWP */
  line-height: 1.6;
}

/* UL reset (kill theme columns/grids that might leak in) */
.ll-premium-features .ll-premium-checklist {
  column-count: 1 !important;
  display: block !important;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* LI layout: icon + text */
.ll-premium-features .ll-premium-checklist li {
  display: flex !important;
  align-items: flex-start;
  gap: 0.75em;
  margin: 0 0 1em 0;
  font-size: 1em;    /* = 16px via .ll-premium-features */
  line-height: 1.5;
}

/* Checkmark icon: green circle + ✓ */
.ll-premium-features .ll-premium-icon {
  width: 1.75em;
  height: 1.75em;
  border-radius: 999px;
  background: #16a34a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1em;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  margin-top: 0.15em; /* baseline alignment */
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.15);
}
.ll-premium-features .ll-premium-icon::before {
  content: "✓";
}

/* Copy wrapper */
.ll-premium-features .ll-premium-copy { flex: 1; }

/* Inline titles/descriptions */
.ll-premium-features .ll-premium-title { font-weight: 600; display: inline; }
.ll-premium-features .ll-premium-desc  { display: inline; }

/* GBP heading checkbox alignment (if used) */
.ll-gbp-heading input[type="checkbox"] {
  transform: translateY(2px);
  margin-right: .5rem;
}

/* Responsive: stack the checkout grid on narrow screens */
@media (max-width: 880px) {
  #ll-checkout-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  #ll-right { width: 100% !important; }

  #payment-modal .ll-modal-dialog {
    width: 96vw !important;
    max-width: 800px !important;
  }
}

/* Toggle link-style button */
.ll-toggle {
  appearance: none;
  background: none;
  border: 0;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.ll-toggle:focus-visible {
  outline: 2px solid #0ea5e9; /* accessible focus ring */
  outline-offset: 2px;
}

/* Panels hidden via [hidden]; JS toggles attribute for a11y + no-FOUC */
.ll-toggle-panel[hidden] { display: none !important; }
