.fixed-contact-toolbar {
    position: fixed;
    left: 0.75rem;
    top: 50%;
    z-index: 30;
    display: none;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 0.5rem;
    border: 1px solid rgba(232, 224, 213, 0.8);
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem;
    box-shadow: 0 14px 35px rgba(13, 28, 45, 0.07);
    backdrop-filter: blur(8px);
}

.fixed-contact-link {
    position: relative;
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    color: #0d1c2d;
    outline: 2px solid transparent;
    outline-offset: 2px;
    transition:
        color 150ms ease,
        background-color 150ms ease,
        box-shadow 150ms ease;
}

.fixed-contact-link:hover {
    background-color: #f8f5ef;
    color: #c8a45d;
}

.fixed-contact-link:focus-visible {
    box-shadow:
        0 0 0 2px #faf8f4,
        0 0 0 4px #c8a45d;
}

.fixed-contact-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.fixed-contact-link-accent {
    background-color: #0d1c2d;
    color: #fff;
}

.fixed-contact-link-accent:hover {
    background-color: #c8a45d;
    color: #fff;
}

.fixed-contact-link.is-disabled {
    cursor: not-allowed;
    color: rgba(105, 115, 134, 0.45);
}

.fixed-contact-link.is-disabled:hover {
    background-color: transparent;
    color: rgba(105, 115, 134, 0.45);
}

.fixed-contact-tooltip {
    pointer-events: none;
    position: absolute;
    left: calc(100% + 0.6rem);
    top: 50%;
    display: none;
    transform: translate(0.25rem, -50%);
    white-space: nowrap;
    border-radius: 9999px;
    background-color: #0d1c2d;
    padding: 0.375rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1rem;
    color: #fff;
    opacity: 0;
    box-shadow: 0 14px 35px rgba(13, 28, 45, 0.07);
    transition:
        opacity 150ms ease,
        transform 150ms ease;
}

.fixed-contact-link:hover .fixed-contact-tooltip,
.fixed-contact-link:focus-visible .fixed-contact-tooltip {
    transform: translateY(-50%);
    opacity: 1;
}

@media (min-width: 768px) {
    .fixed-contact-toolbar {
        display: flex;
    }

    .fixed-contact-tooltip {
        display: block;
    }
}
