/* /Components/Layout/MainLayout.razor.rz.scp.css */
.public-shell[b-lh53wxom29] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    color: #20271f;
    background-color: #f4eee2;
    background-image: radial-gradient(120% 620px at 85% -160px, #fbf7ee 0%, #f4eee2 70%);
    background-repeat: no-repeat;
    font-family: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Skip-to-content (WCAG 2.4.1). */
.public-skip[b-lh53wxom29] {
    position: absolute;
    left: 12px;
    top: -56px;
    z-index: 80;
    padding: 10px 16px;
    background: var(--green);
    color: var(--paper);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.15s ease;
}

.public-skip:focus[b-lh53wxom29] { top: 10px; }
.public-skip:focus-visible[b-lh53wxom29] { outline: 2px solid var(--ink); outline-offset: 2px; }

/* ---- Header ---- */
.public-header[b-lh53wxom29] {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(244, 238, 226, 0.86);
    border-bottom: 1px solid rgba(228, 218, 198, 0.7);
    backdrop-filter: blur(10px);
}

.public-header-inner[b-lh53wxom29] {
    max-width: 1240px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* ---- Brand (header, menu, footer) ---- */
.public-brand[b-lh53wxom29] {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--ink);
    text-decoration: none;
}

.public-brand-mark[b-lh53wxom29] {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--green);
    color: var(--paper);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
}

.public-brand-name[b-lh53wxom29] { font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }

/* ---- Desktop nav + CTA ---- */
.public-nav[b-lh53wxom29] {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 15px;
    font-weight: 500;
}

.public-nav a[b-lh53wxom29] { color: var(--body-strong); text-decoration: none; }
.public-nav a:hover[b-lh53wxom29] { color: var(--green); }
.public-nav a.active[b-lh53wxom29] { color: var(--ink); font-weight: 600; }

.public-header-cta[b-lh53wxom29] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 999px;
    background: var(--green);
    color: var(--paper);
    font-weight: 600;
    font-size: 14.5px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.15s ease, transform 0.12s ease;
}
.public-header-cta:hover[b-lh53wxom29] { background: var(--green-dark); transform: translateY(-1px); }

/* Checkout-flow trust badge (replaces the nav CTA; visible at all widths) */
.public-secure[b-lh53wxom29] { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--trust-green); white-space: nowrap; }
.public-secure svg[b-lh53wxom29] { stroke: var(--green); }

/* ---- Hamburger ---- */
.public-burger[b-lh53wxom29] {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}
.public-burger span[b-lh53wxom29] { width: 17px; height: 2px; border-radius: 2px; background: var(--ink); display: block; }
.public-burger-x[b-lh53wxom29] { gap: 0; }

/* ---- Full-screen mobile menu ---- */
.public-menu[b-lh53wxom29] {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: var(--paper);
    padding: 16px 22px 22px;
    display: flex;
    flex-direction: column;
}

.public-menu-top[b-lh53wxom29] { display: flex; align-items: center; justify-content: space-between; }

.public-menu-nav[b-lh53wxom29] { display: flex; flex-direction: column; gap: 6px; margin-top: 42px; }
.public-menu-nav a[b-lh53wxom29] {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 34px;
    letter-spacing: -0.01em;
    color: var(--ink);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}
.public-menu-nav a.active[b-lh53wxom29] { color: var(--green); }

.public-menu-cta[b-lh53wxom29] {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 17px;
    border-radius: 14px;
    background: var(--green);
    color: var(--paper);
    font-weight: 600;
    font-size: 16.5px;
    text-decoration: none;
}

/* ---- Main ---- */
.public-main[b-lh53wxom29] {
    flex: 1;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 40px 64px;
    box-sizing: border-box;
}

/* ---- Footer ---- */
.public-footer[b-lh53wxom29] { border-top: 1px solid var(--line); }

.public-footer-inner[b-lh53wxom29] {
    max-width: 1240px;
    margin: 0 auto;
    padding: 46px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.public-footer-brand-col[b-lh53wxom29] { max-width: 440px; }

.public-footer-disclaimer[b-lh53wxom29] {
    /* --muted (#6b746a) matches the mockup palette (hand-picked). Note: ~4.2:1 on cream,
       just under WCAG AA for 14.5px body — revisit if this legal line needs AA. */
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 14px 0 0;
}

.public-footer-nav[b-lh53wxom29] { display: flex; flex-wrap: wrap; gap: 18px 30px; font-size: 14.5px; font-weight: 500; }
.public-footer-nav a[b-lh53wxom29] { color: var(--body-soft); text-decoration: none; display: inline-flex; align-items: center; min-height: 32px; }
.public-footer-nav a:hover[b-lh53wxom29] { color: var(--green); }
/* §356a BGB: the withdrawal-function link must be "gut lesbar" and "hervorgehoben" — visually
   distinct from its sibling legal links (ink + underline instead of soft grey). */
.public-footer-nav a.wf-footer-link[b-lh53wxom29] { color: var(--body-strong); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.public-footer-nav a.wf-footer-link:hover[b-lh53wxom29] { color: var(--green); }

/* ---- Focus ---- */
.public-nav a:focus-visible[b-lh53wxom29],
.public-footer-nav a:focus-visible[b-lh53wxom29],
.public-menu-nav a:focus-visible[b-lh53wxom29],
.public-brand:focus-visible[b-lh53wxom29],
.public-header-cta:focus-visible[b-lh53wxom29],
.public-menu-cta:focus-visible[b-lh53wxom29],
.public-burger:focus-visible[b-lh53wxom29] { outline: 2px solid var(--green); outline-offset: 2px; border-radius: 8px; }

/* ---- Responsive: switch to hamburger ---- */
@media (max-width: 820px) {
    .public-nav[b-lh53wxom29], .public-header-cta[b-lh53wxom29] { display: none; }
    .public-burger[b-lh53wxom29] { display: flex; }
}

@media (min-width: 821px) {
    .public-menu[b-lh53wxom29] { display: none; }
}

@media (max-width: 760px) {
    .public-main[b-lh53wxom29] { padding: 28px 22px 48px; }
    .public-footer-inner[b-lh53wxom29] { padding: 36px 22px 44px; }
}

@media (prefers-reduced-motion: reduce) {
    .public-skip[b-lh53wxom29], .public-header-cta[b-lh53wxom29], .public-menu-cta[b-lh53wxom29] { transition: none; transform: none; }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-9v68r24hev],
.components-reconnect-repeated-attempt-visible[b-9v68r24hev],
.components-reconnect-failed-visible[b-9v68r24hev],
.components-pause-visible[b-9v68r24hev],
.components-resume-failed-visible[b-9v68r24hev],
.components-rejoining-animation[b-9v68r24hev] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-9v68r24hev],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-9v68r24hev],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-9v68r24hev],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-9v68r24hev],
#components-reconnect-modal.components-reconnect-retrying[b-9v68r24hev],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-9v68r24hev],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-9v68r24hev],
#components-reconnect-modal.components-reconnect-failed[b-9v68r24hev],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-9v68r24hev] {
    display: block;
}


#components-reconnect-modal[b-9v68r24hev] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-9v68r24hev 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-9v68r24hev 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-9v68r24hev 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-9v68r24hev]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-9v68r24hev 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-9v68r24hev {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-9v68r24hev {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-9v68r24hev {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-9v68r24hev] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-9v68r24hev] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-9v68r24hev] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-9v68r24hev] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-9v68r24hev] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-9v68r24hev] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-9v68r24hev] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-9v68r24hev 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-9v68r24hev] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-9v68r24hev {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
