
/* ===============================
   MDH LUXURY WHATSAPP BUTTON
================================ */

.mdh-whatsapp-luxury {
    position: fixed;
    right: 26px;
    bottom: 26px;
    width: 56px;
    height: 56px;
    background: #1a1a1a; /* MDH dark luxury tone */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    z-index: 9999;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.4s ease;
}

.mdh-whatsapp-luxury img {
    width: 22px;
    height: 22px;
    filter: invert(1);
    position: relative;
    z-index: 2;
}

/* Soft luxury ring pulse */
.mdh-whatsapp-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.25);
    animation: mdhPulse 2.4s infinite ease-out;
    z-index: 1;
}

/* Hover luxury effect */
.mdh-whatsapp-luxury:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

/* Show animation */
.mdh-whatsapp-luxury.show {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse Animation */
@keyframes mdhPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Mobile fine-tuning */
@media (max-width: 480px) {
    .mdh-whatsapp-luxury {
        width: 52px;
        height: 52px;
        right: 18px;
        bottom: 18px;
    }

    .mdh-whatsapp-luxury img {
        width: 20px;
        height: 20px;
    }
}
