/* ──────────────────────────────────────────────────────────────────────────
   Football Bookings — Public Styles
   ────────────────────────────────────────────────────────────────────────── */

/* ── Base font ───────────────────────────────────────────────────────────── */
.fb-book-wrap,
.fb-filter-bar,
.fb-games-grid,
.fb-no-games {
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	-webkit-font-smoothing: antialiased;
}

/* ── Filter bar ─────────────────────────────────────────────────────────── */
.fb-filter-bar {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 28px;
	padding: 16px 20px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	box-shadow: 0 1px 4px rgba(0,0,0,.05);
}

.fb-filter-bar__days {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	flex: 1;
	min-width: 0;
}

.fb-filter-pill {
	padding: 7px 15px;
	border-radius: 999px;
	border: 1.5px solid #e5e7eb;
	background: #fff;
	color: #374151;
	font-size: .84rem;
	font-weight: 500;
	cursor: pointer;
	white-space: nowrap;
	transition: background .15s, border-color .15s, color .15s;
	line-height: 1;
}
.fb-filter-pill:hover {
	border-color: #2271b1;
	color: #2271b1;
	background: #f0f6ff;
}
.fb-filter-pill--active {
	background: #2271b1;
	border-color: #2271b1;
	color: #fff;
}

.fb-filter-bar__location { flex-shrink: 0; }

.fb-filter-select-wrap {
	position: relative;
	display: inline-block;
}
.fb-filter-select-wrap select {
	padding: 8px 32px 8px 13px;
	border: 1.5px solid #e5e7eb;
	border-radius: 999px;
	background: #fff;
	color: #374151;
	font-size: .84rem;
	font-weight: 500;
	appearance: none;
	cursor: pointer;
	transition: border-color .15s;
	white-space: nowrap;
}
.fb-filter-select-wrap select:focus {
	outline: none;
	border-color: #2271b1;
}
.fb-filter-select-wrap__arrow {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	color: #6b7280;
	font-size: .75rem;
}

/* Loading state */
#fb-games-container.fb-loading {
	opacity: .5;
	pointer-events: none;
	transition: opacity .2s;
}

/* ── Games grid ─────────────────────────────────────────────────────────── */
.fb-games-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

.fb-game-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .2s, box-shadow .2s;
	position: relative;
}
/* Single-colour accent stripe at top */
.fb-game-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: #2271b1;
	border-radius: 16px 16px 0 0;
}
.fb-game-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 28px rgba(0,0,0,.09);
}
.fb-game-card--cancelled {
	opacity: .6;
}
.fb-game-card--cancelled:hover {
	transform: none;
	box-shadow: none;
}
/* No stripe on cancelled */
.fb-game-card--cancelled::before { display: none; }

/* Location image */
.fb-game-card__image {
	position: relative;
	height: 160px;
	overflow: hidden;
}
.fb-game-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/* Remove top stripe when there's an image (image provides visual weight) */
.fb-game-card:has(.fb-game-card__image)::before { display: none; }

.fb-game-card__img-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 4px 11px;
	border-radius: 999px;
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
}
.fb-game-card__img-badge--full      { background: #ef4444; color: #fff; }
.fb-game-card__img-badge--cancelled { background: #6b7280; color: #fff; }
.fb-game-card__img-badge--low       { background: #f59e0b; color: #fff; }

/* Card body */
.fb-game-card__body {
	padding: 18px 18px 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

/* Status tag (no-image variant) */
.fb-game-card__tag {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	align-self: flex-start;
}
.fb-game-card__tag--full      { background: #fee2e2; color: #991b1b; }
.fb-game-card__tag--cancelled { background: #f3f4f6; color: #6b7280; }
.fb-game-card__tag--low       { background: #fef3c7; color: #92400e; }

/* Header row: title + price badge */
.fb-game-card__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}

.fb-game-card__title {
	margin: 0 0 4px;
	font-size: 1rem;
	font-weight: 700;
	color: #111827;
	line-height: 1.3;
}

.fb-game-card__location {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #6b7280;
	font-size: .82rem;
	margin-top: 2px;
}
.fb-game-card__location i { font-size: .78rem; color: #9ca3af; }
.fb-game-card__postcode {
	background: #f3f4f6;
	border-radius: 4px;
	padding: 1px 5px;
	font-size: .75rem;
	font-family: monospace;
	color: #374151;
}

/* Price badge */
.fb-game-card__price-badge {
	flex-shrink: 0;
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	color: #1e40af;
	border-radius: 8px;
	padding: 7px 11px;
	font-size: .95rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}
.fb-game-card__price-badge span {
	display: block;
	font-size: .58rem;
	font-weight: 500;
	color: #6b7280;
	margin-top: 3px;
	text-transform: uppercase;
	letter-spacing: .05em;
}

/* Info pills (date/time) */
.fb-game-card__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.fb-game-card__pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	padding: 5px 12px;
	font-size: .8rem;
	color: #374151;
	white-space: nowrap;
}
.fb-game-card__pill i {
	font-size: .75rem;
	color: #9ca3af;
	width: 11px;
	text-align: center;
}

/* "Next Game" badge on image */
.fb-game-card__next-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #16a34a;
	color: #fff;
	border-radius: 999px;
	padding: 4px 11px;
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.fb-game-card__next-badge i { font-size: .75rem; }

/* "Next Game" label (no-image variant) */
.fb-game-card__top-row {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.fb-game-card__next-label {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: #dcfce7;
	color: #15803d;
	border-radius: 999px;
	padding: 4px 12px;
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
}
.fb-game-card__next-label i { font-size: .75rem; }

/* Date pill emphasis */
.fb-game-card__pill--date {
	background: #eff6ff;
	border-color: #bfdbfe;
	color: #1e40af;
	font-weight: 600;
}
.fb-game-card__pill--date i { color: #3b82f6; }

/* Action button area */
.fb-game-card__action {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.fb-game-card__action .fb-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
.fb-btn__arrow { font-size: .9em; }

/* Upcoming dates teaser */
.fb-game-card__upcoming {
	border-top: 1px solid #e5e7eb;
	padding-top: 12px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.fb-game-card__upcoming-heading {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: #9ca3af;
	margin-bottom: 2px;
}
.fb-game-card__upcoming-heading i { font-size: .78rem; }

.fb-game-card__upcoming-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 5px 10px;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	font-size: .82rem;
	text-decoration: none;
	transition: background .15s, border-color .15s;
}
.fb-game-card__upcoming-row:hover {
	background: #f1f5f9;
	border-color: #cbd5e1;
}

.fb-game-card__upcoming-date {
	color: #374151;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 6px;
}
.fb-game-card__upcoming-time {
	color: #6b7280;
	font-weight: 400;
	font-size: .9em;
}

.fb-game-card__upcoming-status {
	font-size: .75rem;
	font-weight: 700;
	border-radius: 999px;
	padding: 2px 9px;
	white-space: nowrap;
}
.fb-game-card__upcoming-status--open      { background: #dcfce7; color: #15803d; }
.fb-game-card__upcoming-status--low       { background: #fef9c3; color: #854d0e; }
.fb-game-card__upcoming-status--full      { background: #fee2e2; color: #991b1b; }
.fb-game-card__upcoming-status--cancelled { background: #f3f4f6; color: #6b7280; }

.fb-game-card__more-dates {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: .82rem;
	font-weight: 600;
	color: #2563eb;
	text-decoration: none;
	padding: 7px 12px;
	border: 1px dashed #bfdbfe;
	border-radius: 8px;
	background: #eff6ff;
	transition: background .15s, border-color .15s;
	margin-top: 2px;
}
.fb-game-card__more-dates:hover {
	background: #dbeafe;
	border-color: #93c5fd;
	color: #1d4ed8;
}
.fb-game-card__more-dates--all {
	background: #f9fafb;
	border-color: #e5e7eb;
	color: #6b7280;
}
.fb-game-card__more-dates--all:hover {
	background: #f3f4f6;
	border-color: #d1d5db;
	color: #374151;
}

.fb-game-card__location-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-size: .8rem;
	color: #9ca3af;
	text-decoration: none;
	padding-top: 4px;
}
.fb-game-card__location-link:hover { color: #6b7280; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.fb-btn {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 8px;
	font-size: .9rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: background .15s, transform .1s;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}
.fb-btn:active { transform: scale(.98); }
.fb-btn--primary   { background: #2271b1; color: #fff; }
.fb-btn--primary:hover { background: #135e96; color: #fff; }
.fb-btn--reserve   { background: #f59e0b; color: #fff; }
.fb-btn--reserve:hover { background: #d97706; }
.fb-btn--whatsapp  { background: #25D366; color: #fff; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.fb-btn--whatsapp:hover { background: #1ebe5d; color: #fff; }
.fb-btn--whatsapp i { font-size: 1.1em; }
.fb-btn--disabled  { background: #f3f4f6; color: #9ca3af; cursor: not-allowed; }

/* ── Notices ─────────────────────────────────────────────────────────────── */
.fb-notice {
	padding: 10px 14px;
	border-radius: 8px;
	margin: 10px 0;
	font-size: .9rem;
}
.fb-notice--error   { background: #fef2f2; border-left: 4px solid #ef4444; color: #991b1b; }
.fb-notice--info    { background: #eff6ff; border-left: 4px solid #2271b1; color: #1e40af; }
.fb-notice--success { background: #f0fdf4; border-left: 4px solid #10b981; color: #065f46; }

/* ── No games message ────────────────────────────────────────────────────── */
.fb-no-games {
	text-align: center;
	padding: 48px 24px;
	color: #9ca3af;
	font-size: .95rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.fb-no-games i { font-size: 1.1rem; }

/* ── Book page wrapper ────────────────────────────────────────────────────  */
.fb-book-wrap {
	max-width: 900px;
	margin: 0 auto;
	font-family: inherit;
}

/* ── Hero banner ──────────────────────────────────────────────────────────  */
.fb-book-hero {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-bottom: none;
	border-radius: 16px 16px 0 0;
	overflow: hidden;
	position: relative;
}
/* Thin single-colour accent stripe */
.fb-book-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: #2271b1;
}

.fb-book-hero__inner {
	position: relative;
	padding: 28px 28px 24px;
}

.fb-book-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 0 0 8px;
	font-size: .72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: #6b7280;
}
.fb-book-hero__eyebrow i { color: #2271b1; }

.fb-book-hero__title {
	margin: 0 0 18px;
	font-size: clamp(1.2rem, 4vw, 1.6rem);
	font-weight: 700;
	color: #111827;
	line-height: 1.25;
	padding-right: 110px;
}

.fb-book-hero__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.fb-book-hero__pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	padding: 6px 13px;
	font-size: .83rem;
	color: #374151;
	white-space: nowrap;
}
.fb-book-hero__pill i {
	font-size: .8rem;
	color: #6b7280;
	width: 12px;
	text-align: center;
}

.fb-book-hero__price-badge {
	position: absolute;
	top: 24px;
	right: 24px;
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	color: #1e40af;
	border-radius: 10px;
	padding: 10px 14px;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}
.fb-book-hero__price-badge span {
	display: block;
	font-size: .65rem;
	font-weight: 500;
	color: #6b7280;
	margin-top: 3px;
	text-transform: uppercase;
	letter-spacing: .06em;
}

/* ── Unavailable / not-yet-open states ────────────────────────────────────  */
.fb-book-state {
	text-align: center;
	padding: 48px 24px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-top: none;
	border-radius: 0 0 16px 16px;
}
.fb-book-state__icon {
	display: block;
	font-size: 2rem;
	color: #9ca3af;
	margin-bottom: 14px;
}
.fb-book-state h2 { margin: 0 0 8px; font-size: 1.2rem; font-weight: 600; }
.fb-book-state p  { margin: 0; color: #6b7280; font-size: .9rem; }

/* ── Spots warning banner ─────────────────────────────────────────────────── */
.fb-spots-warning {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fef3c7;
	border: 1px solid #fcd34d;
	border-radius: 10px;
	padding: 12px 18px;
	font-size: .9rem;
	font-weight: 600;
	color: #92400e;
	margin: 0 auto 20px;
	max-width: 860px;
}
.fb-spots-warning i { color: #f59e0b; font-size: 1rem; flex-shrink: 0; }

/* ── Body: two-column grid ────────────────────────────────────────────────  */
.fb-book-body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	border-top: none;
	border-radius: 0 0 16px 16px;
	overflow: hidden;
}

.fb-book-col {
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.fb-book-col--left  { background: #f9fafb; border-right: 1px solid #e5e7eb; }
.fb-book-col--right { background: #fff; }

/* ── Sections ─────────────────────────────────────────────────────────────  */
.fb-book-section {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 20px;
}
.fb-book-col--right .fb-book-section {
	background: #f8fafc;
}
.fb-book-section__title {
	margin: 0 0 14px;
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: #9ca3af;
}

/* ── Player card ──────────────────────────────────────────────────────────  */
.fb-player-card {
	display: flex;
	align-items: center;
	gap: 14px;
}
.fb-player-card__avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #eff6ff;
	border: 1.5px solid #bfdbfe;
	color: #2271b1;
	font-size: 1rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.fb-player-card__info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.fb-player-card__name {
	font-weight: 600;
	font-size: .92rem;
	color: #111827;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.fb-player-card__email {
	font-size: .8rem;
	color: #6b7280;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.fb-player-card__tick {
	margin-left: auto;
	font-size: 1.1rem;
	color: #16a34a;
	flex-shrink: 0;
}

/* ── +1 guest toggle card ─────────────────────────────────────────────────  */
.fb-plus-one-toggle {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border: 1.5px solid #e5e7eb;
	border-radius: 10px;
	cursor: pointer;
	transition: border-color .15s, background .15s;
	background: #fff;
}
.fb-plus-one-toggle:hover { border-color: #2271b1; }
.fb-plus-one-toggle:has(input:checked) {
	border-color: #2271b1;
	background: #eff6ff;
}

.fb-plus-one-toggle__body {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
	min-width: 0;
}
.fb-plus-one-toggle__icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: #eff6ff;
	color: #2271b1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .9rem;
	flex-shrink: 0;
}
.fb-plus-one-toggle__text { display: flex; flex-direction: column; gap: 2px; }
.fb-plus-one-toggle__title { font-weight: 600; font-size: .9rem; color: #111827; }
.fb-plus-one-toggle__sub   { font-size: .78rem; color: #6b7280; }

/* CSS toggle switch */
.fb-toggle { display: flex; align-items: center; flex-shrink: 0; }
.fb-toggle__input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}
.fb-toggle__track {
	display: inline-block;
	width: 46px;
	height: 26px;
	background: #d1d5db;
	border-radius: 999px;
	position: relative;
	transition: background .2s;
	cursor: pointer;
}
.fb-toggle__thumb {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 20px;
	height: 20px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 1px 4px rgba(0,0,0,.25);
	transition: transform .2s;
}
.fb-plus-one-toggle:has(input:checked) .fb-toggle__track { background: #2271b1; }
.fb-plus-one-toggle:has(input:checked) .fb-toggle__thumb { transform: translateX(20px); }

/* ── Receipt / order summary ──────────────────────────────────────────────  */
.fb-receipt {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.fb-receipt__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: .9rem;
	color: #374151;
	padding: 8px 0;
}
.fb-receipt__row--guest { color: #2271b1; }
.fb-receipt__divider {
	height: 1px;
	background: #e5e7eb;
	margin: 6px 0;
}
.fb-receipt__total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0 4px;
	font-size: 1.05rem;
	font-weight: 700;
	color: #111827;
}

/* ── Payment Request Button (Apple Pay / Google Pay) ─────────────────────  */
#fb-pr-wrap { margin-bottom: 16px; }
#fb-pr-button { min-height: 46px; }
.fb-pr-divider {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 14px 0 0;
	color: #9ca3af;
	font-size: .78rem;
}
.fb-pr-divider::before,
.fb-pr-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #e5e7eb;
}

/* ── Payment method cards ─────────────────────────────────────────────────  */
.fb-pay-methods {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}
.fb-pay-method {
	flex: 1;
	min-width: 70px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 14px 8px 12px;
	border: 1.5px solid #e5e7eb;
	border-radius: 10px;
	cursor: pointer;
	background: #fff;
	transition: border-color .15s, background .15s;
	position: relative;
}
.fb-pay-method:hover { border-color: #93c5fd; background: #f8fbff; }
.fb-pay-method--active {
	border-color: #2271b1;
	background: #f0f7ff;
}
.fb-pay-method__icon {
	font-size: 1.2rem;
	color: #6b7280;
}
.fb-pay-method--active .fb-pay-method__icon { color: #2271b1; }
.fb-pay-method__label {
	font-size: .72rem;
	font-weight: 600;
	color: #6b7280;
	white-space: nowrap;
	letter-spacing: .01em;
}
.fb-pay-method--active .fb-pay-method__label { color: #1e40af; }
.fb-pay-method__tick {
	position: absolute;
	top: -6px;
	right: -6px;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background: #2271b1;
	color: #fff;
	font-size: .55rem;
	display: none;
	align-items: center;
	justify-content: center;
}
.fb-pay-method--active .fb-pay-method__tick { display: flex; }

/* ── Payment panels ───────────────────────────────────────────────────────  */
.fb-pay-panel { margin-top: 4px; }
.fb-pay-panel__info {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 11px 14px;
	background: #f8fbff;
	border: 1px solid #dbeafe;
	border-radius: 8px;
	font-size: .84rem;
	color: #374151;
	line-height: 1.5;
}
.fb-pay-panel__info i { color: #6b7280; margin-top: 2px; flex-shrink: 0; }
.fb-pay-panel__info--cash {
	background: #fffdf5;
	border-color: #fde68a;
	color: #374151;
}

.fb-stripe-fields { display: flex; flex-direction: column; gap: 10px; }
.fb-stripe-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fb-stripe-label {
	display: block;
	font-size: .75rem;
	font-weight: 600;
	color: #6b7280;
	margin-bottom: 5px;
	letter-spacing: .02em;
	text-transform: uppercase;
}
.fb-stripe-input {
	border: 1.5px solid #d1d5db;
	border-radius: 8px;
	padding: 11px 14px;
	background: #fff;
	transition: border-color .15s;
}
.fb-stripe-input.StripeElement--focus { border-color: #2271b1; }
.fb-stripe-input.StripeElement--invalid { border-color: #ef4444; }
.fb-card-errors { color: #ef4444; margin-top: 6px; font-size: .85rem; }

/* ── Submit area ──────────────────────────────────────────────────────────  */
.fb-btn--lg  { padding: 14px 24px; font-size: 1rem; }
.fb-btn--block { width: 100%; }

.fb-book-secure-note {
	text-align: center;
	font-size: .78rem;
	color: #9ca3af;
	margin: 10px 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
.fb-book-secure-note i { font-size: .75rem; }

.fb-btn__arrow { font-size: .75rem; }

/* ── Auth card (login/register) ───────────────────────────────────────────  */
.fb-auth-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-top: none;
	border-radius: 0 0 16px 16px;
	padding: 32px;
	max-width: 560px;
	margin: 0 auto;
}
.fb-auth-card__intro {
	margin: 0 0 24px;
	font-size: .95rem;
	color: #6b7280;
}

.fb-auth-tabs {
	display: flex;
	border-bottom: 2px solid #e5e7eb;
	margin-bottom: 24px;
}
.fb-auth-tab {
	flex: 1;
	padding: 12px;
	border: none;
	background: none;
	font-size: .95rem;
	font-weight: 500;
	color: #6b7280;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	transition: color .15s, border-color .15s;
}
.fb-auth-tab:hover { color: #2271b1; }
.fb-auth-tab--active {
	color: #2271b1;
	border-bottom-color: #2271b1;
	font-weight: 700;
}

.fb-auth-panel {}
.fb-auth-message { margin: 12px 0; }
.fb-auth-footnote {
	margin: 14px 0 0;
	font-size: .85rem;
	text-align: center;
	color: #6b7280;
}
.fb-auth-footnote a { color: #2271b1; }

/* ── Shared form elements ─────────────────────────────────────────────────  */
.fb-form-group { margin-bottom: 16px; }
.fb-field-label {
	display: block;
	font-weight: 600;
	font-size: .85rem;
	color: #374151;
	margin-bottom: 5px;
}
.fb-input {
	width: 100%;
	padding: 10px 13px;
	border: 1.5px solid #d1d5db;
	border-radius: 8px;
	box-sizing: border-box;
	font-size: .9rem;
	color: #111827;
	background: #fff;
	transition: border-color .15s, box-shadow .15s;
}
.fb-input:focus {
	outline: none;
	border-color: #2271b1;
	box-shadow: 0 0 0 3px rgba(34,113,177,.12);
}
.fb-input--narrow { max-width: 160px; }
.fb-input--readonly { background: #f9fafb; color: #6b7280; }

.fb-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.fb-field-hint {
	display: block;
	font-size: .78rem;
	color: #9ca3af;
	margin-top: 4px;
}

.fb-agree-group {
	margin: 20px 0;
	padding: 14px 16px;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
}
.fb-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: .875rem;
	line-height: 1.5;
	font-weight: normal;
	color: #374151;
}
.fb-checkbox-label input[type=checkbox] {
	margin-top: 2px;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	cursor: pointer;
	accent-color: #2271b1;
}
.fb-checkbox-label a { color: #2271b1; }

/* Screen-reader only */
.fb-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	border: 0;
}

/* ── Responsive ───────────────────────────────────────────────────────────  */
@media (max-width: 680px) {
	/* Booking page */
	.fb-book-body {
		grid-template-columns: 1fr;
	}
	.fb-book-col--left { border-right: none; border-bottom: 1px solid #e5e7eb; }
	.fb-book-hero__title { padding-right: 0; margin-bottom: 14px; }
	.fb-book-hero__price-badge {
		position: static;
		display: inline-flex;
		flex-direction: column;
		align-items: center;
		margin-top: 16px;
	}
	.fb-form-row { grid-template-columns: 1fr; }
	.fb-auth-card { padding: 20px 16px; }
	.fb-book-hero__inner { padding: 24px 20px 20px; }
	.fb-book-col { padding: 20px 16px; }

	/* Games page */
	.fb-filter-bar {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		padding: 14px 16px;
	}
	.fb-filter-bar__location { width: 100%; }
	.fb-filter-select-wrap,
	.fb-filter-select-wrap select { width: 100%; }
	.fb-games-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 420px) {
	.fb-filter-bar__days { gap: 5px; }
	.fb-filter-pill { padding: 6px 11px; font-size: .8rem; }
}

/* ── Badges ──────────────────────────────────────────────────────────────── */
.fb-badge {
	display: inline-block;
	padding: 2px 9px;
	border-radius: 999px;
	font-size: .75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .03em;
}
.fb-badge--confirmed  { background: #d1fae5; color: #065f46; }
.fb-badge--pending    { background: #fef9c3; color: #713f12; }
.fb-badge--cancelled  { background: #fee2e2; color: #991b1b; }
.fb-badge--refunded   { background: #e0e7ff; color: #3730a3; }
.fb-badge--waiting    { background: #fef9c3; color: #713f12; }
.fb-badge--notified   { background: #d1fae5; color: #065f46; }
.fb-badge--completed  { background: #d1fae5; color: #065f46; }
.fb-badge--failed     { background: #fee2e2; color: #991b1b; }
.fb-notice--warning   { background: #fffbeb; border-left: 4px solid #f59e0b; color: #78350f; }
.fb-btn--sm { padding: 6px 14px; font-size: .8rem; width: auto; }

/* ── Dashboard ───────────────────────────────────────────────────────────── */
.fb-dashboard {
	max-width: 860px;
	margin: 0 auto;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	-webkit-font-smoothing: antialiased;
}

/* ── Tab bar ─────────────────────────────────────────────────────────────── */
.fb-dashboard-tabs {
	display: flex;
	gap: 4px;
	border-bottom: 2px solid #e5e7eb;
	margin-bottom: 28px;
	flex-wrap: wrap;
}

.fb-tab-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 10px 18px;
	border: none;
	background: none;
	font-size: .88rem;
	font-weight: 500;
	color: #6b7280;
	text-decoration: none;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	transition: color .15s, border-color .15s;
}
.fb-tab-btn:hover { color: #2271b1; }
.fb-tab-btn--active { color: #2271b1; border-bottom-color: #2271b1; font-weight: 700; }
.fb-tab-btn i { font-size: .8rem; }

.fb-tab-count {
	background: #2271b1;
	color: #fff;
	border-radius: 999px;
	font-size: .68rem;
	padding: 1px 7px;
	font-weight: 700;
}

/* ── Section header ──────────────────────────────────────────────────────── */
.fb-dashboard-section-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.fb-dashboard-section-title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	color: #111827;
}

.fb-dashboard-section-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 26px;
	height: 22px;
	padding: 0 8px;
	background: #eff6ff;
	color: #2271b1;
	border-radius: 999px;
	font-size: .76rem;
	font-weight: 700;
}

/* ── Empty state ─────────────────────────────────────────────────────────── */
.fb-empty-state {
	padding: 40px 0;
	color: #9ca3af;
	font-size: .95rem;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
.fb-empty-state i { font-size: 1.5rem; color: #d1d5db; }

/* ── Booking cards grid ──────────────────────────────────────────────────── */
.fb-dashboard-bookings {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 16px;
}

.fb-dashboard-booking-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 1px 4px rgba(0,0,0,.06);
	display: flex;
	flex-direction: column;
}

/* Coloured accent strip */
.fb-dashboard-booking-card__accent {
	height: 4px;
	background: #2271b1;
}
.fb-dashboard-booking-card--past .fb-dashboard-booking-card__accent,
.fb-dashboard-booking-card--confirmed.fb-dashboard-booking-card--past .fb-dashboard-booking-card__accent {
	background: #9ca3af;
}
.fb-dashboard-booking-card--cancelled .fb-dashboard-booking-card__accent { background: #dc2626; }

.fb-dashboard-booking-card__body {
	padding: 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* Card header: title + badge */
.fb-booking-card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 8px;
}
.fb-booking-card-header h3 {
	margin: 0;
	font-size: .97rem;
	font-weight: 700;
	color: #111827;
	line-height: 1.3;
}

/* Meta pills */
.fb-booking-card-meta {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.fb-booking-card-meta__pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: .83rem;
	color: #6b7280;
}
.fb-booking-card-meta__pill i {
	color: #9ca3af;
	width: 14px;
	text-align: center;
	flex-shrink: 0;
}

/* Plus-one */
.fb-booking-card-plus-one {
	font-size: .83rem;
	color: #2271b1;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
}

/* Payment footer */
.fb-booking-card-payment {
	font-size: .83rem;
	color: #374151;
	padding-top: 10px;
	border-top: 1px solid #f3f4f6;
	margin-top: auto;
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}
.fb-booking-card-payment__amount {
	font-weight: 700;
	color: #111827;
}
.fb-booking-card-payment__sep { color: #d1d5db; }

/* ── Payment cards ───────────────────────────────────────────────────────── */
.fb-payment-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
}

.fb-payment-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.fb-payment-card__header {
	background: #2271b1;
	padding: 14px 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
}
.fb-payment-card__amount {
	font-size: 1.25rem;
	font-weight: 800;
	color: #fff;
}

/* Badge on a dark/blue background */
.fb-badge--on-dark {
	background: rgba(255,255,255,.2);
	color: #fff;
	border: 1px solid rgba(255,255,255,.35);
}

.fb-payment-card__body {
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.fb-payment-card__game {
	margin: 0;
	font-size: .93rem;
	font-weight: 600;
	color: #111827;
}
.fb-payment-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.fb-payment-card__pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: .8rem;
	color: #6b7280;
}
.fb-payment-card__pill i {
	color: #9ca3af;
	width: 12px;
	text-align: center;
}

/* ── Reserve cards ───────────────────────────────────────────────────────── */
.fb-reserve-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.fb-reserve-card__body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.fb-reserve-card__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 8px;
}
.fb-reserve-card__title {
	margin: 0;
	font-size: .97rem;
	font-weight: 700;
	color: #111827;
	line-height: 1.3;
}
.fb-reserve-card__queue {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: .78rem;
	font-weight: 600;
	color: #6b7280;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	padding: 3px 10px;
}
.fb-reserve-card__queue i { font-size: .65rem; color: #9ca3af; }
.fb-reserve-card__notice {
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-radius: 8px;
	padding: 10px 14px;
	font-size: .84rem;
	color: #92400e;
	display: flex;
	gap: 8px;
	align-items: flex-start;
	margin: 0;
}
.fb-reserve-card__notice i { color: #f59e0b; flex-shrink: 0; margin-top: 2px; }

/* WhatsApp button on dashboard cards — override full-width default */
.fb-btn--whatsapp-card {
	width: auto;
	align-self: flex-start;
	margin-top: 4px;
}

/* ── Dashboard responsive ────────────────────────────────────────────────── */
@media (max-width: 560px) {
	.fb-dashboard-bookings,
	.fb-payment-cards {
		grid-template-columns: 1fr;
	}
	.fb-tab-btn {
		padding: 8px 12px;
		font-size: .82rem;
	}
	.fb-tab-btn i { display: none; }
}

/* ── Booking hero: location block ────────────────────────────────────────── */
.fb-book-hero__eyebrow i { font-size: .75rem; }

/* Confirmed state turns the eyebrow green */
.fb-book-hero__eyebrow--confirmed {
	color: #16a34a;
}
.fb-book-hero__eyebrow--confirmed i { color: #16a34a; }

.fb-book-hero__location {
	margin-top: 14px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.fb-book-hero__location-name {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: .9rem;
	font-weight: 600;
	color: #374151;
}
.fb-book-hero__location-name i { color: #2271b1; font-size: .8rem; flex-shrink: 0; }
.fb-book-hero__location-name a { color: #374151; text-decoration: none; }
.fb-book-hero__location-name a:hover { color: #2271b1; text-decoration: underline; }

.fb-book-hero__location-address {
	margin: 0;
	font-size: .82rem;
	color: #6b7280;
	padding-left: 18px; /* align with text after icon */
}

.fb-book-hero__features {
	padding-left: 0 !important;
	margin-top: 4px;
}

/* ── Booking confirmation panel ──────────────────────────────────────────── */
.fb-confirm-panel {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-top: none;
	border-radius: 0 0 16px 16px;
	padding: 32px 28px 28px;
	text-align: center;
}

.fb-confirm-panel--standalone {
	border-top: 1px solid #e5e7eb;
	border-radius: 16px;
	margin-top: 12px;
}

.fb-confirm-panel__icon {
	font-size: 2.8rem;
	color: #16a34a;
	margin-bottom: 12px;
	line-height: 1;
}

.fb-confirm-panel__heading {
	margin: 0 0 6px;
	font-size: 1.3rem;
	font-weight: 700;
	color: #111827;
}

.fb-confirm-panel__sub {
	margin: 0 0 24px;
	font-size: .9rem;
	color: #6b7280;
}

.fb-confirm-panel__details {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 16px 18px;
	margin-top: 20px;
	margin-bottom: 0;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.fb-confirm-panel__row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: .9rem;
	color: #374151;
	line-height: 1.4;
}
.fb-confirm-panel__row i {
	color: #2271b1;
	width: 14px;
	text-align: center;
	flex-shrink: 0;
	margin-top: 2px;
}
.fb-confirm-panel__row small {
	font-size: .8rem;
	color: #6b7280;
}

.fb-confirm-panel__features {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-left: 24px;
}

.fb-confirm-feature {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	color: #1e40af;
	border-radius: 999px;
	padding: 4px 10px;
	font-size: .78rem;
	font-weight: 500;
}
.fb-confirm-feature i { font-size: .8rem; }

.fb-confirm-panel__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 24px;
}
.fb-confirm-panel__actions--whatsapp {
	margin-bottom: 8px;
}
.fb-confirm-panel__actions .fb-btn {
	width: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

/* keep old single-CTA class working */
.fb-confirm-panel__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

/* ── Location feature icons with tooltips ────────────────────────────────── */
.fb-feature-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.fb-feature-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	border-radius: 8px;
	color: #2271b1;
	font-size: .85rem;
	cursor: default;
	flex-shrink: 0;
}

/* Tooltip */
.fb-feature-icon::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: calc(100% + 7px);
	left: 50%;
	transform: translateX(-50%);
	background: #111827;
	color: #fff;
	padding: 4px 9px;
	border-radius: 6px;
	font-size: .72rem;
	font-weight: 500;
	white-space: nowrap;
	pointer-events: none;
	opacity: 0;
	transition: opacity .15s;
	z-index: 20;
}
/* Tooltip arrow */
.fb-feature-icon::before {
	content: '';
	position: absolute;
	bottom: calc(100% + 1px);
	left: 50%;
	transform: translateX(-50%);
	border: 5px solid transparent;
	border-top-color: #111827;
	pointer-events: none;
	opacity: 0;
	transition: opacity .15s;
	z-index: 20;
}
.fb-feature-icon:hover::after,
.fb-feature-icon:hover::before {
	opacity: 1;
}

/* Light variant for hero (dark background) */
.fb-feature-icon--light {
	background: rgba(255,255,255,.18);
	border-color: rgba(255,255,255,.35);
	color: #fff;
}
.fb-feature-icon--light:hover {
	background: rgba(255,255,255,.28);
}

/* Hero row spacing */
.fb-feature-icons--hero {
	margin-bottom: 14px;
}

/* ── Credit banner ───────────────────────────────────────────────────────── */
.fb-credit-banner {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 8px;
	padding: 12px 16px;
	margin-bottom: 20px;
	font-size: 14px;
	color: #15803d;
}
.fb-credit-banner i {
	font-size: 1rem;
	flex-shrink: 0;
}

/* ── Booking card action buttons ─────────────────────────────────────────── */
.fb-booking-card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid #f3f4f6;
}
.fb-btn--outline {
	background: transparent;
	border: 1px solid #d1d5db;
	color: #374151;
}
.fb-btn--outline:hover {
	background: #f9fafb;
	border-color: #9ca3af;
}
.fb-btn--outline-danger {
	background: transparent;
	border: 1px solid #fca5a5;
	color: #dc2626;
}
.fb-btn--outline-danger:hover {
	background: #fef2f2;
	border-color: #f87171;
}
.fb-btn--danger {
	background: #dc2626;
	color: #fff;
	border: none;
}
.fb-btn--danger:hover {
	background: #b91c1c;
}
.fb-btn--secondary {
	background: #f3f4f6;
	color: #374151;
	border: 1px solid #d1d5db;
}
.fb-btn--secondary:hover {
	background: #e5e7eb;
}

/* ── Credit payment option ───────────────────────────────────────────────── */
.fb-pay-method__sub {
	display: block;
	font-size: 11px;
	color: #6b7280;
	font-weight: 400;
	margin-top: 1px;
}
.fb-pay-panel__info--credit {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	color: #15803d;
}

/* ── Modals ──────────────────────────────────────────────────────────────── */
.fb-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
}
.fb-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	cursor: pointer;
}
.fb-modal__dialog {
	position: relative;
	background: #fff;
	border-radius: 10px;
	max-width: 480px;
	width: calc(100% - 32px);
	max-height: 85vh;
	overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
	display: flex;
	flex-direction: column;
}
.fb-modal__dialog--wide {
	max-width: 600px;
}
.fb-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 20px 14px;
	border-bottom: 1px solid #e5e7eb;
	gap: 12px;
}
.fb-modal__title {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #111827;
}
.fb-modal__close {
	background: none;
	border: none;
	font-size: 22px;
	line-height: 1;
	color: #9ca3af;
	cursor: pointer;
	padding: 2px 6px;
	border-radius: 4px;
	flex-shrink: 0;
}
.fb-modal__close:hover { color: #374151; background: #f3f4f6; }
.fb-modal__body {
	padding: 20px;
	flex: 1;
}
.fb-modal__desc {
	margin: 0 0 16px;
	font-size: 14px;
	color: #374151;
}
.fb-modal__footer {
	padding: 16px 20px;
	border-top: 1px solid #e5e7eb;
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}
.fb-modal__loading {
	text-align: center;
	padding: 24px 0;
	color: #6b7280;
	font-size: 14px;
}
.fb-modal__loading i {
	margin-right: 6px;
}

/* ── Rearrange game picker ───────────────────────────────────────────────── */
.fb-rearrange-game-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.fb-rearrange-game-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 16px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: #fafafa;
}
.fb-rearrange-game-card:hover {
	border-color: #93c5fd;
	background: #eff6ff;
}
.fb-rearrange-game-card__info {
	flex: 1;
	min-width: 0;
}
.fb-rearrange-game-card__title {
	margin: 0 0 4px;
	font-size: 14px;
	font-weight: 700;
	color: #111827;
}
.fb-rearrange-game-card__meta {
	margin: 0 0 2px;
	font-size: 12px;
	color: #6b7280;
}
.fb-rearrange-game-card__meta i {
	margin-right: 3px;
	width: 12px;
	text-align: center;
}
.fb-rearrange-empty {
	text-align: center;
	color: #6b7280;
	font-size: 14px;
	padding: 20px 0;
}


/* ── My Account: sign-out footer ──────────────────────────────────────────── */
.fb-dashboard-footer {
	margin-top: 32px;
	padding-top: 20px;
	border-top: 1px solid #e5e7eb;
	display: flex;
	justify-content: center;
}
.fb-signout-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 20px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	color: #6b7280;
	font-size: .88em;
	font-weight: 500;
	text-decoration: none;
	transition: border-color .15s, color .15s, background .15s;
}
.fb-signout-btn:hover {
	border-color: #ef4444;
	color: #ef4444;
	background: #fef2f2;
}

/* ── Booking form: terms agreement ───────────────────────────────────────── */
.fb-agree-terms {
	margin-bottom: 14px;
	padding: 14px 16px;
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
}

/* ── Skill picker ────────────────────────────────────────────────────────────── */
.fb-skill-desc {
	font-size: .82em;
	color: #64748b;
	margin: 0 0 10px;
	line-height: 1.4;
}
.fb-skill-picker {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin-bottom: 6px;
}
.fb-skill-btn {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 2px solid #d1d5db;
	background: #f8fafc;
	color: #374151;
	font-size: .88em;
	font-weight: 600;
	cursor: pointer;
	transition: background .12s, border-color .12s, color .12s;
	padding: 0;
	line-height: 34px;
	flex-shrink: 0;
}
.fb-skill-btn:hover {
	border-color: #6366f1;
	background: #eff6ff;
}
.fb-skill-btn--selected {
	background: #6366f1 !important;
	border-color: #4f46e5 !important;
	color: #fff !important;
}

/* ── My Details form ─────────────────────────────────────────────────────────── */
.fb-details-wrap { max-width: 600px; }
.fb-details-intro {
	color: #64748b;
	font-size: .9em;
	margin: 0 0 20px;
}
.fb-section-heading {
	font-size: 1.1em;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 6px;
	display: flex;
	align-items: center;
	gap: 8px;
}
