.floating-social {
    position: fixed;
    bottom: 88px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.floating-social-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff5a5f;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    margin-top: 10px;
    display: none; /* Hide the toggle button */
}

.floating-social-toggle i {
    color: white;
    font-size: 24px;
}

.floating-social-menu {
    /* Make menu visible by default */
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.floating-social-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.floating-social-item:hover {
    transform: scale(1.1);
}

.phone-item {
    background-color: #4CAF50;
}

.zalo-item {
    background-color: #0068ff;
}

.facebook-item {
    background-color: #1877F2;
}

.floating-social-item i {
    color: white;
    font-size: 24px;
}

.floating-social-toggle.active {
    transform: rotate(45deg);
}
