.quick-fab {
    position: fixed;
    right: 18px;
    bottom: 94px;
    width: 60px;
    height: 60px;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #fff;
    box-shadow: 0 24px 50px rgba(0,0,0,0.35);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 48;
    cursor: pointer;
}
.quick-fab__plus {
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-1px);
}
.quick-fab.is-open .quick-fab__plus {
    transform: rotate(45deg);
}

.quick-fab-menu {
    position: fixed;
    right: 18px;
    bottom: 164px;
    width: min(300px, calc(100vw - 28px));
    display: none;
    z-index: 47;
}
.quick-fab-menu.is-open {
    display: grid;
    gap: 10px;
}
.quick-fab-menu__item {
    display: block;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(8, 19, 36, 0.94);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: var(--shadow);
}
.quick-fab-menu__item strong {
    display: block;
    margin-bottom: 6px;
}
.quick-fab-menu__item span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
}
.quick-fab-menu__item--muted {
    opacity: 0.75;
}

@media (max-width: 980px) {
    .quick-fab {
        display: inline-flex;
    }
}
