.ks-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px 12px 14px;
    border-radius: 9999px;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 10px 28px -8px rgba(37, 211, 102, 0.55);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ks-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -8px rgba(37, 211, 102, 0.65);
    color: #ffffff;
}

.ks-whatsapp:focus-visible {
    outline: 2px solid #7a8c66;
    outline-offset: 3px;
}

.ks-whatsapp__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.ks-whatsapp--embedded {
    bottom: 68px;
}

@media (max-width: 640px) {
    .ks-whatsapp {
        right: 16px;
        bottom: 20px;
        padding: 14px;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
    }

    .ks-whatsapp__label {
        display: none;
    }

    .ks-whatsapp--embedded {
        bottom: 64px;
    }
}
