.dr-almond-product-question{margin:10px 0 4px;font-size:13px}
.dr-almond-product-question a{font-weight:600;text-decoration:underline;text-underline-offset:2px}

#dr-almond-help-widget, #dr-almond-help-widget * { box-sizing: border-box; }

	.pq-help-widget {
		position: fixed;
		right: 22px;
		bottom: 22px;
		z-index: 900000;
		font-family: "Open Sans", Arial, sans-serif;
	}

	.pq-help-launcher {
		display: inline-flex;
		align-items: center;
		gap: 7px;
		border: 0;
		border-radius: 999px;
		padding: 12px 18px;
		font-size: 13px;
		font-weight: 700;
		letter-spacing: .06em;
		cursor: pointer;
		box-shadow: 0 8px 28px rgba(0,0,0,.18);
		background: #4a4039;
		color: #fff;
	}

	.pq-help-launcher-icon {
		display: inline-grid;
		place-items: center;
		width: 18px;
		height: 18px;
		border: 1.5px solid currentColor;
		border-radius: 50%;
		font-size: 12px;
		line-height: 1;
	}

	.pq-help-panel {
		/*
		 * Fixed statt absolute: visuell identisch zur bisherigen Desktop-Position
		 * (Widget right 22 + Panel right 0 / Widget bottom 22 + Panel bottom 64),
		 * aber jetzt direkt gegen den sichtbaren Viewport begrenzbar.
		 */
		position: fixed;
		right: 22px;
		bottom: 86px;
		width: min(410px, calc(100vw - 32px));
		max-height: calc(100vh - 96px); /* Fallback */
		max-height: calc(100dvh - 96px);
		background: #fff;
		border-radius: 16px;
		box-shadow: 0 18px 60px rgba(0,0,0,.24);
		border: 1px solid rgba(0,0,0,.08);
		overflow: hidden;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(8px);
		transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
		display: flex;
		flex-direction: column;
	}

	.pq-help-panel.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.pq-help-widget.panel-open .pq-help-launcher {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}

	.pq-help-panel.is-expanded {
		position: fixed;
		right: 20px;
		bottom: 20px;
		width: min(780px, calc(100vw - 40px));
		height: min(820px, calc(100dvh - 40px));
		max-height: calc(100vh - 40px); /* Fallback für ältere Browser */
	}

	.pq-help-panel.is-expanded .pq-help-head,
	.pq-help-panel.is-expanded .pq-help-footer {
		flex: 0 0 auto;
	}

	.pq-help-panel.is-expanded .pq-help-body {
		flex: 1 1 auto;
		min-height: 0;
		max-height: none;
		overflow-y: auto;
	}

	.pq-help-panel.is-expanded .pq-help-answer-content {
		font-size: 15px;
		line-height: 1.7;
	}

	.pq-help-head {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		gap: 16px;
		height: auto !important;
		min-height: 0 !important;
		padding: 10px 16px 8px !important;
		border-bottom: 1px solid rgba(0,0,0,.08);
		flex: 0 0 auto;
	}

	/*
	 * Der Kopf soll exakt seiner sichtbaren Copy folgen. Fruehere Versionen
	 * haben ueber max-height:66px geklemmt; das sparte Leerraum, schnitt aber
	 * auf sehr schmalen Viewports zweizeilige Titel ab. Statt einer festen
	 * Hoehe normalisieren wir die beiden Inhaltsboxen defensiv auf ihre
	 * natuerliche Hoehe.
	 */
	.pq-help-head > div:first-child {
		flex: 1 1 auto;
		align-self: flex-start;
		width: auto !important;
		height: auto !important;
		min-height: 0 !important;
		max-height: none !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.pq-help-head h2 {
		height: auto !important;
		min-height: 0 !important;
		max-height: none !important;
		margin: 1px 0 0 !important;
		padding: 0 !important;
		font-size: 21px;
		line-height: 1.2;
		font-weight: 400;
	}

	.pq-help-kicker {
		height: auto !important;
		min-height: 0 !important;
		max-height: none !important;
		margin: 0 !important;
		padding: 0 !important;
		font-size: 10px;
		line-height: 1.2;
		font-weight: 700;
		letter-spacing: .08em;
		opacity: .55;
	}

	.pq-help-head-actions {
		display: flex;
		align-items: center;
		align-self: flex-start;
		gap: 8px;
		flex: 0 0 auto;
		height: auto !important;
		min-height: 0 !important;
		max-height: none !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.pq-help-expand,
	.pq-help-close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px !important;
		min-width: 40px;
		min-height: 40px !important;
		max-height: 40px !important;
		margin: 0 !important;
		border: 0;
		background: transparent;
		color: inherit;
		cursor: pointer;
		line-height: 1 !important;
		padding: 0 !important;
	}

	.pq-help-expand {
		font-size: 21px;
	}

	.pq-help-close {
		font-size: 30px;
	}

	.pq-help-body {
		padding: 14px 20px 6px;
		overflow-y: auto;
		overflow-x: hidden;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
		flex: 1 1 auto;
		min-height: 0;
		max-height: calc(100vh - 300px);
	}

	.pq-help-footer {
		flex: 0 0 auto;
		background: #fff;
		padding: 0 20px 15px;
		border-top: 1px solid rgba(0,0,0,.04);
		z-index: 2;
	}

	.pq-help-label {
		display: block;
		margin: 0 0 10px;
		font-size: 13px;
	}

	.pq-help-searchbox {
		display: flex;
		align-items: center;
		border: 1px solid #cfcfcf;
		border-radius: 5px;
		overflow: hidden;
		background: #fff;
	}

	.pq-help-searchbox input {
		flex: 1;
		min-width: 0;
		border: 0 !important;
		box-shadow: none !important;
		margin: 0 !important;
		height: 43px;
		padding: 0 12px;
		font-size: 14px;
		background: transparent;
	}

	.pq-help-searchbox span {
		display: grid;
		place-items: center;
		width: 44px;
		height: 43px;
		background: #7aa254;
		color: #fff;
		font-size: 23px;
	}

	.pq-help-state {
		margin-top: 10px;
		font-size: 12px;
		opacity: .65;
	}

	.pq-help-featured {
		margin-top: 13px;
	}

	.pq-help-featured > strong {
		display: block;
		margin-bottom: 5px;
		font-size: 12px;
	}

	.pq-help-featured-list {
		display: flex;
		flex-direction: column;
		align-items: stretch;
	}

	.pq-help-featured-list button {
		position: relative;
		width: 100%;
		border: 0;
		border-bottom: 1px solid rgba(0,0,0,.08);
		padding: 8px 20px 8px 0;
		background: transparent;
		color: inherit;
		font-size: 12px;
		font-weight: 600;
		line-height: 1.4;
		text-align: left;
		cursor: pointer;
	}

	.pq-help-featured-list button::after {
		content: "›";
		position: absolute;
		right: 3px;
		top: 50%;
		transform: translateY(-50%);
		opacity: .45;
	}

	.pq-help-featured-list button:hover,
	.pq-help-featured-list button:focus {
		color: #55783a;
	}

	.pq-help-all-topics {
		display: inline-block;
		margin-top: 11px;
		font-size: 12px;
		font-weight: 700;
		color: #55783a;
		text-decoration: underline;
		text-underline-offset: 2px;
	}

	.pq-help-results {
		margin-top: 10px;
		border-top: 1px solid rgba(0,0,0,.10);
		max-height: 280px;
		overflow-y: auto;
		overflow-x: hidden;
		overscroll-behavior: contain;
	}

	.pq-help-result {
		display: block;
		width: 100%;
		text-align: left;
		border: 0;
		border-bottom: 1px solid rgba(0,0,0,.08);
		background: #fff;
		padding: 11px 4px;
		cursor: pointer;
	}

	.pq-help-result:hover,
	.pq-help-result:focus {
		background: #f7f5f2;
	}

	.pq-help-result-question {
		display: block;
		font-size: 13px;
		line-height: 1.35;
		font-weight: 700;
		color: #1f1f1f;
		overflow-wrap: anywhere;
	}

	.pq-help-result-group,
	.pq-help-answer-group {
		display: block;
		margin-top: 4px;
		font-size: 10px;
		line-height: 1.3;
		letter-spacing: .03em;
		text-transform: uppercase;
		opacity: .55;
	}

	a.pq-help-answer-group {
		width: fit-content;
		color: inherit;
		text-decoration: underline;
		text-underline-offset: 2px;
	}

	.pq-help-back {
		border: 0;
		background: transparent;
		padding: 0;
		margin: 0 0 12px;
		cursor: pointer;
		font-size: 12px;
		font-weight: 700;
	}

	.pq-help-answer-view h3 {
		margin: 6px 0 12px;
		font-size: 17px;
		line-height: 1.35;
	}

	.pq-help-answer-content {
		font-size: 13px;
		line-height: 1.62;
		overflow-wrap: anywhere;
	}

	.pq-help-answer-content p {
		margin: 0 0 13px;
	}

	.pq-help-answer-content p:last-child {
		margin-bottom: 0;
	}

	.pq-help-answer-content ul,
	.pq-help-answer-content ol {
		margin: 0 0 14px 20px;
		padding: 0;
	}

	.pq-help-answer-content li {
		margin: 0 0 7px;
	}

	.pq-help-answer-content strong {
		font-weight: 700;
	}

	.pq-help-answer-content a {
		text-decoration: underline;
	}

	.pq-help-more {
		display: inline-block;
		margin-top: 13px;
		font-size: 12px;
		font-weight: 700;
		color: #55783a;
		text-decoration: underline;
		text-underline-offset: 2px;
	}

	.pq-help-divider {
		display: flex;
		align-items: center;
		gap: 10px;
		margin: 8px 0 10px;
		font-size: 12px;
		opacity: .6;
	}
	.pq-help-divider::before,
	.pq-help-divider::after {
		content: "";
		height: 1px;
		background: rgba(0,0,0,.12);
		flex: 1;
	}

	.pq-help-contact strong { display: block; margin-bottom: 8px; }

	.pq-help-contact-button {
		width: 100%;
		border: 0;
		border-radius: 6px;
		padding: 9px 12px;
		font-size: 13px;
		font-weight: 700;
		cursor: pointer;
		background: #4a4039;
		color: #fff;
	}

	.pq-help-privacy {
		display: block;
		margin-top: 8px;
		font-size: 10px;
		line-height: 1.45;
		opacity: .67;
	}

	.pq-help-privacy a {
		color: inherit;
		text-decoration: underline;
	}

	.pq-help-status {
		margin-top: 10px !important;
		padding: 9px 10px;
		border-radius: 7px;
		background: #f6f3f0;
	}

	/*
	 * Touch-Suche mit Bildschirmtastatur: Der Nutzer hat das Suchfeld bewusst
	 * fokussiert. In diesem knappen Zustand bleibt der Kontaktbutton erreichbar,
	 * waehrend rein erlaeuternde Footer-Elemente temporaer Platz freigeben.
	 * Beim Verlassen des Suchfelds kehrt der vollstaendige Footer zurueck.
	 */
	.pq-help-panel.is-keyboard-open .pq-help-footer {
		padding-top: 8px;
		padding-bottom: 10px;
	}

	.pq-help-panel.is-keyboard-open .pq-help-divider,
	.pq-help-panel.is-keyboard-open .pq-help-contact > strong,
	.pq-help-panel.is-keyboard-open .pq-help-privacy,
	.pq-help-panel.is-keyboard-open .pq-help-status {
		display: none !important;
	}

	html.pq-help-scroll-lock,
	body.pq-help-scroll-lock {
		overflow: hidden !important;
		overscroll-behavior: none;
	}

	body .back-to-top {
		bottom: 104px !important;
	}

	@media (max-width: 640px) {
		.pq-help-widget { right: 12px; bottom: 12px; left: 12px; display:flex; flex-direction:column; align-items:flex-end; }
		.pq-help-launcher { margin-left: auto; margin-right: 0; }
		.pq-help-panel {
			position: fixed;
			left: 12px;
			right: 12px;
			bottom: 72px;
			width: auto;
			max-height: calc(100vh - 92px); /* Fallback */
			max-height: calc(100dvh - 92px);
		}
		.pq-help-body {
			max-height: calc(100vh - 310px);
		}

		/*
		 * Mobil: das Panel wird in den tatsächlich sichtbaren Bereich gesetzt.
		 * Der Footer ist jetzt strukturell außerhalb des Scrollbereichs und
		 * bleibt deshalb IMMER erreichbar.
		 */
		.pq-help-panel.is-expanded {
			left: 8px;
			right: 8px;
			top: 8px;
			bottom: auto;
			width: auto;
			height: calc(100dvh - 16px);
			max-height: none;
			border-radius: 14px;
		}

		.pq-help-panel.is-expanded .pq-help-body {
			flex: 1 1 auto;
			min-height: 0;
			max-height: none;
			overflow-y: auto;
			padding-bottom: 12px;
		}

		.pq-help-panel.is-expanded .pq-help-footer {
			flex: 0 0 auto;
			padding-bottom: calc(14px + env(safe-area-inset-bottom));
		}

		body .back-to-top {
			bottom: 92px !important;
		}

	}

	/* Schmale Touch-/Phone-Viewports: Titel etwas kompakter, ohne feste Header-Hoehe. */
	@media (max-width: 640px) {
		.pq-help-head h2 {
			font-size: 19px;
		}
	}
