/* Sunnhäusl PWA – Hinweis-Kärtchen für App & Mitteilungen */
.sh-pwa-card {
	position: fixed; z-index: 95; left: 16px; right: 16px; bottom: calc(76px + env(safe-area-inset-bottom));
	max-width: 420px; display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start;
	background: #fff; color: #2E2622; border-radius: 16px; padding: 18px 18px 16px;
	box-shadow: 0 12px 40px rgb(74 27 6 / 22%), 0 2px 6px rgb(74 27 6 / 10%); border-top: 5px solid var(--wp--preset--color--sonne, #EEA12A);
	font: 16px/1.5 var(--wp--preset--font-family--source-sans, system-ui, sans-serif);
	animation: sh-pwa-in .35s ease-out;
}
@media (min-width: 782px) { .sh-pwa-card { left: auto; right: 24px; bottom: 24px; } }
.sh-pwa-card__icon { width: 44px; height: 44px; border-radius: 12px; display: block; }
.sh-pwa-card__body { display: grid; gap: 6px; min-width: 0; }
.sh-pwa-card__title { margin: 0; padding-right: 20px; font: 600 1.15rem/1.3 var(--wp--preset--font-family--lora, Georgia, serif); color: var(--wp--preset--color--braun, #6F2A0C); }
.sh-pwa-card__text { margin: 0; font-size: .95rem; }
.sh-pwa-card__fine { margin: 0; font-size: .8rem; }
.sh-pwa-card__fine a { color: #6B5B51; }
.sh-pwa-card__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; align-items: center; }
.sh-pwa-btn {
	font: 700 .95rem/1.2 inherit; font-family: inherit; min-height: 44px; padding: 0 16px; border-radius: 999px; cursor: pointer;
	border: 2px solid var(--wp--preset--color--braun, #6F2A0C); background: #fff; color: var(--wp--preset--color--braun, #6F2A0C);
}
.sh-pwa-btn--primary { background: var(--wp--preset--color--braun, #6F2A0C); color: #fff; }
.sh-pwa-btn--primary:hover { background: var(--wp--preset--color--braun-dunkel, #4A1B06); border-color: var(--wp--preset--color--braun-dunkel, #4A1B06); }
.sh-pwa-btn--link { border-color: transparent; background: none; text-decoration: underline; padding: 0 8px; font-weight: 600; }
.sh-pwa-btn:disabled { opacity: .7; cursor: progress; }
.sh-pwa-btn:focus-visible, .sh-pwa-card__close:focus-visible { outline: 3px solid var(--wp--preset--color--sonne, #EEA12A); outline-offset: 2px; }
.sh-pwa-card__close { position: absolute; top: 6px; right: 8px; width: 36px; height: 36px; border: 0; background: none; font-size: 26px; line-height: 1; color: #6B5B51; cursor: pointer; border-radius: 50%; }
@keyframes sh-pwa-in { from { transform: translateY(16px); opacity: 0; } to { transform: none; opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .sh-pwa-card { animation: none; } }
