/* ============================================================
   PRICING PRO — Frontend Styles
   5 Layouts: classic | horizontal | comparison | magazine | spotlight
   ============================================================ */

/* ─── Base / Shared Variables ────────────────────────────── */
.pp-pricing-wrap {
  --pp-accent:     #7c3aed;
  --pp-accent-2:   #06b6d4;
  --pp-text:       #1a1a2e;
  --pp-text-muted: #6b7280;
  --pp-border:     #e5e7eb;
  --pp-card-bg:    #ffffff;
  --pp-yes:        #10b981;
  --pp-no:         #d1d5db;
  --pp-radius:     16px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.pp-hidden { display: none !important; }

/* ─── Toggle ─────────────────────────────────────────────── */
.pp-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}

.pp-toggle-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--pp-text-muted);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pp-toggle-label.pp-active { color: var(--pp-text); font-weight: 700; }

.pp-billing-toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  cursor: pointer;
}

.pp-toggle-checkbox { opacity: 0; width: 0; height: 0; position: absolute; }

.pp-billing-toggle-slider {
  position: absolute;
  inset: 0;
  background: #e5e7eb;
  border-radius: 99px;
  transition: background .3s;
}

.pp-billing-toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .3s;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
}

.pp-toggle-checkbox:checked + .pp-billing-toggle-slider { background: var(--pp-accent); }
.pp-toggle-checkbox:checked + .pp-billing-toggle-slider::before { transform: translateX(22px); }

.pp-save-badge {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(16,185,129,.12);
  color: #10b981;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
}

/* ─── Grid ───────────────────────────────────────────────── */
.pp-plans-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* ─── Shared Card ────────────────────────────────────────── */
.pp-plan-card {
  position: relative;
  background: var(--pp-card-bg);
  border-radius: var(--pp-radius);
  border: 1px solid var(--pp-border);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.pp-plan-card:hover { transform: translateY(-4px); }

/* Badge */
.pp-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  letter-spacing: .03em;
  z-index: 1;
}

.pp-badge-primary { background: var(--pp-accent); }
.pp-badge-success { background: #10b981; }
.pp-badge-warning { background: #f59e0b; color: #1a1a2e; }
.pp-badge-danger  { background: #ef4444; }
.pp-badge-info    { background: #06b6d4; }
.pp-badge-dark    { background: #1e1b2e; }

/* Header */
.pp-plan-name    { font-size: 20px; font-weight: 800; color: var(--pp-text); }
.pp-plan-tagline { font-size: 13px; color: var(--pp-text-muted); margin-top: 4px; }

/* ── Sale / Regular price (strikethrough) ─── */
.pp-price-was-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
  flex-wrap: wrap;
}

.pp-price-was {
  font-size: 14px;
  font-weight: 500;
  color: var(--pp-text-muted);
  text-decoration: line-through;
  opacity: .75;
  letter-spacing: -.01em;
}

.pp-sale-pill {
  display: inline-block;
  padding: 1px 7px;
  background: rgba(239,68,68,.1);
  color: #dc2626;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
}

/* Price */
.pp-price-free   { font-size: 28px; font-weight: 900; color: #10b981; }
.pp-price-display { display: flex; align-items: flex-end; gap: 2px; flex-wrap: wrap; }
.pp-price-currency { font-size: 18px; font-weight: 700; color: var(--pp-text); padding-bottom: 4px; }
.pp-price-amount   { font-size: 40px; font-weight: 900; color: var(--pp-text); line-height: 1; }
.pp-price-period   { font-size: 13px; color: var(--pp-text-muted); padding-bottom: 6px; }
.pp-annual-note    { font-size: 11px; color: var(--pp-text-muted); margin-top: 2px; }

/* Trial */
.pp-trial-badge {
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.2);
  color: #059669;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
}

/* Features */
.pp-features-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.pp-feature       { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; }

.pp-feature-yes .pp-feature-icon { color: var(--pp-yes); font-size: 13px; font-weight: 800; flex-shrink: 0; }
.pp-feature-no  .pp-feature-icon { color: var(--pp-no);  font-size: 12px; flex-shrink: 0; }
.pp-feature-no  .pp-feature-text { color: var(--pp-text-muted); text-decoration: line-through; }

.pp-tooltip-icon {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--pp-border); color: var(--pp-text-muted);
  font-size: 10px; font-weight: 700; display: inline-flex;
  align-items: center; justify-content: center; cursor: help; flex-shrink: 0;
}

/* CTA Button */
.pp-cta-btn {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  border: 2px solid transparent;
  cursor: pointer;
  margin-top: auto;
}

.pp-btn-filled  { background: var(--pp-accent); color: #fff; border-color: var(--pp-accent); }
.pp-btn-filled:hover { filter: brightness(1.1); box-shadow: 0 4px 18px rgba(124,58,237,.35); color: #fff; }

.pp-btn-outline { background: transparent; color: var(--pp-accent); border-color: var(--pp-accent); }
.pp-btn-outline:hover { background: var(--pp-accent); color: #fff; }

.pp-btn-ghost   { background: transparent; color: var(--pp-accent); border-color: transparent; }
.pp-btn-ghost:hover { background: rgba(124,58,237,.08); }


/* ═══════════════════════════════════════════════════════════
   LAYOUT 1 — CLASSIC CARDS
   Clean white cards, top accent stripe on featured
   ═══════════════════════════════════════════════════════════ */
.pp-layout-classic .pp-plan-card {
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.pp-layout-classic .pp-plan-card::before {
  content: '';
  display: block;
  height: 4px;
  background: var(--pp-border);
  border-radius: 4px 4px 0 0;
  position: absolute;
  top: -1px; left: -1px; right: -1px;
}

.pp-layout-classic .pp-featured::before {
  background: linear-gradient(90deg, var(--pp-accent), var(--pp-accent-2));
}

.pp-layout-classic .pp-featured {
  border-color: var(--pp-accent);
  box-shadow: 0 8px 40px rgba(124,58,237,.18);
  transform: translateY(-8px);
}

.pp-layout-classic .pp-featured:hover { transform: translateY(-12px); }

.pp-layout-classic .pp-featured .pp-plan-name { color: var(--pp-accent); }

.pp-layout-classic .pp-featured .pp-cta-btn.pp-btn-filled {
  background: linear-gradient(135deg, var(--pp-accent), #6d28d9);
  box-shadow: 0 4px 16px rgba(124,58,237,.4);
}


/* ═══════════════════════════════════════════════════════════
   LAYOUT 2 — HORIZONTAL ROWS
   Plans as stacked full-width rows. Name left | price center
   | feature pills | CTA right. Completely different orientation.
   ═══════════════════════════════════════════════════════════ */
.pp-layout-horizontal .pp-plans-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,.08);
  border: 1px solid #e5e7eb;
}

.pp-layout-horizontal .pp-plan-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  padding: 22px 28px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #f1f2f6;
  box-shadow: none;
  background: #fff;
  position: relative;
  transition: background .2s;
}

.pp-layout-horizontal .pp-plan-card:last-child { border-bottom: none; }
.pp-layout-horizontal .pp-plan-card:hover { transform: none; background: #fafbff; }

/* Colored left accent bar */
.pp-layout-horizontal .pp-plan-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: #e5e7eb;
  transition: background .3s;
}

.pp-layout-horizontal .pp-featured { background: #f8f6ff; }
.pp-layout-horizontal .pp-featured::before {
  background: linear-gradient(180deg, var(--pp-accent), #6d28d9);
}

/* Badge repositioned to inline pill */
.pp-layout-horizontal .pp-badge {
  position: static;
  transform: none;
  order: 0;
  font-size: 11px;
  padding: 2px 10px;
  margin-right: 14px;
  flex-shrink: 0;
}

/* Header zone */
.pp-layout-horizontal .pp-card-header {
  order: 1;
  min-width: 190px;
  flex: 0 0 190px;
  padding-right: 24px;
  border-right: 1px solid #f0f0f5;
}
.pp-layout-horizontal .pp-plan-name {
  font-size: 17px;
  font-weight: 800;
  color: #1a1a2e;
}
.pp-layout-horizontal .pp-plan-tagline { font-size: 12px; margin-top: 2px; }

/* Price zone */
.pp-layout-horizontal .pp-card-price {
  order: 2;
  flex: 0 0 150px;
  padding: 0 24px;
  border-right: 1px solid #f0f0f5;
}
.pp-layout-horizontal .pp-price-display { flex-wrap: nowrap; align-items: baseline; }
.pp-layout-horizontal .pp-price-amount  { font-size: 28px; }
.pp-layout-horizontal .pp-price-currency { font-size: 14px; padding-bottom: 2px; }
.pp-layout-horizontal .pp-price-period  {
  font-size: 11px;
  padding-bottom: 0;
  width: auto;
  margin-left: 2px;
}
.pp-layout-horizontal .pp-price-was-wrap { margin-bottom: 0; }
.pp-layout-horizontal .pp-price-was { font-size: 12px; }
.pp-layout-horizontal .pp-price-was-wrap::after { font-size: 9px; padding: 1px 5px; }

/* Trial badge compact */
.pp-layout-horizontal .pp-trial-badge {
  order: 4;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 6px;
  flex-shrink: 0;
  margin-left: 16px;
}

/* Features as pills in the middle */
.pp-layout-horizontal .pp-features-list {
  order: 3;
  flex: 1;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 20px;
}
.pp-layout-horizontal .pp-feature {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 12px;
  background: #f3f4f6;
  border: none;
}
.pp-layout-horizontal .pp-feature.pp-feature-yes {
  background: #ede9fe;
  color: #5b21b6;
}
.pp-layout-horizontal .pp-feature.pp-feature-no {
  background: #f3f4f6;
  color: #9ca3af;
  text-decoration: line-through;
  opacity: .65;
}
.pp-layout-horizontal .pp-feature-icon { font-size: 10px; }
.pp-layout-horizontal .pp-tooltip-icon { display: none; }

/* CTA on the right */
.pp-layout-horizontal .pp-cta-btn {
  order: 5;
  margin-top: 0;
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 130px;
  margin-left: 20px;
}


/* ═══════════════════════════════════════════════════════════
   LAYOUT 3 — COMPARISON TABLE
   Horizontal table layout: features in rows, plans in columns
   ═══════════════════════════════════════════════════════════ */
.pp-layout-comparison .pp-plans-grid {
  display: block;
  overflow-x: auto;
}

.pp-layout-comparison .pp-plan-card {
  display: none; /* Hidden — table handles layout */
}

/* The comparison table is built dynamically by JS for this layout */
.pp-layout-comparison .pp-comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  border: 1px solid #e5e7eb;
}

.pp-layout-comparison .pp-comparison-table th,
.pp-layout-comparison .pp-comparison-table td {
  padding: 14px 20px;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid #f3f4f6;
}

.pp-layout-comparison .pp-comparison-table th {
  background: #fafafa;
  font-weight: 800;
  font-size: 16px;
  color: #1a1a2e;
}

.pp-layout-comparison .pp-comparison-table th:first-child,
.pp-layout-comparison .pp-comparison-table td:first-child {
  text-align: left;
  background: #fafafa;
  font-weight: 600;
}

.pp-layout-comparison .pp-featured-col { background: rgba(124,58,237,.04); }

.pp-layout-comparison .pp-check-yes { color: #10b981; font-size: 18px; font-weight: 800; }
.pp-layout-comparison .pp-check-no  { color: #d1d5db; font-size: 16px; }

.pp-layout-comparison .pp-table-price-row th { border-bottom: 2px solid #e5e7eb; }
.pp-layout-comparison .pp-table-cta-row td { border-top: 1px solid #e5e7eb; padding: 20px; }

/* Fallback grid for editor */
.elementor-editor-active .pp-layout-comparison .pp-plans-grid { display: grid; }
.elementor-editor-active .pp-layout-comparison .pp-plan-card  { display: flex; }


/* ═══════════════════════════════════════════════════════════
   LAYOUT 4 — MAGAZINE
   Bold typographic cards. Large colored header block per card.
   Features in 2-col grid. Price as giant typographic hero.
   Inspired by Webflow / Framer editorial pricing pages.
   ═══════════════════════════════════════════════════════════ */
.pp-layout-magazine .pp-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.pp-layout-magazine .pp-plan-card {
  padding: 0;
  border: none;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
  gap: 0;
  background: #fff;
  transition: box-shadow .3s, transform .3s;
}

.pp-layout-magazine .pp-plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,.14);
}

/* Colored top header block */
.pp-layout-magazine .pp-card-header {
  padding: 36px 32px 24px;
  background: linear-gradient(135deg, #f0ecff 0%, #e0d9ff 100%);
  position: relative;
}

.pp-layout-magazine .pp-featured .pp-card-header {
  background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%);
}

.pp-layout-magazine .pp-plan-name {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  color: #3b0764;
}
.pp-layout-magazine .pp-featured .pp-plan-name { color: #fff; }

.pp-layout-magazine .pp-plan-tagline {
  font-size: 13px;
  margin-top: 8px;
  color: #7c3aed;
  font-weight: 500;
  opacity: .8;
}
.pp-layout-magazine .pp-featured .pp-plan-tagline { color: rgba(255,255,255,.75); }

/* Price block continues the header colour */
.pp-layout-magazine .pp-card-price {
  padding: 0 32px 28px;
  background: linear-gradient(135deg, #f0ecff 0%, #e0d9ff 100%);
  border-bottom: 3px solid rgba(124,58,237,.12);
}
.pp-layout-magazine .pp-featured .pp-card-price {
  background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%);
  border-bottom-color: rgba(255,255,255,.15);
}

.pp-layout-magazine .pp-price-display { align-items: flex-start; }
.pp-layout-magazine .pp-price-amount  { font-size: 56px; font-weight: 900; letter-spacing: -2px; line-height: 1; color: #3b0764; }
.pp-layout-magazine .pp-price-currency{ font-size: 22px; font-weight: 700; padding-bottom: 8px; color: #3b0764; }
.pp-layout-magazine .pp-price-period  { font-size: 12px; padding-bottom: 0; align-self: flex-end; color: #7c3aed; opacity: .8; }
.pp-layout-magazine .pp-featured .pp-price-amount,
.pp-layout-magazine .pp-featured .pp-price-currency { color: #fff; }
.pp-layout-magazine .pp-featured .pp-price-period   { color: rgba(255,255,255,.65); }

.pp-layout-magazine .pp-price-free { font-size: 40px; color: #3b0764; }
.pp-layout-magazine .pp-featured .pp-price-free { color: #fff; }

.pp-layout-magazine .pp-price-was-wrap { padding-bottom: 4px; }
.pp-layout-magazine .pp-price-was { color: rgba(60,7,100,.5); }
.pp-layout-magazine .pp-featured .pp-price-was { color: rgba(255,255,255,.5); }

/* Badge floated top-right inside header */
.pp-layout-magazine .pp-badge {
  position: absolute;
  top: 16px;
  right: 20px;
  left: auto;
  transform: none;
  font-size: 11px;
}

/* Content body */
.pp-layout-magazine .pp-trial-badge {
  margin: 20px 32px 0;
}

.pp-layout-magazine .pp-cta-btn {
  margin: 20px 32px 0;
  border-radius: 12px;
}

/* 2-column feature grid */
.pp-layout-magazine .pp-features-list {
  padding: 20px 32px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  flex: 1;
}
.pp-layout-magazine .pp-feature { font-size: 13px; }

/* CTA below features in magazine pushes to bottom */
.pp-layout-magazine .pp-cta-btn:last-child {
  margin-top: auto;
  margin-bottom: 32px;
}


/* ═══════════════════════════════════════════════════════════
   LAYOUT 5 — SPOTLIGHT FOCUS
   Featured plan takes dramatically more visual space.
   Non-featured plans are compact "sidebar" cards.
   Visual hierarchy designed to funnel to the featured plan.
   ═══════════════════════════════════════════════════════════ */
.pp-layout-spotlight .pp-plans-grid {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

/* Compact sidebar cards */
.pp-layout-spotlight .pp-plan-card {
  flex: 1;
  min-width: 0;
  padding: 24px 20px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  box-shadow: none;
  border-radius: 18px;
  gap: 12px;
}

.pp-layout-spotlight .pp-plan-card:hover { transform: none; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.pp-layout-spotlight .pp-plan-card:not(.pp-featured) .pp-plan-name { font-size: 15px; color: #374151; }
.pp-layout-spotlight .pp-plan-card:not(.pp-featured) .pp-plan-tagline { font-size: 12px; }
.pp-layout-spotlight .pp-plan-card:not(.pp-featured) .pp-price-amount { font-size: 28px; }
.pp-layout-spotlight .pp-plan-card:not(.pp-featured) .pp-price-currency { font-size: 14px; }
.pp-layout-spotlight .pp-plan-card:not(.pp-featured) .pp-feature { font-size: 12px; }
.pp-layout-spotlight .pp-plan-card:not(.pp-featured) .pp-cta-btn.pp-btn-filled {
  background: #fff;
  color: var(--pp-text);
  border-color: #d1d5db;
  font-size: 13px;
  padding: 10px 16px;
}
.pp-layout-spotlight .pp-plan-card:not(.pp-featured) .pp-cta-btn.pp-btn-filled:hover {
  background: var(--pp-accent);
  border-color: var(--pp-accent);
  color: #fff;
}

/* Spotlight featured card — expands to 2x width */
.pp-layout-spotlight .pp-plan-card.pp-featured {
  flex: 2;
  min-width: 300px;
  background: linear-gradient(160deg, #1c1035 0%, #2d1b69 50%, #1a103a 100%);
  border: none;
  border-radius: 24px;
  padding: 40px 36px;
  color: rgba(255,255,255,.9);
  box-shadow:
    0 0 0 2px rgba(139,92,246,.4),
    0 32px 80px rgba(109,40,217,.45),
    0 8px 32px rgba(0,0,0,.4);
  transform: none;
  z-index: 2;
  position: relative;
}

.pp-layout-spotlight .pp-featured:hover { transform: scale(1.01); }

/* Decorative glow blob */
.pp-layout-spotlight .pp-featured::before {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(167,139,250,.2) 0%, transparent 70%);
  top: -40px; right: -40px;
  pointer-events: none;
}

/* Badge */
.pp-layout-spotlight .pp-featured .pp-badge {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  top: -14px;
  font-size: 11px;
}

/* Plan name */
.pp-layout-spotlight .pp-featured .pp-plan-name {
  font-size: 30px;
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pp-layout-spotlight .pp-featured .pp-plan-tagline { color: rgba(196,181,253,.8); font-size: 14px; }

/* Price */
.pp-layout-spotlight .pp-featured .pp-price-amount  { font-size: 52px; color: #fff; }
.pp-layout-spotlight .pp-featured .pp-price-currency { color: rgba(255,255,255,.7); font-size: 20px; }
.pp-layout-spotlight .pp-featured .pp-price-period   { color: rgba(196,181,253,.7); }
.pp-layout-spotlight .pp-featured .pp-price-free     { color: #a78bfa; }
.pp-layout-spotlight .pp-featured .pp-price-was      { color: rgba(196,181,253,.5); }

/* Features */
.pp-layout-spotlight .pp-featured .pp-feature        { color: rgba(255,255,255,.85); font-size: 14px; }
.pp-layout-spotlight .pp-featured .pp-feature-yes .pp-feature-icon { color: #a78bfa; }
.pp-layout-spotlight .pp-featured .pp-feature-no .pp-feature-text  { color: rgba(196,181,253,.4); }
.pp-layout-spotlight .pp-featured .pp-features-list {
  border-top: 1px solid rgba(139,92,246,.25);
  padding-top: 16px;
}

/* Trial */
.pp-layout-spotlight .pp-featured .pp-trial-badge {
  background: rgba(167,139,250,.1);
  border-color: rgba(167,139,250,.3);
  color: #c4b5fd;
}

/* CTA */
.pp-layout-spotlight .pp-featured .pp-cta-btn.pp-btn-filled {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  border: none;
  box-shadow: 0 6px 24px rgba(124,58,237,.6), inset 0 1px 0 rgba(255,255,255,.15);
  font-size: 15px;
  padding: 14px 24px;
  letter-spacing: .02em;
}
.pp-layout-spotlight .pp-featured .pp-cta-btn.pp-btn-filled:hover {
  box-shadow: 0 10px 34px rgba(124,58,237,.75), inset 0 1px 0 rgba(255,255,255,.2);
  filter: brightness(1.12);
}

/* Toggle labels */
.pp-layout-spotlight .pp-toggle-label       { color: var(--pp-text-muted); }
.pp-layout-spotlight .pp-toggle-label.pp-active { color: var(--pp-text); }


/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .pp-layout-spotlight .pp-plans-grid {
    flex-direction: column;
  }
  .pp-layout-spotlight .pp-plan-card.pp-featured {
    min-width: 0;
    order: -1;
  }
}

@media (max-width: 768px) {
  .pp-plans-grid {
    grid-template-columns: 1fr;
  }
  .pp-layout-classic .pp-featured { transform: none; order: -1; }

  .pp-layout-horizontal .pp-plan-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .pp-layout-horizontal .pp-card-header,
  .pp-layout-horizontal .pp-card-price {
    flex: none;
    border-right: none;
    padding-right: 0;
  }
  .pp-layout-horizontal .pp-card-price { padding: 0; }
  .pp-layout-horizontal .pp-features-list { padding: 0; }
  .pp-layout-horizontal .pp-cta-btn { margin-left: 0; min-width: 100%; }

  .pp-layout-magazine .pp-features-list { grid-template-columns: 1fr; }

  .pp-price-amount { font-size: 32px; }
}

@media (max-width: 480px) {
  .pp-toggle-wrap { flex-wrap: nowrap; gap: 10px; }
  .pp-toggle-label { font-size: 13px; }
}
