.glint-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 12px;
    padding: 12px 20px;
    border: 0;
    border-radius: 60px;
    background: #25D366;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 600;
    line-height: 1.2;
    box-sizing: border-box;
    transition: transform .2s ease, background .2s ease;
}

.glint-wa-btn:hover,
.glint-wa-btn:focus {
    background: #128C7E;
    color: #fff !important;
    transform: translateY(-1px);
    outline: none;
}

.glint-wa-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.glint-wa-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: #25D366;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.20);
    transition: transform .2s ease, background .2s ease;
}

.glint-wa-float:hover,
.glint-wa-float:focus {
    background: #128C7E;
    color: #fff !important;
    transform: translateY(-2px);
    outline: none;
}

.glint-wa-float svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

@media (min-width: 768px) {
    .glint-wa-float.is-mobile-only {
        display: none;
    }
}

@media (max-width: 767px) {
    .glint-wa-float {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }
}