/*
Theme Name: cake
Description: Child theme for Flatsome Theme by Haravy
Author: Nguyễn Xuân Bình
Author URI: https://haravy.com
Template: flatsome
Version: 1.0
Text Domain: hrvtheme
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}

/* Zalo and Messenger Buttons - Fixed Position */
.binh-contact-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999999; /* Increased z-index to ensure it's on top */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.binh-contact-buttons a {
    display: block;
    width: 50px; /* Adjust size as needed */
    height: 50px; /* Adjust size as needed */
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.binh-contact-buttons a:hover {
    transform: scale(1.1);
}

.binh-contact-buttons img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}