/* =============================================================================
   HAWKS MyTime — Complete Profile
   ============================================================================= */

/* Paint <body> on the booking-app and complete-profile pages so the area
   behind the footer matches the page bg (the page-builder ACF only paints
   the content wrapper, leaving a seam at the top of .site-footer). */
body.page-template-default:has(#hawks-complete-profile-wrap),
body.page-template-default:has(#hawks-booking-app) {
	background-color: #e8e6df;
}

.hawks-profile-wrap {
	max-width: 720px;
	margin: 0 auto;
}

/* -----------------------------------------------------------------------------
   Checkout two-column layout (complete-profile + register pages)
   ----------------------------------------------------------------------------- */

.hawks-checkout-header {
	margin-bottom: 1.5rem;
}

.hawks-checkout-layout {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
}

.hawks-checkout-left {
	flex: 0 0 64%;
	max-width: 64%;
	min-width: 0;
}

.hawks-checkout-right {
	flex: 1;
	min-width: 0;
}

.hawks-checkout-summary-card {
	background-color: #ffffff;
	padding: 24px;
	border-radius: 10px;
	border-top: 8px solid var(--hawks-orange);
}

.hawks-checkout-summary-card .hawks-detail-card-title {
	margin: 0;
}

@media (max-width: 991px) {
	.hawks-checkout-layout {
		flex-direction: column;
	}
	.hawks-checkout-left,
	.hawks-checkout-right {
		flex: none;
		max-width: 100%;
		width: 100%;
	}
}

/* -----------------------------------------------------------------------------
   Tab nav
   ----------------------------------------------------------------------------- */

.hawks-profile-tabs {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.hawks-profile-tab {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	background: none;
	border: none;
	cursor: pointer;
}

.hawks-profile-tab:disabled {
	cursor: default;
}

.hawks-profile-tab-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 6px;
	background: #ffffff;
	font-weight: 700;
	flex-shrink: 0;
}

.hawks-profile-tab-label {
	font-weight: 700;
}

.hawks-profile-tab.is-active .hawks-profile-tab-number {
	background: var(--hawks-green);
}

.hawks-profile-tab.is-active .hawks-profile-tab-label {
	color: var(--hawks-peach);
}

.hawks-profile-tab.is-complete .hawks-profile-tab-number {
	background: var(--hawks-green) url('../images/check-circle.svg') center / 1.25rem 1.25rem no-repeat;
	color: transparent;
}

.hawks-profile-tab.is-complete .hawks-profile-tab-label {
	color: var(--hawks-purple);
}

.hawks-profile-tab-divider {
	display: inline-block;
	width: 0.5rem;
	height: 0.5rem;
	border-top: 2px solid #000000;
	border-right: 2px solid #000000;
	transform: rotate(45deg);
	flex-shrink: 0;
	margin: 0 0.25rem;
}

.hawks-profile-step-title {
	margin: 0 0 1rem;
}

@media (max-width: 768px) {
	.hawks-profile-tab {
		flex-direction: column;
		gap: 0.25rem;
		padding: 0.5rem 0.25rem;
	}
	.hawks-profile-tab-number {
		width: 1.5rem;
		height: 1.5rem;
		font-size: 0.875rem;
	}
	.hawks-profile-tab-label {
		text-align: center;
		font-size: 0.8125rem;
		line-height: 1.2;
	}
}

/* -----------------------------------------------------------------------------
   Mobile summary strip — visible ≤768px, jumps to summary card on tap
   ----------------------------------------------------------------------------- */

.hawks-mobile-summary-strip {
	display: none;
}

@media (max-width: 768px) {
	.hawks-mobile-summary-strip {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.25rem;
		width: 100vw;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		margin-top: 0;
		margin-bottom: 1rem;
		padding: 0.75rem 1rem;
		background: var(--hawks-dark-purple);
		border: none;
		border-radius: 0;
		text-align: left;
		cursor: pointer;
	}
	.hawks-mobile-summary-strip:focus-visible {
		outline: 2px solid var(--hawks-peach);
		outline-offset: -2px;
	}
	.hawks-mobile-summary-strip-title {
		color: var(--hawks-peach);
		font-weight: 700;
		font-size: 1rem;
		line-height: 1.2;
	}
	.hawks-mobile-summary-strip-names {
		color: #ffffff;
		font-size: 0.875rem;
		line-height: 1.3;
		word-break: break-word;
	}
	.hawks-mobile-summary-strip-names.is-empty {
		color: #B3B3B3;
	}
}

/* -----------------------------------------------------------------------------
   Account Information form — contact fieldsets
   ----------------------------------------------------------------------------- */

.hawks-contact-block {
	background: #ffffff;
	border: none;
	border-radius: 10px;
	padding: 1.5rem;
	margin: 0 0 1rem;
}

.hawks-contact-legend,
.hawks-contact-section-title {
	font-family: inherit;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	color: inherit;
	letter-spacing: normal;
	text-transform: none;
	padding: 0;
	margin-top: 24px;
	margin-bottom: 0;
}

.hawks-contact-legend {
	margin-bottom: 8px;
}

.hawks-form-grid {
	display: grid;
	gap: 1rem;
	align-items: center;
}

.hawks-form-grid--2col {
	grid-template-columns: 1fr 1fr;
}

.hawks-form-grid--3col {
	grid-template-columns: 1fr 1fr 1fr;
}

.hawks-form-grid .hawks-form-row {
	display: flex;
	align-items: center;
	margin: 0;
}

.hawks-contact-block .hawks-form-row {
	position: relative;
}

.hawks-contact-block .hawks-form-input,
.hawks-contact-block .hawks-form-select,
.hawks-modal-panel input.hawks-form-input,
.hawks-modal-panel .hawks-form-select {
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	height: 2.75rem;
	padding: 0.5rem 0.75rem;
	line-height: 1.25;
	font-size: 1rem;
	border: 2px solid #B3B3B3;
	border-radius: 6px;
	background: #ffffff;
	transition: padding 150ms ease;
}

.hawks-modal-panel textarea.hawks-form-input {
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 0.5rem 0.75rem;
	line-height: 1.4;
	font-size: 1rem;
	font-family: inherit;
	border: 2px solid #B3B3B3;
	border-radius: 6px;
	background: #ffffff;
	resize: vertical;
	transition: padding 150ms ease;
}

.hawks-modal-panel .hawks-form-row {
	position: relative;
}

/* Textarea overlay sits on line 1 instead of the geometric middle of a tall box.
   Scoped to :not(--filled):not(:focus-within) so it doesn't outrank the float-to-top
   rule below (which would otherwise lose to :has(textarea)'s specificity). */
.hawks-modal-panel .hawks-form-row:has(textarea):not(.hawks-form-row--filled):not(:focus-within) .hawks-input-label-overlay {
	top: 1.2rem;
}

/* Floating label: when the field is focused or filled, slide the overlay to
   the top of the input as a small caption (matches the Birth Date treatment). */
.hawks-modal-panel .hawks-form-row--filled .hawks-input-label-overlay,
.hawks-modal-panel .hawks-form-row:focus-within .hawks-input-label-overlay,
.hawks-contact-block .hawks-form-row--filled .hawks-input-label-overlay,
.hawks-contact-block .hawks-form-row:focus-within .hawks-input-label-overlay {
	top: 0.35rem;
	transform: none;
	font-size: 0.7rem;
	line-height: 1;
	color: #6b7280;
	opacity: 1;
}

/* Make room for the floated label so typed text doesn't overlap it. */
.hawks-modal-panel .hawks-form-row--filled input.hawks-form-input,
.hawks-modal-panel .hawks-form-row:focus-within input.hawks-form-input,
.hawks-modal-panel .hawks-form-row--filled textarea.hawks-form-input,
.hawks-modal-panel .hawks-form-row:focus-within textarea.hawks-form-input,
.hawks-contact-block .hawks-form-row--filled .hawks-form-input,
.hawks-contact-block .hawks-form-row:focus-within .hawks-form-input,
.hawks-contact-block .hawks-form-row--filled .hawks-form-select,
.hawks-contact-block .hawks-form-row:focus-within .hawks-form-select {
	padding-top: 1.1rem;
	padding-bottom: 0.25rem;
}

/* Standalone rows (allergies, friend/sibling) — direct children of the panel,
   not inside the .hawks-form-grid. The grid handles its own spacing via gap. */
.hawks-modal-panel > .hawks-form-row {
	margin-top: 1rem;
}

.hawks-modal-panel .hawks-form-fieldset > .hawks-form-row + .hawks-form-row,
.hawks-modal-panel .hawks-form-fieldset > .hawks-form-row + .hawks-form-grid,
.hawks-modal-panel .hawks-form-fieldset > .hawks-form-grid + .hawks-form-row {
	margin-top: 1rem;
}

.hawks-modal-panel .hawks-form-fieldset {
	margin-top: 1.25rem;
}

/* Birth-date row: render "Birth Date *" as a small caption inside the input
   itself, stacked above the native mm/dd/yyyy hint. The input keeps the
   2.75rem height of its siblings; we just push the date display down with
   extra top padding and absolutely-position the label inside the top of the
   field. */
.hawks-modal-panel input[type="date"].hawks-form-input {
	padding-top: 1.1rem;
	padding-bottom: 0.25rem;
	line-height: 1;
}

.hawks-modal-panel .hawks-form-row:has(input[type="date"]) .hawks-input-label-overlay {
	top: 0.35rem;
	left: 0.75rem;
	transform: none;
	opacity: 1;
	font-size: 0.7rem;
	line-height: 1;
	color: #6b7280;
}

.hawks-modal-panel .hawks-form-row:has(input[type="date"]):focus-within .hawks-input-label-overlay,
.hawks-modal-panel .hawks-form-row--filled:has(input[type="date"]) .hawks-input-label-overlay {
	opacity: 1;
}

.hawks-input-label-overlay {
	position: absolute;
	left: calc(0.75rem + 2px);
	top: 50%;
	transform: translateY(-50%);
	color: #3C3C43;
	font-size: 1rem;
	line-height: 1.25;
	pointer-events: none;
	opacity: 1;
	transition: top 150ms ease, transform 150ms ease, font-size 150ms ease, color 150ms ease;
}

.hawks-input-asterisk {
	color: var(--hawks-peach);
}

.hawks-contact-block .hawks-form-row:has(input[id$="_address"]) {
	margin-bottom: 1rem;
}

.hawks-contact-block .hawks-input-error {
	border-color: var(--hawks-peach);
}

.hawks-contact-block .hawks-field-error {
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 2px;
	font-size: 0.75rem;
	color: var(--hawks-peach);
	line-height: 1.2;
	pointer-events: none;
	white-space: nowrap;
}

.hawks-contact-disclaimer {
	margin: 0 0 0.75rem;
	font-size: 0.85rem;
	color: #6b7280;
}

.hawks-field-locked {
	background: #f3f4f6;
	color: #6b7280;
	cursor: not-allowed;
}

.hawks-locked-notice {
	margin: 0.5rem 0 0;
	font-size: 0.8rem;
	color: var(--hawks-peach);
	font-weight: 500;
}

#hawks-complete-profile-wrap input[type="checkbox"],
#hawks-participant-modal input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 22px;
	height: 22px;
	border: 2px solid var(--hawks-purple);
	border-radius: 0;
	background-color: #ffffff;
	cursor: pointer;
	margin: 0;
	position: relative;
	flex-shrink: 0;
	vertical-align: middle;
}

#hawks-complete-profile-wrap input[type="checkbox"]:checked::after,
#hawks-participant-modal input[type="checkbox"]:checked::after {
	content: '';
	position: absolute;
	top: 0;
	left: 5px;
	width: 6px;
	height: 12px;
	border: solid var(--hawks-purple);
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}

.hawks-form-label--checkbox {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
}

.hawks-form-label--checkbox a {
	color: var(--hawks-purple);
	text-decoration: none;
}

.hawks-field-error--checkbox {
	display: block;
	margin-top: 0.25rem;
	font-size: 0.75rem;
	color: var(--hawks-peach);
	line-height: 1.2;
}

.hawks-form-actions--full {
	margin-top: 1.5rem;
}

.hawks-btn--full {
	width: 100%;
	box-sizing: border-box;
}

.hawks-btn--peach {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	background: var(--hawks-peach);
	color: #ffffff;
	border: none;
	border-radius: 50px;
	padding: 0.875rem 1.25rem;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.15s ease;
}

.hawks-btn--peach:hover:not(:disabled) {
	background: #e85e58;
}

.hawks-btn--peach:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.hawks-btn--peach-sm {
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
}

.hawks-modal-back-btn {
	margin-right: auto;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: none;
	color: var(--hawks-purple);
	border: none;
	border-radius: 0;
	padding: 0.5rem 0;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: color 0.15s ease;
}

.hawks-modal-back-btn:hover:not(:disabled) {
	color: var(--hawks-dark-purple);
	text-decoration: none;
}

.hawks-btn-arrow {
	display: inline-block;
	font-size: 1.25rem;
	line-height: 1;
	font-weight: 400;
}

.hawks-contact-toggle-row {
	background: #ffffff;
	border-radius: 10px;
	padding: 1rem 1.5rem;
	margin: 0 0 1rem;
}

.hawks-contact-toggle-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	font-weight: 600;
	margin: 0;
}

/* When the optional contact is enabled, merge the toggle row visually
   with the fieldset below into a single continuous white card. */
.hawks-contact-toggle-row:has(input:checked) {
	border-radius: 10px 10px 0 0;
	margin-bottom: 0;
}

.hawks-contact-toggle-row:has(input:checked) + .hawks-contact-block {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

@media (max-width: 600px) {
	.hawks-form-grid--2col,
	.hawks-form-grid--3col {
		grid-template-columns: 1fr;
	}
}

/* -----------------------------------------------------------------------------
   Step 2 — Participants
   ----------------------------------------------------------------------------- */

.hawks-participants-wrap {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	background: #ffffff;
	border-radius: 10px;
	padding: 1.5rem;
	margin: 0 0 1rem;
}

.hawks-participants-intro {
	margin: 0;
	font-weight: 700;
}

.hawks-participants-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.hawks-participant-card {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	width: 100%;
	padding: 0.75rem 1rem;
	background: #F5F5F5;
	border: 2px solid transparent;
	border-radius: 10px;
	cursor: pointer;
	transition: border-color 0.15s ease;
}

.hawks-participant-card:has(.hawks-participant-card-toggle:checked) {
	border-color: var(--hawks-purple);
}

/* Specificity has to beat #hawks-complete-profile-wrap input[type="checkbox"]
   above (line ~326), which sets size/border/background and draws a purple
   checkmark via :checked::after. We win with ID + 2 classes, and zero out the
   inherited ::after so only the SVG checkmark renders. */
#hawks-complete-profile-wrap .hawks-participant-card .hawks-participant-card-toggle,
.hawks-participant-card .hawks-participant-card-toggle {
	-webkit-appearance: none;
	appearance: none;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin: 0;
	padding: 0;
	border: 2px solid #c0c0c0;
	border-radius: 3px;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 12px;
	cursor: pointer;
	position: relative;
}

#hawks-complete-profile-wrap .hawks-participant-card .hawks-participant-card-toggle:checked,
.hawks-participant-card .hawks-participant-card-toggle:checked {
	background-color: var(--hawks-peach);
	border-color: var(--hawks-peach);
	background-image: url( "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M3 8.5l3.5 3.5L13 5'/></svg>" );
}

#hawks-complete-profile-wrap .hawks-participant-card .hawks-participant-card-toggle:checked::after,
.hawks-participant-card .hawks-participant-card-toggle:checked::after {
	content: none;
}

.hawks-participant-card-name {
	flex: 1;
	margin: 0;
	cursor: pointer;
}

#hawks-add-participant-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	align-self: flex-start;
	border: 2px solid var(--hawks-peach);
	padding: 0.5rem 1.25rem;
	color: var(--hawks-purple);
	background-color: transparent;
	font-weight: 700;
	border-radius: 50px;
}

.hawks-btn-plus {
	font-size: 2rem;
	line-height: 1;
	font-weight: 400;
}

/* -----------------------------------------------------------------------------
   Add Participant modal — overlay
   ----------------------------------------------------------------------------- */

.hawks-modal-overlay {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	background: rgba( 0, 0, 0, 0.5 );
}

/* -----------------------------------------------------------------------------
   Add Participant modal — panel
   ----------------------------------------------------------------------------- */

.hawks-modal {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 640px;
	max-height: 90vh;
	overflow: hidden;
	border-radius: 4px;
	background: #fff;
}

.hawks-modal-header {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0.5rem 0.75rem;
	flex-shrink: 0;
}

.hawks-modal-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	padding: 0 0.25rem;
}

/* -----------------------------------------------------------------------------
   Modal checkbox groups and fieldsets
   ----------------------------------------------------------------------------- */

.hawks-checkbox-group,
.hawks-form-fieldset {
	border: none;
	margin: 0 0 1rem;
	padding: 0;
}

.hawks-checkbox-group-legend {
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.hawks-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 0.4rem;
	cursor: pointer;
}

.hawks-checkbox-label input[type="checkbox"] {
	flex-shrink: 0;
	margin-top: 0.15em;
}

/* -----------------------------------------------------------------------------
   Add Participant modal — progress bar
   ----------------------------------------------------------------------------- */

.hawks-modal-progress {
	height: 4px;
	background: #e0e0e0;
	flex-shrink: 0;
	margin: 0 1.25rem;
	border-radius: 2px;
	overflow: hidden;
}

.hawks-modal-progress-fill {
	height: 100%;
	background: var(--hawks-peach);
	transition: width 0.25s ease;
}

/* -----------------------------------------------------------------------------
   Add Participant modal — body and panels
   ----------------------------------------------------------------------------- */

.hawks-modal-body {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 1.25rem;
}

.hawks-modal-panel-title {
	margin: 0;
	padding: 0.25rem 1.25rem 0.75rem;
	font-size: 1.1rem;
	font-weight: 700;
}

/* -----------------------------------------------------------------------------
   Add Participant modal — inline form error (above the footer)
   ----------------------------------------------------------------------------- */

.hawks-modal-overlay .hawks-form-error {
	padding: 0 1.25rem;
}

/* -----------------------------------------------------------------------------
   Add Participant modal — footer
   ----------------------------------------------------------------------------- */

.hawks-modal-footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.75rem;
	padding: 1rem 1.25rem;
	flex-shrink: 0;
}

/* -----------------------------------------------------------------------------
   Consent modal — scrollable policy text boxes
   ----------------------------------------------------------------------------- */

.hawks-consent-scroll-box {
	height: 180px;
	overflow-y: auto;
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 0.75rem 1rem;
	font-size: 0.85rem;
	line-height: 1.5;
	background: #fafafa;
	margin-top: 0.5rem;
}

.hawks-consent-scroll-box p {
	margin: 0 0 0.6rem;
}

.hawks-consent-scroll-box p:last-child {
	margin-bottom: 0;
}

/* -----------------------------------------------------------------------------
   Consent modal — body text, radios, signature, footer error
   ----------------------------------------------------------------------------- */

#hawks-consent-modal .hawks-modal-body {
	color: #000;
}

#hawks-consent-modal .hawks-consent-section {
	margin-bottom: 1.5rem;
}

#hawks-consent-modal .hawks-consent-section-title {
	color: #000;
	font-weight: 700;
	padding: 0;
	margin: 0 0 0.5rem;
	font-size: 1rem;
}

#hawks-consent-modal .hawks-radio-label,
#hawks-consent-modal .hawks-checkbox-label {
	color: #000;
}

#hawks-consent-modal .hawks-radio-group {
	border: none;
	margin: 0 0 1rem;
	padding: 0;
}

#hawks-consent-modal .hawks-radio-label {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.5rem 0.75rem;
	margin: 0.35rem 0;
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.15s ease;
}

#hawks-consent-modal .hawks-radio-label:has(input:checked) {
	background-color: #F5F5F5;
}

#hawks-consent-modal input[type="radio"] {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	margin: 0;
	border: 2px solid #ccc;
	border-radius: 50%;
	appearance: none;
	-webkit-appearance: none;
	background-color: #fff;
	cursor: pointer;
}

#hawks-consent-modal input[type="radio"]:checked {
	background-color: var(--hawks-peach);
	border-color: var(--hawks-peach);
	box-shadow: inset 0 0 0 3px #fff;
}

#hawks-consent-modal .hawks-signature-wrap {
	display: flex;
	flex-direction: column;
	margin: 1rem 0;
}

#hawks-consent-modal .hawks-signature-label {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	margin-bottom: 0.5rem;
}

#hawks-consent-modal .hawks-signature-title {
	font-weight: 700;
	color: #000;
}

#hawks-consent-modal .hawks-signature-subtext {
	font-size: 0.85rem;
	color: #000;
}

#hawks-consent-modal .hawks-signature-canvas-wrap {
	border: 1px solid #B3B3B3;
	border-radius: 10px;
	overflow: hidden;
	display: block;
	background: #fff;
	width: 100%;
}

#hawks-consent-modal .hawks-signature-canvas {
	display: block;
	width: 100%;
	height: 150px;
	cursor: crosshair;
	touch-action: none;
}

#hawks-consent-modal #hawks-signature-clear-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	align-self: flex-end;
	background: none;
	border: none;
	padding: 0.5rem 0;
	margin-top: 0.5rem;
	color: var(--hawks-purple);
	font-weight: 600;
	cursor: pointer;
}

#hawks-consent-modal #hawks-signature-clear-btn img {
	width: 18px;
	height: 18px;
}

#hawks-consent-modal #hawks-consent-error {
	margin: 0 1.25rem 0.5rem;
	padding: 0;
	color: var(--hawks-peach);
	font-size: 0.9rem;
}

/* -----------------------------------------------------------------------------
   Summary card interior — shared by /register/ and /complete-profile/
   ----------------------------------------------------------------------------- */

.hawks-summary-divider {
	border: none;
	border-top: 1px solid #e5e7eb;
	margin: 14px 0;
}

.hawks-summary-dl {
	margin: 0;
	padding: 0;
}

.hawks-summary-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 0.5rem;
	margin: 6px 0;
}

.hawks-summary-row--total {
	margin-top: 10px;
}

.hawks-booking-notice {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 0 0 12px;
	padding: 14px 16px;
	background-color: var(--hawks-faded-orange);
	border-left: 4px solid var(--hawks-orange);
	border-radius: 8px;
	color: #4a2a00;
}

.hawks-booking-notice-icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--hawks-orange);
	margin-top: 1px;
}

.hawks-booking-notice-text {
	margin: 0;
	font-size: 0.85rem;
	line-height: 1.4;
	font-weight: 500;
}

.hawks-booking-notice-link {
	color: var(--hawks-purple);
	font-weight: 700;
	text-decoration: underline;
}

.hawks-booking-notice-link:hover,
.hawks-booking-notice-link:focus {
	color: var(--hawks-dark-purple);
}

.hawks-sibling-card {
	margin-top: 12px;
	background-color: var(--hawks-green);
	color: #000000;
	padding: 24px;
	border-radius: 10px;
}

.hawks-sibling-card-inner {
	display: flex;
	align-items: center;
	gap: 16px;
}

.hawks-sibling-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 6px;
	flex-shrink: 0;
	background-color: var(--hawks-purple);
}

.hawks-sibling-card-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.hawks-sibling-card-heading {
	display: block;
	font-size: 0.95rem;
	font-weight: 700;
}

.hawks-sibling-card-note {
	margin: 0;
	font-size: 0.82rem;
	opacity: 0.8;
}

.hawks-summary-label {
	font-size: 0.85rem;
	color: #6b7280;
	font-weight: 500;
}

.hawks-summary-value {
	font-size: 0.9rem;
	color: #111827;
	font-weight: 600;
	text-align: right;
}

.hawks-summary-total {
	font-size: 1rem;
	color: var(--hawks-orange, #e07000);
}

.hawks-summary-section {
	margin: 0;
}

.hawks-summary-participants {
	list-style: none;
	margin: 6px 0 0;
	padding: 0;
}

.hawks-summary-participant {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 6px 0;
	border-bottom: 1px solid #f3f4f6;
}

.hawks-summary-participant:last-child {
	border-bottom: none;
}

.hawks-summary-participant-info {
	display: flex;
	flex-direction: column;
	gap: 3px;
	flex: 1;
	min-width: 0;
}

.hawks-summary-participant-name {
	font-size: 0.875rem;
	font-weight: 600;
	color: #111827;
}

.hawks-summary-participant-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.hawks-summary-participant-tag {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 500;
	color: #15803d;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 10px;
	padding: 1px 7px;
	white-space: nowrap;
}

.hawks-summary-participant-pricing {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 1px;
	flex-shrink: 0;
}

.hawks-summary-participant-original {
	font-size: 0.75rem;
	color: #9ca3af;
	text-decoration: line-through;
}

.hawks-summary-participant-final {
	font-size: 0.9rem;
	font-weight: 600;
	color: #111827;
}

.hawks-summary-empty {
	font-size: 0.875rem;
	color: #9ca3af;
	padding: 2px 0;
}

.hawks-summary-promo-status {
	font-size: 0.8rem;
	padding: 4px 0;
}

.hawks-summary-promo-error {
	color: #dc2626;
}

.hawks-summary-promo-applied {
	color: #15803d;
	display: flex;
	align-items: center;
	gap: 6px;
}

.hawks-summary-promo-remove {
	background: none;
	border: none;
	padding: 0;
	font-size: 0.75rem;
	color: #6b7280;
	cursor: pointer;
	text-decoration: underline;
}

.hawks-summary-promo-remove:hover {
	color: #dc2626;
}

.hawks-summary-value--discount {
	color: #15803d;
}

.hawks-summary-row--gift-card .hawks-summary-label {
	display: flex;
	align-items: center;
	gap: 5px;
}

.hawks-summary-gift-card-code {
	font-size: 0.75rem;
	color: #9ca3af;
	font-weight: 400;
}

.hawks-summary-coupon {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.hawks-summary-coupon-row {
	display: flex;
	gap: 6px;
}

.hawks-summary-coupon-input {
	flex: 1;
	min-width: 0;
	font-size: 0.85rem;
	padding: 6px 10px;
}

/* ---- Payment scaffold card (matches .hawks-participants-wrap) ---- */
.hawks-payment-scaffold {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	background: #ffffff;
	border-radius: 10px;
	padding: 1.5rem;
	margin: 0 0 1rem;
}

/* ---- Payment mode toggle ---- */
.hawks-payment-mode-toggle {
	margin: 0;
}

.hawks-payment-mode-label {
	font-weight: 700;
	color: #000;
	margin: 0 0 0.5rem;
}

.hawks-payment-mode-options {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.hawks-payment-mode-option {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	padding: 0.75rem 1rem;
	border: 2px solid #B3B3B3;
	border-radius: 10px;
	background: #ffffff;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.hawks-payment-mode-option-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
	gap: 0.25rem;
}

.hawks-payment-mode-option-title {
	line-height: 1.25;
}

.hawks-payment-mode-option--selected {
	border-color: var(--hawks-purple);
	background: #F5F5F5;
}

.hawks-payment-mode-option--disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.hawks-payment-mode-option input[type="radio"] {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	margin: 0.0625rem 0 0;
	border: 2px solid #ccc;
	border-radius: 50%;
	appearance: none;
	-webkit-appearance: none;
	background-color: #fff;
	cursor: pointer;
}

.hawks-payment-mode-option input[type="radio"]:checked {
	background-color: var(--hawks-peach);
	border-color: var(--hawks-peach);
	box-shadow: inset 0 0 0 3px #fff;
}

.hawks-payment-mode-desc {
	margin: 0;
	font-size: 0.875rem;
	color: var(--color-text-muted, #6b7280);
	line-height: 1.4;
}

/* ---- Saved payment method radio group ---- */
.hawks-payment-method-wrap {
	margin: 0 0 1rem;
}

.hawks-payment-method-label {
	font-weight: 700;
	color: #000;
	margin: 0 0 0.5rem;
}

.hawks-payment-method-options {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.hawks-payment-method-option {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.75rem 1rem;
	border: 2px solid #B3B3B3;
	border-radius: 10px;
	background: #ffffff;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.hawks-payment-method-option--selected {
	border-color: var(--hawks-purple);
	background: #F5F5F5;
}

.hawks-payment-method-option input[type="radio"] {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	margin: 0;
	border: 2px solid #ccc;
	border-radius: 50%;
	appearance: none;
	-webkit-appearance: none;
	background-color: #fff;
	cursor: pointer;
}

.hawks-payment-method-option input[type="radio"]:checked {
	background-color: var(--hawks-peach);
	border-color: var(--hawks-peach);
	box-shadow: inset 0 0 0 3px #fff;
}

.hawks-payment-method-text {
	flex: 1;
}

.hawks-payment-method-text .hawks-saved-card-brand {
	text-transform: capitalize;
	font-weight: 600;
}

/* ---- Stripe split fields (cardNumber / cardExpiry / cardCvc) + ZIP input ---- */
/* Legacy alias — `.hawks-stripe-card-element` retained for any in-flight references. */
.hawks-stripe-field,
.hawks-stripe-card-element {
	width: 100%;
	box-sizing: border-box;
	min-height: 2.75rem;
	padding: 0.75rem;
	border: 2px solid #B3B3B3;
	border-radius: 6px;
	background: #ffffff;
}

.hawks-stripe-field.StripeElement--focus,
.hawks-stripe-card-element.StripeElement--focus {
	border-color: var(--hawks-purple);
}

.hawks-stripe-field.StripeElement--invalid,
.hawks-stripe-card-element.StripeElement--invalid,
.hawks-stripe-field--invalid {
	border-color: var(--hawks-peach);
}

/* Native ZIP input — visually mirrors the Stripe iframes. */
input.hawks-stripe-field--input {
	font-size: 16px;
	font-family: inherit;
	color: #3C3C43;
	line-height: 1.2;
	-webkit-appearance: none;
	appearance: none;
}

input.hawks-stripe-field--input::placeholder {
	color: #6b7280;
}

input.hawks-stripe-field--input:focus {
	outline: none;
	border-color: var(--hawks-purple);
}

/* Field group: stacks label above the field. */
.hawks-stripe-field-group {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
	margin-bottom: 0.75rem;
}

.hawks-stripe-field-group:last-child {
	margin-bottom: 0;
}

/* Row layout: Expiration | CVV | ZIP. */
.hawks-stripe-card-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0.75rem;
}

.hawks-stripe-card-row .hawks-stripe-field-group {
	margin-bottom: 0;
}

@media (max-width: 480px) {
	.hawks-stripe-card-row {
		grid-template-columns: 1fr;
	}
}

/* -----------------------------------------------------------------------
 * Post-booking confirmation screen ("You're Registered!")
 * Renders in place of .hawks-checkout-layout. The wrapping
 * #hawks-register-view / #hawks-complete-profile-wrap gets a .hawks-confirmed
 * class so the now-irrelevant header chrome can be hidden.
 * -------------------------------------------------------------------- */

.hawks-confirmed .hawks-checkout-header,
.hawks-confirmed .hawks-register-back {
	display: none;
}

/* -----------------------------------------------------------------------
 * Shared back-link affordance (used on /register/ and /program/ pages)
 * -------------------------------------------------------------------- */

.hawks-back-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--hawks-purple);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	padding: 0.5rem 0.75rem 0.5rem 0;
	transition: color 0.15s ease;
}

.hawks-back-link svg {
	transition: transform 0.15s ease;
}

.hawks-back-link:hover,
.hawks-back-link:focus {
	color: var(--hawks-dark-purple);
	text-decoration: none;
}

.hawks-back-link:hover svg,
.hawks-back-link:focus svg {
	transform: translateX(-3px);
}

.hawks-detail-back {
	margin: 0 0 0.5rem;
}

.hawks-confirmation-next {
	margin-bottom: 1.5rem;
}

.hawks-confirmation-row-label {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.hawks-confirmation-discount {
	margin-left: 1rem;
	font-size: 0.875rem;
	color: var(--hawks-purple);
}

.hawks-confirmation-gc-meta {
	margin-left: 1rem;
	margin-top: 0.25rem;
	font-size: 0.875rem;
	color: #6b7280;
	font-weight: 400;
}

.hawks-confirmation-gc-note {
	margin-left: 1rem;
	margin-top: 0.25rem;
	font-size: 0.8125rem;
	font-style: italic;
	color: #6b7280;
	font-weight: 400;
}

.hawks-confirmation-info {
	margin-top: 0.75rem;
	padding: 0.75rem 1rem;
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	border-radius: 6px;
	color: #1e40af;
	font-size: 0.9375rem;
}

.hawks-confirmation-info-label {
	font-weight: 600;
}

.hawks-confirmation-actions {
	margin-top: 1.5rem;
	display: flex;
	justify-content: center;
}

.hawks-confirmation-actions .hawks-btn {
	text-decoration: none;
}

.hawks-confirmation-actions .hawks-btn--peach,
.hawks-confirmation-actions .hawks-btn--peach:hover,
.hawks-confirmation-actions .hawks-btn--peach:focus,
.hawks-confirmation-actions .hawks-btn--peach:visited {
	color: #ffffff;
	text-decoration: none;
}

