/* /Layout/MainLayout.razor.rz.scp.css */
/* Shared layout styling lives in wwwroot/css/app.css. */
/* /Layout/NavMenu.razor.rz.scp.css */
.site-nav[b-22dm4sz3ge] {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.nav-links[b-22dm4sz3ge] {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links > a:not(.button)[b-22dm4sz3ge] {
    position: relative;
    padding: 10px 0;
    color: var(--ink);
    font-size: .91rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-links > a:not(.button)[b-22dm4sz3ge]::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 4px;
    left: 50%;
    height: 2px;
    background: var(--pink-500);
    transition: right .2s ease, left .2s ease;
}

.nav-links > a:not(.button):hover[b-22dm4sz3ge]::after,
.nav-links > a:not(.button):focus-visible[b-22dm4sz3ge]::after {
    right: 0;
    left: 0;
}

.nav-links > .nav-phone:not(.button)[b-22dm4sz3ge] {
    color: var(--plum-800);
    font-weight: 800;
    white-space: nowrap;
}

.nav-toggle[b-22dm4sz3ge] {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 50%;
    background: var(--stone-100);
}

.nav-toggle span[b-22dm4sz3ge] {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink-950);
}

@media (max-width: 820px) {
    .nav-toggle[b-22dm4sz3ge] { display: block; }
    .nav-links[b-22dm4sz3ge] {
        position: absolute;
        top: 84px;
        right: 0;
        left: 0;
        display: none;
        padding: 24px max(20px, calc((100vw - 1180px) / 2));
        align-items: stretch;
        flex-direction: column;
        gap: 5px;
        border-top: 1px solid var(--stone-200);
        background: rgba(255, 250, 253, .98);
        box-shadow: 0 24px 45px rgba(24, 17, 23, .1);
    }
    .nav-links.open[b-22dm4sz3ge] { display: flex; }
    .nav-links .button[b-22dm4sz3ge] { margin-top: 10px; }
    .nav-links > .nav-phone:not(.button)[b-22dm4sz3ge] { color: var(--pink-500); }
}
