.public-product-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 72px;
    padding: 12px max(20px, calc((100vw - 1100px) / 2));
    border-bottom: 1px solid #e2e8f0;
    background: rgb(248 250 252 / 94%);
    backdrop-filter: blur(16px);
}

.public-product-header__brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: auto;
}

.public-product-header__brand .brand__logo {
    width: 48px;
    height: 48px;
}

.public-product-header nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.public-product-header nav a,
.public-product-header__login {
    color: #52525b;
    font-size: 13px;
    font-weight: 700;
}

.public-product-header nav a:hover,
.public-product-header__login:hover {
    color: #18181b;
}

.public-product-header nav a[aria-current="page"] {
    color: #4f46e5;
}

.public-product-header__action {
    flex-shrink: 0;
    padding: 11px 15px;
    border-radius: 11px;
    background: #4f46e5;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.public-product-header__action:hover {
    background: #4338ca;
}

.public-product-header__more {
    position: relative;
}

.public-product-header__more summary {
    color: #52525b;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.public-product-header__more summary::-webkit-details-marker {
    display: none;
}

.public-product-header__more summary::after {
    content: " +";
    color: #a1a1aa;
}

.public-product-header__more[open] summary,
.public-product-header__more summary[aria-current="page"],
.public-product-header__more summary:hover {
    color: #18181b;
}

.public-product-header__more[open] summary::after {
    content: " -";
}

.public-product-header__more div {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    display: grid;
    width: 210px;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 50px rgb(79 70 229 / 12%);
}

.public-product-header__more div a {
    padding: 9px 10px;
    border-radius: 8px;
}

.public-product-header__more div a:hover {
    background: #eef2ff;
    color: #3730a3;
}

@media (max-width: 700px) {
    .public-product-header {
        align-items: center;
        flex-direction: row;
        gap: 9px;
        padding: 10px 14px;
    }

    .public-product-header__brand {
        flex-shrink: 0;
    }

    .public-product-header__brand .brand__logo {
        width: 42px;
        height: 42px;
    }

    .public-product-header nav a:nth-child(n + 3),
    .public-product-header__more,
    .public-product-header__login {
        display: none;
    }

    .public-product-header nav {
        gap: 10px;
    }

    .public-product-header nav a {
        font-size: 11px;
    }

    .public-product-header__action {
        padding: 9px 10px;
        font-size: 11px;
    }
}
