/*
 * SAF /become-a-member Monthly/Yearly toggle (Webflow-parity affordance).
 *
 * Scoped to page 4790 only (enqueued via is_page(4790) in functions.php).
 * The toggle is a WAI-ARIA radiogroup injected by saf-membership-toggle.js
 * immediately above the Individual Memberships cards. Toggling to "Yearly"
 * swaps the Community Leader price ($50/mo <-> $500/yr). It never hides a
 * tier -- every membership card stays reachable (owner directive: keep all
 * tiers visible; Webflow's tabs hide half of them, which we deliberately do
 * NOT replicate). Group cards are unaffected.
 *
 * Brand red #bd2727. Outfit inherited from the global kit.
 */

.saf-mbr-toggle {
	display: flex;
	justify-content: center;
	margin: 0 auto 2rem;
}

.saf-mbr-toggle__group {
	display: inline-flex;
	gap: 0.25rem;
	padding: 0.25rem;
	background: #f5f1e7; /* brand cream */
	border: 1px solid rgba(28, 23, 15, 0.12);
	border-radius: 999px;
}

/* Group-scoped compound selectors defeat the Elementor global-kit button
 * cascade (memory: elementor-kit-button-cascade-leak) which otherwise paints
 * BOTH pills brand-red. The inactive pill MUST be explicitly transparent, not
 * merely un-styled, or the kit's button background wins. */
.saf-mbr-toggle__group .saf-mbr-toggle__option {
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	margin: 0;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1;
	padding: 0.6rem 1.4rem;
	border-radius: 999px;
	/* Reserve space for the bold+active state so the pill never reflows. */
	min-width: 6.5rem;
	text-align: center;
	transition: background-color 0.18s ease, color 0.18s ease;
	box-shadow: none;
	text-decoration: none;
}

/* Inactive pill: transparent on cream, dark ink. */
.saf-mbr-toggle__group .saf-mbr-toggle__option[aria-checked="false"] {
	background-color: transparent;
	color: #1c170f;
}

/* Active pill: brand red. */
.saf-mbr-toggle__group .saf-mbr-toggle__option[aria-checked="true"] {
	background-color: #bd2727;
	color: #ffffff;
}

.saf-mbr-toggle__group .saf-mbr-toggle__option:hover[aria-checked="false"] {
	background-color: rgba(189, 39, 39, 0.10);
}

.saf-mbr-toggle__group .saf-mbr-toggle__option:focus-visible {
	outline: 2px solid #bd2727;
	outline-offset: 2px;
}

/* Reduced-motion: no transitions on the pill swap. */
@media (prefers-reduced-motion: reduce) {
	.saf-mbr-toggle__option {
		transition: none;
	}
}
