/**
 * Abryanz Tickets — front-end styles.
 *
 * Theme-neutral by design: every colour is a CSS variable you can redefine, and
 * nothing here sets a font family, so the plugin inherits the theme's type.
 */

.abz-events-section,
.abz-events,
.abz-tickets,
.abz-checkout,
.abz-receipt,
.abz-my-tickets,
.abz-scanner,
.abz-modal,
.abz-empty {
	--abz-ink: currentColor;
	--abz-muted: color-mix(in srgb, currentColor 58%, transparent);
	--abz-line: color-mix(in srgb, currentColor 14%, transparent);
	--abz-line-soft: color-mix(in srgb, currentColor 8%, transparent);
	--abz-surface: color-mix(in srgb, currentColor 3%, transparent);
	--abz-accent: #111113;
	--abz-accent-ink: #ffffff;
	/* The modal floats above the page, so it cannot inherit a transparent
	   background from the theme — these two are always concrete colours. */
	--abz-sheet: #ffffff;
	--abz-sheet-ink: #18181b;
	--abz-danger: #b42318;
	--abz-success: #067647;
	--abz-radius: 14px;
	--abz-radius-sm: 10px;
	--abz-gap: 18px;

	box-sizing: border-box;
}

.abz-events-section *,
.abz-events *,
.abz-tickets *,
.abz-checkout *,
.abz-receipt *,
.abz-my-tickets *,
.abz-scanner *,
.abz-modal * {
	box-sizing: border-box;
}

/* Fallback for browsers without color-mix(). */
@supports not (color: color-mix(in srgb, red 50%, blue)) {
	.abz-events,
	.abz-tickets,
	.abz-checkout,
	.abz-receipt,
	.abz-my-tickets,
	.abz-scanner,
	.abz-modal,
	.abz-empty {
		--abz-muted: #6b7280;
		--abz-line: #e3e3e7;
		--abz-line-soft: #f0f0f2;
		--abz-surface: #f8f8f9;
	}
}

@media (prefers-color-scheme: dark) {
	.abz-events,
	.abz-tickets,
	.abz-checkout,
	.abz-receipt,
	.abz-my-tickets,
	.abz-scanner,
	.abz-modal,
	.abz-empty {
		--abz-accent: #fafafa;
		--abz-accent-ink: #111113;
		--abz-sheet: #1b1b1f;
		--abz-sheet-ink: #f4f4f5;
	}
}

/* The `hidden` attribute is only a UA style, so any author `display` rule beats
   it — which silently reveals empty error bars, stopped video and inactive
   buttons. Honour it inside all plugin markup. */
.abz-events-section [hidden],
.abz-events [hidden],
.abz-tickets [hidden],
.abz-event [hidden],
.abz-checkout [hidden],
.abz-receipt [hidden],
.abz-my-tickets [hidden],
.abz-find [hidden],
.abz-scanner [hidden],
.abz-modal [hidden] {
	display: none !important;
}

/* Buttons ---------------------------------------------------------------- */

.abz-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.95em;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.12s ease, opacity 0.12s ease, background 0.12s ease;
	-webkit-appearance: none;
	appearance: none;
}

.abz-button--primary {
	background: var(--abz-accent);
	color: var(--abz-accent-ink);
}

.abz-button--ghost {
	background: transparent;
	border-color: var(--abz-line);
	color: inherit;
}

.abz-button:hover {
	text-decoration: none;
	transform: translateY(-1px);
}

.abz-button:active {
	transform: translateY(0);
}

.abz-button:focus-visible {
	outline: 2px solid var(--abz-accent);
	outline-offset: 2px;
}

.abz-button[disabled] {
	opacity: 0.4;
	cursor: not-allowed;
	transform: none;
}

.abz-button.is-busy {
	opacity: 0.7;
	cursor: progress;
}

/* Notices ---------------------------------------------------------------- */

.abz-notices {
	margin: 0 0 var(--abz-gap);
}

.abz-notice {
	padding: 12px 14px;
	margin-bottom: 8px;
	border-radius: var(--abz-radius-sm);
	border-left: 3px solid var(--abz-muted);
	background: var(--abz-surface);
	font-size: 0.94em;
}

.abz-notice--error {
	border-left-color: var(--abz-danger);
}

.abz-notice--success {
	border-left-color: var(--abz-success);
}

/* Listing header --------------------------------------------------------- */

.abz-events-section {
	--abz-line: color-mix(in srgb, currentColor 14%, transparent);
	--abz-muted: color-mix(in srgb, currentColor 58%, transparent);
	--abz-card: #ffffff;
	--abz-card-ink: #18181b;
	--abz-rule: #12b3a0;
}

@supports not (color: color-mix(in srgb, red 50%, blue)) {
	.abz-events-section {
		--abz-line: #e6e6ea;
		--abz-muted: #6b7280;
	}
}

@media (prefers-color-scheme: dark) {
	.abz-events-section {
		--abz-card: #1b1b1f;
		--abz-card-ink: #f4f4f5;
	}
}

.abz-events-header {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 32px;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 32px;
}

.abz-events-header__text {
	max-width: 46ch;
}

.abz-events-header__title {
	margin: 0;
	padding-bottom: 12px;
	font-size: clamp(1.7em, 4vw, 2.3em);
	line-height: 1.1;
	letter-spacing: -0.025em;
	position: relative;
}

/* The short accent rule under the heading. */
.abz-events-header__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 62px;
	height: 4px;
	border-radius: 999px;
	background: var(--abz-rule);
}

/* Stands in for the heading's underline when the page supplies its own title. */
.abz-events-header__rule {
	display: block;
	width: 62px;
	height: 4px;
	border-radius: 999px;
	background: var(--abz-rule);
}

.abz-events-header__sub {
	margin: 14px 0 0;
	color: var(--abz-muted);
	font-size: 1em;
	line-height: 1.55;
}

.abz-events-header__cta {
	flex: 0 0 auto;
}

/* Event cards ------------------------------------------------------------ */

.abz-events {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.abz-events--cols-1 {
	grid-template-columns: minmax(0, 420px);
}

/* The column count sets how narrow a card may get before the grid rewraps, so
   it stays responsive instead of forcing N columns onto a phone. */
.abz-events--cols-2 {
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
}

.abz-events--cols-3 {
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}

.abz-events--cols-4 {
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 252px), 1fr));
}

.abz-event-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--abz-line);
	border-radius: 16px;
	/* Cards sit on the theme's page background, so they need a surface of their
	   own rather than inheriting whatever is behind them. */
	background: var(--abz-card);
	color: var(--abz-card-ink);
	box-shadow: 0 1px 2px rgba(16, 16, 20, 0.04);
	transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.abz-event-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px -10px rgba(16, 16, 20, 0.22);
}

.abz-event-card.is-past {
	opacity: 0.62;
}

/* Chips over the poster. */
.abz-event-card__tags {
	position: absolute;
	top: 12px;
	left: 12px;
	max-width: calc(100% - 86px);
	padding: 6px 10px;
	border-radius: 8px;
	background: rgba(17, 17, 19, 0.82);
	color: #fff;
	font-size: 0.64em;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.abz-event-card__foot {
	display: flex;
	/* In a 4-up grid a card can be ~240px wide, where a long price and the status
	   pill will not sit side by side — let the pill drop to its own line instead
	   of overlapping the amount. */
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid var(--abz-line);
}

.abz-event-card__price {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	line-height: 1.2;
	min-width: 0;
}

.abz-event-card__foot .abz-pill {
	margin-left: auto;
}

.abz-event-card__price-label {
	font-size: 0.72em;
	color: var(--abz-muted);
}

.abz-event-card__price-value {
	margin-top: 3px;
	font-size: 1.16em;
	font-weight: 700;
	letter-spacing: -0.015em;
	font-variant-numeric: tabular-nums;
}

.abz-event-card__cta {
	width: 100%;
	margin-top: 16px;
	border-radius: 10px;
	padding: 13px 18px;
}

.abz-event-card__cta:hover {
	transform: none;
}

/* Availability pill ------------------------------------------------------ */

.abz-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex: 0 0 auto;
	padding: 5px 11px;
	border-radius: 999px;
	font-size: 0.76em;
	font-weight: 600;
	white-space: nowrap;
}

.abz-pill__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
}

.abz-pill--available {
	background: #e7f8ef;
	color: #0a7a45;
}

.abz-pill--soldout {
	background: #fdeceb;
	color: #b42318;
}

.abz-pill--closed {
	background: #f1f1f3;
	color: #5b5b66;
}

/* Icons ------------------------------------------------------------------ */

.abz-icon {
	width: 1em;
	height: 1em;
	flex: 0 0 auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.abz-icon--arrow {
	width: 1.05em;
	height: 1.05em;
}

.abz-event-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--abz-radius);
	background: var(--abz-surface);
	line-height: 0;
	/* It is a link, so stop the theme's link colour and underline leaking into
	   the placeholder tint (which is derived from currentColor). */
	color: inherit;
	text-decoration: none;
}

.abz-event-card__media {
	border-radius: 0;
}

.abz-event-card__image {
	width: 100%;
	height: auto;
	/* Event posters are usually portrait; a square crop anchored to the top keeps
	   faces and headline type in frame. */
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.abz-event-card:hover .abz-event-card__image {
	transform: scale(1.03);
}

.abz-event-card__date {
	position: absolute;
	top: 12px;
	right: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 48px;
	padding: 7px 0;
	border-radius: 10px;
	background: #fff;
	color: #111113;
	line-height: 1;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

.abz-event-card__date-month {
	font-size: 0.6em;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.6;
}

.abz-event-card__date-day {
	margin-top: 3px;
	font-size: 1.16em;
	font-weight: 700;
	letter-spacing: -0.02em;
}

/* Shown when an event has no featured image, so the grid keeps its rhythm and
   the date badge still has something to sit on. */
.abz-event-card__media--empty {
	display: flex;
	align-items: flex-end;
	aspect-ratio: 3 / 2;
	padding: 16px;
	background:
		radial-gradient(120% 120% at 15% 15%, color-mix(in srgb, currentColor 12%, transparent), transparent 60%),
		var(--abz-surface);
}

.abz-event-card__initial {
	font-size: 2.4em;
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1;
	opacity: 0.16;
}

.abz-event-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 8px;
	padding: 16px 18px 18px;
}

.abz-event-card__title {
	margin: 0;
	font-size: 1.06em;
	line-height: 1.32;
	letter-spacing: -0.012em;
	/* Two lines keeps every card's price row on the same baseline. */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.abz-event-card__where {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	min-width: 0;
	font-size: 0.88em;
	color: var(--abz-muted);
}

.abz-event-card__where span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.abz-event-card__title a {
	color: inherit;
	text-decoration: none;
}

.abz-event-card__title a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Single event page ------------------------------------------------------- */

.abz-event {
	--abz-line: color-mix(in srgb, currentColor 14%, transparent);
	--abz-muted: color-mix(in srgb, currentColor 58%, transparent);
	--abz-panel: color-mix(in srgb, currentColor 3%, transparent);
	--abz-rule: #12b3a0;
	box-sizing: border-box;
}

.abz-event * {
	box-sizing: border-box;
}

@supports not (color: color-mix(in srgb, red 50%, blue)) {
	.abz-event {
		--abz-line: #e6e6ea;
		--abz-muted: #6b7280;
		--abz-panel: #f7f7f8;
	}
}

/* The theme prints its own entry header; the hero replaces it. Target the group
   that wraps the byline rather than the author name alone, or the theme's
   surrounding "Written by … in" text is left stranded. */
body.abz-event-layout .wp-block-group:has(> .wp-block-post-author-name),
body.abz-event-layout .entry-meta,
body.abz-event-layout .wp-block-post-date {
	display: none;
}

.abz-event__back {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 16px;
	font-size: 0.9em;
	font-weight: 600;
	color: var(--abz-muted);
	text-decoration: none;
}

.abz-event__back:hover {
	color: inherit;
}

/* Hero ------------------------------------------------------------------- */

.abz-event__hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	min-height: 300px;
	border-radius: 18px;
	background: #17171b;
	color: #fff;
}

.abz-event__hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.abz-event__hero--empty {
	background:
		radial-gradient(120% 140% at 12% 10%, rgba(255, 255, 255, 0.14), transparent 60%),
		linear-gradient(135deg, #1d1d22, #35353f);
}

/* Keeps the title legible over any poster. */
.abz-event__hero-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(9, 9, 11, 0.88) 0%, rgba(9, 9, 11, 0.45) 38%, rgba(9, 9, 11, 0.08) 68%, rgba(9, 9, 11, 0.25) 100%);
}

.abz-event__hero-chip {
	position: absolute;
	top: 16px;
	left: 16px;
	max-width: calc(100% - 100px);
	padding: 6px 12px;
	border-radius: 8px;
	background: rgba(9, 9, 11, 0.62);
	backdrop-filter: blur(6px);
	font-size: 0.72em;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.abz-event__share {
	position: absolute;
	top: 14px;
	right: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(9, 9, 11, 0.55);
	backdrop-filter: blur(6px);
	color: #fff;
	cursor: pointer;
	transition: background 0.15s ease;
}

.abz-event__share:hover {
	background: rgba(9, 9, 11, 0.78);
}

.abz-event__share.is-copied::after {
	content: attr(data-copied);
}

.abz-event__hero-body {
	position: relative;
	width: 100%;
	padding: 26px 24px 22px;
}

.abz-event__title {
	margin: 0;
	font-size: clamp(1.7em, 4.4vw, 2.5em);
	line-height: 1.12;
	letter-spacing: -0.025em;
	color: #fff;
	text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}

.abz-event__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}

.abz-event__pills li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 13px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 0.82em;
	font-weight: 500;
	color: #fff;
	max-width: 100%;
}

.abz-event__pills span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Single column ---------------------------------------------------------- */

.abz-event__stack {
	display: grid;
	gap: 18px;
	margin-top: 22px;
	min-width: 0;
}

/* Panels ----------------------------------------------------------------- */

.abz-panel {
	padding: 20px 22px;
	border: 1px solid var(--abz-line);
	border-radius: 16px;
	background: var(--abz-panel);
}

.abz-panel__title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 12px;
	font-size: 1.08em;
	letter-spacing: -0.01em;
}

.abz-panel__title .abz-icon {
	width: 1.15em;
	height: 1.15em;
	color: var(--abz-rule);
	stroke-width: 1.7;
}

.abz-panel__body > :first-child {
	margin-top: 0;
}

.abz-panel__body > :last-child {
	margin-bottom: 0;
}

.abz-panel--organizer {
	display: flex;
	align-items: center;
	gap: 14px;
}

.abz-panel__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	flex: 0 0 auto;
	border-radius: 12px;
	background: color-mix(in srgb, var(--abz-rule) 16%, transparent);
	color: var(--abz-rule);
}

.abz-panel__avatar .abz-icon {
	width: 22px;
	height: 22px;
}

.abz-panel__organizer {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
	min-width: 0;
}

.abz-panel__label {
	font-size: 0.78em;
	color: var(--abz-muted);
}

.abz-event__venue {
	margin: 0;
	font-weight: 600;
}

.abz-event__address {
	margin: 4px 0 0;
	color: var(--abz-muted);
	font-size: 0.92em;
}

.abz-event__map {
	margin-top: 14px;
	padding: 10px 16px;
	font-size: 0.88em;
}

/* Ticket panel ----------------------------------------------------------- */

.abz-tickets {
	padding: 20px 20px 22px;
	border: 1px solid var(--abz-line);
	border-radius: 16px;
	background: var(--abz-panel);
	--abz-line: color-mix(in srgb, currentColor 14%, transparent);
	--abz-muted: color-mix(in srgb, currentColor 58%, transparent);
	--abz-rule: #12b3a0;
	box-sizing: border-box;
}

.abz-tickets * {
	box-sizing: border-box;
}

@supports not (color: color-mix(in srgb, red 50%, blue)) {
	.abz-tickets {
		--abz-line: #e6e6ea;
		--abz-muted: #6b7280;
	}
}

.abz-tickets__heading {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px;
	font-size: 1.05em;
	letter-spacing: -0.01em;
}

.abz-tickets__heading .abz-icon {
	width: 1.15em;
	height: 1.15em;
	color: var(--abz-rule);
	stroke-width: 1.7;
}

.abz-tiers {
	margin: 0;
	padding: 0;
	list-style: none;
}

.abz-tier {
	padding: 15px 0;
	border-top: 1px solid var(--abz-line);
}

.abz-tier:first-child {
	border-top: 0;
	padding-top: 4px;
}

.abz-tier__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
}

.abz-tier__name {
	font-size: 1.06em;
	font-weight: 700;
	letter-spacing: -0.015em;
	min-width: 0;
}

.abz-tier__price {
	flex: 0 0 auto;
	font-weight: 700;
	color: var(--abz-rule);
	font-variant-numeric: tabular-nums;
	text-align: right;
}

.abz-tier__description {
	margin: 5px 0 0;
	font-size: 0.86em;
	line-height: 1.5;
	color: var(--abz-muted);
}

.abz-tier__foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 12px;
}

.abz-tier__status {
	font-size: 0.82em;
	color: var(--abz-muted);
}

.abz-tier__available {
	color: var(--abz-muted);
}

.abz-ticket-row__stock {
	font-size: 0.82em;
	font-weight: 600;
	color: var(--abz-danger, #b42318);
}

.abz-tier__foot .abz-stepper {
	margin-left: auto;
}

.abz-tier.is-chosen .abz-stepper {
	border-color: var(--abz-rule);
}

/* Closed / sold-out tiers */

.abz-tickets__closed-tiers {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--abz-line);
}

.abz-tickets__closed-label {
	display: block;
	margin-bottom: 8px;
	font-size: 0.7em;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--abz-muted);
}

.abz-tickets__closed-tiers ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.abz-tier-closed {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	font-size: 0.86em;
}

.abz-tier-closed__name {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--abz-muted);
}

.abz-tier-closed__price {
	margin-left: auto;
	color: var(--abz-muted);
	text-decoration: line-through;
	font-variant-numeric: tabular-nums;
}

/* Summary + actions */

.abz-tickets__summary {
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid var(--abz-line);
}

.abz-tickets__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	padding: 4px 0;
	font-size: 0.92em;
	color: var(--abz-muted);
}

.abz-tickets__row--total {
	margin-top: 6px;
	padding-top: 10px;
	border-top: 1px solid var(--abz-line);
	font-size: 1.05em;
	color: inherit;
}

.abz-tickets__row--total strong {
	font-size: 1.15em;
	font-variant-numeric: tabular-nums;
}

.abz-tickets__row span[data-abz-subtotal],
.abz-tickets__row span[data-abz-fees] {
	font-variant-numeric: tabular-nums;
}

.abz-tickets__submit {
	width: 100%;
	margin-top: 16px;
	padding: 14px 18px;
	border-radius: 10px;
}

.abz-tickets__submit:hover {
	transform: none;
}

.abz-tickets__secure {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 10px 0 0;
	font-size: 0.78em;
	color: var(--abz-muted);
}

.abz-tickets__calendar {
	width: 100%;
	margin-top: 12px;
	padding: 11px 16px;
	border-radius: 10px;
	font-size: 0.88em;
}

.abz-tickets__note,
.abz-tickets__terms {
	margin: 12px 0 0;
	font-size: 0.86em;
	color: var(--abz-muted);
}

.abz-tickets--closed {
	text-align: left;
}

/* Stepper ---------------------------------------------------------------- */

.abz-stepper {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--abz-line);
	border-radius: 999px;
	overflow: hidden;
}

.abz-stepper__button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font-size: 17px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.12s ease;
}

.abz-stepper__button:hover {
	background: color-mix(in srgb, currentColor 8%, transparent);
}

.abz-stepper__input {
	width: 2.6em;
	padding: 8px 0;
	border: 0;
	border-left: 1px solid var(--abz-line);
	border-right: 1px solid var(--abz-line);
	background: transparent;
	color: inherit;
	text-align: center;
	font-size: 0.95em;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	-moz-appearance: textfield;
	appearance: textfield;
}

.abz-stepper__input::-webkit-outer-spin-button,
.abz-stepper__input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Modal ------------------------------------------------------------------ */

html.abz-modal-open {
	overflow: hidden;
}

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

.abz-modal[hidden] {
	display: none;
}

.abz-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(9, 9, 11, 0.6);
	backdrop-filter: blur(4px);
	animation: abz-fade 0.16s ease;
}

.abz-modal__sheet {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 460px;
	max-height: min(90vh, 840px);
	background: var(--abz-sheet);
	color: var(--abz-sheet-ink);
	border-radius: 20px;
	box-shadow: 0 30px 70px -18px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 0, 0, 0.05);
	animation: abz-rise 0.22s cubic-bezier(0.2, 0.85, 0.3, 1);
	overflow: hidden;
}

/* Drag affordance on the mobile bottom sheet. */
.abz-modal__grip {
	display: none;
}

.abz-modal__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	padding: 20px 22px 14px;
}

.abz-modal__head > div {
	min-width: 0;
}

.abz-modal__eyebrow {
	margin: 0;
	font-size: 0.72em;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--abz-muted);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.abz-modal__title {
	margin: 4px 0 0;
	font-size: 1.24em;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.abz-modal__close {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: color-mix(in srgb, currentColor 8%, transparent);
	color: inherit;
	cursor: pointer;
	transition: background 0.12s ease;
}

.abz-modal__close:hover {
	background: color-mix(in srgb, currentColor 16%, transparent);
}

.abz-modal__close svg {
	width: 16px;
	height: 16px;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	fill: none;
}

/* Step indicator --------------------------------------------------------- */

.abz-steps {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0 22px 16px;
	list-style: none;
}

.abz-steps__item {
	display: flex;
	align-items: center;
	gap: 7px;
	flex: 1 1 auto;
	min-width: 0;
	font-size: 0.76em;
	color: var(--abz-muted);
}

.abz-steps__item + .abz-steps__item::before {
	content: "";
	flex: 1 1 auto;
	height: 1px;
	background: color-mix(in srgb, currentColor 22%, transparent);
}

.abz-steps__dot {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
	border-radius: 999px;
	background: color-mix(in srgb, currentColor 12%, transparent);
	font-size: 0.85em;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

.abz-steps__label {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.abz-steps__item.is-current {
	color: inherit;
	font-weight: 600;
}

.abz-steps__item.is-current .abz-steps__dot {
	background: var(--abz-accent);
	color: var(--abz-accent-ink);
}

.abz-steps__item.is-done .abz-steps__dot {
	background: color-mix(in srgb, var(--abz-success) 18%, transparent);
	color: var(--abz-success);
}

/* Views: a scrolling body with a pinned footer, so the action is always in reach. */

.abz-modal__view {
	display: flex;
	flex-direction: column;
	min-height: 0;
	flex: 1 1 auto;
}

.abz-modal__view[hidden] {
	display: none;
}

.abz-modal__form {
	display: flex;
	flex-direction: column;
	min-height: 0;
	flex: 1 1 auto;
}

.abz-modal__scroll {
	flex: 1 1 auto;
	min-height: 0;
	padding: 0 22px 18px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
}

.abz-modal__footer {
	flex: 0 0 auto;
	padding: 14px 22px 20px;
	border-top: 1px solid var(--abz-line-soft);
	background: var(--abz-sheet);
}

/* Order summary ---------------------------------------------------------- */

.abz-summary-list:empty {
	display: none;
}

.abz-summary-list {
	list-style: none;
	margin: 0 0 18px;
	padding: 14px 16px;
	border-radius: 12px;
	background: color-mix(in srgb, currentColor 4%, transparent);
	font-size: 0.93em;
}

.abz-summary-list li {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	padding: 4px 0;
}

.abz-summary-list li.is-total {
	margin-top: 8px;
	padding-top: 10px;
	border-top: 1px solid color-mix(in srgb, currentColor 14%, transparent);
	font-weight: 700;
	font-size: 1.06em;
}

.abz-summary-list__label {
	color: var(--abz-muted);
}

.abz-summary-list li.is-total .abz-summary-list__label {
	color: inherit;
}

.abz-summary-list__value {
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

/* Form ------------------------------------------------------------------- */

.abz-modal__errors {
	display: flex;
	gap: 10px;
	margin-bottom: 16px;
	padding: 12px 14px;
	border-radius: 12px;
	background: color-mix(in srgb, var(--abz-danger) 10%, transparent);
	color: var(--abz-danger);
	font-size: 0.9em;
}

.abz-modal__errors ul {
	margin: 0;
	padding-left: 18px;
}

.abz-modal__errors li + li {
	margin-top: 3px;
}

.abz-field {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 14px;
}

.abz-field label {
	font-size: 0.82em;
	font-weight: 600;
	color: var(--abz-muted);
}

.abz-field input[type="text"],
.abz-field input[type="email"],
.abz-field input[type="tel"] {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid var(--abz-line);
	border-radius: 12px;
	background: transparent;
	color: inherit;
	font-size: 1em;
	transition: border-color 0.12s ease, box-shadow 0.12s ease;
}

.abz-field input:focus {
	outline: none;
	border-color: var(--abz-accent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--abz-accent) 16%, transparent);
}

/* Only scold a field once the buyer has actually typed something wrong. */
.abz-field input:user-invalid {
	border-color: var(--abz-danger);
}

.abz-field__hint {
	font-size: 0.79em;
	color: var(--abz-muted);
}

.abz-field--checkbox {
	flex-direction: row;
	align-items: flex-start;
	gap: 9px;
	margin-top: 6px;
}

.abz-field--checkbox label {
	font-size: 0.88em;
	font-weight: 400;
	color: inherit;
	display: flex;
	align-items: flex-start;
	gap: 9px;
}

.abz-modal__legend {
	display: block;
	margin: 20px 0 10px;
	font-size: 0.82em;
	font-weight: 600;
	color: var(--abz-muted);
}

/* Payment tiles ---------------------------------------------------------- */

.abz-pay {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 11px;
	padding: 14px 44px 14px 15px;
	margin-bottom: 9px;
	border: 1px solid var(--abz-line);
	border-radius: 12px;
	cursor: pointer;
	transition: border-color 0.12s ease, background 0.12s ease;
}

.abz-pay:hover {
	border-color: color-mix(in srgb, currentColor 30%, transparent);
}

/* The radio is kept for semantics and keyboard use, but the tile is the target. */
.abz-pay input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}

.abz-pay:has(input:checked) {
	border-color: var(--abz-accent);
	background: color-mix(in srgb, var(--abz-accent) 5%, transparent);
}

.abz-pay:has(input:focus-visible) {
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--abz-accent) 20%, transparent);
}

.abz-pay__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.abz-pay__title {
	font-weight: 600;
	font-size: 0.96em;
}

.abz-pay__note {
	font-size: 0.83em;
	line-height: 1.45;
	color: var(--abz-muted);
}

.abz-pay__tick {
	position: absolute;
	top: 50%;
	right: 14px;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border: 1px solid var(--abz-line);
	border-radius: 999px;
	opacity: 0;
	transition: opacity 0.12s ease;
}

.abz-pay__tick svg {
	width: 13px;
	height: 13px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.abz-pay:has(input:checked) .abz-pay__tick {
	opacity: 1;
	border-color: var(--abz-accent);
	background: var(--abz-accent);
	color: var(--abz-accent-ink);
}

/* Accepted payment badges ------------------------------------------------ */

.abz-paylogos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
}

.abz-paylogo--image {
	display: flex;
	align-items: center;
	height: 26px;
	padding: 3px 7px;
	border: 1px solid var(--abz-line);
	border-radius: 6px;
	background: #fff;
}

.abz-paylogo--image img {
	display: block;
	height: 100%;
	width: auto;
	max-width: 60px;
	object-fit: contain;
}

/* Until the official logo file is uploaded, the brand's name in its own colour —
   accurate, and not a hand-drawn imitation of a trademark. */
.abz-paylogo--text {
	padding: 5px 9px;
	border-radius: 6px;
	background: var(--abz-brand);
	color: var(--abz-brand-ink);
	font-size: 0.7em;
	font-weight: 700;
	letter-spacing: 0.01em;
	white-space: nowrap;
}

/* Submit ----------------------------------------------------------------- */

.abz-modal__submit {
	position: relative;
	width: 100%;
	padding: 15px 20px;
	border-radius: 12px;
	font-size: 1em;
}

.abz-modal__submit:hover {
	transform: none;
}

.abz-modal__submit-spinner {
	display: none;
	border-top-color: currentColor;
}

.abz-modal__submit.is-busy .abz-modal__submit-spinner {
	display: inline-block;
}

.abz-modal__secure {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 11px 0 0;
	font-size: 0.77em;
	line-height: 1.4;
	text-align: center;
	color: var(--abz-muted);
}

.abz-modal__secure .abz-icon {
	width: 0.95em;
	height: 0.95em;
	flex: 0 0 auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

/* Payment step ----------------------------------------------------------- */

.abz-modal__frame-wrap {
	min-height: 60px;
}

.abz-modal__frame {
	width: 100%;
	height: min(62vh, 620px);
	border: 0;
	border-radius: var(--abz-radius-sm);
	background: var(--abz-surface);
}

.abz-modal__handoff {
	width: 100%;
}

.abz-modal__handoff-note,
.abz-modal__waiting {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin: 14px 0 0;
	font-size: 0.85em;
	text-align: center;
	color: var(--abz-muted);
}

.abz-spinner {
	width: 14px;
	height: 14px;
	flex: 0 0 auto;
	border: 2px solid var(--abz-line);
	border-top-color: var(--abz-muted);
	border-radius: 50%;
	animation: abz-spin 0.7s linear infinite;
}

.abz-modal__receipt-link {
	display: inline-block;
	margin-top: 14px;
	font-size: 0.85em;
	color: var(--abz-muted);
}

/* The receipt markup is reused inside the modal, so soften it there. */
.abz-modal .abz-receipt__heading {
	display: none;
}

.abz-modal .abz-ticket-list {
	grid-template-columns: 1fr;
}

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

@keyframes abz-rise {
	from { opacity: 0; transform: translateY(12px) scale(0.99); }
	to { opacity: 1; transform: none; }
}

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

@media (prefers-reduced-motion: reduce) {
	.abz-modal__backdrop,
	.abz-modal__sheet,
	.abz-event-card__image,
	.abz-button {
		animation: none;
		transition: none;
	}
}

/* Mobile: the modal becomes a bottom sheet. */
@media (max-width: 600px) {
	.abz-modal {
		padding: 0;
		align-items: flex-end;
	}

	.abz-modal__sheet {
		max-width: none;
		max-height: 92vh;
		border-radius: 22px 22px 0 0;
	}

	.abz-modal__grip {
		display: block;
		width: 40px;
		height: 4px;
		margin: 10px auto 0;
		border-radius: 999px;
		background: color-mix(in srgb, currentColor 20%, transparent);
	}

	.abz-modal__head {
		padding-top: 12px;
	}

	.abz-steps__label {
		display: none;
	}

	.abz-steps__item {
		flex: 0 0 auto;
	}

	.abz-steps__item + .abz-steps__item::before {
		flex: 0 0 20px;
	}

	/* Clear the home indicator on iOS. */
	.abz-modal__footer {
		padding-bottom: max(20px, env(safe-area-inset-bottom));
	}

	.abz-ticket-row__buy {
		width: 100%;
		justify-content: space-between;
		margin-left: 0;
	}
}

/* Basket page (no-JavaScript fallback) ---------------------------------- */

.abz-checkout {
	display: grid;
	gap: var(--abz-gap);
}

.abz-cart__table {
	width: 100%;
	border-collapse: collapse;
}

.abz-cart__table th,
.abz-cart__table td {
	padding: 12px 8px;
	border-bottom: 1px solid var(--abz-line-soft);
	text-align: left;
	vertical-align: middle;
}

.abz-cart__name span {
	display: block;
	font-size: 0.85em;
	color: var(--abz-muted);
}

.abz-cart__qty input {
	width: 4.2em;
	padding: 8px;
	text-align: center;
	border: 1px solid var(--abz-line);
	border-radius: var(--abz-radius-sm);
	background: transparent;
	color: inherit;
}

.abz-summary {
	width: 100%;
	max-width: 340px;
	margin-left: auto;
	border-collapse: collapse;
}

.abz-summary th,
.abz-summary td {
	padding: 7px 0;
	text-align: left;
}

.abz-summary td {
	text-align: right;
	font-variant-numeric: tabular-nums;
}

.abz-summary__total {
	font-size: 1.08em;
	font-weight: 700;
	border-top: 1px solid var(--abz-line);
}

.abz-checkout__form {
	padding: 22px;
	border: 1px solid var(--abz-line);
	border-radius: var(--abz-radius);
}

.abz-checkout__form h2 {
	margin-top: 0;
}

.abz-fieldset {
	margin: 0 0 18px;
	padding: 16px;
	border: 1px solid var(--abz-line);
	border-radius: var(--abz-radius-sm);
}

.abz-fieldset legend {
	padding: 0 6px;
	font-weight: 700;
	font-size: 0.9em;
}

.abz-payment__options {
	list-style: none;
	margin: 0;
	padding: 0;
}

.abz-payment__option label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px;
	margin-bottom: 8px;
	border: 1px solid var(--abz-line);
	border-radius: var(--abz-radius-sm);
	cursor: pointer;
}

.abz-payment__title {
	font-weight: 600;
}

.abz-payment__description {
	display: block;
	font-size: 0.85em;
	color: var(--abz-muted);
}

.abz-checkout__submit {
	width: 100%;
	max-width: 380px;
}

/* Find my tickets -------------------------------------------------------- */

.abz-find {
	--abz-line: color-mix(in srgb, currentColor 14%, transparent);
	--abz-muted: color-mix(in srgb, currentColor 58%, transparent);
	--abz-panel: color-mix(in srgb, currentColor 3%, transparent);
	padding: 22px;
	border: 1px solid var(--abz-line);
	border-radius: 16px;
	background: var(--abz-panel);
	box-sizing: border-box;
}

.abz-find * {
	box-sizing: border-box;
}

@supports not (color: color-mix(in srgb, red 50%, blue)) {
	.abz-find {
		--abz-line: #e6e6ea;
		--abz-muted: #6b7280;
		--abz-panel: #f8f8f9;
	}
}

.abz-find__title {
	margin: 0 0 6px;
	font-size: 1.08em;
	letter-spacing: -0.01em;
}

.abz-find__intro {
	margin: 0 0 14px;
	font-size: 0.92em;
	color: var(--abz-muted);
}

.abz-find__form {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.abz-find__form input[type="email"] {
	flex: 1 1 220px;
	min-width: 0;
	padding: 12px 14px;
	border: 1px solid var(--abz-line);
	border-radius: 10px;
	background: transparent;
	color: inherit;
	font-size: 1em;
}

.abz-find__form input[type="email"]:focus {
	outline: none;
	border-color: currentColor;
}

.abz-find__form .abz-button {
	flex: 0 0 auto;
	border-radius: 10px;
}

.abz-find__login {
	margin: 14px 0 0;
	font-size: 0.9em;
	color: var(--abz-muted);
}

.abz-receipt__help {
	margin: 18px 0 0;
	font-size: 0.86em;
	color: var(--abz-muted);
}

/* Receipt and tickets ---------------------------------------------------- */

.abz-receipt__heading {
	margin-top: 0;
	font-size: 1.35em;
	letter-spacing: -0.015em;
}

.abz-receipt__meta {
	font-size: 0.9em;
	color: var(--abz-muted);
}

.abz-receipt__instructions {
	padding: 14px 16px;
	margin: 14px 0;
	border-radius: var(--abz-radius-sm);
	background: var(--abz-surface);
	font-size: 0.92em;
}

.abz-receipt__instructions p:first-child {
	margin-top: 0;
}

.abz-receipt__instructions p:last-child {
	margin-bottom: 0;
}

.abz-receipt__table {
	width: 100%;
	margin: 16px 0;
	border-collapse: collapse;
	font-size: 0.94em;
}

.abz-receipt__table td,
.abz-receipt__table th {
	padding: 10px 0;
	border-bottom: 1px solid var(--abz-line-soft);
	text-align: left;
}

.abz-receipt__table td:last-child,
.abz-receipt__table th:last-child {
	text-align: right;
	font-variant-numeric: tabular-nums;
}

.abz-receipt__total th,
.abz-receipt__total td {
	font-weight: 700;
	border-bottom: 0;
}

.abz-receipt__event {
	display: block;
	font-size: 0.85em;
	color: var(--abz-muted);
}

.abz-receipt__tickets-heading {
	margin: 22px 0 12px;
	font-size: 1.05em;
}

.abz-ticket-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
}

.abz-ticket-card {
	display: flex;
	gap: 14px;
	padding: 14px;
	border: 1px solid var(--abz-line);
	border-radius: var(--abz-radius);
}

.abz-ticket-card--used,
.abz-ticket-card--void {
	opacity: 0.6;
}

.abz-ticket-card__qr img {
	display: block;
	width: 104px;
	height: 104px;
	border-radius: 6px;
	background: #fff;
}

.abz-ticket-card__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-size: 0.88em;
	min-width: 0;
}

.abz-ticket-card__body h3 {
	margin: 0;
	font-size: 1.05em;
	line-height: 1.3;
}

.abz-ticket-card__body p {
	margin: 0;
	color: var(--abz-muted);
}

.abz-ticket-card__code code {
	font-size: 0.95em;
	letter-spacing: 0.04em;
}

.abz-ticket-card__body .abz-button {
	margin-top: 8px;
	align-self: flex-start;
	padding: 8px 14px;
	font-size: 0.88em;
}

.abz-status {
	display: inline-block;
	padding: 2px 9px;
	border-radius: 999px;
	font-size: 0.78em;
	font-weight: 600;
	background: var(--abz-surface);
}

.abz-status--paid,
.abz-status--valid {
	background: #dcfae6;
	color: #067647;
}

.abz-status--pending {
	background: #fef3c7;
	color: #92400e;
}

.abz-status--failed,
.abz-status--cancelled,
.abz-status--refunded,
.abz-status--void {
	background: #fee4e2;
	color: #b42318;
}

.abz-empty {
	padding: 30px;
	border: 1px dashed var(--abz-line);
	border-radius: var(--abz-radius);
	text-align: center;
}

.abz-empty p {
	margin-top: 0;
}

/* Scanner ---------------------------------------------------------------- */

.abz-scanner {
	max-width: 560px;
	margin: 0 auto;
}

.abz-scanner__toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-bottom: 14px;
}

.abz-scanner__viewport {
	position: relative;
	overflow: hidden;
	border-radius: var(--abz-radius);
	background: #000;
}

.abz-scanner__video {
	display: block;
	width: 100%;
	max-height: 60vh;
	object-fit: cover;
}

.abz-scanner__manual {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: end;
	margin: 16px 0;
}

.abz-scanner__manual label {
	flex: 0 0 100%;
	font-weight: 600;
	font-size: 0.86em;
	color: var(--abz-muted);
}

.abz-scanner__code {
	flex: 1 1 220px;
	padding: 12px 14px;
	border: 1px solid var(--abz-line);
	border-radius: var(--abz-radius-sm);
	background: transparent;
	color: inherit;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 1.05em;
	text-transform: uppercase;
}

.abz-scanner__result {
	padding: 18px;
	border-radius: var(--abz-radius);
	background: var(--abz-surface);
	font-size: 1em;
	min-height: 3.5em;
}

.abz-scanner__result.is-ok {
	background: #dcfae6;
	color: #054f31;
}

.abz-scanner__result.is-warn {
	background: #fef3c7;
	color: #7a2e0e;
}

.abz-scanner__result.is-error {
	background: #fee4e2;
	color: #912018;
}

.abz-scanner__result strong {
	display: block;
	font-size: 1.15em;
}

.abz-scanner__result-meta {
	display: block;
	margin-top: 4px;
	font-size: 0.85em;
	opacity: 0.85;
}

.abz-scanner__stats {
	margin: 12px 0;
	font-size: 0.9em;
	color: var(--abz-muted);
}

.abz-scanner__log {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.85em;
}

.abz-scanner__log li {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding: 7px 0;
	border-bottom: 1px solid var(--abz-line-soft);
}

.abz-scanner__undo {
	padding: 0;
	border: 0;
	background: none;
	color: inherit;
	text-decoration: underline;
	cursor: pointer;
	font-size: inherit;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
