.floating-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    pointer-events: none;
}

.floating-header-bar {
    height: 92px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    position: relative;
    pointer-events: auto;
}

.fh-menu-btn {
    position: absolute;
    top: 20px;
    left: 16px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 10px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 0 8px;
    cursor: pointer;
}

.fh-menu-btn:hover {
    background: transparent;
    transform: none;
}

.fh-menu-btn span {
    display: block;
    height: 4px;
    border-radius: 999px;
    background: #0f172a;
}

.fh-logo-link {
    position: absolute;
    left: 50%;
    bottom: -32px;
    transform: translateX(-50%);
    width: 116px;
    height: 116px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: none;
    background: #fff;
}

.fh-logo-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fh-menu {
    pointer-events: auto;
    margin: 10px 12px 0;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #d6d6d6;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
    padding: 10px;
    display: none;
}

.floating-header.is-open .fh-menu {
    display: block;
}

.fh-menu-title {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
}

.fh-item {
    width: 100%;
    text-align: left;
    margin: 0;
    border: 0;
    border-radius: 10px;
    background: #f8f8f8;
    color: #111827;
    padding: 9px 10px;
    font-size: 14px;
    cursor: pointer;
}

.fh-item + .fh-item {
    margin-top: 6px;
}

.fh-item:hover {
    background: #ededed;
    transform: none;
}

.floating-header .fh-menu-btn,
.floating-header .fh-item {
    box-shadow: none;
}

body.has-floating-header {
    padding-top: 134px;
}

body.hide-fh-menu .fh-menu-btn,
body.hide-fh-menu .fh-menu {
    display: none;
}
