.dvch_contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: black;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dvch_contact--image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

.dvch_contact--text-wrapper {
    max-width: 7rem;
    overflow: hidden;
    transition: max-width 0.3s ease;
}

.dvch_contact--text, .dvch_contact--extended-text {
    color: white;
    white-space: nowrap;
    display: block;
    transition: opacity 0.3s ease;
}

.dvch_contact--extended-text {
    opacity: 0;
    height: 0;
}

.dvch_contact--text {
    opacity: 1;
}

.dvch_contact:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.dvch_contact:hover .dvch_contact--text-wrapper {
    max-width: 400px;
}

.dvch_contact:hover .dvch_contact--text-wrapper.dvch_contact--longer {
    max-width: 500px;
}

.dvch_contact:hover .dvch_contact--text {
    opacity: 0;
    height: 0;
}

.dvch_contact:hover .dvch_contact--extended-text {
    opacity: 1;
    height: auto;
}