.wpd-floating-contact {
    position: fixed;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wpd-floating-contact__button {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.wpd-floating-contact__button:hover,
.wpd-floating-contact__button:focus {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
    filter: brightness(1.05);
    color: #ffffff !important;
}

.wpd-floating-contact__button:focus-visible {
    outline: 3px solid #bcf58e;
    outline-offset: 4px;
}

.wpd-floating-contact__svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    line-height: 1;
}

.wpd-floating-contact__svg svg {
    display: block;
}

.wpd-floating-contact__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

@media only screen and (max-width: 767px) {
    .wpd-floating-contact {
        gap: 8px;
    }

    .wpd-floating-contact__button {
        width: 50px;
        height: 50px;
    }
}
