.kyox-wa-btn {
    position: fixed;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.kyox-wa-btn--bottom_right { right: 24px; flex-direction: row-reverse; }
.kyox-wa-btn--bottom_left  { left: 24px; }

.kyox-wa-btn a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.kyox-wa-btn__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}
.kyox-wa-btn__icon:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0,0,0,0.28);
}
.kyox-wa-btn__label {
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    white-space: nowrap;
}
