/**
 * Bestellseite und Statusseite.
 *
 * Baut auf den Farben und Maßen des Themes auf: dieselben Custom Properties,
 * dieselben Pillen-Radien, dieselbe Schriftfamilie. Nichts davon wird hier neu
 * definiert — wenn im Theme das Weizengold wechselt, wechselt es hier mit.
 */

/* --------------------------------------------------------------- Grundgerüst */

.lzb-shell {
	color: var(--cream);
}

.lzb-layout,
.lzb-status {
	display: flex;
	flex-direction: column;
	gap: clamp(2rem, 4vw, 3.2rem);
}

.lzb-intro,
.lzb-status-kopf {
	max-width: 46rem;
}

.lzb-intro h1,
.lzb-status-kopf h1 {
	margin: 0 0 0.7rem;
	font-family: var(--display);
	font-size: clamp(2rem, 5vw, 3.1rem);
	line-height: 1.06;
}

.lzb-lead,
.lzb-intro > p {
	margin: 0 0 1rem;
	color: var(--cream-muted);
	font-size: clamp(1rem, 1.6vw, 1.08rem);
	line-height: 1.65;
}

.lzb-hinweis-klein {
	margin: 0;
	color: rgba(246, 240, 229, 0.62);
	font-size: 0.86rem;
	line-height: 1.6;
}

.lzb-hinweis-klein a,
.lzb-feld small a {
	color: var(--wheat-light);
}

/* Die drei Schritte über dem Katalog. */
.lzb-schritte {
	display: grid;
	gap: 0.8rem;
	margin: 1.4rem 0;
	padding: 0;
	list-style: none;
	grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}

.lzb-schritte li {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 0.2rem 0.7rem;
	padding: 0.9rem 1rem;
	border: 1px solid var(--line);
	border-radius: 0.9rem;
	background: var(--glass-light);
	color: var(--cream-muted);
	font-size: 0.88rem;
	line-height: 1.5;
}

.lzb-schritte span {
	grid-row: span 2;
	width: 1.9rem;
	height: 1.9rem;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: var(--wheat);
	color: var(--ink);
	font-family: var(--utility);
	font-weight: 800;
}

.lzb-schritte b {
	color: var(--cream);
	font-size: 0.95rem;
}

/* ------------------------------------------------------------------ Meldungen */

.lzb-meldung {
	display: grid;
	gap: 0.25rem;
	padding: 1rem 1.15rem;
	border-radius: 0.9rem;
	border: 1px solid rgba(189, 90, 50, 0.5);
	background: rgba(189, 90, 50, 0.14);
	color: var(--cream);
	line-height: 1.55;
}

.lzb-meldung strong {
	color: var(--wheat-light);
}

.lzb-vorschau {
	border-color: rgba(214, 166, 71, 0.5);
	background: rgba(214, 166, 71, 0.12);
}

/* -------------------------------------------------------- Katalog + Warenkorb */

.lzb-spalten {
	display: grid;
	gap: clamp(1.4rem, 3vw, 2.4rem);
	align-items: start;
	grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 62rem) {
	.lzb-spalten {
		grid-template-columns: minmax(0, 1fr) 21rem;
	}
}

.lzb-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-bottom: 1.6rem;
}

.lzb-tabs .menu-tab {
	width: auto;
	border-color: var(--line);
	background: var(--glass-light);
	color: var(--cream);
}

.lzb-tabs .menu-tab[aria-selected="true"] {
	border-color: var(--wheat);
	background: var(--wheat);
	color: var(--ink);
}

.lzb-tabs .menu-tab-arrow {
	display: none;
}

.lzb-gruppe-titel {
	margin: 0 0 0.4rem;
	font-family: var(--display);
	font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.lzb-gruppe-lead {
	margin: 0 0 1.2rem;
	color: var(--cream-muted);
	line-height: 1.6;
}

.lzb-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fill, minmax(15.5rem, 1fr));
}

.lzb-karte {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 1rem;
	background: var(--glass-light);
	transition: border-color 180ms ease, transform 180ms ease;
}

.lzb-karte.is-im-korb {
	border-color: var(--wheat);
	box-shadow: 0 0 0 1px var(--wheat) inset;
}

.lzb-karte-foto img {
	display: block;
	width: 100%;
	height: 9rem;
	object-fit: cover;
}

.lzb-karte-text {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0.5rem;
	padding: 0.9rem 1rem 1rem;
}

.lzb-karte-text h3 {
	margin: 0;
	font-family: var(--display);
	font-size: 1.02rem;
	line-height: 1.25;
}

.lzb-karte-text p {
	margin: 0;
	color: var(--cream-muted);
	font-size: 0.85rem;
	line-height: 1.5;
}

.lzb-karte-fuss {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
	margin-top: auto;
	padding-top: 0.4rem;
}

.lzb-preis {
	display: flex;
	flex-direction: column;
	font-family: var(--utility);
	font-size: 1.02rem;
	font-weight: 800;
	color: var(--wheat-light);
}

.lzb-preis small {
	font-size: 0.66rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(246, 240, 229, 0.55);
}

.lzb-karte-min {
	margin: 0;
	color: rgba(246, 240, 229, 0.5);
	font-size: 0.74rem;
}

/* Der Stepper: gleiche Pille wie die Kopfzeile, nur klein. */
.lzb-stepper {
	display: inline-flex;
	align-items: center;
	gap: 0.15rem;
	padding: 0.15rem;
	border: 1px solid var(--pill-line);
	border-radius: 999px;
	background: var(--pill-bg);
}

.lzb-step {
	width: 2.1rem;
	height: 2.1rem;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--cream);
	font-size: 1.15rem;
	line-height: 1;
	cursor: pointer;
	transition: background 160ms ease, color 160ms ease;
}

.lzb-step--plus {
	background: var(--wheat);
	color: var(--ink);
}

.lzb-step:hover:not(:disabled) {
	background: var(--wheat-light);
	color: var(--ink);
}

.lzb-step:disabled {
	opacity: 0.35;
	cursor: default;
}

.lzb-step-wert {
	min-width: 1.6rem;
	text-align: center;
	font-family: var(--utility);
	font-weight: 800;
	font-size: 0.95rem;
}

.lzb-fotohinweis {
	margin: 1.6rem 0 0;
	color: rgba(246, 240, 229, 0.5);
	font-size: 0.8rem;
	line-height: 1.6;
}

/* ------------------------------------------------------------------ Warenkorb */

.lzb-korb-innen {
	position: sticky;
	top: calc(var(--header-height) + 1rem);
	display: grid;
	gap: 0.85rem;
	padding: 1.2rem 1.3rem 1.4rem;
	border: 1px solid var(--line);
	border-radius: 1.1rem;
	background: var(--glass);
	backdrop-filter: var(--pill-blur);
	box-shadow: var(--pill-shadow);
}

.lzb-korb-innen h2 {
	margin: 0;
	font-family: var(--display);
	font-size: 1.25rem;
}

.lzb-korb-leer {
	margin: 0;
	color: var(--cream-muted);
	font-size: 0.9rem;
	line-height: 1.55;
}

.lzb-korb-liste {
	display: grid;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
	max-height: 17rem;
	overflow-y: auto;
}

.lzb-korb-liste li {
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	align-items: baseline;
	gap: 0.5rem;
	font-size: 0.86rem;
	line-height: 1.4;
}

.lzb-korb-menge {
	font-family: var(--utility);
	font-weight: 800;
	color: var(--wheat-light);
}

.lzb-korb-name {
	color: var(--cream-muted);
}

.lzb-korb-preis {
	font-variant-numeric: tabular-nums;
}

.lzb-korb-weg {
	border: 0;
	background: transparent;
	color: rgba(246, 240, 229, 0.45);
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
}

.lzb-korb-weg:hover {
	color: var(--ember);
}

.lzb-korb-summe {
	display: grid;
	gap: 0.35rem;
	margin: 0;
	padding-top: 0.7rem;
	border-top: 1px solid var(--line);
}

.lzb-korb-summe > div,
.lzb-abschluss-summe dl > div {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.88rem;
}

.lzb-korb-summe dt,
.lzb-korb-summe dd,
.lzb-abschluss-summe dt,
.lzb-abschluss-summe dd {
	margin: 0;
}

.lzb-korb-summe .is-rabatt,
.lzb-abschluss-summe .is-rabatt {
	color: var(--wheat-light);
}

.lzb-korb-summe .is-gesamt,
.lzb-abschluss-summe .is-gesamt {
	padding-top: 0.45rem;
	border-top: 1px solid var(--line);
	font-family: var(--utility);
	font-size: 1.1rem;
	font-weight: 800;
}

.lzb-korb-nudge {
	margin: 0;
	padding: 0.55rem 0.7rem;
	border-radius: 0.6rem;
	background: rgba(214, 166, 71, 0.14);
	color: var(--wheat-light);
	font-size: 0.8rem;
	line-height: 1.45;
}

.lzb-korb-notiz,
.lzb-korb-zeit small {
	margin: 0;
	color: rgba(246, 240, 229, 0.55);
	font-size: 0.76rem;
	line-height: 1.5;
}

.lzb-korb-zeit {
	display: grid;
	gap: 0.15rem;
	margin: 0;
	font-size: 0.86rem;
}

.lzb-korb-zeit b {
	color: var(--cream);
}

.lzb-korb-weiter {
	width: 100%;
}

.lzb-korb-leeren {
	justify-self: start;
	border: 0;
	background: transparent;
	color: rgba(246, 240, 229, 0.5);
	font-size: 0.78rem;
	text-decoration: underline;
	cursor: pointer;
}

.lzb-gutschein {
	display: grid;
	gap: 0.4rem;
	padding-top: 0.8rem;
	border-top: 1px solid var(--line);
}

.lzb-gutschein label {
	font-family: var(--utility);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(246, 240, 229, 0.6);
}

.lzb-gutschein-zeile {
	display: flex;
	gap: 0.4rem;
}

.lzb-gutschein-zeile input {
	flex: 1;
	min-width: 0;
}

.lzb-gutschein-zeile button {
	padding: 0 0.9rem;
	border: 1px solid var(--wheat);
	border-radius: 0.6rem;
	background: transparent;
	color: var(--wheat-light);
	font-family: var(--utility);
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	cursor: pointer;
}

.lzb-gutschein-fehler {
	margin: 0;
	color: #f0a58a;
	font-size: 0.78rem;
}

.lzb-gutschein-ok {
	margin: 0;
	color: var(--wheat-light);
	font-size: 0.78rem;
}

/* ------------------------------------------------------------------- Formular */

.lzb-checkout h2 {
	margin: 0 0 1.2rem;
	font-family: var(--display);
	font-size: clamp(1.6rem, 3.5vw, 2.3rem);
}

.lzb-checkout-leer {
	color: var(--cream-muted);
}

.lzb-formular {
	display: grid;
	gap: 1.1rem;
}

.lzb-block {
	margin: 0;
	padding: 1.2rem 1.3rem 1.4rem;
	border: 1px solid var(--line);
	border-radius: 1.1rem;
	background: var(--glass-light);
}

.lzb-block legend {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0;
	margin-bottom: 0.9rem;
	font-family: var(--display);
	font-size: 1.2rem;
	color: var(--cream);
}

.lzb-block legend span {
	width: 1.8rem;
	height: 1.8rem;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: var(--wheat);
	color: var(--ink);
	font-family: var(--utility);
	font-size: 0.85rem;
	font-weight: 800;
}

.lzb-block-lead {
	margin: 0 0 0.9rem;
	color: var(--cream-muted);
	font-size: 0.92rem;
	line-height: 1.6;
}

.lzb-felder {
	display: grid;
	gap: 0.9rem;
	grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}

.lzb-feld {
	display: grid;
	gap: 0.32rem;
	margin: 0;
}

.lzb-feld--breit {
	grid-column: 1 / -1;
}

.lzb-feld--klein {
	max-width: 9rem;
}

.lzb-feld label,
.lzb-upload label {
	font-family: var(--utility);
	font-size: 0.73rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(246, 240, 229, 0.72);
}

.lzb-feld label em,
.lzb-feld label span,
.lzb-upload label span {
	font-style: normal;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 600;
}

.lzb-feld label em {
	color: var(--wheat);
}

.lzb-feld small,
.lzb-upload small {
	color: rgba(246, 240, 229, 0.55);
	font-size: 0.78rem;
	line-height: 1.5;
}

.lzb-feld input,
.lzb-feld select,
.lzb-feld textarea,
.lzb-gutschein input,
.lzb-suche input {
	width: 100%;
	padding: 0.62rem 0.8rem;
	border: 1px solid var(--line);
	border-radius: 0.6rem;
	background: rgba(9, 11, 10, 0.5);
	color: var(--cream);
	font-family: var(--body);
	font-size: 0.95rem;
}

.lzb-feld textarea {
	resize: vertical;
}

.lzb-feld input:focus-visible,
.lzb-feld select:focus-visible,
.lzb-feld textarea:focus-visible {
	outline: 2px solid var(--wheat);
	outline-offset: 1px;
}

.lzb-upload {
	display: grid;
	gap: 0.32rem;
	margin-top: 0.9rem;
	padding: 0.9rem 1rem;
	border: 1px dashed var(--line);
	border-radius: 0.8rem;
}

.lzb-upload input[type="file"] {
	color: var(--cream-muted);
	font-size: 0.85rem;
}

/* Auswahlkarten (Lieferung, Kundenart, Zahlung, Termin) */

.lzb-wahl,
.lzb-zeitwahl {
	display: grid;
	gap: 0.6rem;
	margin-bottom: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.lzb-option,
.lzb-zeitkarte {
	position: relative;
	display: grid;
	gap: 0.2rem;
	padding: 0.85rem 1rem;
	border: 1px solid var(--line);
	border-radius: 0.85rem;
	background: rgba(9, 11, 10, 0.34);
	cursor: pointer;
	transition: border-color 160ms ease, background 160ms ease;
}

.lzb-option input,
.lzb-zeitkarte input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.lzb-option:has( input:checked ),
.lzb-zeitkarte:has( input:checked ) {
	border-color: var(--wheat);
	background: rgba(214, 166, 71, 0.14);
}

.lzb-option:has( input:focus-visible ),
.lzb-zeitkarte:has( input:focus-visible ) {
	outline: 2px solid var(--wheat);
	outline-offset: 2px;
}

.lzb-option-kopf,
.lzb-zeitkarte-titel {
	font-family: var(--utility);
	font-size: 0.9rem;
	font-weight: 800;
	color: var(--cream);
}

.lzb-option-text,
.lzb-zeitkarte-text {
	color: var(--cream-muted);
	font-size: 0.82rem;
	line-height: 1.45;
}

.lzb-zeitkarte.is-aus {
	opacity: 0.42;
	cursor: not-allowed;
	border-style: dashed;
}

.lzb-zeitinfo {
	display: grid;
	gap: 0.15rem;
	margin: 0;
	padding: 0.75rem 0.9rem;
	border-radius: 0.7rem;
	background: rgba(214, 166, 71, 0.12);
	font-size: 0.88rem;
}

.lzb-zeitinfo small {
	color: rgba(246, 240, 229, 0.6);
	font-size: 0.78rem;
	line-height: 1.5;
}

/* Honeypot: für Menschen unsichtbar, für Screenreader ausgeblendet. */
.lzb-honig {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ------------------------------------------------------------------ Abschluss */

.lzb-abschluss {
	display: grid;
	gap: 1rem;
	padding: 1.3rem;
	border: 1px solid var(--wheat);
	border-radius: 1.1rem;
	background: rgba(214, 166, 71, 0.08);
}

.lzb-abschluss-summe h3 {
	margin: 0 0 0.6rem;
	font-family: var(--display);
	font-size: 1.15rem;
}

.lzb-abschluss-summe dl {
	display: grid;
	gap: 0.35rem;
	margin: 0;
}

.lzb-abschluss-steuer,
.lzb-abschluss-hinweis {
	margin: 0.6rem 0 0;
	color: rgba(246, 240, 229, 0.6);
	font-size: 0.8rem;
	line-height: 1.55;
}

.lzb-mindest {
	margin: 0;
	color: #f0a58a;
	font-size: 0.85rem;
}

.lzb-agb {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.7rem;
	align-items: start;
	color: var(--cream-muted);
	font-size: 0.83rem;
	line-height: 1.6;
	cursor: pointer;
}

.lzb-agb input {
	width: 1.15rem;
	height: 1.15rem;
	margin-top: 0.15rem;
	accent-color: var(--wheat);
}

.lzb-agb a {
	color: var(--wheat-light);
}

.lzb-bestellknopf {
	width: 100%;
	min-height: 3.4rem;
	border: 0;
	border-radius: 999px;
	background: var(--wheat);
	color: var(--ink);
	font-family: var(--utility);
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 12px 34px rgba(214, 166, 71, 0.22);
	transition: transform 180ms ease, background 180ms ease;
}

.lzb-bestellknopf:hover {
	transform: translateY(-2px);
	background: var(--wheat-light);
}

/* ------------------------------------------------------------ Mobile Leiste */

.lzb-leiste {
	position: fixed;
	inset: auto 0 0 0;
	z-index: 40;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.8rem clamp(1rem, 4vw, 2rem);
	border-top: 1px solid var(--pill-line);
	background: var(--pill-bg);
	backdrop-filter: var(--pill-blur);
	color: var(--cream);
	font-size: 0.86rem;
}

.lzb-leiste a {
	padding: 0.55rem 1.1rem;
	border-radius: 999px;
	background: var(--wheat);
	color: var(--ink);
	font-family: var(--utility);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
}

@media (min-width: 62rem) {
	.lzb-leiste {
		display: none;
	}
}

/* -------------------------------------------------------------- Statusseite */

.lzb-status-karten {
	display: grid;
	gap: 0.9rem;
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.lzb-karte-gross {
	display: grid;
	gap: 0.3rem;
	padding: 1.2rem 1.3rem;
	border: 1px solid var(--line);
	border-radius: 1.1rem;
	background: var(--glass-light);
}

.lzb-karte-gross span {
	font-family: var(--utility);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--wheat-light);
}

.lzb-karte-gross strong {
	font-family: var(--display);
	font-size: clamp(1.2rem, 2.6vw, 1.6rem);
	line-height: 1.2;
}

.lzb-karte-gross small {
	color: var(--cream-muted);
	font-size: 0.82rem;
	line-height: 1.5;
}

.lzb-karte-gross--nummer strong {
	font-family: var(--utility);
	letter-spacing: 0.06em;
}

.lzb-verlauf {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
}

.lzb-verlauf li {
	display: grid;
	gap: 0.3rem;
	padding: 0 0.6rem;
	border-top: 2px solid var(--line);
	padding-top: 0.9rem;
	color: rgba(246, 240, 229, 0.45);
	font-size: 0.85rem;
}

.lzb-verlauf li.is-erledigt {
	border-top-color: var(--olive);
	color: var(--cream-muted);
}

.lzb-verlauf li.is-jetzt {
	border-top-color: var(--wheat);
	color: var(--cream);
}

.lzb-verlauf-punkt {
	width: 0.65rem;
	height: 0.65rem;
	border-radius: 999px;
	background: currentColor;
}

.lzb-verlauf small {
	color: var(--cream-muted);
	font-size: 0.78rem;
	line-height: 1.45;
}

.lzb-zahlbox,
.lzb-belegkarte {
	padding: 1.3rem;
	border: 1px solid var(--line);
	border-radius: 1.1rem;
	background: var(--glass-light);
}

.lzb-zahlbox h2,
.lzb-belegkarte h2 {
	margin: 0 0 0.8rem;
	font-family: var(--display);
	font-size: 1.3rem;
}

.lzb-zahlbox pre {
	margin: 0;
	overflow-x: auto;
	color: var(--cream);
	font-family: var(--utility);
	font-size: 0.9rem;
	line-height: 1.7;
	white-space: pre-wrap;
}

.lzb-beleg {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}

.lzb-beleg th,
.lzb-beleg td {
	padding: 0.5rem 0.4rem;
	text-align: left;
	border-bottom: 1px solid var(--line);
}

.lzb-beleg thead th {
	font-family: var(--utility);
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(246, 240, 229, 0.55);
}

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

.lzb-beleg td small {
	display: block;
	color: rgba(246, 240, 229, 0.5);
	font-size: 0.75rem;
}

.lzb-beleg tfoot .is-gesamt th,
.lzb-beleg tfoot .is-gesamt td {
	font-family: var(--utility);
	font-size: 1.05rem;
	font-weight: 800;
	border-bottom: 0;
}

.lzb-beleg-steuer {
	margin: 0.8rem 0 0;
	color: rgba(246, 240, 229, 0.55);
	font-size: 0.8rem;
	line-height: 1.55;
}

.lzb-belegdaten {
	display: grid;
	gap: 0.5rem;
	margin: 1.2rem 0 0;
	padding-top: 1rem;
	border-top: 1px solid var(--line);
	grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}

.lzb-belegdaten dt {
	font-family: var(--utility);
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(246, 240, 229, 0.55);
}

.lzb-belegdaten dd {
	margin: 0.1rem 0 0;
	color: var(--cream);
	font-size: 0.9rem;
	line-height: 1.5;
}

.lzb-status-fuss {
	display: grid;
	gap: 0.7rem;
	justify-items: start;
	color: var(--cream-muted);
	line-height: 1.6;
}

.lzb-status-fuss a {
	color: var(--wheat-light);
}

.lzb-status-fuss .primary-action {
	color: var(--ink);
	text-decoration: none;
}

.lzb-suche {
	display: grid;
	gap: 0.9rem;
	max-width: 30rem;
	padding: 1.3rem;
	border: 1px solid var(--line);
	border-radius: 1.1rem;
	background: var(--glass-light);
}

.lzb-suche button {
	justify-self: start;
	padding: 0.75rem 1.4rem;
	border: 0;
	border-radius: 999px;
	background: var(--wheat);
	color: var(--ink);
	font-family: var(--utility);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
}

/* --------------------------------------------------------------- Druckansicht */

@media print {
	.site-header,
	.site-footer,
	.lzb-leiste,
	.lzb-status-fuss .primary-action {
		display: none;
	}

	.lzb-shell {
		background: #fff;
		color: #111;
	}

	.lzb-karte-gross,
	.lzb-belegkarte,
	.lzb-zahlbox {
		border-color: #999;
		background: none;
	}
}
