/**
 * FWC linear checkout flow.
 *
 * Every value here already exists on /passes or /add-on-events. Display type
 * is Min Sans 700 (the theme font), UI and body are Gotham. Buttons are
 * sentence case with no tracking, radius is 0 everywhere except images (4px)
 * and status pills (20px), and nothing but the existing starburst badge
 * carries a shadow.
 *
 * Depends on fwc-passes.css for the starburst .pass-status-badge.
 */

/* ── Widget visibility ───────────────────────────────────────────────
   Never display:none. The widget has to stay measurable and keep its
   React tree alive while the driver works it off-screen. */

/* Hidden but fully laid out so the driver can operate it. Pinned to the top
   and clipped to one viewport so its natural height (~1900px) never extends
   the document below the footer when the page itself is short. */
.fwc-su-hidden {
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	pointer-events: none;
	z-index: -1;
}

.fwc-su-visible {
	visibility: visible;
	position: static;
	height: auto;
	overflow: visible;
	pointer-events: auto;
	z-index: auto;
}

/* Strip the widget's own event chrome once revealed, so checkout reads as
   part of the page rather than a second site. */
.fwc-su-checkout-mode .squadup-checkout-event-box,
.fwc-su-checkout-mode .squadup-user-banner,
.fwc-su-checkout-mode .squadup-checkout-nav,
.fwc-su-checkout-mode .squadup-checkout-flyer-image,
.fwc-su-checkout-mode .squadup-checkout-left-flyer,
.fwc-su-checkout-mode .powered-by-squadup {
	display: none !important;
}

/* Checkout line items: product names only, no description bullets. */
.fwc-su-checkout-mode .squadup-tickets-table .ticket-description {
	display: none !important;
}

/* Promo code box first, above the ticket table. The table is a plain
   block of rows; flex + order moves the promo row without touching the
   widget's React tree. */
.fwc-su-checkout-mode .squadup-tickets-table {
	display: flex;
	flex-direction: column;
}

.fwc-su-checkout-mode .squadup-tickets-table > .text-left {
	order: -1;
}

/* ── Frame ───────────────────────────────────────────────────────────── */

.fwc-passes-v2 {
	background-color: #F7F8F4;
}

.fwc-flow {
	max-width: 1100px;
	margin: 0 auto;
	padding: 60px;
	font-family: 'Gotham', sans-serif;
	color: #333333;
}

.fwc-flow-step + .fwc-flow-step {
	margin-top: 72px;
}

.fwc-flow-live {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.fwc-flow :focus-visible {
	outline: 2px solid #E68D8A;
	outline-offset: 2px;
}

/* The flow toggles state with the hidden attribute, and several of these
   elements set display themselves, which beats the UA [hidden] rule. */
.fwc-flow [hidden],
.fwc-flow-strip[hidden] {
	display: none !important;
}

/* ── Step header ─────────────────────────────────────────────────────── */

.fwc-flow-head {
	margin-bottom: 28px;
}

.fwc-flow-eyebrow {
	font-family: 'Gotham', sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #333333;
	margin: 0 0 10px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.fwc-flow-eyebrow-check {
	color: #E68D8A;
	font-size: 14px;
	display: none;
}

.fwc-flow-step.is-complete .fwc-flow-eyebrow-check {
	display: inline;
}

.fwc-flow-title {
	font-family: 'Min Sans', sans-serif;
	font-size: 36px !important;
	font-weight: 700;
	line-height: 1.1;
	color: #404742;
	margin: 0;
	text-align: left;
}

.fwc-flow-lede {
	font-family: 'Gotham', sans-serif;
	font-size: 15px;
	line-height: 1.5;
	color: #333333;
	margin: 10px 0 0;
}

/* ── Cards ───────────────────────────────────────────────────────────── */

.fwc-flow-card {
	background-color: #dce0ce;
	padding: 36px;
	border: none;
	border-radius: 0;
	position: relative;
}

.fwc-flow-passes {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.fwc-flow-pass-head {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 5px;
}

.fwc-flow-pass-logo {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
}

.fwc-flow-pass-logo img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	display: block;
}

.fwc-flow-pass-name {
	font-family: 'Gotham', sans-serif;
	font-size: 22px !important;
	font-weight: 700;
	line-height: 1.3;
	color: #333333;
	margin: 0;
	text-align: left;
	flex: 1;
	min-width: 0;
}

.fwc-flow-price {
	font-family: 'Min Sans', sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	color: #333333;
	margin: 0;
	text-align: right;
	flex-shrink: 0;
	white-space: nowrap;
}

.fwc-flow-price .fw-pass-price-original {
	display: block;
	font-size: 0.75em;
	text-decoration: line-through;
	opacity: 0.55;
	margin-bottom: 4px;
}

/* ── Inline details, in the site's Read-more pattern ─────────────────── */

.fwc-flow-details {
	margin-top: 12px;
}

.fwc-flow-details-body {
	font-family: 'Gotham', sans-serif;
	font-size: 15px;
	line-height: 1.6;
	color: #333333;
}

.fwc-flow-details-body p,
.fwc-flow-details-body li,
.fwc-flow-details-body strong,
.fwc-flow-details-body ul {
	color: #333333 !important;
}

.fwc-flow-details-body ul {
	list-style: disc;
	padding-left: 20px;
	margin: 5px 0;
}

.fwc-flow-details-body li {
	margin-bottom: 5px;
}

.fwc-flow-details-body strong {
	font-weight: 600;
	letter-spacing: 0.08em;
}

.fwc-flow-toggle {
	background: none;
	border: none;
	padding: 0;
	margin-top: 10px;
	font-family: 'Gotham', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #333333;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: opacity 0.25s ease;
}

.fwc-flow-toggle:hover {
	opacity: 0.8;
}

.fwc-flow-toggle i {
	color: #E68D8A;
	font-size: 14px;
	transition: transform 0.25s ease;
}

.fwc-flow-toggle.is-open i {
	transform: rotate(180deg);
}

.fwc-flow-toggle-close,
.fwc-flow-toggle.is-open .fwc-flow-toggle-open {
	display: none;
}

.fwc-flow-toggle.is-open .fwc-flow-toggle-close {
	display: inline;
}

/* Pass card foot: details toggle left, cart control right, one row. */
.fwc-flow-pass-foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 24px;
	margin-top: 18px;
}

.fwc-flow-pass-foot .fwc-flow-toggle {
	margin-top: 0;
}

.fwc-flow-pass-foot .fwc-flow-cart {
	margin-top: 0;
}

/* ── Buttons ─────────────────────────────────────────────────────────── */

.fwc-flow-btn,
.fwc-flow-add {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-height: 48px;
	padding: 13px 28px;
	border: none;
	border-radius: 0;
	background-color: #404742;
	color: #ffffff;
	font-family: 'Gotham', sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: opacity 0.25s ease;
}

.fwc-flow-btn:hover,
.fwc-flow-add:hover {
	opacity: 0.85;
	color: #ffffff;
}

.fwc-flow-btn[disabled],
.fwc-flow-add[disabled] {
	opacity: 0.4;
	cursor: not-allowed;
}

.fwc-flow-btn--ghost {
	background-color: transparent;
	color: #404742;
	border: 1px solid #404742;
}

.fwc-flow-btn--ghost:hover {
	color: #404742;
}

/* ── Cart control ────────────────────────────────────────────────────── */

/* The control is content-sized and right-aligned; never a full-width slab. */
.fwc-flow-cart {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	flex-shrink: 0;
	margin-top: 18px;
}

.fwc-flow-pass-foot .fwc-flow-note,
.fwc-flow-addon-control .fwc-flow-note {
	flex-basis: 100%;
	text-align: left;
}

.fwc-flow-incart {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	min-height: 48px;
	padding: 0 0 0 16px;
	background-color: #ffffff;
	border: 1px solid rgba(51, 51, 51, 0.12);
	border-radius: 0;
}

.fwc-flow-incart-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Gotham', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #333333;
}

.fwc-flow-incart-label .fa-check {
	color: #E68D8A;
	font-size: 14px;
}

.fwc-flow-qty {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.fwc-flow-minus,
.fwc-flow-plus {
	width: 46px;
	height: 46px;
	margin: 0;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: none;
	border-radius: 0;
	background-color: #404742;
	color: #ffffff;
	font-family: 'Gotham', sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: opacity 0.25s ease;
}

.fwc-flow-minus:hover,
.fwc-flow-plus:hover {
	opacity: 0.85;
}

.fwc-flow-minus[disabled],
.fwc-flow-plus[disabled] {
	opacity: 0.4;
	cursor: not-allowed;
}

.fwc-flow-count {
	min-width: 46px;
	text-align: center;
	font-family: 'Gotham', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #333333;
}

/* Syncing: the site's own spinner, controls muted but in place so the card
   never reflows mid-update. */
.fwc-flow-cart.is-syncing .fwc-flow-minus,
.fwc-flow-cart.is-syncing .fwc-flow-plus {
	opacity: 0.4;
	pointer-events: none;
}

.fwc-flow-cart.is-syncing .fwc-flow-count {
	font-size: 0;
}

.fwc-flow-cart.is-syncing .fwc-flow-count::after {
	content: "\f110";
	font-family: FontAwesome;
	font-size: 16px;
	color: #333333;
	animation: fwc-flow-spin 1.4s linear infinite;
	display: inline-block;
}

@keyframes fwc-flow-spin {
	to { transform: rotate(360deg); }
}

.fwc-flow-cart.is-syncing [data-fwc-flow-state-text]::after {
	content: " \2014 updating\2026";
	font-weight: 400;
}

.fwc-flow-note {
	font-family: 'Gotham', sans-serif;
	font-size: 14px;
	line-height: 1.4;
	color: #333333;
	margin: 10px 0 0;
	padding-left: 12px;
	border-left: 2px solid #E68D8A;
}

/* ── Locked add-on ───────────────────────────────────────────────────── */

.fwc-flow-addon.is-locked .fwc-flow-cart {
	opacity: 0.45;
}

/* ── Unavailable pass, collapsed ─────────────────────────────────────── */

.fwc-flow-pass--unavailable {
	padding: 24px 36px;
}

.fwc-flow-pass--unavailable .fwc-flow-pass-name,
.fwc-flow-pass--unavailable .fwc-flow-price {
	opacity: 0.55;
}

.fwc-flow-pass--unavailable .fwc-flow-pass-head {
	margin-bottom: 0;
}

.fwc-flow-sr-status {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

/* ── Step 2 · add-on cards ───────────────────────────────────────────── */

/* One event per row: thumbnail left, title + day rows beside it, details
   expanding underneath in the text column. */
.fwc-flow-addons {
	display: block;
}

.fwc-flow-addon {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	grid-template-areas:
		"img title"
		"img choose"
		"img tiers"
		"img details";
	column-gap: 28px;
	align-items: start;
	padding: 28px 0;
	border-top: 1px solid rgba(51, 51, 51, 0.12);
}

.fwc-flow-addon:first-child {
	border-top: 0;
	padding-top: 4px;
}

.fwc-flow-step--addons.is-entering .fwc-flow-addons,
.fwc-flow-step--addons.is-entering .fwc-flow-head {
	animation: fwc-flow-fade 0.35s ease both;
}

@keyframes fwc-flow-fade {
	from { opacity: 0; }
	to { opacity: 1; }
}

.fwc-flow-addon-media {
	grid-area: img;
	position: relative;
	overflow: hidden;
	width: 132px;
	height: 132px;
	border-radius: 4px;
}

.fwc-flow-addon-img,
.fwc-flow-addon-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 4px;
}

.fwc-flow-addon-placeholder {
	background-color: #BEC5A6;
}

.fwc-flow-addon-title {
	grid-area: title;
	font-family: 'Min Sans', sans-serif;
	font-size: 22px !important;
	font-weight: 700;
	line-height: 26px;
	letter-spacing: 1.1px;
	color: #333333;
	margin: 0;
	text-align: left;
}

.fwc-flow-addon-choose {
	grid-area: choose;
	font-family: 'Gotham', sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #333333;
	opacity: 0.7;
	margin: 6px 0 0;
}

/* One row per purchasable day. Single-day events have one row and read
   exactly like the plan's card; Sea to Table has two, separated by a rule. */
.fwc-flow-addon-tiers {
	grid-area: tiers;
	margin-top: 12px;
}

/* Day + price on the left, cart control inline on the right. */
.fwc-flow-addon-tier {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 0;
}

.fwc-flow-addon-tier + .fwc-flow-addon-tier {
	border-top: 1px solid rgba(51, 51, 51, 0.12);
}

.fwc-flow-addon-tier-head {
	display: flex;
	align-items: baseline;
	gap: 14px;
	min-width: 0;
}

.fwc-flow-addon-day {
	font-family: 'Gotham', sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #333333;
	margin: 0;
}

.fwc-flow-addon-price {
	font-family: 'Min Sans', sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	color: #333333;
	margin: 0;
	white-space: nowrap;
}

.fwc-flow-addon-tier.is-sold-out .fwc-flow-addon-day,
.fwc-flow-addon-tier.is-sold-out .fwc-flow-addon-price {
	opacity: 0.55;
}

.fwc-flow-soldout-note {
	font-family: 'Gotham', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #333333;
	opacity: 0.55;
	margin: 0;
	white-space: nowrap;
}

.fwc-flow-addon-control {
	flex-shrink: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}

.fwc-flow-addon-tier .fwc-flow-cart {
	margin-top: 0;
}

.fwc-flow-addon-tier .fwc-flow-add {
	min-height: 44px;
	padding: 11px 22px;
	font-size: 15px;
}

.fwc-flow-addon-tier .fwc-flow-incart {
	min-height: 44px;
}

.fwc-flow-addon-tier .fwc-flow-minus,
.fwc-flow-addon-tier .fwc-flow-plus {
	width: 42px;
	height: 42px;
}

.fwc-flow-addon-tier .fwc-flow-count {
	min-width: 40px;
}

/* ── Sold-out events: out of the grid, collapsed to a line each ─────── */

.fwc-flow-addon .fwc-flow-details {
	grid-area: details;
	margin-top: 8px;
}

.fwc-flow-addon .fwc-flow-details-body {
	margin-bottom: 14px;
}

.fwc-flow-addons-gone {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid rgba(51, 51, 51, 0.12);
}

.fwc-flow-eyebrow--plain {
	opacity: 0.55;
	margin-bottom: 8px;
}

.fwc-flow-addon--compact {
	grid-template-columns: 56px minmax(0, 1fr);
	grid-template-areas:
		"img title"
		"img tiers"
		"img details";
	column-gap: 16px;
	align-items: center;
	padding: 14px 0;
}

.fwc-flow-addon--compact:first-child {
	border-top: 0;
	padding-top: 14px;
}

.fwc-flow-addon--compact .fwc-flow-addon-media {
	width: 56px;
	height: 56px;
}

.fwc-flow-addon--compact .fwc-flow-addon-img {
	filter: saturate(0.35);
}

.fwc-flow-addon--compact .fwc-flow-pill,
.fwc-flow-addon--compact .fwc-flow-addon-choose,
.fwc-flow-addon--compact .fwc-flow-addon-price,
.fwc-flow-addon--compact .fwc-flow-cart {
	display: none !important;
}

.fwc-flow-addon--compact .fwc-flow-addon-title {
	grid-area: title;
	font-family: 'Gotham', sans-serif;
	font-size: 15px !important;
	line-height: 1.35;
	letter-spacing: 0;
	margin: 0;
	opacity: 0.6;
}

.fwc-flow-addon--compact .fwc-flow-addon-tiers {
	grid-area: tiers;
	display: flex;
	flex-wrap: wrap;
	gap: 4px 18px;
	margin-top: 4px;
}

.fwc-flow-addon--compact .fwc-flow-addon-tier {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	padding: 0;
	border: 0;
}

.fwc-flow-addon--compact .fwc-flow-addon-tier-head {
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

.fwc-flow-addon--compact .fwc-flow-addon-day {
	font-size: 12px;
	opacity: 0.55;
}

.fwc-flow-addon--compact .fwc-flow-soldout-note {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	opacity: 0.55;
}

.fwc-flow-addon--compact .fwc-flow-addon-tier.is-sold-out .fwc-flow-addon-day {
	opacity: 1;
}

.fwc-flow-addon--compact .fwc-flow-details {
	grid-area: details;
	margin-top: 6px;
}

.fwc-flow-addon--compact .fwc-flow-toggle {
	margin-top: 0;
	font-size: 13px;
	opacity: 0.7;
}

.fwc-flow-addon--compact .fwc-flow-details-body {
	margin-top: 12px;
	font-size: 15px;
}

.fwc-flow-pill {
	position: absolute;
	top: 12px;
	left: 12px;
	display: inline-block;
	padding: 6px 14px;
	border-radius: 20px;
	background-color: #E68D8A;
	color: #333333;
	font-family: 'Gotham', sans-serif;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 2;
}

.fwc-flow-addon-sponsors {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin-top: 18px;
}

.fwc-flow-addon-sponsors img {
	max-width: 100px;
	max-height: 50px;
	width: auto;
	height: auto;
	object-fit: contain;
}

/* ── Step 3 · review ─────────────────────────────────────────────────── */

.fwc-flow-review-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.fwc-flow-eyebrow--plain {
	margin: 0;
}

.fwc-flow-pill--timer {
	position: static;
	white-space: nowrap;
	flex-shrink: 0;
}

.fwc-flow-line {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(51, 51, 51, 0.12);
	font-family: 'Gotham', sans-serif;
	font-size: 15px;
	color: #333333;
}

.fwc-flow-line:first-child {
	border-top: 1px solid rgba(51, 51, 51, 0.12);
}

.fwc-flow-line-amt {
	white-space: nowrap;
}

.fwc-flow-totals {
	margin-top: 18px;
}

.fwc-flow-total-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding: 6px 0;
	font-family: 'Gotham', sans-serif;
	font-size: 15px;
	color: #333333;
}

.fwc-flow-total-row--grand {
	margin-top: 6px;
	padding-top: 14px;
	border-top: 1px solid rgba(51, 51, 51, 0.12);
	font-weight: 700;
}

.fwc-flow-grand {
	font-family: 'Min Sans', sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
}

/* Two actions side by side: ghost "Update my selections", primary
   "Continue to checkout". Each fills half; they stack on small screens. */
.fwc-flow-review-actions {
	display: flex;
	gap: 12px;
	margin-top: 24px;
}

.fwc-flow-review-actions .fwc-flow-btn {
	flex: 1 1 0;
	min-height: 54px;
}

.fwc-flow-review-note {
	font-family: 'Gotham', sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #333333;
	margin: 14px 0 0;
	text-align: center;
}

.fwc-flow-review-policy {
	font-family: 'Gotham', sans-serif;
	font-size: 12px;
	line-height: 1.5;
	color: #333333;
	opacity: 0.65;
	margin: 8px 0 0;
	text-align: center;
}

.fwc-flow-review-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 28px;
	margin-top: 16px;
}

.fwc-flow-edit,
.fwc-flow-clear {
	margin-top: 0;
}

.fwc-flow-lede--note {
	font-weight: 700;
}

/* Same rule as /passes: the Advance/Standard price-window note is only
   relevant before Standard pricing starts. */
.fwc-flow-pass.fwc-pricing-standard .temp-hide {
	display: none !important;
}

/* ── Page head (mirrors /passes) ─────────────────────────────────────── */

.fwc-flow-page-head {
	max-width: 1100px;
	margin: 0 auto;
	padding: 56px 60px 0;
	text-align: center;
}

.fwc-flow-page-title {
	font-family: 'Min Sans', sans-serif;
	font-size: 48px !important;
	font-weight: 700;
	line-height: 1.1;
	color: #404742;
	margin: 0;
}

.fwc-flow-page-sub {
	font-family: 'Min Sans', sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	color: #333333;
	margin: 18px 0 0;
}

.fwc-flow-page-head + .fwc-flow {
	padding-top: 48px;
}

/* ── Checkout revealed in place ──────────────────────────────────────── */

.fwc-flow.is-checkout [data-fwc-flow-step="1"],
.fwc-flow.is-checkout [data-fwc-flow-step="2"] {
	display: none;
}

.fwc-flow-widget.is-revealed {
	margin-top: 24px;
	padding: 36px;
	background-color: #ffffff;
	border: 1px solid rgba(51, 51, 51, 0.12);
	border-radius: 0;
}

.fwc-flow-widget.is-revealed .squadup-checkout,
.fwc-flow-widget.is-revealed .squadup-checkout p,
.fwc-flow-widget.is-revealed .squadup-checkout label,
.fwc-flow-widget.is-revealed .squadup-checkout input,
.fwc-flow-widget.is-revealed .squadup-checkout select,
.fwc-flow-widget.is-revealed .squadup-checkout textarea {
	font-family: 'Gotham', sans-serif;
}

/* Recolour SquadUp's primary buttons to match. Purchase stays theirs. */
.fwc-flow-widget.is-revealed .btn-primary,
.fwc-flow-widget.is-revealed .squadup-checkout .btn-primary {
	background-color: #404742 !important;
	border-color: #404742 !important;
	border-radius: 0 !important;
}

/* ── Sticky cart strip ───────────────────────────────────────────────── */

.fwc-flow-strip {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 900;
	background-color: #404742;
	animation: fwc-flow-rise 0.25s ease both;
}

/* The theme's scroll-to-top arrow steps above the strip while it's up. */
body.fwc-flow-strip-on .footer-scroll-top {
	bottom: 78px !important;
	transition: bottom 0.25s ease;
}

@keyframes fwc-flow-rise {
	from { transform: translateY(100%); }
	to { transform: translateY(0); }
}

.fwc-flow-strip-inner {
	max-width: 1100px;
	margin: 0 auto;
	min-height: 56px;
	padding: 0 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.fwc-flow-strip-summary {
	margin: 0;
	font-family: 'Gotham', sans-serif;
	font-size: 15px;
	color: #ffffff;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fwc-flow-strip-dot {
	opacity: 0.6;
	margin: 0 6px;
}

.fwc-flow-strip-actions {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-shrink: 0;
}

.fwc-flow-strip-link {
	background: none;
	border: none;
	padding: 0;
	font-family: 'Gotham', sans-serif;
	font-size: 14px;
	color: #ffffff;
	opacity: 0.8;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: opacity 0.25s ease;
}

.fwc-flow-strip-link:hover {
	opacity: 1;
}

.fwc-flow-strip-btn {
	flex-shrink: 0;
	padding: 10px 24px;
	border: none;
	border-radius: 0;
	background-color: #D37872;
	color: #333333;
	font-family: 'Gotham', sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: opacity 0.25s ease;
}

.fwc-flow-strip-btn:hover {
	opacity: 0.85;
}

/* ── Fallback: hand the sale back to SquadUp's own UI ────────────────── */

.fwc-flow.is-fallback .fwc-flow-step--addons {
	display: none;
}

/* ── Tablet ──────────────────────────────────────────────────────────── */

@media (max-width: 959px) {
	.fwc-flow {
		padding: 60px 40px;
	}

	.fwc-flow-page-head {
		padding: 48px 40px 0;
	}

	.fwc-flow-strip-inner {
		padding: 0 40px;
	}
}

/* ── Mobile ──────────────────────────────────────────────────────────── */

@media (max-width: 767px) {
	.fwc-flow {
		padding: 40px 20px;
	}

	.fwc-flow-step + .fwc-flow-step {
		margin-top: 48px;
	}

	.fwc-flow-title {
		font-size: 28px !important;
	}

	.fwc-flow-page-head {
		padding: 40px 20px 0;
	}

	.fwc-flow-page-title {
		font-size: 34px !important;
	}

	.fwc-flow-page-sub {
		font-size: 18px;
	}

	.fwc-flow-review-actions {
		flex-direction: column-reverse;
	}

	.fwc-flow-card {
		padding: 24px;
	}

	.fwc-flow-pass--unavailable {
		padding: 20px 24px;
	}

	.fwc-flow-pass-head {
		gap: 12px;
	}

	.fwc-flow-pass-logo,
	.fwc-flow-pass-logo img {
		width: 50px;
		height: 50px;
	}

	.fwc-flow-pass-name {
		font-size: 18px !important;
	}

	.fwc-flow-price {
		font-size: 26px;
	}

	.fwc-flow-addon {
		grid-template-columns: 72px minmax(0, 1fr);
		grid-template-areas:
			"img title"
			"choose choose"
			"tiers tiers"
			"details details";
		column-gap: 16px;
		align-items: center;
		padding: 20px 0;
	}

	.fwc-flow-addon-media {
		width: 72px;
		height: 72px;
	}

	.fwc-flow-addon-title {
		font-size: 18px !important;
		line-height: 1.25;
	}

	.fwc-flow-addon-tiers {
		margin-top: 8px;
	}

	.fwc-flow-addon--compact {
		grid-template-areas:
			"img title"
			"img tiers"
			"img details";
	}

	.fwc-flow-addon-price {
		font-size: 22px;
	}

	.fwc-flow-pass-foot {
		flex-wrap: wrap;
		gap: 16px;
	}

	.fwc-flow-pass-foot .fwc-flow-cart,
	.fwc-flow-pass-foot .fwc-flow-add,
	.fwc-flow-pass-foot .fwc-flow-incart {
		width: 100%;
	}

	.fwc-flow-pass-foot .fwc-flow-incart {
		justify-content: space-between;
	}

	/* Day and price share a line; the control drops beneath, right-aligned,
	   so the day label never wraps against the stepper. */
	.fwc-flow-addon-tier {
		flex-wrap: wrap;
		gap: 12px 16px;
	}

	.fwc-flow-addon-tier-head {
		flex: 1 1 100%;
		flex-direction: row;
		align-items: baseline;
		justify-content: space-between;
	}

	.fwc-flow-addon-control {
		flex: 1 1 100%;
	}

	.fwc-flow-addon-tier .fwc-flow-add {
		min-width: 0;
		padding: 11px 18px;
		font-size: 14px;
	}

	/* Sold-out rows keep the compact inline layout. */
	.fwc-flow-addon--compact .fwc-flow-addon-tier {
		gap: 8px;
	}

	.fwc-flow-addon--compact .fwc-flow-addon-tier-head,
	.fwc-flow-addon--compact .fwc-flow-addon-control {
		flex: 0 1 auto;
		justify-content: flex-start;
	}

	.fwc-flow-addon--compact {
		grid-template-columns: 48px minmax(0, 1fr);
	}

	.fwc-flow-addon--compact .fwc-flow-addon-media {
		width: 48px;
		height: 48px;
	}

	.fwc-flow-incart {
		padding-left: 14px;
	}

	.fwc-flow-incart-label {
		font-size: 14px;
	}

	.fwc-flow-grand {
		font-size: 24px;
	}

	.fwc-flow-strip-inner {
		padding: 0 20px;
		gap: 12px;
	}

	.fwc-flow-strip-summary {
		font-size: 14px;
	}

	/* Keep the page clear of the strip. */
	.fwc-flow {
		padding-bottom: 96px;
	}
}
