/**
 * GFA Schedule — Book Your Slot card + live schedule
 */

.gfa-schedule {
	--gfa-green: #176b35;
	--gfa-green-bright: #2ea44f;
	--gfa-mint: #dff3e5;
	--gfa-mint-2: #eaf8ef;
	--gfa-yellow: #b78103;
	--gfa-yellow-bg: #fff8e6;
	--gfa-red: #c81e1e;
	--gfa-red-bg: #fff1f1;
	--gfa-ink: #141414;
	--gfa-muted: #5b6470;

	box-sizing: border-box;
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
	padding: 14px 10px 28px;
	color: var(--gfa-ink);
	font-family: "Trebuchet MS", "Segoe UI", Candara, sans-serif;
	background:
		radial-gradient(ellipse at 50% 0%, rgba(46, 164, 79, 0.22), transparent 50%),
		linear-gradient(165deg, #0a2e18 0%, #14532d 45%, #0f2918 100%);
	border-radius: 22px;
}

.gfa-schedule *,
.gfa-schedule *::before,
.gfa-schedule *::after {
	box-sizing: border-box;
}

/* —— Live strip —— */
.gfa-live {
	margin-bottom: 16px;
	padding: 14px 14px 12px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.96);
	border: 2px solid rgba(46, 164, 79, 0.45);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.gfa-live__header {
	text-align: center;
	margin-bottom: 10px;
}

.gfa-live__eyebrow {
	margin: 0 0 2px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #0b6b3a;
}

.gfa-live__title {
	margin: 0;
	font-size: clamp(1.15rem, 2.5vw, 1.45rem);
	font-weight: 800;
	line-height: 1.25;
}

.gfa-date-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	margin: 12px auto 0;
	padding: 12px 14px;
	max-width: 360px;
	border-radius: 14px;
	border: 2px solid #1f9d55;
	background: linear-gradient(180deg, #f3fff6 0%, #dff5e6 100%);
	box-shadow: 0 0 0 4px rgba(46, 164, 79, 0.14);
	animation: gfa-date-pulse 2.4s ease-in-out infinite;
}

.gfa-date-badge__live {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 2px 8px;
	border-radius: 999px;
	background: #1f9d55;
	color: #fff;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.gfa-date-badge__live::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
	animation: gfa-live-dot 1.4s ease-out infinite;
}

.gfa-date-badge__label {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #0b6b3a;
}

.gfa-date-badge__value {
	font-size: 1.15rem;
	font-weight: 800;
	color: #0d3b1f;
	line-height: 1.25;
}

@keyframes gfa-date-pulse {
	0%, 100% { box-shadow: 0 0 0 4px rgba(46, 164, 79, 0.1); }
	50% { box-shadow: 0 0 0 7px rgba(46, 164, 79, 0.18); }
}

@keyframes gfa-live-dot {
	0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.65); }
	100% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
}

.gfa-period-tabs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin: 12px auto 0;
	max-width: 420px;
}

.gfa-period-tab {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	min-height: 58px;
	padding: 8px;
	border: 2px solid #cfe8d6;
	border-radius: 14px;
	background: #f7fbf8;
	color: #234;
	font-family: inherit;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.gfa-period-tab__label {
	font-size: 0.9rem;
	font-weight: 800;
}

.gfa-period-tab small {
	font-size: 0.68rem;
	font-weight: 600;
	color: var(--gfa-muted);
}

.gfa-period-tab.is-active {
	border-color: var(--gfa-green);
	background: linear-gradient(180deg, #eaf8ef, #d4efdc);
	box-shadow: 0 2px 0 rgba(27, 122, 61, 0.2);
	transform: translateY(-1px);
}

.gfa-schedule__scroll {
	margin-top: 10px;
	max-height: min(38vh, 280px);
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	border: 1px solid #b7e4c7;
	border-radius: 14px;
	background: #f9fffb;
}

.gfa-schedule__scroll.is-loading {
	opacity: 0.85;
}

.gfa-schedule__loading {
	margin: 20px 12px;
	text-align: center;
	font-weight: 700;
	color: #0b6b3a;
}

.gfa-schedule__list {
	list-style: none;
	margin: 0;
	padding: 8px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.gfa-schedule__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 12px;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #fff;
}

.gfa-schedule__item.is-available {
	border-color: #8fd4a8;
	background: #eaf8ef;
}

.gfa-schedule__item.is-pending {
	border-color: #f0d48a;
	background: var(--gfa-yellow-bg);
}

.gfa-schedule__item.is-booked {
	border-color: #f1c0c0;
	background: var(--gfa-red-bg);
}

.gfa-schedule__time-main {
	display: block;
	font-size: 0.95rem;
	font-weight: 800;
}

.gfa-schedule__time-range {
	display: block;
	font-size: 0.75rem;
	color: var(--gfa-muted);
	font-weight: 600;
}

.gfa-schedule__state {
	margin: 0 0 6px;
	font-size: 0.82rem;
	font-weight: 600;
	word-break: break-word;
}

.gfa-schedule__book-btn {
	min-height: 36px;
	padding: 6px 14px;
	border: 0;
	border-radius: 999px;
	background: var(--gfa-green-bright);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 800;
	cursor: pointer;
	font-family: inherit;
}

.gfa-schedule__book-btn:active {
	transform: scale(0.97);
}

/* —— Book card (sample) —— */
.gfa-book-card {
	position: relative;
	overflow: hidden;
	background: #fff;
	border: 5px solid var(--gfa-green);
	border-radius: 26px;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
	padding: 0 16px 22px;
}

.gfa-logo-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 -16px 16px;
	padding: 18px 20px 16px;
	border-radius: 20px 20px 0 0;
	background:
		radial-gradient(ellipse at 50% 0%, rgba(46, 164, 79, 0.28), transparent 55%),
		linear-gradient(180deg, #0a0a0a 0%, #111 55%, #0d0d0d 100%);
	border-bottom: 2px solid rgba(46, 164, 79, 0.45);
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.gfa-logo-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	text-decoration: none;
	line-height: 0;
	transition: opacity 0.15s ease, transform 0.15s ease;
}

.gfa-logo-link:hover,
.gfa-logo-link:focus {
	opacity: 0.92;
	transform: scale(1.02);
	outline: none;
}

.gfa-logo {
	display: block;
	width: min(100%, 280px);
	height: auto;
	max-height: 68px;
	object-fit: contain;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
}

@media (min-width: 760px) {
	.gfa-logo-bar {
		padding: 24px 28px 20px;
	}

	.gfa-logo {
		width: min(100%, 360px);
		max-height: 86px;
	}
}

.gfa-book-card__title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0 0 16px;
	font-size: clamp(1.35rem, 3vw, 1.7rem);
	font-weight: 800;
	text-align: center;
	color: #111;
}

.gfa-book-card__deco {
	font-size: 1.05rem;
	line-height: 1;
}

.gfa-book-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	align-items: start;
}

@media (min-width: 760px) {
	.gfa-book-grid {
		grid-template-columns: 1.15fr 0.95fr;
		gap: 20px;
	}
}

.gfa-field {
	display: block;
	margin: 0 0 12px;
}

.gfa-field__label {
	display: block;
	margin: 0 0 6px;
	font-size: 0.88rem;
	font-weight: 800;
	color: #1a1a1a;
}

.gfa-field__control {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 48px;
	padding: 0 12px;
	border-radius: 12px;
	border: 1px solid #b7e4c7;
	background: var(--gfa-mint);
}

.gfa-field__icon {
	display: inline-flex;
	color: #176b35;
	flex-shrink: 0;
}

.gfa-field__control input,
.gfa-field__control select {
	flex: 1;
	min-width: 0;
	border: 0;
	background: transparent;
	font: inherit;
	font-size: 0.98rem;
	font-weight: 600;
	color: #111;
	padding: 10px 0;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

.gfa-field__control select {
	cursor: pointer;
	background-image: linear-gradient(45deg, transparent 50%, #176b35 50%),
		linear-gradient(135deg, #176b35 50%, transparent 50%);
	background-position: calc(100% - 14px) calc(50% - 3px), calc(100% - 8px) calc(50% - 3px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 28px;
}

.gfa-slot-period {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-bottom: 8px;
}

.gfa-slot-pill {
	min-height: 40px;
	border: 2px solid #cfe8d6;
	border-radius: 999px;
	background: #f7fbf8;
	font-family: inherit;
	font-size: 0.88rem;
	font-weight: 800;
	cursor: pointer;
	color: #234;
}

.gfa-slot-pill.is-active {
	border-color: var(--gfa-green);
	background: #d4efdc;
	color: #0b6b3a;
}

/* —— Payment sidebar —— */
.gfa-pay-panel {
	padding: 14px;
	border-radius: 16px;
	border: 2px solid #7bc896;
	background: linear-gradient(180deg, #eefaf2 0%, #d8f0e0 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.gfa-pay-panel__title {
	margin: 0 0 12px;
	text-align: center;
	font-size: 1.05rem;
	font-weight: 800;
	color: #0d3b1f;
}

.gfa-pay-methods {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 14px;
}

.gfa-pay-method {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 58px;
	padding: 12px 10px;
	border-radius: 14px;
	border: 2px solid #cfe8d6;
	background: #fff;
	font-size: 0.88rem;
	font-weight: 800;
	line-height: 1.25;
	cursor: pointer;
	text-align: center;
	color: #234;
	transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
	-webkit-tap-highlight-color: transparent;
}

.gfa-pay-method span {
	display: block;
}

.gfa-pay-method input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.gfa-pay-method:hover {
	border-color: #7bc896;
	background: #f7fffa;
}

.gfa-pay-method.is-active {
	border-color: #1f9d55;
	background: linear-gradient(180deg, #eaf8ef 0%, #c8ebc9 100%);
	box-shadow:
		0 0 0 3px rgba(31, 157, 85, 0.28),
		0 4px 12px rgba(27, 122, 61, 0.14);
	color: #0b6b3a;
	transform: translateY(-1px);
}

.gfa-pay-method.is-active span {
	position: relative;
}

@media (min-width: 760px) {
	.gfa-pay-method {
		min-height: 64px;
		font-size: 0.95rem;
		padding: 14px 12px;
	}
}

.gfa-book-card .gfa-date-badge {
	margin: 0 auto 16px;
}

.gfa-pay-scroll-hint {
	margin: 0 0 8px;
	text-align: center;
	font-size: 0.72rem;
	font-weight: 700;
	color: #0b6b3a;
	letter-spacing: 0.03em;
}

.gfa-pay-scroll {
	max-height: 168px;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 12px;
	padding: 2px 4px 2px 0;
	scroll-behavior: smooth;
}

.gfa-pay-scroll::-webkit-scrollbar {
	width: 5px;
}

.gfa-pay-scroll::-webkit-scrollbar-thumb {
	background: #7bc896;
	border-radius: 999px;
}

.gfa-pay-account-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 12px;
	background: #fff;
	border: 2px solid #cfe8d6;
	flex-shrink: 0;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
	-webkit-tap-highlight-color: transparent;
}

.gfa-pay-account-card input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.gfa-pay-account-card:hover {
	border-color: #7bc896;
	background: #f7fffa;
}

.gfa-pay-account-card:has(input:checked),
.gfa-pay-account-card.is-selected {
	border-color: #1f9d55;
	background: linear-gradient(180deg, #eaf8ef 0%, #d4efdc 100%);
	box-shadow:
		0 0 0 3px rgba(31, 157, 85, 0.22),
		0 4px 12px rgba(27, 122, 61, 0.12);
	transform: translateY(-1px);
}

.gfa-pay-account-card__check {
	display: none;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #1f9d55;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 900;
	flex-shrink: 0;
}

.gfa-pay-account-card:has(input:checked) .gfa-pay-account-card__check,
.gfa-pay-account-card.is-selected .gfa-pay-account-card__check {
	display: inline-flex;
}

.gfa-pay-account-card__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	color: #fff;
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: -0.02em;
	flex-shrink: 0;
}

.gfa-pay-account-card__logo--jazz {
	background: linear-gradient(135deg, #e31c23, #c41017);
	font-size: 0.75rem;
}

.gfa-pay-account-card__logo--easy {
	background: linear-gradient(135deg, #21b573, #178a56);
}

.gfa-pay-account-card__logo--sada {
	background: linear-gradient(135deg, #2d6cdf, #1b4fb5);
}

.gfa-pay-account-card__logo--hbl {
	background: linear-gradient(135deg, #0b6b3a, #085230);
	font-size: 0.62rem;
}

.gfa-pay-account-card__body {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.gfa-pay-account-card__body strong {
	font-size: 0.9rem;
	color: #111;
}

.gfa-pay-account-card__body span {
	font-size: 0.92rem;
	font-weight: 800;
	color: #0b6b3a;
	letter-spacing: 0.02em;
	word-break: break-all;
}

.gfa-pay-account-card__body em {
	font-size: 0.7rem;
	font-style: normal;
	font-weight: 600;
	color: #667;
}

.gfa-pay-amount {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0 0 12px;
	padding: 10px;
	border-radius: 12px;
	background: #fff;
	border: 1px solid #b7e4c7;
}

.gfa-pay-amount strong {
	font-size: 1.15rem;
	font-weight: 900;
	color: #111;
}

.gfa-pay-amount__coins {
	font-size: 1.2rem;
}

.gfa-pay-input {
	display: block;
	margin: 0 0 10px;
}

.gfa-pay-input span {
	display: block;
	margin-bottom: 4px;
	font-size: 0.72rem;
	font-weight: 700;
	color: #0b6b3a;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.gfa-pay-input input {
	width: 100%;
	min-height: 42px;
	padding: 8px 12px;
	border: 1px solid #b7e4c7;
	border-radius: 10px;
	background: #fff;
	font: inherit;
	font-weight: 700;
}

.gfa-upload-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 46px;
	padding: 10px 12px;
	border-radius: 12px;
	border: 2px dashed #1f9d55;
	background: #fff;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 800;
	color: #0b6b3a;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.gfa-upload-btn:hover,
.gfa-upload-btn.is-ready {
	background: #eaf8ef;
	border-style: solid;
}

.gfa-pay-cash-note {
	margin: 8px 0 0;
	padding: 10px;
	border-radius: 10px;
	background: #fff8e6;
	border: 1px solid #f0d48a;
	font-size: 0.82rem;
	font-weight: 600;
	color: #996800;
	text-align: center;
}

.gfa-pay-cash-note[hidden],
.gfa-pay-advance[hidden] {
	display: none !important;
}

.gfa-book-form__error {
	margin: 12px 0 0;
	padding: 10px 12px;
	border-radius: 10px;
	background: var(--gfa-red-bg);
	border: 1px solid #f1c0c0;
	color: var(--gfa-red);
	font-size: 0.88rem;
	font-weight: 700;
	text-align: center;
}

.gfa-book-form__error[hidden] {
	display: none !important;
}

.gfa-book-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 18px;
	flex-wrap: wrap;
}

.gfa-request-btn {
	flex: 1 1 220px;
	max-width: 360px;
	min-height: 54px;
	padding: 12px 20px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(180deg, #2ea44f, #176b35);
	color: #fff;
	font-family: inherit;
	font-size: 1.05rem;
	font-weight: 900;
	letter-spacing: 0.02em;
	cursor: pointer;
	box-shadow: 0 6px 0 #0f4a24, 0 10px 18px rgba(0, 0, 0, 0.18);
}

.gfa-request-btn:active {
	transform: translateY(2px);
	box-shadow: 0 3px 0 #0f4a24, 0 6px 12px rgba(0, 0, 0, 0.16);
}

.gfa-request-btn:disabled {
	opacity: 0.7;
	cursor: wait;
}

.gfa-confirm-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	color: #1f9d55;
}

.gfa-confirm-badge__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 3px solid #1f9d55;
	font-size: 1.1rem;
	font-weight: 900;
	line-height: 1;
}

.gfa-confirm-badge__text {
	font-size: 0.65rem;
	font-weight: 900;
	letter-spacing: 0.08em;
}

/* —— Slot availability overview —— */
.gfa-overview {
	margin: 20px 0 8px;
	padding: 14px 12px 12px;
	border-radius: 16px;
	border: 2px solid #b7e4c7;
	background: linear-gradient(180deg, #f7fffa 0%, #eaf8ef 100%);
}

.gfa-overview__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px 16px;
	margin-bottom: 12px;
}

.gfa-overview__head-text {
	flex: 1 1 180px;
	min-width: 0;
	text-align: left;
}

.gfa-overview__title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 900;
	color: #0d3b1f;
}

.gfa-overview__sub {
	margin: 4px 0 0;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--gfa-muted);
}

.gfa-overview__date {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 4px;
	flex: 0 1 200px;
	min-width: 160px;
	padding: 10px 12px;
	border-radius: 12px;
	border: 2px solid #1f9d55;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(31, 157, 85, 0.12);
}

.gfa-overview__date-label {
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #0b6b3a;
}

.gfa-overview__date-input {
	width: 100%;
	min-height: 38px;
	border: 0;
	background: transparent;
	font: inherit;
	font-size: 0.95rem;
	font-weight: 800;
	color: #111;
	outline: none;
}

.gfa-overview__date-badge {
	font-size: 0.75rem;
	font-weight: 700;
	color: #0d3b1f;
}

@media (min-width: 760px) {
	.gfa-overview__head-text {
		text-align: left;
	}

	.gfa-overview__date {
		flex: 0 0 220px;
	}
}

.gfa-overview__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

@media (min-width: 760px) {
	.gfa-overview__grid {
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}
}

.gfa-overview__section {
	border-radius: 14px;
	border: 1px solid #cfe8d6;
	background: #fff;
	overflow: hidden;
}

.gfa-overview__section-head {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	background: #eaf8ef;
	border-bottom: 1px solid #cfe8d6;
}

.gfa-overview__section-head strong {
	display: block;
	font-size: 0.92rem;
	font-weight: 800;
	color: #0d3b1f;
}

.gfa-overview__section-head small {
	display: block;
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--gfa-muted);
}

.gfa-overview__section-icon {
	font-size: 1.15rem;
	line-height: 1;
}

.gfa-overview__table-wrap {
	max-height: 240px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.gfa-overview__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.82rem;
}

.gfa-overview__table th {
	position: sticky;
	top: 0;
	z-index: 1;
	padding: 8px 10px;
	text-align: left;
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #0b6b3a;
	background: #f3fff6;
	border-bottom: 1px solid #d8eee0;
}

.gfa-overview__table td {
	padding: 8px 10px;
	border-bottom: 1px solid #eef5f0;
	vertical-align: middle;
}

.gfa-overview__table tr:last-child td {
	border-bottom: 0;
}

.gfa-overview__table tr.is-available {
	background: #f4fcf7;
}

.gfa-overview__table tr.is-pending {
	background: #fffaf0;
}

.gfa-overview__table tr.is-booked {
	background: #fff7f7;
}

.gfa-overview__time {
	font-weight: 800;
	color: #111;
	white-space: nowrap;
}

.gfa-overview__status {
	display: inline-block;
	font-weight: 700;
	line-height: 1.3;
	word-break: break-word;
}

.gfa-overview__status--pending {
	color: #996800;
}

.gfa-overview__status--booked {
	color: #c81e1e;
}

.gfa-overview__pick {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 10px;
	border: 0;
	border-radius: 999px;
	background: #1f9d55;
	color: #fff;
	font-family: inherit;
	font-size: 0.78rem;
	font-weight: 800;
	cursor: pointer;
	white-space: nowrap;
}

.gfa-overview__pick:active {
	transform: scale(0.97);
}

.gfa-card-ball {
	position: absolute;
	font-size: 1.1rem;
	opacity: 0.85;
	pointer-events: none;
	animation: gfa-bounce 2.2s ease-in-out infinite;
}

.gfa-card-ball--bl {
	left: 10px;
	bottom: 12px;
}

.gfa-card-ball--tr {
	right: 14px;
	top: 88px;
}

@keyframes gfa-bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}

/* —— Success / edit / invoice / modal —— */
.gfa-schedule__success {
	margin: 14px 0 0;
	padding: 14px;
	border-radius: 12px;
	border: 1px solid #8fd4a8;
	background: #eaf8ef;
	color: #0b6b3a;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
}

.gfa-schedule__success-text {
	margin: 0;
	white-space: pre-line;
}

.gfa-schedule__success[hidden] {
	display: none !important;
}

.gfa-wa-actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 14px;
}

.gfa-wa-actions[hidden] {
	display: none !important;
}

.gfa-wa-actions__label {
	margin: 0 0 2px;
	font-size: 0.8rem;
	font-weight: 600;
	color: #0b6b3a;
}

.gfa-wa-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 11px 14px;
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 800;
	text-decoration: none !important;
	color: #fff !important;
}

.gfa-wa-btn--app { background: #25d366; }
.gfa-wa-btn--web { background: #128c7e; }

.gfa-schedule__edit-bar {
	margin: 0 0 14px;
	padding: 12px;
	border-radius: 12px;
	border: 1px solid #f0d48a;
	background: #fff8e6;
	text-align: center;
}

.gfa-schedule__edit-bar[hidden] {
	display: none !important;
}

.gfa-schedule__edit-summary {
	margin: 0 0 10px;
	font-size: 0.9rem;
	font-weight: 700;
	color: #996800;
	word-break: break-word;
}

.gfa-schedule__edit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	padding: 12px 16px;
	border: 0;
	border-radius: 999px;
	background: #b78103;
	color: #fff;
	font-size: 0.95rem;
	font-weight: 800;
	cursor: pointer;
	font-family: inherit;
}

.gfa-invoice-wrap {
	margin-top: 12px;
}

.gfa-invoice-wrap[hidden] {
	display: none !important;
}

.gfa-invoice {
	padding: 16px;
	border-radius: 14px;
	border: 2px solid #1f9d55;
	background: #fff;
	color: #111;
}

.gfa-invoice__brand {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #0b6b3a;
}

.gfa-invoice__title {
	margin: 4px 0 8px;
	font-size: 1.2rem;
}

.gfa-invoice__body p {
	margin: 6px 0;
	font-size: 0.9rem;
}

.gfa-invoice__foot {
	margin: 12px 0 0;
	font-size: 0.8rem;
	color: #555;
}

.gfa-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 12px;
}

.gfa-modal[hidden] {
	display: none !important;
}

.gfa-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.gfa-modal__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 440px;
	max-height: 85vh;
	overflow: auto;
	padding: 18px 16px 20px;
	border-radius: 18px 18px 12px 12px;
	background: #fff;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.gfa-modal__close {
	position: absolute;
	top: 8px;
	right: 10px;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: #f3f4f6;
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
}

.gfa-modal__title {
	margin: 0 28px 8px 0;
	font-size: 1.15rem;
	font-weight: 800;
}

.gfa-modal__slot {
	margin: 0 0 12px;
	font-size: 0.88rem;
	color: #555;
}

.gfa-modal__error {
	margin: 0 0 10px;
	padding: 8px 10px;
	border-radius: 8px;
	background: #fff1f1;
	color: #c81e1e;
	font-size: 0.85rem;
	font-weight: 700;
}

.gfa-modal__error[hidden] {
	display: none !important;
}

.gfa-edit-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-height: 55vh;
	overflow-y: auto;
}

.gfa-edit-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 12px;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #fff;
}

.gfa-edit-row--available {
	border-color: #b7e4c7;
	background: #eaf8ef;
}

.gfa-edit-row.is-current {
	outline: 2px solid #b78103;
}

.gfa-edit-select {
	min-height: 40px;
	padding: 8px 14px;
	border: 0;
	border-radius: 999px;
	background: #28a745;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 800;
	cursor: pointer;
	font-family: inherit;
}

.gfa-edit-empty {
	margin: 0;
	padding: 16px 10px;
	text-align: center;
	font-weight: 600;
	color: #666;
}

body.gfa-modal-open {
	overflow: hidden;
}

@media (min-width: 760px) {
	.gfa-modal {
		align-items: center;
	}

	.gfa-modal__dialog {
		border-radius: 18px;
	}

	.gfa-schedule__scroll {
		max-height: 320px;
	}
}
