#floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

#floating-contact .contact-toggle {
    background: #0073aa;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

#floating-contact .contact-options {
    position: absolute;
    bottom: 60px;       /* ช่องว่างจาก icon หลัก */
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

#floating-contact .contact-options a img {
    display: block;       /* ให้รูปแสดงเป็นบล็อก */
    border-radius: 0;     /* เอา border-radius ออก */
    width: auto;          /* ใช้ขนาดต้นฉบับของรูป */
    height: auto;
}


#floating-contact.active .contact-options {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
