/* Floating Contact Icons - Luxury Style - FORCE LEFT */
.menha-floating-contacts {
    position: fixed !important;
    bottom: 30px !important;
    left: 25px !important; /* Bên trái */
    right: auto !important; /* Xóa bỏ bên phải */
    z-index: 9999 !important;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menha-zalo-float {
    width: 65px;
    height: 65px;
    background: #0068ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 104, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none !important;
}

.menha-zalo-float img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.menha-zalo-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 104, 255, 0.7);
}

.menha-zalo-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #0068ff;
    opacity: 0.5;
    z-index: -1;
    animation: zalo-pulse 2s infinite;
}

@keyframes zalo-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}

@media screen and (max-width: 767px) {
    .menha-floating-contacts { bottom: 20px !important; left: 15px !important; right: auto !important; }
    .menha-zalo-float { width: 55px; height: 55px; }
    .menha-zalo-float img { width: 32px; height: 32px; }
}
