.floating-phone-btn-container {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 9999;
}

.floating-phone-btn-wrapper {
    pointer-events: auto;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    position: relative;
    gap: 15px;
}

.floating-phone-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
}

.floating-phone-button:focus {
    outline: 2px solid #333;
    outline-offset: 4px;
}

.floating-phone-button svg {
    display: block;
    fill: currentColor;
}

.floating-phone-text {
    display: inline-flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    pointer-events: none;
}

/* Hover revealed display for desktop */
@media (min-width: 1025px) {
    .floating-phone-btn-wrapper:hover .floating-phone-text {
        opacity: 1;
        visibility: visible;
    }
}

/* Mobile responsive constraints */
@media (max-width: 1024px) {
    .floating-phone-text {
        display: none !important;
    }
}
