.gmh-floating-menu {
    position: fixed;
    right: 18px;
    bottom: 90px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gmh-floating-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 182px;
    padding: 11px 16px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font: 600 15px/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.gmh-floating-btn:hover,
.gmh-floating-btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    opacity: 0.96;
    color: #fff;
}

.gmh-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gmh-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.gmh-label {
    white-space: nowrap;
}

.gmh-whatsapp {
    background: #25d366;
}

.gmh-livechat {
    background: #005fff;
}

@media (max-width: 767px) {
    .gmh-floating-menu {
        right: 12px;
        bottom: 86px;
    }

    .gmh-floating-btn {
        min-width: auto;
        padding: 14px;
        border-radius: 50%;
    }

    .gmh-icon {
        width: 28px;
        height: 28px;
    }

    .gmh-label {
        display: none;
    }
}
